From 3b743c0d5eac7964f0665716f9a7a7d1e001ed7c Mon Sep 17 00:00:00 2001 From: Brian Arthur Cooper Date: Thu, 13 Jul 2023 14:29:04 -0400 Subject: [PATCH] fix(labware-library): fix ssr hydration bug, module product links, nest lw links, armadillo clone (#13083) Fix bug where in the rehydration step of conditionally rendered react children would replace server rendered elements with the wrong client rendered elements. Fix product links to opentrons module pages in nav. Replace all broken nest labware productlinks . duplicate armadillo pcr plate definition in favor of opentrons branded and retire old def Closes RLAB-334, RLAB-330, RLAB-277, RLAB-230 --- .../__fixtures__/simpleAnalysisFile.json | 4 +- .../__fixtures__/analysisResult.json | 2 +- ...T2_P1000SLeft_None_6_1_SimpleTransfer.json | 2 +- ...20SRight_None_6_1_SimpleTransferError.json | 2 +- ...S_P300M_HS_6_1_HS_WithCollision_Error.json | 2 +- ...M_NoMods_6_1_TransferReTransferLiquid.json | 2 +- ...OT2_P300M_P20S_HS_6_1_Smoke620release.json | 2 +- ...0M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json | 2 +- .../OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json | 6 +- ..._P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json | 6 +- ...P20S_NoMod_6_1_MixTransferManyLiquids.json | 2 +- ...P300S_HS_6_1_HS_NormalUseWithTransfer.json | 2 +- ..._P300SG1_None_5_2_6_Gen1PipetteSimple.json | 2 +- .../__fixtures__/mockRobotSideAnalysis.json | 14 +- .../__fixtures__/index.ts | 8 +- .../__fixtures__/index.ts | 8 +- .../RunDetails/__fixtures__/analysis.json | 4 +- .../OT2_P300M_P20S_HS_TM_6_3_SmokeV3.json | 16 +- ...P20S_NoMod_6_1_MixTransferManyLiquids.json | 4 +- labware-library/src/components/App/Page.tsx | 8 +- .../components/App/__tests__/Page.test.tsx | 4 +- .../__tests__/__snapshots__/App.test.tsx.snap | 11 +- labware-library/src/components/App/index.tsx | 8 +- .../src/components/Nav/Breadcrumbs.tsx | 11 +- .../components/website-navigation/nav-data.ts | 6 +- .../fixtures/protocol/4/doItAllV3.json | 4 +- .../fixtures/protocol/4/doItAllV4.json | 4 +- .../fixtures/protocol/5/batchEdit.json | 8 +- .../fixtures/protocol/5/doItAllV3.json | 4 +- .../fixtures/protocol/5/doItAllV5.json | 4 +- .../fixtures/protocol/5/mixSettings.json | 8 +- .../fixtures/protocol/5/transferSettings.json | 8 +- .../protocol/6/doItAllV3MigratedToV6.json | 4 +- .../protocol/6/doItAllV4MigratedToV6.json | 4 +- .../tests/integration/protocols/simple.json | 2 +- shared-data/js/getLabware.ts | 20 +- shared-data/js/helpers/index.ts | 3 + .../2/nest_12_reservoir_15ml/1.json | 2 +- .../2/nest_1_reservoir_195ml/1.json | 2 +- .../1.json | 4 +- .../2.json | 4 +- .../2/nest_96_wellplate_200ul_flat/1.json | 2 +- .../2/nest_96_wellplate_200ul_flat/2.json | 2 +- .../2/nest_96_wellplate_2ml_deep/1.json | 2 +- .../2/nest_96_wellplate_2ml_deep/2.json | 2 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 2 +- .../1.json | 4 +- .../1.json | 4 +- .../1.json | 1019 ++++++++++++++++ .../2.json | 1033 +++++++++++++++++ .../4/pipetteMultiChannelProtocolV4.json | 8 +- .../fixtures/4/testModulesProtocol.json | 8 +- .../fixtures/4/testThermocyclerModuleV4.json | 4 +- .../protocol/fixtures/4/transferSettings.json | 8 +- .../protocol/fixtures/5/multipleTipracks.json | 4 +- .../fixtures/5/multipleTipracksWithTC.json | 8 +- .../6/heaterShakerCommandsWithResultsKey.json | 16 +- .../fixtures/6/multipleTempModules.json | 20 +- .../protocol/fixtures/6/multipleTipracks.json | 8 +- .../fixtures/6/multipleTipracksWithTC.json | 16 +- .../protocol/fixtures/6/transferSettings.json | 20 +- 75 files changed, 2248 insertions(+), 209 deletions(-) create mode 100644 shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/1.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/2.json diff --git a/api-client/src/protocols/__fixtures__/simpleAnalysisFile.json b/api-client/src/protocols/__fixtures__/simpleAnalysisFile.json index a7863b75680..df8fcad1d98 100644 --- a/api-client/src/protocols/__fixtures__/simpleAnalysisFile.json +++ b/api-client/src/protocols/__fixtures__/simpleAnalysisFile.json @@ -1564,9 +1564,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "parameters": { "format": "96Standard", diff --git a/app-shell/src/protocol-storage/__fixtures__/analysisResult.json b/app-shell/src/protocol-storage/__fixtures__/analysisResult.json index e0679aa403a..87ea8132e28 100644 --- a/app-shell/src/protocol-storage/__fixtures__/analysisResult.json +++ b/app-shell/src/protocol-storage/__fixtures__/analysisResult.json @@ -78,7 +78,7 @@ "brand": "NEST", "brandId": ["360102"], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "parameters": { diff --git a/app-testing/files/protocols/json/OT2_P1000SLeft_None_6_1_SimpleTransfer.json b/app-testing/files/protocols/json/OT2_P1000SLeft_None_6_1_SimpleTransfer.json index 78f60c147d0..16b0819f95d 100644 --- a/app-testing/files/protocols/json/OT2_P1000SLeft_None_6_1_SimpleTransfer.json +++ b/app-testing/files/protocols/json/OT2_P1000SLeft_None_6_1_SimpleTransfer.json @@ -1502,7 +1502,7 @@ "360102" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "metadata": { diff --git a/app-testing/files/protocols/json/OT2_P20SRight_None_6_1_SimpleTransferError.json b/app-testing/files/protocols/json/OT2_P20SRight_None_6_1_SimpleTransferError.json index d17c27d6e62..3ada954bfee 100644 --- a/app-testing/files/protocols/json/OT2_P20SRight_None_6_1_SimpleTransferError.json +++ b/app-testing/files/protocols/json/OT2_P20SRight_None_6_1_SimpleTransferError.json @@ -1501,7 +1501,7 @@ "360102" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "metadata": { diff --git a/app-testing/files/protocols/json/OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json b/app-testing/files/protocols/json/OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json index 5f9dc77440e..f6b6efbb38d 100644 --- a/app-testing/files/protocols/json/OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json +++ b/app-testing/files/protocols/json/OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json @@ -1 +1 @@ -{"metadata":{"protocolName":"HS Collision","author":"","description":"","created":1660146567413,"lastModified":1660146926908,"category":null,"subcategory":null,"tags":[]},"designerApplication":{"name":"opentrons/protocol-designer","version":"6.0.0","data":{"_internalAppBuildDate":"Mon, 08 Aug 2022 21:31:42 GMT","defaultValues":{"aspirate_mmFromBottom":1,"dispense_mmFromBottom":0.5,"touchTip_mmFromTop":-1,"blowout_mmFromTop":0},"pipetteTiprackAssignments":{"d7e73681-8957-4063-8ce1-38c12373ec39":"opentrons/opentrons_96_tiprack_300ul/1","f5937b23-677d-4cff-bc10-224cf022858c":"opentrons/opentrons_96_tiprack_300ul/1"},"dismissedWarnings":{"form":{},"timeline":{}},"ingredients":{"0":{"name":"Water","displayColor":"#b925ff","description":null,"serialize":false,"liquidGroupId":"0"}},"ingredLocations":{"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"A1":{"0":{"volume":100}},"B1":{"0":{"volume":100}},"C1":{"0":{"volume":100}},"D1":{"0":{"volume":100}},"E1":{"0":{"volume":100}},"F1":{"0":{"volume":100}},"G1":{"0":{"volume":100}},"H1":{"0":{"volume":100}},"A2":{"0":{"volume":100}},"B2":{"0":{"volume":100}},"C2":{"0":{"volume":100}},"D2":{"0":{"volume":100}},"E2":{"0":{"volume":100}},"F2":{"0":{"volume":100}},"G2":{"0":{"volume":100}},"H2":{"0":{"volume":100}},"A3":{"0":{"volume":100}},"B3":{"0":{"volume":100}},"C3":{"0":{"volume":100}},"D3":{"0":{"volume":100}},"E3":{"0":{"volume":100}},"F3":{"0":{"volume":100}},"G3":{"0":{"volume":100}},"H3":{"0":{"volume":100}}}},"savedStepForms":{"__INITIAL_DECK_SETUP_STEP__":{"stepType":"manualIntervention","id":"__INITIAL_DECK_SETUP_STEP__","labwareLocationUpdate":{"fixedTrash":"12","1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1":"2","59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1":"4","dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":"5"},"pipetteLocationUpdate":{"d7e73681-8957-4063-8ce1-38c12373ec39":"left","f5937b23-677d-4cff-bc10-224cf022858c":"right"},"moduleLocationUpdate":{"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType":"1"}},"a8fa1851-736f-4769-bd5a-7f7bc2dbef89":{"id":"a8fa1851-736f-4769-bd5a-7f7bc2dbef89","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"f5937b23-677d-4cff-bc10-224cf022858c","volume":"100","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","dispense_wells":["A2","A12"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"aed6019f-ef5d-4420-8611-f7b4aa7b5d93":{"id":"aed6019f-ef5d-4420-8611-f7b4aa7b5d93","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null}},"orderedStepIds":["aed6019f-ef5d-4420-8611-f7b4aa7b5d93","a8fa1851-736f-4769-bd5a-7f7bc2dbef89"]}},"robot":{"model":"OT-2 Standard","deckId":"ot2_standard"},"pipettes":{"d7e73681-8957-4063-8ce1-38c12373ec39":{"name":"p300_single_gen2"},"f5937b23-677d-4cff-bc10-224cf022858c":{"name":"p300_multi_gen2"}},"labware":{"fixedTrash":{"displayName":"Trash","definitionId":"opentrons/opentrons_1_trash_1100ml_fixed/1"},"1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"displayName":"H/S","definitionId":"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1"},"3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL (1)","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"displayName":"1","definitionId":"opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1"}},"liquids":{"0":{"displayName":"Water","description":"","displayColor":"#b925ff"}},"labwareDefinitions":{"opentrons/opentrons_96_tiprack_300ul/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips"]},"metadata":{"displayName":"Opentrons 96 Tip Rack 300 µL","displayCategory":"tipRack","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":64.49},"wells":{"A1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":74.24,"z":5.39},"B1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":65.24,"z":5.39},"C1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":56.24,"z":5.39},"D1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":47.24,"z":5.39},"E1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":38.24,"z":5.39},"F1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":29.24,"z":5.39},"G1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":20.24,"z":5.39},"H1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":11.24,"z":5.39},"A2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":74.24,"z":5.39},"B2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":65.24,"z":5.39},"C2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":56.24,"z":5.39},"D2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":47.24,"z":5.39},"E2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":38.24,"z":5.39},"F2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":29.24,"z":5.39},"G2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":20.24,"z":5.39},"H2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":11.24,"z":5.39},"A3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":74.24,"z":5.39},"B3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":65.24,"z":5.39},"C3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":56.24,"z":5.39},"D3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":47.24,"z":5.39},"E3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":38.24,"z":5.39},"F3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":29.24,"z":5.39},"G3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":20.24,"z":5.39},"H3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":11.24,"z":5.39},"A4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":74.24,"z":5.39},"B4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":65.24,"z":5.39},"C4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":56.24,"z":5.39},"D4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":47.24,"z":5.39},"E4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":38.24,"z":5.39},"F4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":29.24,"z":5.39},"G4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":20.24,"z":5.39},"H4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":11.24,"z":5.39},"A5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":74.24,"z":5.39},"B5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":65.24,"z":5.39},"C5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":56.24,"z":5.39},"D5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":47.24,"z":5.39},"E5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":38.24,"z":5.39},"F5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":29.24,"z":5.39},"G5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":20.24,"z":5.39},"H5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":11.24,"z":5.39},"A6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":74.24,"z":5.39},"B6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":65.24,"z":5.39},"C6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":56.24,"z":5.39},"D6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":47.24,"z":5.39},"E6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":38.24,"z":5.39},"F6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":29.24,"z":5.39},"G6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":20.24,"z":5.39},"H6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":11.24,"z":5.39},"A7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":74.24,"z":5.39},"B7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":65.24,"z":5.39},"C7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":56.24,"z":5.39},"D7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":47.24,"z":5.39},"E7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":38.24,"z":5.39},"F7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":29.24,"z":5.39},"G7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":20.24,"z":5.39},"H7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":11.24,"z":5.39},"A8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":74.24,"z":5.39},"B8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":65.24,"z":5.39},"C8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":56.24,"z":5.39},"D8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":47.24,"z":5.39},"E8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":38.24,"z":5.39},"F8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":29.24,"z":5.39},"G8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":20.24,"z":5.39},"H8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":11.24,"z":5.39},"A9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":74.24,"z":5.39},"B9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":65.24,"z":5.39},"C9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":56.24,"z":5.39},"D9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":47.24,"z":5.39},"E9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":38.24,"z":5.39},"F9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":29.24,"z":5.39},"G9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":20.24,"z":5.39},"H9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":11.24,"z":5.39},"A10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":74.24,"z":5.39},"B10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":65.24,"z":5.39},"C10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":56.24,"z":5.39},"D10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":47.24,"z":5.39},"E10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":38.24,"z":5.39},"F10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":29.24,"z":5.39},"G10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":20.24,"z":5.39},"H10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":11.24,"z":5.39},"A11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":74.24,"z":5.39},"B11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":65.24,"z":5.39},"C11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":56.24,"z":5.39},"D11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":47.24,"z":5.39},"E11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":38.24,"z":5.39},"F11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":29.24,"z":5.39},"G11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":20.24,"z":5.39},"H11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":11.24,"z":5.39},"A12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":74.24,"z":5.39},"B12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":65.24,"z":5.39},"C12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":56.24,"z":5.39},"D12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":47.24,"z":5.39},"E12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":38.24,"z":5.39},"F12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":29.24,"z":5.39},"G12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":20.24,"z":5.39},"H12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":11.24,"z":5.39}},"groups":[{"metadata":{},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":true,"tipLength":59.3,"tipOverlap":7.47,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_tiprack_300ul"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_1_trash_1100ml_fixed/1":{"ordering":[["A1"]],"metadata":{"displayCategory":"trash","displayVolumeUnits":"mL","displayName":"Opentrons Fixed Trash","tags":[]},"schemaVersion":2,"version":1,"namespace":"opentrons","dimensions":{"xDimension":172.86,"yDimension":165.86,"zDimension":82},"parameters":{"format":"trash","isTiprack":false,"loadName":"opentrons_1_trash_1100ml_fixed","isMagneticModuleCompatible":false,"quirks":["fixedTrash","centerMultichannelOnWells","touchTipDisabled"]},"wells":{"A1":{"shape":"rectangular","yDimension":165.67,"xDimension":107.11,"totalLiquidVolume":1100000,"depth":0,"x":82.84,"y":80,"z":82}},"brand":{"brand":"Opentrons"},"groups":[{"wells":["A1"],"metadata":{}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":[]},"metadata":{"displayName":"Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL","displayCategory":"aluminumBlock","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.6,"yDimension":85.3,"zDimension":42.25},"wells":{"A1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":74.15,"z":4.25},"B1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":65.15,"z":4.25},"C1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":56.15,"z":4.25},"D1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":47.15,"z":4.25},"E1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":38.15,"z":4.25},"F1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":29.15,"z":4.25},"G1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":20.15,"z":4.25},"H1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":11.15,"z":4.25},"A2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":74.15,"z":4.25},"B2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":65.15,"z":4.25},"C2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":56.15,"z":4.25},"D2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":47.15,"z":4.25},"E2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":38.15,"z":4.25},"F2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":29.15,"z":4.25},"G2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":20.15,"z":4.25},"H2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":11.15,"z":4.25},"A3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":74.15,"z":4.25},"B3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":65.15,"z":4.25},"C3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":56.15,"z":4.25},"D3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":47.15,"z":4.25},"E3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":38.15,"z":4.25},"F3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":29.15,"z":4.25},"G3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":20.15,"z":4.25},"H3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":11.15,"z":4.25},"A4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":74.15,"z":4.25},"B4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":65.15,"z":4.25},"C4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":56.15,"z":4.25},"D4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":47.15,"z":4.25},"E4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":38.15,"z":4.25},"F4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":29.15,"z":4.25},"G4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":20.15,"z":4.25},"H4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":11.15,"z":4.25},"A5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":74.15,"z":4.25},"B5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":65.15,"z":4.25},"C5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":56.15,"z":4.25},"D5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":47.15,"z":4.25},"E5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":38.15,"z":4.25},"F5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":29.15,"z":4.25},"G5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":20.15,"z":4.25},"H5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":11.15,"z":4.25},"A6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":74.15,"z":4.25},"B6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":65.15,"z":4.25},"C6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":56.15,"z":4.25},"D6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":47.15,"z":4.25},"E6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":38.15,"z":4.25},"F6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":29.15,"z":4.25},"G6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":20.15,"z":4.25},"H6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":11.15,"z":4.25},"A7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":74.15,"z":4.25},"B7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":65.15,"z":4.25},"C7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":56.15,"z":4.25},"D7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":47.15,"z":4.25},"E7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":38.15,"z":4.25},"F7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":29.15,"z":4.25},"G7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":20.15,"z":4.25},"H7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":11.15,"z":4.25},"A8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":74.15,"z":4.25},"B8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":65.15,"z":4.25},"C8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":56.15,"z":4.25},"D8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":47.15,"z":4.25},"E8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":38.15,"z":4.25},"F8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":29.15,"z":4.25},"G8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":20.15,"z":4.25},"H8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":11.15,"z":4.25},"A9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":74.15,"z":4.25},"B9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":65.15,"z":4.25},"C9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":56.15,"z":4.25},"D9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":47.15,"z":4.25},"E9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":38.15,"z":4.25},"F9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":29.15,"z":4.25},"G9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":20.15,"z":4.25},"H9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":11.15,"z":4.25},"A10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":74.15,"z":4.25},"B10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":65.15,"z":4.25},"C10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":56.15,"z":4.25},"D10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":47.15,"z":4.25},"E10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":38.15,"z":4.25},"F10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":29.15,"z":4.25},"G10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":20.15,"z":4.25},"H10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":11.15,"z":4.25},"A11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":74.15,"z":4.25},"B11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":65.15,"z":4.25},"C11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":56.15,"z":4.25},"D11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":47.15,"z":4.25},"E11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":38.15,"z":4.25},"F11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":29.15,"z":4.25},"G11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":20.15,"z":4.25},"H11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":11.15,"z":4.25},"A12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":74.15,"z":4.25},"B12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":65.15,"z":4.25},"C12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":56.15,"z":4.25},"D12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":47.15,"z":4.25},"E12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":38.15,"z":4.25},"F12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":29.15,"z":4.25},"G12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":20.15,"z":4.25},"H12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":11.15,"z":4.25}},"groups":[{"metadata":{"displayName":"NEST 96 Deepwell Plate 2mL","displayCategory":"wellPlate","wellBottomShape":"v"},"brand":{"brand":"NEST","brandId":["503501","503001"],"links":["http://www.cell-nest.com/page94?product_id=101&_l=en"]},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","quirks":[],"isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"namespace":"opentrons","version":1,"schemaVersion":2,"parameters":{"loadName":"armadillo_96_wellplate_200ul_pcr_full_skirt","format":"96Standard","isTiprack":false,"isMagneticModuleCompatible":true},"metadata":{"displayName":"Armadillo 96 Well Plate 200 µL PCR Full Skirt","displayCategory":"wellPlate","displayVolumeUnits":"µL","tags":[]},"brand":{"brand":"Thermo Scientific","brandId":["AB2396"],"links":["https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396"]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":16},"cornerOffsetFromSlot":{"x":0,"y":0,"z":0},"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"wells":{"A1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":74.24,"z":1.05},"B1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":65.24,"z":1.05},"C1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":56.24,"z":1.05},"D1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":47.24,"z":1.05},"E1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":38.24,"z":1.05},"F1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":29.24,"z":1.05},"G1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":20.24,"z":1.05},"H1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":11.24,"z":1.05},"A2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":74.24,"z":1.05},"B2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":65.24,"z":1.05},"C2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":56.24,"z":1.05},"D2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":47.24,"z":1.05},"E2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":38.24,"z":1.05},"F2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":29.24,"z":1.05},"G2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":20.24,"z":1.05},"H2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":11.24,"z":1.05},"A3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":74.24,"z":1.05},"B3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":65.24,"z":1.05},"C3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":56.24,"z":1.05},"D3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":47.24,"z":1.05},"E3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":38.24,"z":1.05},"F3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":29.24,"z":1.05},"G3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":20.24,"z":1.05},"H3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":11.24,"z":1.05},"A4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":74.24,"z":1.05},"B4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":65.24,"z":1.05},"C4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":56.24,"z":1.05},"D4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":47.24,"z":1.05},"E4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":38.24,"z":1.05},"F4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":29.24,"z":1.05},"G4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":20.24,"z":1.05},"H4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":11.24,"z":1.05},"A5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":74.24,"z":1.05},"B5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":65.24,"z":1.05},"C5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":56.24,"z":1.05},"D5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":47.24,"z":1.05},"E5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":38.24,"z":1.05},"F5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":29.24,"z":1.05},"G5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":20.24,"z":1.05},"H5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":11.24,"z":1.05},"A6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":74.24,"z":1.05},"B6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":65.24,"z":1.05},"C6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":56.24,"z":1.05},"D6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":47.24,"z":1.05},"E6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":38.24,"z":1.05},"F6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":29.24,"z":1.05},"G6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":20.24,"z":1.05},"H6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":11.24,"z":1.05},"A7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":74.24,"z":1.05},"B7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":65.24,"z":1.05},"C7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":56.24,"z":1.05},"D7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":47.24,"z":1.05},"E7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":38.24,"z":1.05},"F7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":29.24,"z":1.05},"G7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":20.24,"z":1.05},"H7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":11.24,"z":1.05},"A8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":74.24,"z":1.05},"B8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":65.24,"z":1.05},"C8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":56.24,"z":1.05},"D8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":47.24,"z":1.05},"E8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":38.24,"z":1.05},"F8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":29.24,"z":1.05},"G8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":20.24,"z":1.05},"H8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":11.24,"z":1.05},"A9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":74.24,"z":1.05},"B9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":65.24,"z":1.05},"C9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":56.24,"z":1.05},"D9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":47.24,"z":1.05},"E9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":38.24,"z":1.05},"F9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":29.24,"z":1.05},"G9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":20.24,"z":1.05},"H9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":11.24,"z":1.05},"A10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":74.24,"z":1.05},"B10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":65.24,"z":1.05},"C10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":56.24,"z":1.05},"D10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":47.24,"z":1.05},"E10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":38.24,"z":1.05},"F10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":29.24,"z":1.05},"G10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":20.24,"z":1.05},"H10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":11.24,"z":1.05},"A11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":74.24,"z":1.05},"B11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":65.24,"z":1.05},"C11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":56.24,"z":1.05},"D11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":47.24,"z":1.05},"E11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":38.24,"z":1.05},"F11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":29.24,"z":1.05},"G11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":20.24,"z":1.05},"H11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":11.24,"z":1.05},"A12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":74.24,"z":1.05},"B12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":65.24,"z":1.05},"C12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":56.24,"z":1.05},"D12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":47.24,"z":1.05},"E12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":38.24,"z":1.05},"F12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":29.24,"z":1.05},"G12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":20.24,"z":1.05},"H12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":11.24,"z":1.05}},"groups":[{"metadata":{"wellBottomShape":"v"},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}]}},"$otSharedSchema":"#/protocol/schemas/6","schemaVersion":6,"modules":{"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType":{"model":"heaterShakerModuleV1"}},"commands":[{"key":"371f4a86-b9a5-4bc0-8bdd-d28460087c31","commandType":"loadPipette","params":{"pipetteId":"d7e73681-8957-4063-8ce1-38c12373ec39","mount":"left"}},{"key":"00c0d791-6167-4a8b-8822-0482a6229976","commandType":"loadPipette","params":{"pipetteId":"f5937b23-677d-4cff-bc10-224cf022858c","mount":"right"}},{"key":"e3a5093f-bfb7-433b-a064-05de0c322c35","commandType":"loadModule","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","location":{"slotName":"1"}}},{"key":"1f08132e-50c9-457b-b543-1d3318c5d075","commandType":"loadLabware","params":{"labwareId":"1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"2"}}},{"key":"f6ad95f9-6d54-453e-8630-50ee166deb5a","commandType":"loadLabware","params":{"labwareId":"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","location":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}}},{"key":"83b274d2-cbf1-4913-95dd-2c29e196983c","commandType":"loadLabware","params":{"labwareId":"3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"4"}}},{"key":"10a1df55-87a4-4eb3-ba1c-4e9b6e4ed3e5","commandType":"loadLabware","params":{"labwareId":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","location":{"slotName":"5"}}},{"commandType":"loadLiquid","key":"99f4bd4a-9385-45cf-b57c-55a619e9b961","params":{"liquidId":"0","labwareId":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100}}},{"commandType":"heaterShaker/closeLabwareLatch","key":"e5e36a96-61c3-4d73-98a7-17aeb667b727","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"fe2e39c4-5245-465a-8df8-33096913a07d","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"b214ab6f-85af-46be-85ea-ec7fbde9cf15","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}}]} \ No newline at end of file +{"metadata":{"protocolName":"HS Collision","author":"","description":"","created":1660146567413,"lastModified":1660146926908,"category":null,"subcategory":null,"tags":[]},"designerApplication":{"name":"opentrons/protocol-designer","version":"6.0.0","data":{"_internalAppBuildDate":"Mon, 08 Aug 2022 21:31:42 GMT","defaultValues":{"aspirate_mmFromBottom":1,"dispense_mmFromBottom":0.5,"touchTip_mmFromTop":-1,"blowout_mmFromTop":0},"pipetteTiprackAssignments":{"d7e73681-8957-4063-8ce1-38c12373ec39":"opentrons/opentrons_96_tiprack_300ul/1","f5937b23-677d-4cff-bc10-224cf022858c":"opentrons/opentrons_96_tiprack_300ul/1"},"dismissedWarnings":{"form":{},"timeline":{}},"ingredients":{"0":{"name":"Water","displayColor":"#b925ff","description":null,"serialize":false,"liquidGroupId":"0"}},"ingredLocations":{"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"A1":{"0":{"volume":100}},"B1":{"0":{"volume":100}},"C1":{"0":{"volume":100}},"D1":{"0":{"volume":100}},"E1":{"0":{"volume":100}},"F1":{"0":{"volume":100}},"G1":{"0":{"volume":100}},"H1":{"0":{"volume":100}},"A2":{"0":{"volume":100}},"B2":{"0":{"volume":100}},"C2":{"0":{"volume":100}},"D2":{"0":{"volume":100}},"E2":{"0":{"volume":100}},"F2":{"0":{"volume":100}},"G2":{"0":{"volume":100}},"H2":{"0":{"volume":100}},"A3":{"0":{"volume":100}},"B3":{"0":{"volume":100}},"C3":{"0":{"volume":100}},"D3":{"0":{"volume":100}},"E3":{"0":{"volume":100}},"F3":{"0":{"volume":100}},"G3":{"0":{"volume":100}},"H3":{"0":{"volume":100}}}},"savedStepForms":{"__INITIAL_DECK_SETUP_STEP__":{"stepType":"manualIntervention","id":"__INITIAL_DECK_SETUP_STEP__","labwareLocationUpdate":{"fixedTrash":"12","1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1":"2","59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1":"4","dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":"5"},"pipetteLocationUpdate":{"d7e73681-8957-4063-8ce1-38c12373ec39":"left","f5937b23-677d-4cff-bc10-224cf022858c":"right"},"moduleLocationUpdate":{"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType":"1"}},"a8fa1851-736f-4769-bd5a-7f7bc2dbef89":{"id":"a8fa1851-736f-4769-bd5a-7f7bc2dbef89","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"f5937b23-677d-4cff-bc10-224cf022858c","volume":"100","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","dispense_wells":["A2","A12"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"aed6019f-ef5d-4420-8611-f7b4aa7b5d93":{"id":"aed6019f-ef5d-4420-8611-f7b4aa7b5d93","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null}},"orderedStepIds":["aed6019f-ef5d-4420-8611-f7b4aa7b5d93","a8fa1851-736f-4769-bd5a-7f7bc2dbef89"]}},"robot":{"model":"OT-2 Standard","deckId":"ot2_standard"},"pipettes":{"d7e73681-8957-4063-8ce1-38c12373ec39":{"name":"p300_single_gen2"},"f5937b23-677d-4cff-bc10-224cf022858c":{"name":"p300_multi_gen2"}},"labware":{"fixedTrash":{"displayName":"Trash","definitionId":"opentrons/opentrons_1_trash_1100ml_fixed/1"},"1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"displayName":"H/S","definitionId":"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1"},"3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL (1)","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"displayName":"1","definitionId":"opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1"}},"liquids":{"0":{"displayName":"Water","description":"","displayColor":"#b925ff"}},"labwareDefinitions":{"opentrons/opentrons_96_tiprack_300ul/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips"]},"metadata":{"displayName":"Opentrons 96 Tip Rack 300 µL","displayCategory":"tipRack","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":64.49},"wells":{"A1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":74.24,"z":5.39},"B1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":65.24,"z":5.39},"C1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":56.24,"z":5.39},"D1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":47.24,"z":5.39},"E1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":38.24,"z":5.39},"F1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":29.24,"z":5.39},"G1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":20.24,"z":5.39},"H1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":11.24,"z":5.39},"A2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":74.24,"z":5.39},"B2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":65.24,"z":5.39},"C2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":56.24,"z":5.39},"D2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":47.24,"z":5.39},"E2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":38.24,"z":5.39},"F2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":29.24,"z":5.39},"G2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":20.24,"z":5.39},"H2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":11.24,"z":5.39},"A3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":74.24,"z":5.39},"B3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":65.24,"z":5.39},"C3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":56.24,"z":5.39},"D3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":47.24,"z":5.39},"E3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":38.24,"z":5.39},"F3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":29.24,"z":5.39},"G3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":20.24,"z":5.39},"H3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":11.24,"z":5.39},"A4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":74.24,"z":5.39},"B4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":65.24,"z":5.39},"C4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":56.24,"z":5.39},"D4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":47.24,"z":5.39},"E4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":38.24,"z":5.39},"F4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":29.24,"z":5.39},"G4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":20.24,"z":5.39},"H4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":11.24,"z":5.39},"A5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":74.24,"z":5.39},"B5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":65.24,"z":5.39},"C5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":56.24,"z":5.39},"D5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":47.24,"z":5.39},"E5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":38.24,"z":5.39},"F5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":29.24,"z":5.39},"G5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":20.24,"z":5.39},"H5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":11.24,"z":5.39},"A6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":74.24,"z":5.39},"B6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":65.24,"z":5.39},"C6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":56.24,"z":5.39},"D6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":47.24,"z":5.39},"E6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":38.24,"z":5.39},"F6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":29.24,"z":5.39},"G6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":20.24,"z":5.39},"H6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":11.24,"z":5.39},"A7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":74.24,"z":5.39},"B7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":65.24,"z":5.39},"C7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":56.24,"z":5.39},"D7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":47.24,"z":5.39},"E7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":38.24,"z":5.39},"F7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":29.24,"z":5.39},"G7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":20.24,"z":5.39},"H7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":11.24,"z":5.39},"A8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":74.24,"z":5.39},"B8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":65.24,"z":5.39},"C8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":56.24,"z":5.39},"D8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":47.24,"z":5.39},"E8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":38.24,"z":5.39},"F8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":29.24,"z":5.39},"G8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":20.24,"z":5.39},"H8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":11.24,"z":5.39},"A9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":74.24,"z":5.39},"B9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":65.24,"z":5.39},"C9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":56.24,"z":5.39},"D9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":47.24,"z":5.39},"E9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":38.24,"z":5.39},"F9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":29.24,"z":5.39},"G9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":20.24,"z":5.39},"H9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":11.24,"z":5.39},"A10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":74.24,"z":5.39},"B10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":65.24,"z":5.39},"C10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":56.24,"z":5.39},"D10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":47.24,"z":5.39},"E10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":38.24,"z":5.39},"F10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":29.24,"z":5.39},"G10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":20.24,"z":5.39},"H10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":11.24,"z":5.39},"A11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":74.24,"z":5.39},"B11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":65.24,"z":5.39},"C11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":56.24,"z":5.39},"D11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":47.24,"z":5.39},"E11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":38.24,"z":5.39},"F11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":29.24,"z":5.39},"G11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":20.24,"z":5.39},"H11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":11.24,"z":5.39},"A12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":74.24,"z":5.39},"B12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":65.24,"z":5.39},"C12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":56.24,"z":5.39},"D12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":47.24,"z":5.39},"E12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":38.24,"z":5.39},"F12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":29.24,"z":5.39},"G12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":20.24,"z":5.39},"H12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":11.24,"z":5.39}},"groups":[{"metadata":{},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":true,"tipLength":59.3,"tipOverlap":7.47,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_tiprack_300ul"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_1_trash_1100ml_fixed/1":{"ordering":[["A1"]],"metadata":{"displayCategory":"trash","displayVolumeUnits":"mL","displayName":"Opentrons Fixed Trash","tags":[]},"schemaVersion":2,"version":1,"namespace":"opentrons","dimensions":{"xDimension":172.86,"yDimension":165.86,"zDimension":82},"parameters":{"format":"trash","isTiprack":false,"loadName":"opentrons_1_trash_1100ml_fixed","isMagneticModuleCompatible":false,"quirks":["fixedTrash","centerMultichannelOnWells","touchTipDisabled"]},"wells":{"A1":{"shape":"rectangular","yDimension":165.67,"xDimension":107.11,"totalLiquidVolume":1100000,"depth":0,"x":82.84,"y":80,"z":82}},"brand":{"brand":"Opentrons"},"groups":[{"wells":["A1"],"metadata":{}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":[]},"metadata":{"displayName":"Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL","displayCategory":"aluminumBlock","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.6,"yDimension":85.3,"zDimension":42.25},"wells":{"A1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":74.15,"z":4.25},"B1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":65.15,"z":4.25},"C1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":56.15,"z":4.25},"D1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":47.15,"z":4.25},"E1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":38.15,"z":4.25},"F1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":29.15,"z":4.25},"G1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":20.15,"z":4.25},"H1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":11.15,"z":4.25},"A2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":74.15,"z":4.25},"B2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":65.15,"z":4.25},"C2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":56.15,"z":4.25},"D2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":47.15,"z":4.25},"E2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":38.15,"z":4.25},"F2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":29.15,"z":4.25},"G2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":20.15,"z":4.25},"H2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":11.15,"z":4.25},"A3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":74.15,"z":4.25},"B3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":65.15,"z":4.25},"C3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":56.15,"z":4.25},"D3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":47.15,"z":4.25},"E3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":38.15,"z":4.25},"F3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":29.15,"z":4.25},"G3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":20.15,"z":4.25},"H3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":11.15,"z":4.25},"A4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":74.15,"z":4.25},"B4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":65.15,"z":4.25},"C4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":56.15,"z":4.25},"D4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":47.15,"z":4.25},"E4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":38.15,"z":4.25},"F4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":29.15,"z":4.25},"G4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":20.15,"z":4.25},"H4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":11.15,"z":4.25},"A5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":74.15,"z":4.25},"B5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":65.15,"z":4.25},"C5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":56.15,"z":4.25},"D5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":47.15,"z":4.25},"E5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":38.15,"z":4.25},"F5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":29.15,"z":4.25},"G5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":20.15,"z":4.25},"H5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":11.15,"z":4.25},"A6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":74.15,"z":4.25},"B6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":65.15,"z":4.25},"C6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":56.15,"z":4.25},"D6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":47.15,"z":4.25},"E6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":38.15,"z":4.25},"F6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":29.15,"z":4.25},"G6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":20.15,"z":4.25},"H6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":11.15,"z":4.25},"A7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":74.15,"z":4.25},"B7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":65.15,"z":4.25},"C7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":56.15,"z":4.25},"D7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":47.15,"z":4.25},"E7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":38.15,"z":4.25},"F7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":29.15,"z":4.25},"G7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":20.15,"z":4.25},"H7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":11.15,"z":4.25},"A8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":74.15,"z":4.25},"B8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":65.15,"z":4.25},"C8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":56.15,"z":4.25},"D8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":47.15,"z":4.25},"E8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":38.15,"z":4.25},"F8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":29.15,"z":4.25},"G8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":20.15,"z":4.25},"H8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":11.15,"z":4.25},"A9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":74.15,"z":4.25},"B9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":65.15,"z":4.25},"C9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":56.15,"z":4.25},"D9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":47.15,"z":4.25},"E9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":38.15,"z":4.25},"F9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":29.15,"z":4.25},"G9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":20.15,"z":4.25},"H9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":11.15,"z":4.25},"A10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":74.15,"z":4.25},"B10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":65.15,"z":4.25},"C10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":56.15,"z":4.25},"D10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":47.15,"z":4.25},"E10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":38.15,"z":4.25},"F10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":29.15,"z":4.25},"G10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":20.15,"z":4.25},"H10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":11.15,"z":4.25},"A11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":74.15,"z":4.25},"B11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":65.15,"z":4.25},"C11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":56.15,"z":4.25},"D11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":47.15,"z":4.25},"E11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":38.15,"z":4.25},"F11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":29.15,"z":4.25},"G11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":20.15,"z":4.25},"H11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":11.15,"z":4.25},"A12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":74.15,"z":4.25},"B12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":65.15,"z":4.25},"C12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":56.15,"z":4.25},"D12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":47.15,"z":4.25},"E12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":38.15,"z":4.25},"F12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":29.15,"z":4.25},"G12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":20.15,"z":4.25},"H12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":11.15,"z":4.25}},"groups":[{"metadata":{"displayName":"NEST 96 Deepwell Plate 2mL","displayCategory":"wellPlate","wellBottomShape":"v"},"brand":{"brand":"NEST","brandId":["503501","503001"],"links":["https://www.nest-biotech.com/deep-well-plates/59253726.html"]},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","quirks":[],"isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1":{"namespace":"opentrons","version":1,"schemaVersion":2,"parameters":{"loadName":"armadillo_96_wellplate_200ul_pcr_full_skirt","format":"96Standard","isTiprack":false,"isMagneticModuleCompatible":true},"metadata":{"displayName":"Armadillo 96 Well Plate 200 µL PCR Full Skirt","displayCategory":"wellPlate","displayVolumeUnits":"µL","tags":[]},"brand":{"brand":"Thermo Scientific","brandId":["AB2396"],"links":["https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396"]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":16},"cornerOffsetFromSlot":{"x":0,"y":0,"z":0},"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"wells":{"A1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":74.24,"z":1.05},"B1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":65.24,"z":1.05},"C1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":56.24,"z":1.05},"D1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":47.24,"z":1.05},"E1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":38.24,"z":1.05},"F1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":29.24,"z":1.05},"G1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":20.24,"z":1.05},"H1":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":14.38,"y":11.24,"z":1.05},"A2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":74.24,"z":1.05},"B2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":65.24,"z":1.05},"C2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":56.24,"z":1.05},"D2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":47.24,"z":1.05},"E2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":38.24,"z":1.05},"F2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":29.24,"z":1.05},"G2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":20.24,"z":1.05},"H2":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":23.38,"y":11.24,"z":1.05},"A3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":74.24,"z":1.05},"B3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":65.24,"z":1.05},"C3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":56.24,"z":1.05},"D3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":47.24,"z":1.05},"E3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":38.24,"z":1.05},"F3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":29.24,"z":1.05},"G3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":20.24,"z":1.05},"H3":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":32.38,"y":11.24,"z":1.05},"A4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":74.24,"z":1.05},"B4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":65.24,"z":1.05},"C4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":56.24,"z":1.05},"D4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":47.24,"z":1.05},"E4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":38.24,"z":1.05},"F4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":29.24,"z":1.05},"G4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":20.24,"z":1.05},"H4":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":41.38,"y":11.24,"z":1.05},"A5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":74.24,"z":1.05},"B5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":65.24,"z":1.05},"C5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":56.24,"z":1.05},"D5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":47.24,"z":1.05},"E5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":38.24,"z":1.05},"F5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":29.24,"z":1.05},"G5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":20.24,"z":1.05},"H5":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":50.38,"y":11.24,"z":1.05},"A6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":74.24,"z":1.05},"B6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":65.24,"z":1.05},"C6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":56.24,"z":1.05},"D6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":47.24,"z":1.05},"E6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":38.24,"z":1.05},"F6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":29.24,"z":1.05},"G6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":20.24,"z":1.05},"H6":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":59.38,"y":11.24,"z":1.05},"A7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":74.24,"z":1.05},"B7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":65.24,"z":1.05},"C7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":56.24,"z":1.05},"D7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":47.24,"z":1.05},"E7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":38.24,"z":1.05},"F7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":29.24,"z":1.05},"G7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":20.24,"z":1.05},"H7":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":68.38,"y":11.24,"z":1.05},"A8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":74.24,"z":1.05},"B8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":65.24,"z":1.05},"C8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":56.24,"z":1.05},"D8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":47.24,"z":1.05},"E8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":38.24,"z":1.05},"F8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":29.24,"z":1.05},"G8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":20.24,"z":1.05},"H8":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":77.38,"y":11.24,"z":1.05},"A9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":74.24,"z":1.05},"B9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":65.24,"z":1.05},"C9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":56.24,"z":1.05},"D9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":47.24,"z":1.05},"E9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":38.24,"z":1.05},"F9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":29.24,"z":1.05},"G9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":20.24,"z":1.05},"H9":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":86.38,"y":11.24,"z":1.05},"A10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":74.24,"z":1.05},"B10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":65.24,"z":1.05},"C10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":56.24,"z":1.05},"D10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":47.24,"z":1.05},"E10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":38.24,"z":1.05},"F10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":29.24,"z":1.05},"G10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":20.24,"z":1.05},"H10":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":95.38,"y":11.24,"z":1.05},"A11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":74.24,"z":1.05},"B11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":65.24,"z":1.05},"C11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":56.24,"z":1.05},"D11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":47.24,"z":1.05},"E11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":38.24,"z":1.05},"F11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":29.24,"z":1.05},"G11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":20.24,"z":1.05},"H11":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":104.38,"y":11.24,"z":1.05},"A12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":74.24,"z":1.05},"B12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":65.24,"z":1.05},"C12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":56.24,"z":1.05},"D12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":47.24,"z":1.05},"E12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":38.24,"z":1.05},"F12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":29.24,"z":1.05},"G12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":20.24,"z":1.05},"H12":{"depth":14.95,"totalLiquidVolume":200,"shape":"circular","diameter":5.5,"x":113.38,"y":11.24,"z":1.05}},"groups":[{"metadata":{"wellBottomShape":"v"},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}]}},"$otSharedSchema":"#/protocol/schemas/6","schemaVersion":6,"modules":{"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType":{"model":"heaterShakerModuleV1"}},"commands":[{"key":"371f4a86-b9a5-4bc0-8bdd-d28460087c31","commandType":"loadPipette","params":{"pipetteId":"d7e73681-8957-4063-8ce1-38c12373ec39","mount":"left"}},{"key":"00c0d791-6167-4a8b-8822-0482a6229976","commandType":"loadPipette","params":{"pipetteId":"f5937b23-677d-4cff-bc10-224cf022858c","mount":"right"}},{"key":"e3a5093f-bfb7-433b-a064-05de0c322c35","commandType":"loadModule","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType","location":{"slotName":"1"}}},{"key":"1f08132e-50c9-457b-b543-1d3318c5d075","commandType":"loadLabware","params":{"labwareId":"1a8aeb5d-d5df-41b2-a794-ff967118e126:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"2"}}},{"key":"f6ad95f9-6d54-453e-8630-50ee166deb5a","commandType":"loadLabware","params":{"labwareId":"59b6af9f-7b2f-4007-a5ef-ef60d38939dc:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","location":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}}},{"key":"83b274d2-cbf1-4913-95dd-2c29e196983c","commandType":"loadLabware","params":{"labwareId":"3268de61-0657-4a48-8e63-0c3b4bf502a1:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"4"}}},{"key":"10a1df55-87a4-4eb3-ba1c-4e9b6e4ed3e5","commandType":"loadLabware","params":{"labwareId":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","location":{"slotName":"5"}}},{"commandType":"loadLiquid","key":"99f4bd4a-9385-45cf-b57c-55a619e9b961","params":{"liquidId":"0","labwareId":"dbed30a1-d5d7-48b7-82f6-284a20b06118:opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100}}},{"commandType":"heaterShaker/closeLabwareLatch","key":"e5e36a96-61c3-4d73-98a7-17aeb667b727","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"fe2e39c4-5245-465a-8df8-33096913a07d","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"b214ab6f-85af-46be-85ea-ec7fbde9cf15","params":{"moduleId":"b8a48baa-1ee2-448d-8680-c7126843cbe4:heaterShakerModuleType"}}]} \ No newline at end of file diff --git a/app-testing/files/protocols/json/OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json b/app-testing/files/protocols/json/OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json index ebb9a802c52..02537f12860 100644 --- a/app-testing/files/protocols/json/OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json +++ b/app-testing/files/protocols/json/OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json @@ -3310,7 +3310,7 @@ "601052" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=110" + "https://www.nest-biotech.com/centrifuge-tube/59282837.html" ] }, "wells": [ diff --git a/app-testing/files/protocols/json/OT2_P300M_P20S_HS_6_1_Smoke620release.json b/app-testing/files/protocols/json/OT2_P300M_P20S_HS_6_1_Smoke620release.json index b1deed0812c..1e3b36cd989 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P20S_HS_6_1_Smoke620release.json +++ b/app-testing/files/protocols/json/OT2_P300M_P20S_HS_6_1_Smoke620release.json @@ -4531,7 +4531,7 @@ "503001" ], "links": [ - "http://www.cell-nest.com/page94?product_id=101&_l=en" + "https://www.nest-biotech.com/deep-well-plates/59253726.html" ] }, "wells": [ diff --git a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json index 34392e2a8eb..39ce0edc176 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json +++ b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json @@ -1 +1 @@ -{"metadata":{"protocolName":"All mods","author":"","description":"","created":1660661146739,"lastModified":1660661894787,"category":null,"subcategory":null,"tags":[]},"designerApplication":{"name":"opentrons/protocol-designer","version":"6.0.0","data":{"_internalAppBuildDate":"Mon, 08 Aug 2022 21:31:42 GMT","defaultValues":{"aspirate_mmFromBottom":1,"dispense_mmFromBottom":0.5,"touchTip_mmFromTop":-1,"blowout_mmFromTop":0},"pipetteTiprackAssignments":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":"opentrons/opentrons_96_tiprack_300ul/1","1b766d4d-ba31-42cc-a49a-73e9d8c67aca":"opentrons/opentrons_96_tiprack_300ul/1"},"dismissedWarnings":{"form":{},"timeline":{}},"ingredients":{"0":{"name":"L1","displayColor":"#b925ff","description":null,"serialize":false,"liquidGroupId":"0"},"1":{"name":"L2","displayColor":"#ffd600","description":null,"serialize":false,"liquidGroupId":"1"}},"ingredLocations":{"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":{"A1":{"0":{"volume":29000}}},"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"A1":{"1":{"volume":300}},"B1":{"1":{"volume":300}},"C1":{"1":{"volume":300}},"D1":{"1":{"volume":300}},"A2":{"1":{"volume":300}},"B2":{"1":{"volume":300}},"C2":{"1":{"volume":300}},"D2":{"1":{"volume":300}}},"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"A1":{"1":{"volume":20}},"B1":{"1":{"volume":20}},"C1":{"1":{"volume":20}},"D1":{"1":{"volume":20}},"E1":{"1":{"volume":20}},"F1":{"1":{"volume":20}},"G1":{"1":{"volume":20}},"H1":{"1":{"volume":20}},"A2":{"1":{"volume":20}},"B2":{"1":{"volume":20}},"C2":{"1":{"volume":20}},"D2":{"1":{"volume":20}},"E2":{"1":{"volume":20}},"F2":{"1":{"volume":20}},"G2":{"1":{"volume":20}},"H2":{"1":{"volume":20}},"A3":{"1":{"volume":20}},"B3":{"1":{"volume":20}},"C3":{"1":{"volume":20}},"D3":{"1":{"volume":20}},"E3":{"1":{"volume":20}},"F3":{"1":{"volume":20}},"G3":{"1":{"volume":20}},"H3":{"1":{"volume":20}}},"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"A1":{"1":{"volume":100}},"B1":{"1":{"volume":100}},"C1":{"1":{"volume":100}},"D1":{"1":{"volume":100}},"E1":{"1":{"volume":100}},"F1":{"1":{"volume":100}},"G1":{"1":{"volume":100}},"H1":{"1":{"volume":100}},"A2":{"1":{"volume":100}},"B2":{"1":{"volume":100}},"C2":{"1":{"volume":100}},"D2":{"1":{"volume":100}},"E2":{"1":{"volume":100}},"F2":{"1":{"volume":100}},"G2":{"1":{"volume":100}},"H2":{"1":{"volume":100}},"A3":{"1":{"volume":100}},"B3":{"1":{"volume":100}},"C3":{"1":{"volume":100}},"D3":{"1":{"volume":100}},"E3":{"1":{"volume":100}},"F3":{"1":{"volume":100}},"G3":{"1":{"volume":100}},"H3":{"1":{"volume":100}},"A4":{"1":{"volume":100}},"B4":{"1":{"volume":100}},"C4":{"1":{"volume":100}},"D4":{"1":{"volume":100}},"E4":{"1":{"volume":100}},"F4":{"1":{"volume":100}},"G4":{"1":{"volume":100}},"H4":{"1":{"volume":100}},"A5":{"1":{"volume":100}},"B5":{"1":{"volume":100}},"C5":{"1":{"volume":100}},"D5":{"1":{"volume":100}},"E5":{"1":{"volume":100}},"F5":{"1":{"volume":100}},"G5":{"1":{"volume":100}},"H5":{"1":{"volume":100}},"A6":{"1":{"volume":100}},"B6":{"1":{"volume":100}},"C6":{"1":{"volume":100}},"D6":{"1":{"volume":100}},"E6":{"1":{"volume":100}},"F6":{"1":{"volume":100}},"G6":{"1":{"volume":100}},"H6":{"1":{"volume":100}}},"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"A1":{"1":{"volume":100}},"B1":{"1":{"volume":100}},"C1":{"1":{"volume":100}},"D1":{"1":{"volume":100}},"E1":{"1":{"volume":100}},"F1":{"1":{"volume":100}},"G1":{"1":{"volume":100}},"H1":{"1":{"volume":100}},"A2":{"1":{"volume":100}},"B2":{"1":{"volume":100}},"C2":{"1":{"volume":100}},"D2":{"1":{"volume":100}},"E2":{"1":{"volume":100}},"F2":{"1":{"volume":100}},"G2":{"1":{"volume":100}},"H2":{"1":{"volume":100}},"A3":{"1":{"volume":100}},"B3":{"1":{"volume":100}},"C3":{"1":{"volume":100}},"D3":{"1":{"volume":100}},"E3":{"1":{"volume":100}},"F3":{"1":{"volume":100}},"G3":{"1":{"volume":100}},"H3":{"1":{"volume":100}},"A4":{"1":{"volume":100}},"B4":{"1":{"volume":100}},"C4":{"1":{"volume":100}},"D4":{"1":{"volume":100}},"E4":{"1":{"volume":100}},"F4":{"1":{"volume":100}},"G4":{"1":{"volume":100}},"H4":{"1":{"volume":100}},"A5":{"1":{"volume":100}},"B5":{"1":{"volume":100}},"C5":{"1":{"volume":100}},"D5":{"1":{"volume":100}},"E5":{"1":{"volume":100}},"F5":{"1":{"volume":100}},"G5":{"1":{"volume":100}},"H5":{"1":{"volume":100}},"A6":{"1":{"volume":100}},"B6":{"1":{"volume":100}},"C6":{"1":{"volume":100}},"D6":{"1":{"volume":100}},"E6":{"1":{"volume":100}},"F6":{"1":{"volume":100}},"G6":{"1":{"volume":100}},"H6":{"1":{"volume":100}}}},"savedStepForms":{"__INITIAL_DECK_SETUP_STEP__":{"stepType":"manualIntervention","id":"__INITIAL_DECK_SETUP_STEP__","labwareLocationUpdate":{"fixedTrash":"12","a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1":"5","0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":"6"},"pipetteLocationUpdate":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":"left","1b766d4d-ba31-42cc-a49a-73e9d8c67aca":"right"},"moduleLocationUpdate":{"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType":"1","8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType":"9","b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType":"3","a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType":"span7_8_10_11"}},"8506adb8-05bc-49cd-a159-f1af3623012f":{"id":"8506adb8-05bc-49cd-a159-f1af3623012f","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"28f5eb49-8cac-4658-aa04-2021277f6026":{"id":"28f5eb49-8cac-4658-aa04-2021277f6026","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":false,"blockTargetTemp":null,"lidIsActive":false,"lidTargetTemp":null,"lidOpen":true,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null},"5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0":{"id":"5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":"20","changeTip":"once","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","dispense_wells":["A4"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"ba4d8515-524b-41cd-9953-72fe308e69f0":{"id":"ba4d8515-524b-41cd-9953-72fe308e69f0","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":"20","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","dispense_wells":["A7"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"6dff24c4-13ad-4a0e-9eb8-66048f96ca0c":{"id":"6dff24c4-13ad-4a0e-9eb8-66048f96ca0c","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":"25","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","dispense_wells":["A3","B3","C3","D3"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"1e9d8a92-e791-452b-9275-638ae8206dda":{"id":"1e9d8a92-e791-452b-9275-638ae8206dda","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":"22","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","dispense_wells":["A7","B7","C7","A8","B8","C8"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827":{"id":"ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":true,"blockTargetTemp":"55","lidIsActive":true,"lidTargetTemp":"50","lidOpen":false,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null},"b07b84ec-f362-440c-b2d8-3949d7169107":{"id":"b07b84ec-f362-440c-b2d8-3949d7169107","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":true,"targetHeaterShakerTemperature":"55","targetSpeed":"1000","setShake":true,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"6231a6a8-e287-4e7b-8536-6aa836e29a59":{"id":"6231a6a8-e287-4e7b-8536-6aa836e29a59","stepType":"pause","stepName":"pause","stepDetails":"","pauseAction":"untilTemperature","pauseHour":null,"pauseMinute":null,"pauseSecond":null,"pauseMessage":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","pauseTemperature":"55"},"bbc840b2-b509-42d9-81dc-428d5c91a978":{"id":"bbc840b2-b509-42d9-81dc-428d5c91a978","stepType":"magnet","stepName":"magnet","stepDetails":"","moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","magnetAction":"engage","engageHeight":"12"},"0431038f-34af-412a-88a6-24a06ce8039f":{"id":"0431038f-34af-412a-88a6-24a06ce8039f","stepType":"temperature","stepName":"temperature","stepDetails":"","moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","setTemperature":"true","targetTemperature":"80"},"230bc077-a866-45f1-a24b-66238c8ce670":{"id":"230bc077-a866-45f1-a24b-66238c8ce670","stepType":"pause","stepName":"pause","stepDetails":"","pauseAction":"untilTemperature","pauseHour":null,"pauseMinute":null,"pauseSecond":null,"pauseMessage":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","pauseTemperature":"80"},"3ef16f4c-15ae-407f-9284-0730fd8160b5":{"id":"3ef16f4c-15ae-407f-9284-0730fd8160b5","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":true,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"f83d54c3-76cf-4be3-ba10-fc551d9ec065":{"id":"f83d54c3-76cf-4be3-ba10-fc551d9ec065","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":false,"blockTargetTemp":null,"lidIsActive":false,"lidTargetTemp":null,"lidOpen":true,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null}},"orderedStepIds":["8506adb8-05bc-49cd-a159-f1af3623012f","28f5eb49-8cac-4658-aa04-2021277f6026","5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0","ba4d8515-524b-41cd-9953-72fe308e69f0","6dff24c4-13ad-4a0e-9eb8-66048f96ca0c","1e9d8a92-e791-452b-9275-638ae8206dda","ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827","b07b84ec-f362-440c-b2d8-3949d7169107","6231a6a8-e287-4e7b-8536-6aa836e29a59","bbc840b2-b509-42d9-81dc-428d5c91a978","0431038f-34af-412a-88a6-24a06ce8039f","230bc077-a866-45f1-a24b-66238c8ce670","3ef16f4c-15ae-407f-9284-0730fd8160b5","f83d54c3-76cf-4be3-ba10-fc551d9ec065"]}},"robot":{"model":"OT-2 Standard","deckId":"ot2_standard"},"pipettes":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":{"name":"p300_multi_gen2"},"1b766d4d-ba31-42cc-a49a-73e9d8c67aca":{"name":"p300_single_gen2"}},"labware":{"fixedTrash":{"displayName":"Trash","definitionId":"opentrons/opentrons_1_trash_1100ml_fixed/1"},"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"displayName":"H/S","definitionId":"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1"},"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"displayName":"Temp","definitionId":"opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1"},"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"displayName":"Mag","definitionId":"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1"},"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"displayName":"Themo","definitionId":"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1"},"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":{"displayName":"L1","definitionId":"opentrons/agilent_1_reservoir_290ml/1"}},"liquids":{"0":{"displayName":"L1","description":"","displayColor":"#b925ff"},"1":{"displayName":"L2","description":"","displayColor":"#ffd600"}},"labwareDefinitions":{"opentrons/opentrons_96_tiprack_300ul/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips"]},"metadata":{"displayName":"Opentrons 96 Tip Rack 300 µL","displayCategory":"tipRack","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":64.49},"wells":{"A1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":74.24,"z":5.39},"B1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":65.24,"z":5.39},"C1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":56.24,"z":5.39},"D1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":47.24,"z":5.39},"E1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":38.24,"z":5.39},"F1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":29.24,"z":5.39},"G1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":20.24,"z":5.39},"H1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":11.24,"z":5.39},"A2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":74.24,"z":5.39},"B2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":65.24,"z":5.39},"C2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":56.24,"z":5.39},"D2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":47.24,"z":5.39},"E2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":38.24,"z":5.39},"F2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":29.24,"z":5.39},"G2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":20.24,"z":5.39},"H2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":11.24,"z":5.39},"A3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":74.24,"z":5.39},"B3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":65.24,"z":5.39},"C3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":56.24,"z":5.39},"D3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":47.24,"z":5.39},"E3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":38.24,"z":5.39},"F3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":29.24,"z":5.39},"G3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":20.24,"z":5.39},"H3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":11.24,"z":5.39},"A4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":74.24,"z":5.39},"B4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":65.24,"z":5.39},"C4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":56.24,"z":5.39},"D4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":47.24,"z":5.39},"E4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":38.24,"z":5.39},"F4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":29.24,"z":5.39},"G4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":20.24,"z":5.39},"H4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":11.24,"z":5.39},"A5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":74.24,"z":5.39},"B5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":65.24,"z":5.39},"C5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":56.24,"z":5.39},"D5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":47.24,"z":5.39},"E5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":38.24,"z":5.39},"F5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":29.24,"z":5.39},"G5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":20.24,"z":5.39},"H5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":11.24,"z":5.39},"A6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":74.24,"z":5.39},"B6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":65.24,"z":5.39},"C6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":56.24,"z":5.39},"D6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":47.24,"z":5.39},"E6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":38.24,"z":5.39},"F6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":29.24,"z":5.39},"G6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":20.24,"z":5.39},"H6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":11.24,"z":5.39},"A7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":74.24,"z":5.39},"B7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":65.24,"z":5.39},"C7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":56.24,"z":5.39},"D7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":47.24,"z":5.39},"E7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":38.24,"z":5.39},"F7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":29.24,"z":5.39},"G7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":20.24,"z":5.39},"H7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":11.24,"z":5.39},"A8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":74.24,"z":5.39},"B8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":65.24,"z":5.39},"C8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":56.24,"z":5.39},"D8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":47.24,"z":5.39},"E8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":38.24,"z":5.39},"F8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":29.24,"z":5.39},"G8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":20.24,"z":5.39},"H8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":11.24,"z":5.39},"A9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":74.24,"z":5.39},"B9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":65.24,"z":5.39},"C9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":56.24,"z":5.39},"D9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":47.24,"z":5.39},"E9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":38.24,"z":5.39},"F9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":29.24,"z":5.39},"G9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":20.24,"z":5.39},"H9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":11.24,"z":5.39},"A10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":74.24,"z":5.39},"B10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":65.24,"z":5.39},"C10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":56.24,"z":5.39},"D10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":47.24,"z":5.39},"E10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":38.24,"z":5.39},"F10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":29.24,"z":5.39},"G10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":20.24,"z":5.39},"H10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":11.24,"z":5.39},"A11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":74.24,"z":5.39},"B11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":65.24,"z":5.39},"C11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":56.24,"z":5.39},"D11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":47.24,"z":5.39},"E11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":38.24,"z":5.39},"F11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":29.24,"z":5.39},"G11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":20.24,"z":5.39},"H11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":11.24,"z":5.39},"A12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":74.24,"z":5.39},"B12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":65.24,"z":5.39},"C12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":56.24,"z":5.39},"D12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":47.24,"z":5.39},"E12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":38.24,"z":5.39},"F12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":29.24,"z":5.39},"G12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":20.24,"z":5.39},"H12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":11.24,"z":5.39}},"groups":[{"metadata":{},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":true,"tipLength":59.3,"tipOverlap":7.47,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_tiprack_300ul"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_1_trash_1100ml_fixed/1":{"ordering":[["A1"]],"metadata":{"displayCategory":"trash","displayVolumeUnits":"mL","displayName":"Opentrons Fixed Trash","tags":[]},"schemaVersion":2,"version":1,"namespace":"opentrons","dimensions":{"xDimension":172.86,"yDimension":165.86,"zDimension":82},"parameters":{"format":"trash","isTiprack":false,"loadName":"opentrons_1_trash_1100ml_fixed","isMagneticModuleCompatible":false,"quirks":["fixedTrash","centerMultichannelOnWells","touchTipDisabled"]},"wells":{"A1":{"shape":"rectangular","yDimension":165.67,"xDimension":107.11,"totalLiquidVolume":1100000,"depth":0,"x":82.84,"y":80,"z":82}},"brand":{"brand":"Opentrons"},"groups":[{"wells":["A1"],"metadata":{}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":[]},"metadata":{"displayName":"Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL","displayCategory":"aluminumBlock","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.6,"yDimension":85.3,"zDimension":42.25},"wells":{"A1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":74.15,"z":4.25},"B1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":65.15,"z":4.25},"C1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":56.15,"z":4.25},"D1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":47.15,"z":4.25},"E1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":38.15,"z":4.25},"F1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":29.15,"z":4.25},"G1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":20.15,"z":4.25},"H1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":11.15,"z":4.25},"A2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":74.15,"z":4.25},"B2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":65.15,"z":4.25},"C2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":56.15,"z":4.25},"D2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":47.15,"z":4.25},"E2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":38.15,"z":4.25},"F2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":29.15,"z":4.25},"G2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":20.15,"z":4.25},"H2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":11.15,"z":4.25},"A3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":74.15,"z":4.25},"B3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":65.15,"z":4.25},"C3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":56.15,"z":4.25},"D3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":47.15,"z":4.25},"E3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":38.15,"z":4.25},"F3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":29.15,"z":4.25},"G3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":20.15,"z":4.25},"H3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":11.15,"z":4.25},"A4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":74.15,"z":4.25},"B4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":65.15,"z":4.25},"C4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":56.15,"z":4.25},"D4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":47.15,"z":4.25},"E4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":38.15,"z":4.25},"F4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":29.15,"z":4.25},"G4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":20.15,"z":4.25},"H4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":11.15,"z":4.25},"A5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":74.15,"z":4.25},"B5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":65.15,"z":4.25},"C5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":56.15,"z":4.25},"D5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":47.15,"z":4.25},"E5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":38.15,"z":4.25},"F5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":29.15,"z":4.25},"G5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":20.15,"z":4.25},"H5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":11.15,"z":4.25},"A6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":74.15,"z":4.25},"B6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":65.15,"z":4.25},"C6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":56.15,"z":4.25},"D6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":47.15,"z":4.25},"E6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":38.15,"z":4.25},"F6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":29.15,"z":4.25},"G6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":20.15,"z":4.25},"H6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":11.15,"z":4.25},"A7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":74.15,"z":4.25},"B7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":65.15,"z":4.25},"C7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":56.15,"z":4.25},"D7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":47.15,"z":4.25},"E7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":38.15,"z":4.25},"F7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":29.15,"z":4.25},"G7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":20.15,"z":4.25},"H7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":11.15,"z":4.25},"A8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":74.15,"z":4.25},"B8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":65.15,"z":4.25},"C8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":56.15,"z":4.25},"D8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":47.15,"z":4.25},"E8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":38.15,"z":4.25},"F8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":29.15,"z":4.25},"G8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":20.15,"z":4.25},"H8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":11.15,"z":4.25},"A9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":74.15,"z":4.25},"B9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":65.15,"z":4.25},"C9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":56.15,"z":4.25},"D9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":47.15,"z":4.25},"E9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":38.15,"z":4.25},"F9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":29.15,"z":4.25},"G9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":20.15,"z":4.25},"H9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":11.15,"z":4.25},"A10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":74.15,"z":4.25},"B10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":65.15,"z":4.25},"C10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":56.15,"z":4.25},"D10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":47.15,"z":4.25},"E10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":38.15,"z":4.25},"F10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":29.15,"z":4.25},"G10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":20.15,"z":4.25},"H10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":11.15,"z":4.25},"A11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":74.15,"z":4.25},"B11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":65.15,"z":4.25},"C11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":56.15,"z":4.25},"D11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":47.15,"z":4.25},"E11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":38.15,"z":4.25},"F11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":29.15,"z":4.25},"G11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":20.15,"z":4.25},"H11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":11.15,"z":4.25},"A12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":74.15,"z":4.25},"B12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":65.15,"z":4.25},"C12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":56.15,"z":4.25},"D12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":47.15,"z":4.25},"E12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":38.15,"z":4.25},"F12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":29.15,"z":4.25},"G12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":20.15,"z":4.25},"H12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":11.15,"z":4.25}},"groups":[{"metadata":{"displayName":"NEST 96 Deepwell Plate 2mL","displayCategory":"wellPlate","wellBottomShape":"v"},"brand":{"brand":"NEST","brandId":["503501","503001"],"links":["http://www.cell-nest.com/page94?product_id=101&_l=en"]},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","quirks":[],"isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"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"]],"schemaVersion":2,"version":1,"namespace":"opentrons","metadata":{"displayName":"Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap","displayVolumeUnits":"mL","displayCategory":"aluminumBlock","tags":[]},"dimensions":{"xDimension":127.75,"yDimension":85.5,"zDimension":42},"parameters":{"format":"irregular","isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_24_aluminumblock_generic_2ml_screwcap"},"wells":{"D1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":16.88,"z":6.7},"C1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":34.13,"z":6.7},"B1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":51.38,"z":6.7},"A1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":68.63,"z":6.7},"D2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":16.88,"z":6.7},"C2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":34.13,"z":6.7},"B2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":51.38,"z":6.7},"A2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":68.63,"z":6.7},"D3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":16.88,"z":6.7},"C3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":34.13,"z":6.7},"B3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":51.38,"z":6.7},"A3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":68.63,"z":6.7},"D4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":16.88,"z":6.7},"C4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":34.13,"z":6.7},"B4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":51.38,"z":6.7},"A4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":68.63,"z":6.7},"D5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":16.88,"z":6.7},"C5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":34.13,"z":6.7},"B5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":51.38,"z":6.7},"A5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":68.63,"z":6.7},"D6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":16.88,"z":6.7},"C6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":34.13,"z":6.7},"B6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":51.38,"z":6.7},"A6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":68.63,"z":6.7}},"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set"]},"groups":[{"wells":["A1","B1","C1","D1","A2","B2","C2","D2","A3","B3","C3","D3","A4","B4","C4","D4","A5","B5","C5","D5","A6","B6","C6","D6"],"metadata":{"displayName":"Generic 2 mL Screwcap","displayCategory":"tubeRack","wellBottomShape":"v"},"brand":{"brand":"generic","brandId":[],"links":[]}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"NEST","brandId":["402501"],"links":["http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96"]},"metadata":{"displayName":"NEST 96 Well Plate 100 µL PCR Full Skirt","displayCategory":"wellPlate","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":15.7},"wells":{"A1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":74.24,"z":0.92},"B1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":65.24,"z":0.92},"C1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":56.24,"z":0.92},"D1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":47.24,"z":0.92},"E1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":38.24,"z":0.92},"F1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":29.24,"z":0.92},"G1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":20.24,"z":0.92},"H1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":11.24,"z":0.92},"A2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":74.24,"z":0.92},"B2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":65.24,"z":0.92},"C2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":56.24,"z":0.92},"D2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":47.24,"z":0.92},"E2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":38.24,"z":0.92},"F2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":29.24,"z":0.92},"G2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":20.24,"z":0.92},"H2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":11.24,"z":0.92},"A3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":74.24,"z":0.92},"B3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":65.24,"z":0.92},"C3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":56.24,"z":0.92},"D3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":47.24,"z":0.92},"E3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":38.24,"z":0.92},"F3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":29.24,"z":0.92},"G3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":20.24,"z":0.92},"H3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":11.24,"z":0.92},"A4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":74.24,"z":0.92},"B4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":65.24,"z":0.92},"C4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":56.24,"z":0.92},"D4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":47.24,"z":0.92},"E4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":38.24,"z":0.92},"F4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":29.24,"z":0.92},"G4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":20.24,"z":0.92},"H4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":11.24,"z":0.92},"A5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":74.24,"z":0.92},"B5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":65.24,"z":0.92},"C5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":56.24,"z":0.92},"D5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":47.24,"z":0.92},"E5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":38.24,"z":0.92},"F5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":29.24,"z":0.92},"G5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":20.24,"z":0.92},"H5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":11.24,"z":0.92},"A6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":74.24,"z":0.92},"B6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":65.24,"z":0.92},"C6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":56.24,"z":0.92},"D6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":47.24,"z":0.92},"E6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":38.24,"z":0.92},"F6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":29.24,"z":0.92},"G6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":20.24,"z":0.92},"H6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":11.24,"z":0.92},"A7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":74.24,"z":0.92},"B7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":65.24,"z":0.92},"C7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":56.24,"z":0.92},"D7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":47.24,"z":0.92},"E7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":38.24,"z":0.92},"F7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":29.24,"z":0.92},"G7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":20.24,"z":0.92},"H7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":11.24,"z":0.92},"A8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":74.24,"z":0.92},"B8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":65.24,"z":0.92},"C8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":56.24,"z":0.92},"D8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":47.24,"z":0.92},"E8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":38.24,"z":0.92},"F8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":29.24,"z":0.92},"G8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":20.24,"z":0.92},"H8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":11.24,"z":0.92},"A9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":74.24,"z":0.92},"B9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":65.24,"z":0.92},"C9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":56.24,"z":0.92},"D9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":47.24,"z":0.92},"E9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":38.24,"z":0.92},"F9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":29.24,"z":0.92},"G9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":20.24,"z":0.92},"H9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":11.24,"z":0.92},"A10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":74.24,"z":0.92},"B10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":65.24,"z":0.92},"C10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":56.24,"z":0.92},"D10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":47.24,"z":0.92},"E10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":38.24,"z":0.92},"F10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":29.24,"z":0.92},"G10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":20.24,"z":0.92},"H10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":11.24,"z":0.92},"A11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":74.24,"z":0.92},"B11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":65.24,"z":0.92},"C11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":56.24,"z":0.92},"D11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":47.24,"z":0.92},"E11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":38.24,"z":0.92},"F11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":29.24,"z":0.92},"G11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":20.24,"z":0.92},"H11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":11.24,"z":0.92},"A12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":74.24,"z":0.92},"B12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":65.24,"z":0.92},"C12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":56.24,"z":0.92},"D12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":47.24,"z":0.92},"E12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":38.24,"z":0.92},"F12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":29.24,"z":0.92},"G12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":20.24,"z":0.92},"H12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":11.24,"z":0.92}},"groups":[{"metadata":{"wellBottomShape":"v"},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":false,"isMagneticModuleCompatible":true,"magneticModuleEngageHeight":20,"loadName":"nest_96_wellplate_100ul_pcr_full_skirt"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/agilent_1_reservoir_290ml/1":{"ordering":[["A1"]],"brand":{"brand":"Agilent","brandId":["201252-100"],"links":["https://www.agilent.com/store/en_US/Prod-201252-100/201252-100"]},"metadata":{"displayName":"Agilent 1 Well Reservoir 290 mL","displayCategory":"reservoir","displayVolumeUnits":"mL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.57,"zDimension":44.04},"wells":{"A1":{"depth":39.22,"shape":"rectangular","xDimension":108,"yDimension":72,"totalLiquidVolume":290000,"x":63.88,"y":42.785,"z":4.82}},"groups":[{"wells":["A1"],"metadata":{"wellBottomShape":"v"}}],"parameters":{"format":"trough","isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"agilent_1_reservoir_290ml","quirks":["centerMultichannelOnWells","touchTipDisabled"]},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}}},"$otSharedSchema":"#/protocol/schemas/6","schemaVersion":6,"modules":{"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType":{"model":"heaterShakerModuleV1"},"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType":{"model":"magneticModuleV1"},"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType":{"model":"temperatureModuleV1"},"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType":{"model":"thermocyclerModuleV1"}},"commands":[{"key":"9fb4e8f4-186e-4063-aafe-847b7f5f5cad","commandType":"loadPipette","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","mount":"left"}},{"key":"789dde75-0ec2-490c-ab51-16f0d162e638","commandType":"loadPipette","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","mount":"right"}},{"key":"42b2a4d7-403c-43bd-bc44-e61930576339","commandType":"loadModule","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","location":{"slotName":"1"}}},{"key":"5518b369-b938-4ac4-b2ba-adde29927e2a","commandType":"loadModule","params":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","location":{"slotName":"9"}}},{"key":"40f6b56d-05f1-46ab-a262-24601afb0f51","commandType":"loadModule","params":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","location":{"slotName":"3"}}},{"key":"3ae25b1b-2242-423a-8fb4-3f682dececd0","commandType":"loadModule","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","location":{"slotName":"7"}}},{"key":"d458d31a-bf76-40ec-97e5-113e27bea5fd","commandType":"loadLabware","params":{"labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"5"}}},{"key":"4cc07fbd-92e7-4454-ab09-2d150afbfee6","commandType":"loadLabware","params":{"labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","location":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}}},{"key":"7084ef04-3926-4bdb-bfba-0cef939464bd","commandType":"loadLabware","params":{"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","location":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType"}}},{"key":"416661fd-3da9-4f83-9401-18454a9a18e2","commandType":"loadLabware","params":{"labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","location":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType"}}},{"key":"f9b8458a-cf8b-47f9-8726-70364a361821","commandType":"loadLabware","params":{"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","location":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}}},{"key":"e6b14558-83dd-46a0-88a8-7e7dc38a8869","commandType":"loadLabware","params":{"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","location":{"slotName":"6"}}},{"commandType":"loadLiquid","key":"2da37722-8a55-4955-aace-409ba03378df","params":{"liquidId":"1","labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","volumeByWell":{"A1":300,"B1":300,"C1":300,"D1":300,"A2":300,"B2":300,"C2":300,"D2":300}}},{"commandType":"loadLiquid","key":"8c92f196-8a7f-47b2-83d3-1526db9a39db","params":{"liquidId":"1","labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","volumeByWell":{"A1":20,"B1":20,"C1":20,"D1":20,"E1":20,"F1":20,"G1":20,"H1":20,"A2":20,"B2":20,"C2":20,"D2":20,"E2":20,"F2":20,"G2":20,"H2":20,"A3":20,"B3":20,"C3":20,"D3":20,"E3":20,"F3":20,"G3":20,"H3":20}}},{"commandType":"loadLiquid","key":"9d29b8c9-0f68-4d9a-89ac-c3509674d6ab","params":{"liquidId":"1","labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100,"A4":100,"B4":100,"C4":100,"D4":100,"E4":100,"F4":100,"G4":100,"H4":100,"A5":100,"B5":100,"C5":100,"D5":100,"E5":100,"F5":100,"G5":100,"H5":100,"A6":100,"B6":100,"C6":100,"D6":100,"E6":100,"F6":100,"G6":100,"H6":100}}},{"commandType":"loadLiquid","key":"d9c86281-67c0-432a-8fb2-3a200f280e5e","params":{"liquidId":"1","labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100,"A4":100,"B4":100,"C4":100,"D4":100,"E4":100,"F4":100,"G4":100,"H4":100,"A5":100,"B5":100,"C5":100,"D5":100,"E5":100,"F5":100,"G5":100,"H5":100,"A6":100,"B6":100,"C6":100,"D6":100,"E6":100,"F6":100,"G6":100,"H6":100}}},{"commandType":"loadLiquid","key":"b000cefe-8e3e-45d3-85e3-efe29e8ed4ec","params":{"liquidId":"0","labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","volumeByWell":{"A1":29000}}},{"commandType":"heaterShaker/closeLabwareLatch","key":"57a860ec-3a3f-4b94-804d-dc4ebc3913cb","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"30cddb2c-0a38-4d81-a8aa-1f355895dbe9","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"ef4ce9a1-61e7-4aed-a4ae-24c066236368","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"thermocycler/openLid","key":"8f2eb96e-eb4c-476e-8bdf-0d27684beb09","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"pickUpTip","key":"9583b372-b0a7-407a-b4a5-e847dd691beb","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A1"}},{"commandType":"aspirate","key":"55fc7a88-02c8-45ef-87f6-a44c8f3d11db","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":94}},{"commandType":"dispense","key":"e004e404-9481-4c56-ad5a-96a37a6b81c9","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","wellName":"A4","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":94}},{"commandType":"dropTip","key":"fa620ea5-73c3-419f-8c37-197bbfb45d45","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"37f23342-5406-43c4-9d2b-4f8e66a9b372","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A2"}},{"commandType":"aspirate","key":"3d949fd7-45f8-4b57-a02d-3e5462d92483","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":94}},{"commandType":"dispense","key":"39106345-35da-49ce-9683-8f0d551cb98f","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":94}},{"commandType":"dropTip","key":"9b7b49e5-8923-4e11-bf18-3da29a7ddf77","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"0c165af0-08c0-4c5d-937a-4709e02ca85f","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A3"}},{"commandType":"aspirate","key":"aaeae20e-8acb-4af0-a03e-676ed9451166","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"a36a645b-9d7f-41c3-b04b-1785fb3001b9","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"A3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"f1816015-6ada-48e7-b879-4a2ea647339e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"f731b034-77de-4a42-bf48-3bb52b28bd45","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"B3"}},{"commandType":"aspirate","key":"0abfe1b2-89a4-4e6c-8078-a811dace2224","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"961ab4c8-da15-4350-ae65-470efc9b2238","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"B3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"cbd55095-b432-41eb-ab53-109553e27b6a","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"2144b06e-e692-466d-a802-6f60db8d6df3","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"C3"}},{"commandType":"aspirate","key":"fc30f4e1-2e26-4cfc-95b7-abd1cdab5add","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"81707a0d-d590-4c95-9ea2-288e61244e23","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"C3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"e86624e9-17b4-4e4c-a818-99aa3b7203b4","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"05753124-aa01-48c8-805f-ff3c76b50ad2","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"D3"}},{"commandType":"aspirate","key":"e56550a7-3894-4060-b8e9-6133aba946de","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"b241d60c-4cec-4a73-b9c4-d787747125f5","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"D3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"3df64ca9-dc43-4eb6-94b6-09ad696e3e2e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"7d471a9a-2a78-4cab-85d9-ef537f01135e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"E3"}},{"commandType":"aspirate","key":"1ebef344-1ba8-40dc-b233-c71095d643a1","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"aee40692-f291-49f5-bb64-051378a356c7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"12e5aed2-bcca-4b5b-968b-9cce7d9cb6c7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"676d87a5-ed43-48b6-9fd7-b17fff53c880","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"F3"}},{"commandType":"aspirate","key":"5adde3d5-486c-479a-a629-4fd1cd87fa55","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"c21b4b82-8815-4515-9fa4-7097dec1bae2","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"B7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"cb2f4bdf-a782-4a68-8bbd-75b65d850d0f","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"aed095a1-b724-40f8-a1d9-f24820f168ef","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"G3"}},{"commandType":"aspirate","key":"046acfb4-c45e-473c-bfce-7a213e8f2974","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"56c2571e-dde2-4d24-9337-9003e81bee74","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"C7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"f1f78069-805a-4db6-90d6-cb81e937d763","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"daa6b107-d891-4a54-9d68-61fc7a1e3107","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"H3"}},{"commandType":"aspirate","key":"cd45c8ac-3dd7-4d86-b613-9fcd6f7d5542","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"638e754d-5b83-40c0-a6da-3fcdf5da9dda","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"a4fbcb43-71a0-4794-84fe-39a01fb6c5e4","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"c6d2672b-fcaa-4ff1-a12b-7d9b4fd5d89e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A4"}},{"commandType":"aspirate","key":"590a191d-51ab-4915-a1a4-944bb8142356","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"edac7a4f-a283-475c-8c59-bbf91a26c7f3","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"B8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"d1f57a8a-040d-4f1d-996a-b8b612ee8fe7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"703ed8a5-52d8-45a4-a2e3-965c042b0491","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"B4"}},{"commandType":"aspirate","key":"04316379-9994-4d5b-ac86-99fb532eefb5","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"3a8ea7f4-fc66-4654-ba04-dbd9f221e6a7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"C8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"09d2d84e-f07b-4459-b0fe-b0216d254008","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"thermocycler/closeLid","key":"a2fc04dc-f0bf-4b71-a5fb-1334c98197ef","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/setTargetBlockTemperature","key":"d08d218d-1fc4-40c2-9d19-96adcbb9736e","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","celsius":55}},{"commandType":"thermocycler/waitForBlockTemperature","key":"20955b73-7ec4-4170-a05f-329aefefc1ad","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/setTargetLidTemperature","key":"16621d7f-c322-493b-9d2b-b2a90a685ed0","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","celsius":50}},{"commandType":"thermocycler/waitForLidTemperature","key":"50451d2b-8f9a-4101-b6ad-e3308d492276","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"heaterShaker/closeLabwareLatch","key":"c4232439-eaf7-4e03-a834-35949ebceced","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/setTargetTemperature","key":"c055f48a-6e1f-40e7-a254-b1e379c8ff43","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","celsius":55}},{"commandType":"heaterShaker/waitForTemperature","key":"be5b2593-b645-4b0f-9593-c0186d5a340d","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/setAndWaitForShakeSpeed","key":"bf177287-c03d-4ba6-b8ab-27eb63d58dc4","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","rpm":1000}},{"commandType":"heaterShaker/waitForTemperature","key":"a08dddce-7364-44c9-bce7-8e7ecb0f35c2","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"magneticModule/engage","key":"b1b75cbb-e388-4f3a-aa0f-297ecadf1ae4","params":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","height":12}},{"commandType":"temperatureModule/setTargetTemperature","key":"8d2e3b47-7396-4c30-aa08-4b590bcbc967","params":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","celsius":80}},{"commandType":"heaterShaker/waitForTemperature","key":"39aba9eb-2506-4ecf-9c98-adcfd0e7aac6","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/openLabwareLatch","key":"675eb8be-6c85-4204-9c87-d7fdd522f580","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"89eb894c-fbd1-4748-997b-eafc3d2e6feb","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"7500052e-ea05-4ed7-ac2b-691890d96d5c","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"thermocycler/openLid","key":"a9f540e3-209d-4dbf-8abc-31dde947f317","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/deactivateBlock","key":"d029e789-dcc4-4f56-a306-1098b34bce3e","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/deactivateLid","key":"b8fb1676-e65b-47fd-aa2a-1b447d26820f","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}}]} \ No newline at end of file +{"metadata":{"protocolName":"All mods","author":"","description":"","created":1660661146739,"lastModified":1660661894787,"category":null,"subcategory":null,"tags":[]},"designerApplication":{"name":"opentrons/protocol-designer","version":"6.0.0","data":{"_internalAppBuildDate":"Mon, 08 Aug 2022 21:31:42 GMT","defaultValues":{"aspirate_mmFromBottom":1,"dispense_mmFromBottom":0.5,"touchTip_mmFromTop":-1,"blowout_mmFromTop":0},"pipetteTiprackAssignments":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":"opentrons/opentrons_96_tiprack_300ul/1","1b766d4d-ba31-42cc-a49a-73e9d8c67aca":"opentrons/opentrons_96_tiprack_300ul/1"},"dismissedWarnings":{"form":{},"timeline":{}},"ingredients":{"0":{"name":"L1","displayColor":"#b925ff","description":null,"serialize":false,"liquidGroupId":"0"},"1":{"name":"L2","displayColor":"#ffd600","description":null,"serialize":false,"liquidGroupId":"1"}},"ingredLocations":{"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":{"A1":{"0":{"volume":29000}}},"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"A1":{"1":{"volume":300}},"B1":{"1":{"volume":300}},"C1":{"1":{"volume":300}},"D1":{"1":{"volume":300}},"A2":{"1":{"volume":300}},"B2":{"1":{"volume":300}},"C2":{"1":{"volume":300}},"D2":{"1":{"volume":300}}},"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"A1":{"1":{"volume":20}},"B1":{"1":{"volume":20}},"C1":{"1":{"volume":20}},"D1":{"1":{"volume":20}},"E1":{"1":{"volume":20}},"F1":{"1":{"volume":20}},"G1":{"1":{"volume":20}},"H1":{"1":{"volume":20}},"A2":{"1":{"volume":20}},"B2":{"1":{"volume":20}},"C2":{"1":{"volume":20}},"D2":{"1":{"volume":20}},"E2":{"1":{"volume":20}},"F2":{"1":{"volume":20}},"G2":{"1":{"volume":20}},"H2":{"1":{"volume":20}},"A3":{"1":{"volume":20}},"B3":{"1":{"volume":20}},"C3":{"1":{"volume":20}},"D3":{"1":{"volume":20}},"E3":{"1":{"volume":20}},"F3":{"1":{"volume":20}},"G3":{"1":{"volume":20}},"H3":{"1":{"volume":20}}},"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"A1":{"1":{"volume":100}},"B1":{"1":{"volume":100}},"C1":{"1":{"volume":100}},"D1":{"1":{"volume":100}},"E1":{"1":{"volume":100}},"F1":{"1":{"volume":100}},"G1":{"1":{"volume":100}},"H1":{"1":{"volume":100}},"A2":{"1":{"volume":100}},"B2":{"1":{"volume":100}},"C2":{"1":{"volume":100}},"D2":{"1":{"volume":100}},"E2":{"1":{"volume":100}},"F2":{"1":{"volume":100}},"G2":{"1":{"volume":100}},"H2":{"1":{"volume":100}},"A3":{"1":{"volume":100}},"B3":{"1":{"volume":100}},"C3":{"1":{"volume":100}},"D3":{"1":{"volume":100}},"E3":{"1":{"volume":100}},"F3":{"1":{"volume":100}},"G3":{"1":{"volume":100}},"H3":{"1":{"volume":100}},"A4":{"1":{"volume":100}},"B4":{"1":{"volume":100}},"C4":{"1":{"volume":100}},"D4":{"1":{"volume":100}},"E4":{"1":{"volume":100}},"F4":{"1":{"volume":100}},"G4":{"1":{"volume":100}},"H4":{"1":{"volume":100}},"A5":{"1":{"volume":100}},"B5":{"1":{"volume":100}},"C5":{"1":{"volume":100}},"D5":{"1":{"volume":100}},"E5":{"1":{"volume":100}},"F5":{"1":{"volume":100}},"G5":{"1":{"volume":100}},"H5":{"1":{"volume":100}},"A6":{"1":{"volume":100}},"B6":{"1":{"volume":100}},"C6":{"1":{"volume":100}},"D6":{"1":{"volume":100}},"E6":{"1":{"volume":100}},"F6":{"1":{"volume":100}},"G6":{"1":{"volume":100}},"H6":{"1":{"volume":100}}},"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"A1":{"1":{"volume":100}},"B1":{"1":{"volume":100}},"C1":{"1":{"volume":100}},"D1":{"1":{"volume":100}},"E1":{"1":{"volume":100}},"F1":{"1":{"volume":100}},"G1":{"1":{"volume":100}},"H1":{"1":{"volume":100}},"A2":{"1":{"volume":100}},"B2":{"1":{"volume":100}},"C2":{"1":{"volume":100}},"D2":{"1":{"volume":100}},"E2":{"1":{"volume":100}},"F2":{"1":{"volume":100}},"G2":{"1":{"volume":100}},"H2":{"1":{"volume":100}},"A3":{"1":{"volume":100}},"B3":{"1":{"volume":100}},"C3":{"1":{"volume":100}},"D3":{"1":{"volume":100}},"E3":{"1":{"volume":100}},"F3":{"1":{"volume":100}},"G3":{"1":{"volume":100}},"H3":{"1":{"volume":100}},"A4":{"1":{"volume":100}},"B4":{"1":{"volume":100}},"C4":{"1":{"volume":100}},"D4":{"1":{"volume":100}},"E4":{"1":{"volume":100}},"F4":{"1":{"volume":100}},"G4":{"1":{"volume":100}},"H4":{"1":{"volume":100}},"A5":{"1":{"volume":100}},"B5":{"1":{"volume":100}},"C5":{"1":{"volume":100}},"D5":{"1":{"volume":100}},"E5":{"1":{"volume":100}},"F5":{"1":{"volume":100}},"G5":{"1":{"volume":100}},"H5":{"1":{"volume":100}},"A6":{"1":{"volume":100}},"B6":{"1":{"volume":100}},"C6":{"1":{"volume":100}},"D6":{"1":{"volume":100}},"E6":{"1":{"volume":100}},"F6":{"1":{"volume":100}},"G6":{"1":{"volume":100}},"H6":{"1":{"volume":100}}}},"savedStepForms":{"__INITIAL_DECK_SETUP_STEP__":{"stepType":"manualIntervention","id":"__INITIAL_DECK_SETUP_STEP__","labwareLocationUpdate":{"fixedTrash":"12","a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1":"5","0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":"6"},"pipetteLocationUpdate":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":"left","1b766d4d-ba31-42cc-a49a-73e9d8c67aca":"right"},"moduleLocationUpdate":{"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType":"1","8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType":"9","b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType":"3","a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType":"span7_8_10_11"}},"8506adb8-05bc-49cd-a159-f1af3623012f":{"id":"8506adb8-05bc-49cd-a159-f1af3623012f","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"28f5eb49-8cac-4658-aa04-2021277f6026":{"id":"28f5eb49-8cac-4658-aa04-2021277f6026","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":false,"blockTargetTemp":null,"lidIsActive":false,"lidTargetTemp":null,"lidOpen":true,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null},"5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0":{"id":"5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":"20","changeTip":"once","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","dispense_wells":["A4"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"ba4d8515-524b-41cd-9953-72fe308e69f0":{"id":"ba4d8515-524b-41cd-9953-72fe308e69f0","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":"20","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","dispense_wells":["A7"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"6dff24c4-13ad-4a0e-9eb8-66048f96ca0c":{"id":"6dff24c4-13ad-4a0e-9eb8-66048f96ca0c","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":"25","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","dispense_wells":["A3","B3","C3","D3"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"1e9d8a92-e791-452b-9275-638ae8206dda":{"id":"1e9d8a92-e791-452b-9275-638ae8206dda","stepType":"moveLiquid","stepName":"transfer","stepDetails":"","pipette":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":"22","changeTip":"always","path":"single","aspirate_wells_grouped":false,"aspirate_flowRate":null,"aspirate_labware":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","aspirate_wells":["A1"],"aspirate_wellOrder_first":"t2b","aspirate_wellOrder_second":"l2r","aspirate_mix_checkbox":false,"aspirate_mix_times":null,"aspirate_mix_volume":null,"aspirate_mmFromBottom":null,"aspirate_touchTip_checkbox":false,"aspirate_touchTip_mmFromBottom":null,"dispense_flowRate":null,"dispense_labware":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","dispense_wells":["A7","B7","C7","A8","B8","C8"],"dispense_wellOrder_first":"t2b","dispense_wellOrder_second":"l2r","dispense_mix_checkbox":false,"dispense_mix_times":null,"dispense_mix_volume":null,"dispense_mmFromBottom":null,"dispense_touchTip_checkbox":false,"dispense_touchTip_mmFromBottom":null,"disposalVolume_checkbox":true,"disposalVolume_volume":"20","blowout_checkbox":false,"blowout_location":"fixedTrash","preWetTip":false,"aspirate_airGap_checkbox":false,"aspirate_airGap_volume":"20","aspirate_delay_checkbox":false,"aspirate_delay_mmFromBottom":null,"aspirate_delay_seconds":"1","dispense_airGap_checkbox":false,"dispense_airGap_volume":"20","dispense_delay_checkbox":false,"dispense_delay_seconds":"1","dispense_delay_mmFromBottom":null},"ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827":{"id":"ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":true,"blockTargetTemp":"55","lidIsActive":true,"lidTargetTemp":"50","lidOpen":false,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null},"b07b84ec-f362-440c-b2d8-3949d7169107":{"id":"b07b84ec-f362-440c-b2d8-3949d7169107","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":true,"targetHeaterShakerTemperature":"55","targetSpeed":"1000","setShake":true,"latchOpen":false,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"6231a6a8-e287-4e7b-8536-6aa836e29a59":{"id":"6231a6a8-e287-4e7b-8536-6aa836e29a59","stepType":"pause","stepName":"pause","stepDetails":"","pauseAction":"untilTemperature","pauseHour":null,"pauseMinute":null,"pauseSecond":null,"pauseMessage":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","pauseTemperature":"55"},"bbc840b2-b509-42d9-81dc-428d5c91a978":{"id":"bbc840b2-b509-42d9-81dc-428d5c91a978","stepType":"magnet","stepName":"magnet","stepDetails":"","moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","magnetAction":"engage","engageHeight":"12"},"0431038f-34af-412a-88a6-24a06ce8039f":{"id":"0431038f-34af-412a-88a6-24a06ce8039f","stepType":"temperature","stepName":"temperature","stepDetails":"","moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","setTemperature":"true","targetTemperature":"80"},"230bc077-a866-45f1-a24b-66238c8ce670":{"id":"230bc077-a866-45f1-a24b-66238c8ce670","stepType":"pause","stepName":"pause","stepDetails":"","pauseAction":"untilTemperature","pauseHour":null,"pauseMinute":null,"pauseSecond":null,"pauseMessage":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","pauseTemperature":"80"},"3ef16f4c-15ae-407f-9284-0730fd8160b5":{"id":"3ef16f4c-15ae-407f-9284-0730fd8160b5","stepType":"heaterShaker","stepName":"heater-shaker","stepDetails":"","moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","setHeaterShakerTemperature":null,"targetHeaterShakerTemperature":null,"targetSpeed":null,"setShake":null,"latchOpen":true,"heaterShakerSetTimer":null,"heaterShakerTimerMinutes":null,"heaterShakerTimerSeconds":null},"f83d54c3-76cf-4be3-ba10-fc551d9ec065":{"id":"f83d54c3-76cf-4be3-ba10-fc551d9ec065","stepType":"thermocycler","stepName":"thermocycler","stepDetails":"","thermocyclerFormType":"thermocyclerState","moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","blockIsActive":false,"blockTargetTemp":null,"lidIsActive":false,"lidTargetTemp":null,"lidOpen":true,"profileVolume":null,"profileTargetLidTemp":null,"orderedProfileItems":[],"profileItemsById":{},"blockIsActiveHold":false,"blockTargetTempHold":null,"lidIsActiveHold":false,"lidTargetTempHold":null,"lidOpenHold":null}},"orderedStepIds":["8506adb8-05bc-49cd-a159-f1af3623012f","28f5eb49-8cac-4658-aa04-2021277f6026","5fe8dbb8-ccae-4ca8-8015-7d53fd182cb0","ba4d8515-524b-41cd-9953-72fe308e69f0","6dff24c4-13ad-4a0e-9eb8-66048f96ca0c","1e9d8a92-e791-452b-9275-638ae8206dda","ea9a9a34-6d2d-46f1-b10b-fb5d8d28d827","b07b84ec-f362-440c-b2d8-3949d7169107","6231a6a8-e287-4e7b-8536-6aa836e29a59","bbc840b2-b509-42d9-81dc-428d5c91a978","0431038f-34af-412a-88a6-24a06ce8039f","230bc077-a866-45f1-a24b-66238c8ce670","3ef16f4c-15ae-407f-9284-0730fd8160b5","f83d54c3-76cf-4be3-ba10-fc551d9ec065"]}},"robot":{"model":"OT-2 Standard","deckId":"ot2_standard"},"pipettes":{"9467efbc-2ad4-40eb-bc05-91c78fd48be2":{"name":"p300_multi_gen2"},"1b766d4d-ba31-42cc-a49a-73e9d8c67aca":{"name":"p300_single_gen2"}},"labware":{"fixedTrash":{"displayName":"Trash","definitionId":"opentrons/opentrons_1_trash_1100ml_fixed/1"},"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1":{"displayName":"Opentrons 96 Tip Rack 300 µL","definitionId":"opentrons/opentrons_96_tiprack_300ul/1"},"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"displayName":"H/S","definitionId":"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1"},"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"displayName":"Temp","definitionId":"opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1"},"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"displayName":"Mag","definitionId":"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1"},"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"displayName":"Themo","definitionId":"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1"},"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1":{"displayName":"L1","definitionId":"opentrons/agilent_1_reservoir_290ml/1"}},"liquids":{"0":{"displayName":"L1","description":"","displayColor":"#b925ff"},"1":{"displayName":"L2","description":"","displayColor":"#ffd600"}},"labwareDefinitions":{"opentrons/opentrons_96_tiprack_300ul/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips"]},"metadata":{"displayName":"Opentrons 96 Tip Rack 300 µL","displayCategory":"tipRack","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":64.49},"wells":{"A1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":74.24,"z":5.39},"B1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":65.24,"z":5.39},"C1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":56.24,"z":5.39},"D1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":47.24,"z":5.39},"E1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":38.24,"z":5.39},"F1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":29.24,"z":5.39},"G1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":20.24,"z":5.39},"H1":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":14.38,"y":11.24,"z":5.39},"A2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":74.24,"z":5.39},"B2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":65.24,"z":5.39},"C2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":56.24,"z":5.39},"D2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":47.24,"z":5.39},"E2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":38.24,"z":5.39},"F2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":29.24,"z":5.39},"G2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":20.24,"z":5.39},"H2":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":23.38,"y":11.24,"z":5.39},"A3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":74.24,"z":5.39},"B3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":65.24,"z":5.39},"C3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":56.24,"z":5.39},"D3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":47.24,"z":5.39},"E3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":38.24,"z":5.39},"F3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":29.24,"z":5.39},"G3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":20.24,"z":5.39},"H3":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":32.38,"y":11.24,"z":5.39},"A4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":74.24,"z":5.39},"B4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":65.24,"z":5.39},"C4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":56.24,"z":5.39},"D4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":47.24,"z":5.39},"E4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":38.24,"z":5.39},"F4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":29.24,"z":5.39},"G4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":20.24,"z":5.39},"H4":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":41.38,"y":11.24,"z":5.39},"A5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":74.24,"z":5.39},"B5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":65.24,"z":5.39},"C5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":56.24,"z":5.39},"D5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":47.24,"z":5.39},"E5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":38.24,"z":5.39},"F5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":29.24,"z":5.39},"G5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":20.24,"z":5.39},"H5":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":50.38,"y":11.24,"z":5.39},"A6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":74.24,"z":5.39},"B6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":65.24,"z":5.39},"C6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":56.24,"z":5.39},"D6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":47.24,"z":5.39},"E6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":38.24,"z":5.39},"F6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":29.24,"z":5.39},"G6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":20.24,"z":5.39},"H6":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":59.38,"y":11.24,"z":5.39},"A7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":74.24,"z":5.39},"B7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":65.24,"z":5.39},"C7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":56.24,"z":5.39},"D7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":47.24,"z":5.39},"E7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":38.24,"z":5.39},"F7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":29.24,"z":5.39},"G7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":20.24,"z":5.39},"H7":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":68.38,"y":11.24,"z":5.39},"A8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":74.24,"z":5.39},"B8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":65.24,"z":5.39},"C8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":56.24,"z":5.39},"D8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":47.24,"z":5.39},"E8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":38.24,"z":5.39},"F8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":29.24,"z":5.39},"G8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":20.24,"z":5.39},"H8":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":77.38,"y":11.24,"z":5.39},"A9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":74.24,"z":5.39},"B9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":65.24,"z":5.39},"C9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":56.24,"z":5.39},"D9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":47.24,"z":5.39},"E9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":38.24,"z":5.39},"F9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":29.24,"z":5.39},"G9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":20.24,"z":5.39},"H9":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":86.38,"y":11.24,"z":5.39},"A10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":74.24,"z":5.39},"B10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":65.24,"z":5.39},"C10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":56.24,"z":5.39},"D10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":47.24,"z":5.39},"E10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":38.24,"z":5.39},"F10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":29.24,"z":5.39},"G10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":20.24,"z":5.39},"H10":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":95.38,"y":11.24,"z":5.39},"A11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":74.24,"z":5.39},"B11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":65.24,"z":5.39},"C11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":56.24,"z":5.39},"D11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":47.24,"z":5.39},"E11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":38.24,"z":5.39},"F11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":29.24,"z":5.39},"G11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":20.24,"z":5.39},"H11":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":104.38,"y":11.24,"z":5.39},"A12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":74.24,"z":5.39},"B12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":65.24,"z":5.39},"C12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":56.24,"z":5.39},"D12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":47.24,"z":5.39},"E12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":38.24,"z":5.39},"F12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":29.24,"z":5.39},"G12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":20.24,"z":5.39},"H12":{"depth":59.3,"shape":"circular","diameter":5.23,"totalLiquidVolume":300,"x":113.38,"y":11.24,"z":5.39}},"groups":[{"metadata":{},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":true,"tipLength":59.3,"tipOverlap":7.47,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_tiprack_300ul"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_1_trash_1100ml_fixed/1":{"ordering":[["A1"]],"metadata":{"displayCategory":"trash","displayVolumeUnits":"mL","displayName":"Opentrons Fixed Trash","tags":[]},"schemaVersion":2,"version":1,"namespace":"opentrons","dimensions":{"xDimension":172.86,"yDimension":165.86,"zDimension":82},"parameters":{"format":"trash","isTiprack":false,"loadName":"opentrons_1_trash_1100ml_fixed","isMagneticModuleCompatible":false,"quirks":["fixedTrash","centerMultichannelOnWells","touchTipDisabled"]},"wells":{"A1":{"shape":"rectangular","yDimension":165.67,"xDimension":107.11,"totalLiquidVolume":1100000,"depth":0,"x":82.84,"y":80,"z":82}},"brand":{"brand":"Opentrons"},"groups":[{"wells":["A1"],"metadata":{}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"Opentrons","brandId":[],"links":[]},"metadata":{"displayName":"Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL","displayCategory":"aluminumBlock","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.6,"yDimension":85.3,"zDimension":42.25},"wells":{"A1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":74.15,"z":4.25},"B1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":65.15,"z":4.25},"C1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":56.15,"z":4.25},"D1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":47.15,"z":4.25},"E1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":38.15,"z":4.25},"F1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":29.15,"z":4.25},"G1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":20.15,"z":4.25},"H1":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":14.3,"y":11.15,"z":4.25},"A2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":74.15,"z":4.25},"B2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":65.15,"z":4.25},"C2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":56.15,"z":4.25},"D2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":47.15,"z":4.25},"E2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":38.15,"z":4.25},"F2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":29.15,"z":4.25},"G2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":20.15,"z":4.25},"H2":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":23.3,"y":11.15,"z":4.25},"A3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":74.15,"z":4.25},"B3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":65.15,"z":4.25},"C3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":56.15,"z":4.25},"D3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":47.15,"z":4.25},"E3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":38.15,"z":4.25},"F3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":29.15,"z":4.25},"G3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":20.15,"z":4.25},"H3":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":32.3,"y":11.15,"z":4.25},"A4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":74.15,"z":4.25},"B4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":65.15,"z":4.25},"C4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":56.15,"z":4.25},"D4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":47.15,"z":4.25},"E4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":38.15,"z":4.25},"F4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":29.15,"z":4.25},"G4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":20.15,"z":4.25},"H4":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":41.3,"y":11.15,"z":4.25},"A5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":74.15,"z":4.25},"B5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":65.15,"z":4.25},"C5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":56.15,"z":4.25},"D5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":47.15,"z":4.25},"E5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":38.15,"z":4.25},"F5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":29.15,"z":4.25},"G5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":20.15,"z":4.25},"H5":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":50.3,"y":11.15,"z":4.25},"A6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":74.15,"z":4.25},"B6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":65.15,"z":4.25},"C6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":56.15,"z":4.25},"D6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":47.15,"z":4.25},"E6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":38.15,"z":4.25},"F6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":29.15,"z":4.25},"G6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":20.15,"z":4.25},"H6":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":59.3,"y":11.15,"z":4.25},"A7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":74.15,"z":4.25},"B7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":65.15,"z":4.25},"C7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":56.15,"z":4.25},"D7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":47.15,"z":4.25},"E7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":38.15,"z":4.25},"F7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":29.15,"z":4.25},"G7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":20.15,"z":4.25},"H7":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":68.3,"y":11.15,"z":4.25},"A8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":74.15,"z":4.25},"B8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":65.15,"z":4.25},"C8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":56.15,"z":4.25},"D8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":47.15,"z":4.25},"E8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":38.15,"z":4.25},"F8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":29.15,"z":4.25},"G8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":20.15,"z":4.25},"H8":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":77.3,"y":11.15,"z":4.25},"A9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":74.15,"z":4.25},"B9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":65.15,"z":4.25},"C9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":56.15,"z":4.25},"D9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":47.15,"z":4.25},"E9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":38.15,"z":4.25},"F9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":29.15,"z":4.25},"G9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":20.15,"z":4.25},"H9":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":86.3,"y":11.15,"z":4.25},"A10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":74.15,"z":4.25},"B10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":65.15,"z":4.25},"C10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":56.15,"z":4.25},"D10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":47.15,"z":4.25},"E10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":38.15,"z":4.25},"F10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":29.15,"z":4.25},"G10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":20.15,"z":4.25},"H10":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":95.3,"y":11.15,"z":4.25},"A11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":74.15,"z":4.25},"B11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":65.15,"z":4.25},"C11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":56.15,"z":4.25},"D11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":47.15,"z":4.25},"E11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":38.15,"z":4.25},"F11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":29.15,"z":4.25},"G11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":20.15,"z":4.25},"H11":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":104.3,"y":11.15,"z":4.25},"A12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":74.15,"z":4.25},"B12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":65.15,"z":4.25},"C12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":56.15,"z":4.25},"D12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":47.15,"z":4.25},"E12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":38.15,"z":4.25},"F12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":29.15,"z":4.25},"G12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":20.15,"z":4.25},"H12":{"depth":38,"totalLiquidVolume":2000,"shape":"rectangular","xDimension":8.2,"yDimension":8.2,"x":113.3,"y":11.15,"z":4.25}},"groups":[{"metadata":{"displayName":"NEST 96 Deepwell Plate 2mL","displayCategory":"wellPlate","wellBottomShape":"v"},"brand":{"brand":"NEST","brandId":["503501","503001"],"links":["https://www.nest-biotech.com/deep-well-plates/59253726.html"]},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","quirks":[],"isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1":{"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"]],"schemaVersion":2,"version":1,"namespace":"opentrons","metadata":{"displayName":"Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap","displayVolumeUnits":"mL","displayCategory":"aluminumBlock","tags":[]},"dimensions":{"xDimension":127.75,"yDimension":85.5,"zDimension":42},"parameters":{"format":"irregular","isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"opentrons_24_aluminumblock_generic_2ml_screwcap"},"wells":{"D1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":16.88,"z":6.7},"C1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":34.13,"z":6.7},"B1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":51.38,"z":6.7},"A1":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":20.75,"y":68.63,"z":6.7},"D2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":16.88,"z":6.7},"C2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":34.13,"z":6.7},"B2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":51.38,"z":6.7},"A2":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":38,"y":68.63,"z":6.7},"D3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":16.88,"z":6.7},"C3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":34.13,"z":6.7},"B3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":51.38,"z":6.7},"A3":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":55.25,"y":68.63,"z":6.7},"D4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":16.88,"z":6.7},"C4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":34.13,"z":6.7},"B4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":51.38,"z":6.7},"A4":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":72.5,"y":68.63,"z":6.7},"D5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":16.88,"z":6.7},"C5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":34.13,"z":6.7},"B5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":51.38,"z":6.7},"A5":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":89.75,"y":68.63,"z":6.7},"D6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":16.88,"z":6.7},"C6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":34.13,"z":6.7},"B6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":51.38,"z":6.7},"A6":{"shape":"circular","depth":42,"diameter":8.5,"totalLiquidVolume":2000,"x":107,"y":68.63,"z":6.7}},"brand":{"brand":"Opentrons","brandId":[],"links":["https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set"]},"groups":[{"wells":["A1","B1","C1","D1","A2","B2","C2","D2","A3","B3","C3","D3","A4","B4","C4","D4","A5","B5","C5","D5","A6","B6","C6","D6"],"metadata":{"displayName":"Generic 2 mL Screwcap","displayCategory":"tubeRack","wellBottomShape":"v"},"brand":{"brand":"generic","brandId":[],"links":[]}}],"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1":{"ordering":[["A1","B1","C1","D1","E1","F1","G1","H1"],["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"],["A10","B10","C10","D10","E10","F10","G10","H10"],["A11","B11","C11","D11","E11","F11","G11","H11"],["A12","B12","C12","D12","E12","F12","G12","H12"]],"brand":{"brand":"NEST","brandId":["402501"],"links":["https://www.nest-biotech.com/pcr-plates/58773587.html"]},"metadata":{"displayName":"NEST 96 Well Plate 100 µL PCR Full Skirt","displayCategory":"wellPlate","displayVolumeUnits":"µL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.48,"zDimension":15.7},"wells":{"A1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":74.24,"z":0.92},"B1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":65.24,"z":0.92},"C1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":56.24,"z":0.92},"D1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":47.24,"z":0.92},"E1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":38.24,"z":0.92},"F1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":29.24,"z":0.92},"G1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":20.24,"z":0.92},"H1":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":14.38,"y":11.24,"z":0.92},"A2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":74.24,"z":0.92},"B2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":65.24,"z":0.92},"C2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":56.24,"z":0.92},"D2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":47.24,"z":0.92},"E2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":38.24,"z":0.92},"F2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":29.24,"z":0.92},"G2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":20.24,"z":0.92},"H2":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":23.38,"y":11.24,"z":0.92},"A3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":74.24,"z":0.92},"B3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":65.24,"z":0.92},"C3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":56.24,"z":0.92},"D3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":47.24,"z":0.92},"E3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":38.24,"z":0.92},"F3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":29.24,"z":0.92},"G3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":20.24,"z":0.92},"H3":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":32.38,"y":11.24,"z":0.92},"A4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":74.24,"z":0.92},"B4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":65.24,"z":0.92},"C4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":56.24,"z":0.92},"D4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":47.24,"z":0.92},"E4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":38.24,"z":0.92},"F4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":29.24,"z":0.92},"G4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":20.24,"z":0.92},"H4":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":41.38,"y":11.24,"z":0.92},"A5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":74.24,"z":0.92},"B5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":65.24,"z":0.92},"C5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":56.24,"z":0.92},"D5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":47.24,"z":0.92},"E5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":38.24,"z":0.92},"F5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":29.24,"z":0.92},"G5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":20.24,"z":0.92},"H5":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":50.38,"y":11.24,"z":0.92},"A6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":74.24,"z":0.92},"B6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":65.24,"z":0.92},"C6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":56.24,"z":0.92},"D6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":47.24,"z":0.92},"E6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":38.24,"z":0.92},"F6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":29.24,"z":0.92},"G6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":20.24,"z":0.92},"H6":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":59.38,"y":11.24,"z":0.92},"A7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":74.24,"z":0.92},"B7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":65.24,"z":0.92},"C7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":56.24,"z":0.92},"D7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":47.24,"z":0.92},"E7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":38.24,"z":0.92},"F7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":29.24,"z":0.92},"G7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":20.24,"z":0.92},"H7":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":68.38,"y":11.24,"z":0.92},"A8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":74.24,"z":0.92},"B8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":65.24,"z":0.92},"C8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":56.24,"z":0.92},"D8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":47.24,"z":0.92},"E8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":38.24,"z":0.92},"F8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":29.24,"z":0.92},"G8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":20.24,"z":0.92},"H8":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":77.38,"y":11.24,"z":0.92},"A9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":74.24,"z":0.92},"B9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":65.24,"z":0.92},"C9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":56.24,"z":0.92},"D9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":47.24,"z":0.92},"E9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":38.24,"z":0.92},"F9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":29.24,"z":0.92},"G9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":20.24,"z":0.92},"H9":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":86.38,"y":11.24,"z":0.92},"A10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":74.24,"z":0.92},"B10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":65.24,"z":0.92},"C10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":56.24,"z":0.92},"D10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":47.24,"z":0.92},"E10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":38.24,"z":0.92},"F10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":29.24,"z":0.92},"G10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":20.24,"z":0.92},"H10":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":95.38,"y":11.24,"z":0.92},"A11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":74.24,"z":0.92},"B11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":65.24,"z":0.92},"C11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":56.24,"z":0.92},"D11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":47.24,"z":0.92},"E11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":38.24,"z":0.92},"F11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":29.24,"z":0.92},"G11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":20.24,"z":0.92},"H11":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":104.38,"y":11.24,"z":0.92},"A12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":74.24,"z":0.92},"B12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":65.24,"z":0.92},"C12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":56.24,"z":0.92},"D12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":47.24,"z":0.92},"E12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":38.24,"z":0.92},"F12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":29.24,"z":0.92},"G12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":20.24,"z":0.92},"H12":{"depth":14.78,"shape":"circular","diameter":5.34,"totalLiquidVolume":100,"x":113.38,"y":11.24,"z":0.92}},"groups":[{"metadata":{"wellBottomShape":"v"},"wells":["A1","B1","C1","D1","E1","F1","G1","H1","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","A10","B10","C10","D10","E10","F10","G10","H10","A11","B11","C11","D11","E11","F11","G11","H11","A12","B12","C12","D12","E12","F12","G12","H12"]}],"parameters":{"format":"96Standard","isTiprack":false,"isMagneticModuleCompatible":true,"magneticModuleEngageHeight":20,"loadName":"nest_96_wellplate_100ul_pcr_full_skirt"},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}},"opentrons/agilent_1_reservoir_290ml/1":{"ordering":[["A1"]],"brand":{"brand":"Agilent","brandId":["201252-100"],"links":["https://www.agilent.com/store/en_US/Prod-201252-100/201252-100"]},"metadata":{"displayName":"Agilent 1 Well Reservoir 290 mL","displayCategory":"reservoir","displayVolumeUnits":"mL","tags":[]},"dimensions":{"xDimension":127.76,"yDimension":85.57,"zDimension":44.04},"wells":{"A1":{"depth":39.22,"shape":"rectangular","xDimension":108,"yDimension":72,"totalLiquidVolume":290000,"x":63.88,"y":42.785,"z":4.82}},"groups":[{"wells":["A1"],"metadata":{"wellBottomShape":"v"}}],"parameters":{"format":"trough","isTiprack":false,"isMagneticModuleCompatible":false,"loadName":"agilent_1_reservoir_290ml","quirks":["centerMultichannelOnWells","touchTipDisabled"]},"namespace":"opentrons","version":1,"schemaVersion":2,"cornerOffsetFromSlot":{"x":0,"y":0,"z":0}}},"$otSharedSchema":"#/protocol/schemas/6","schemaVersion":6,"modules":{"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType":{"model":"heaterShakerModuleV1"},"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType":{"model":"magneticModuleV1"},"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType":{"model":"temperatureModuleV1"},"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType":{"model":"thermocyclerModuleV1"}},"commands":[{"key":"9fb4e8f4-186e-4063-aafe-847b7f5f5cad","commandType":"loadPipette","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","mount":"left"}},{"key":"789dde75-0ec2-490c-ab51-16f0d162e638","commandType":"loadPipette","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","mount":"right"}},{"key":"42b2a4d7-403c-43bd-bc44-e61930576339","commandType":"loadModule","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","location":{"slotName":"1"}}},{"key":"5518b369-b938-4ac4-b2ba-adde29927e2a","commandType":"loadModule","params":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","location":{"slotName":"9"}}},{"key":"40f6b56d-05f1-46ab-a262-24601afb0f51","commandType":"loadModule","params":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","location":{"slotName":"3"}}},{"key":"3ae25b1b-2242-423a-8fb4-3f682dececd0","commandType":"loadModule","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","location":{"slotName":"7"}}},{"key":"d458d31a-bf76-40ec-97e5-113e27bea5fd","commandType":"loadLabware","params":{"labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","location":{"slotName":"5"}}},{"key":"4cc07fbd-92e7-4454-ab09-2d150afbfee6","commandType":"loadLabware","params":{"labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","location":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}}},{"key":"7084ef04-3926-4bdb-bfba-0cef939464bd","commandType":"loadLabware","params":{"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","location":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType"}}},{"key":"416661fd-3da9-4f83-9401-18454a9a18e2","commandType":"loadLabware","params":{"labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","location":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType"}}},{"key":"f9b8458a-cf8b-47f9-8726-70364a361821","commandType":"loadLabware","params":{"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","location":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}}},{"key":"e6b14558-83dd-46a0-88a8-7e7dc38a8869","commandType":"loadLabware","params":{"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","location":{"slotName":"6"}}},{"commandType":"loadLiquid","key":"2da37722-8a55-4955-aace-409ba03378df","params":{"liquidId":"1","labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","volumeByWell":{"A1":300,"B1":300,"C1":300,"D1":300,"A2":300,"B2":300,"C2":300,"D2":300}}},{"commandType":"loadLiquid","key":"8c92f196-8a7f-47b2-83d3-1526db9a39db","params":{"liquidId":"1","labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","volumeByWell":{"A1":20,"B1":20,"C1":20,"D1":20,"E1":20,"F1":20,"G1":20,"H1":20,"A2":20,"B2":20,"C2":20,"D2":20,"E2":20,"F2":20,"G2":20,"H2":20,"A3":20,"B3":20,"C3":20,"D3":20,"E3":20,"F3":20,"G3":20,"H3":20}}},{"commandType":"loadLiquid","key":"9d29b8c9-0f68-4d9a-89ac-c3509674d6ab","params":{"liquidId":"1","labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100,"A4":100,"B4":100,"C4":100,"D4":100,"E4":100,"F4":100,"G4":100,"H4":100,"A5":100,"B5":100,"C5":100,"D5":100,"E5":100,"F5":100,"G5":100,"H5":100,"A6":100,"B6":100,"C6":100,"D6":100,"E6":100,"F6":100,"G6":100,"H6":100}}},{"commandType":"loadLiquid","key":"d9c86281-67c0-432a-8fb2-3a200f280e5e","params":{"liquidId":"1","labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","volumeByWell":{"A1":100,"B1":100,"C1":100,"D1":100,"E1":100,"F1":100,"G1":100,"H1":100,"A2":100,"B2":100,"C2":100,"D2":100,"E2":100,"F2":100,"G2":100,"H2":100,"A3":100,"B3":100,"C3":100,"D3":100,"E3":100,"F3":100,"G3":100,"H3":100,"A4":100,"B4":100,"C4":100,"D4":100,"E4":100,"F4":100,"G4":100,"H4":100,"A5":100,"B5":100,"C5":100,"D5":100,"E5":100,"F5":100,"G5":100,"H5":100,"A6":100,"B6":100,"C6":100,"D6":100,"E6":100,"F6":100,"G6":100,"H6":100}}},{"commandType":"loadLiquid","key":"b000cefe-8e3e-45d3-85e3-efe29e8ed4ec","params":{"liquidId":"0","labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","volumeByWell":{"A1":29000}}},{"commandType":"heaterShaker/closeLabwareLatch","key":"57a860ec-3a3f-4b94-804d-dc4ebc3913cb","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"30cddb2c-0a38-4d81-a8aa-1f355895dbe9","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"ef4ce9a1-61e7-4aed-a4ae-24c066236368","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"thermocycler/openLid","key":"8f2eb96e-eb4c-476e-8bdf-0d27684beb09","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"pickUpTip","key":"9583b372-b0a7-407a-b4a5-e847dd691beb","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A1"}},{"commandType":"aspirate","key":"55fc7a88-02c8-45ef-87f6-a44c8f3d11db","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":94}},{"commandType":"dispense","key":"e004e404-9481-4c56-ad5a-96a37a6b81c9","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"0d460f8a-2163-4eb7-8f48-5c382604971a:opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1","wellName":"A4","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":94}},{"commandType":"dropTip","key":"fa620ea5-73c3-419f-8c37-197bbfb45d45","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"37f23342-5406-43c4-9d2b-4f8e66a9b372","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A2"}},{"commandType":"aspirate","key":"3d949fd7-45f8-4b57-a02d-3e5462d92483","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":94}},{"commandType":"dispense","key":"39106345-35da-49ce-9683-8f0d551cb98f","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","volume":20,"labwareId":"32e39cda-1d1d-4e0d-b933-b94cf464e29a:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":94}},{"commandType":"dropTip","key":"9b7b49e5-8923-4e11-bf18-3da29a7ddf77","params":{"pipetteId":"9467efbc-2ad4-40eb-bc05-91c78fd48be2","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"0c165af0-08c0-4c5d-937a-4709e02ca85f","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A3"}},{"commandType":"aspirate","key":"aaeae20e-8acb-4af0-a03e-676ed9451166","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"a36a645b-9d7f-41c3-b04b-1785fb3001b9","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"A3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"f1816015-6ada-48e7-b879-4a2ea647339e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"f731b034-77de-4a42-bf48-3bb52b28bd45","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"B3"}},{"commandType":"aspirate","key":"0abfe1b2-89a4-4e6c-8078-a811dace2224","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"961ab4c8-da15-4350-ae65-470efc9b2238","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"B3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"cbd55095-b432-41eb-ab53-109553e27b6a","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"2144b06e-e692-466d-a802-6f60db8d6df3","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"C3"}},{"commandType":"aspirate","key":"fc30f4e1-2e26-4cfc-95b7-abd1cdab5add","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"81707a0d-d590-4c95-9ea2-288e61244e23","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"C3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"e86624e9-17b4-4e4c-a818-99aa3b7203b4","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"05753124-aa01-48c8-805f-ff3c76b50ad2","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"D3"}},{"commandType":"aspirate","key":"e56550a7-3894-4060-b8e9-6133aba946de","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"b241d60c-4cec-4a73-b9c4-d787747125f5","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":25,"labwareId":"01ab8b91-996c-41a2-a11e-57719913979e:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1","wellName":"D3","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"3df64ca9-dc43-4eb6-94b6-09ad696e3e2e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"7d471a9a-2a78-4cab-85d9-ef537f01135e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"E3"}},{"commandType":"aspirate","key":"1ebef344-1ba8-40dc-b233-c71095d643a1","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"aee40692-f291-49f5-bb64-051378a356c7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"12e5aed2-bcca-4b5b-968b-9cce7d9cb6c7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"676d87a5-ed43-48b6-9fd7-b17fff53c880","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"F3"}},{"commandType":"aspirate","key":"5adde3d5-486c-479a-a629-4fd1cd87fa55","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"c21b4b82-8815-4515-9fa4-7097dec1bae2","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"B7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"cb2f4bdf-a782-4a68-8bbd-75b65d850d0f","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"aed095a1-b724-40f8-a1d9-f24820f168ef","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"G3"}},{"commandType":"aspirate","key":"046acfb4-c45e-473c-bfce-7a213e8f2974","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"56c2571e-dde2-4d24-9337-9003e81bee74","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"C7","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"f1f78069-805a-4db6-90d6-cb81e937d763","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"daa6b107-d891-4a54-9d68-61fc7a1e3107","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"H3"}},{"commandType":"aspirate","key":"cd45c8ac-3dd7-4d86-b613-9fcd6f7d5542","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"638e754d-5b83-40c0-a6da-3fcdf5da9dda","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"A8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"a4fbcb43-71a0-4794-84fe-39a01fb6c5e4","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"c6d2672b-fcaa-4ff1-a12b-7d9b4fd5d89e","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"A4"}},{"commandType":"aspirate","key":"590a191d-51ab-4915-a1a4-944bb8142356","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"edac7a4f-a283-475c-8c59-bbf91a26c7f3","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"B8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"d1f57a8a-040d-4f1d-996a-b8b612ee8fe7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"pickUpTip","key":"703ed8a5-52d8-45a4-a2e3-965c042b0491","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"a4fcf5a6-78d6-421a-8e01-2b479f430eb8:opentrons/opentrons_96_tiprack_300ul/1","wellName":"B4"}},{"commandType":"aspirate","key":"04316379-9994-4d5b-ac86-99fb532eefb5","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"bb461a1a-e444-460d-b2d6-82c15a59ecea:opentrons/agilent_1_reservoir_290ml/1","wellName":"A1","wellLocation":{"origin":"bottom","offset":{"z":1}},"flowRate":46.43}},{"commandType":"dispense","key":"3a8ea7f4-fc66-4654-ba04-dbd9f221e6a7","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","volume":22,"labwareId":"111a749b-6958-4d7a-8206-1451fbee73fc:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1","wellName":"C8","wellLocation":{"origin":"bottom","offset":{"z":0.5}},"flowRate":46.43}},{"commandType":"dropTip","key":"09d2d84e-f07b-4459-b0fe-b0216d254008","params":{"pipetteId":"1b766d4d-ba31-42cc-a49a-73e9d8c67aca","labwareId":"fixedTrash","wellName":"A1"}},{"commandType":"thermocycler/closeLid","key":"a2fc04dc-f0bf-4b71-a5fb-1334c98197ef","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/setTargetBlockTemperature","key":"d08d218d-1fc4-40c2-9d19-96adcbb9736e","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","celsius":55}},{"commandType":"thermocycler/waitForBlockTemperature","key":"20955b73-7ec4-4170-a05f-329aefefc1ad","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/setTargetLidTemperature","key":"16621d7f-c322-493b-9d2b-b2a90a685ed0","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType","celsius":50}},{"commandType":"thermocycler/waitForLidTemperature","key":"50451d2b-8f9a-4101-b6ad-e3308d492276","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"heaterShaker/closeLabwareLatch","key":"c4232439-eaf7-4e03-a834-35949ebceced","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/setTargetTemperature","key":"c055f48a-6e1f-40e7-a254-b1e379c8ff43","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","celsius":55}},{"commandType":"heaterShaker/waitForTemperature","key":"be5b2593-b645-4b0f-9593-c0186d5a340d","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/setAndWaitForShakeSpeed","key":"bf177287-c03d-4ba6-b8ab-27eb63d58dc4","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType","rpm":1000}},{"commandType":"heaterShaker/waitForTemperature","key":"a08dddce-7364-44c9-bce7-8e7ecb0f35c2","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"magneticModule/engage","key":"b1b75cbb-e388-4f3a-aa0f-297ecadf1ae4","params":{"moduleId":"8d4683d0-7a88-4b33-9363-bd3894a71f9a:magneticModuleType","height":12}},{"commandType":"temperatureModule/setTargetTemperature","key":"8d2e3b47-7396-4c30-aa08-4b590bcbc967","params":{"moduleId":"b5df8f5c-9fc5-4d45-98c2-0ce6bd218fda:temperatureModuleType","celsius":80}},{"commandType":"heaterShaker/waitForTemperature","key":"39aba9eb-2506-4ecf-9c98-adcfd0e7aac6","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/openLabwareLatch","key":"675eb8be-6c85-4204-9c87-d7fdd522f580","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateHeater","key":"89eb894c-fbd1-4748-997b-eafc3d2e6feb","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"heaterShaker/deactivateShaker","key":"7500052e-ea05-4ed7-ac2b-691890d96d5c","params":{"moduleId":"5cf778e4-1131-446b-b1b4-fcc475017fa3:heaterShakerModuleType"}},{"commandType":"thermocycler/openLid","key":"a9f540e3-209d-4dbf-8abc-31dde947f317","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/deactivateBlock","key":"d029e789-dcc4-4f56-a306-1098b34bce3e","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}},{"commandType":"thermocycler/deactivateLid","key":"b8fb1676-e65b-47fd-aa2a-1b447d26820f","params":{"moduleId":"a54c246e-837a-4cde-94dd-4872b0c5c032:thermocyclerModuleType"}}]} \ No newline at end of file diff --git a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json index 3a8111d2060..6a79540e754 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json +++ b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json @@ -3866,7 +3866,7 @@ "360102" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "metadata": { @@ -4171,7 +4171,7 @@ "402501" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" + "https://www.nest-biotech.com/pcr-plates/58773587.html" ] }, "metadata": { @@ -6192,7 +6192,7 @@ "402501" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" + "https://www.nest-biotech.com/pcr-plates/58773587.html" ] }, "wells": [ diff --git a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json index d8aba967db4..6a3f74f4356 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json +++ b/app-testing/files/protocols/json/OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json @@ -3866,7 +3866,7 @@ "360102" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "metadata": { @@ -4171,7 +4171,7 @@ "402501" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" + "https://www.nest-biotech.com/pcr-plates/58773587.html" ] }, "metadata": { @@ -6192,7 +6192,7 @@ "402501" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" + "https://www.nest-biotech.com/pcr-plates/58773587.html" ] }, "wells": [ diff --git a/app-testing/files/protocols/json/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json b/app-testing/files/protocols/json/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json index 672e0adadef..2bb4e0885f9 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json +++ b/app-testing/files/protocols/json/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json @@ -3224,7 +3224,7 @@ "360102" ], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=102" + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" ] }, "metadata": { diff --git a/app-testing/files/protocols/json/OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json b/app-testing/files/protocols/json/OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json index 4fa8f22cc1b..64a7e118ab1 100644 --- a/app-testing/files/protocols/json/OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json +++ b/app-testing/files/protocols/json/OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json @@ -3399,7 +3399,7 @@ "503001" ], "links": [ - "http://www.cell-nest.com/page94?product_id=101&_l=en" + "https://www.nest-biotech.com/deep-well-plates/59253726.html" ] }, "wells": [ diff --git a/app-testing/files/protocols/json/OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json b/app-testing/files/protocols/json/OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json index 95a1b4461f0..baba6a1d732 100644 --- a/app-testing/files/protocols/json/OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json +++ b/app-testing/files/protocols/json/OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json @@ -2239,7 +2239,7 @@ "brand": { "brand": "NEST", "brandId": ["360103"], - "links": ["http://www.cell-nest.com/page94?_l=en&product_id=102"] + "links": ["https://www.nest-biotech.com/reagent-reserviors/59178414.html"] }, "metadata": { "displayName": "NEST 1 Well Reservoir 195 mL", diff --git a/app/src/organisms/CommandText/__fixtures__/mockRobotSideAnalysis.json b/app/src/organisms/CommandText/__fixtures__/mockRobotSideAnalysis.json index a9016aced31..39a51b7cab6 100644 --- a/app/src/organisms/CommandText/__fixtures__/mockRobotSideAnalysis.json +++ b/app/src/organisms/CommandText/__fixtures__/mockRobotSideAnalysis.json @@ -1503,9 +1503,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "parameters": { "format": "96Standard", @@ -2544,9 +2542,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "parameters": { "format": "96Standard", @@ -4594,7 +4590,7 @@ "brand": "NEST", "brandId": ["402501"], "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" + "https://www.nest-biotech.com/pcr-plates/58773587.html" ] } } @@ -4634,7 +4630,9 @@ "brand": { "brand": "NEST", "brandId": ["360103"], - "links": ["http://www.cell-nest.com/page94?_l=en&product_id=102"] + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] }, "parameters": { "format": "trough", diff --git a/app/src/organisms/ProtocolSetupInstruments/__fixtures__/index.ts b/app/src/organisms/ProtocolSetupInstruments/__fixtures__/index.ts index 1c65c60c2c9..c180a307805 100644 --- a/app/src/organisms/ProtocolSetupInstruments/__fixtures__/index.ts +++ b/app/src/organisms/ProtocolSetupInstruments/__fixtures__/index.ts @@ -3477,7 +3477,9 @@ export const mockRecentAnalysis = { brand: { brand: 'NEST', brandId: ['503501', '503001'], - links: ['http://www.cell-nest.com/page94?product_id=101&_l=en'], + links: [ + 'https://www.nest-biotech.com/deep-well-plates/59253726.html', + ], }, }, ], @@ -5418,7 +5420,9 @@ export const mockProtocolModuleInfo = [ brand: { brand: 'NEST', brandId: ['503501', '503001'], - links: ['http://www.cell-nest.com/page94?product_id=101&_l=en'], + links: [ + 'https://www.nest-biotech.com/deep-well-plates/59253726.html', + ], }, }, ], diff --git a/app/src/organisms/ProtocolSetupLabware/__fixtures__/index.ts b/app/src/organisms/ProtocolSetupLabware/__fixtures__/index.ts index aa9aac0f815..6fb1f0cb62f 100644 --- a/app/src/organisms/ProtocolSetupLabware/__fixtures__/index.ts +++ b/app/src/organisms/ProtocolSetupLabware/__fixtures__/index.ts @@ -3477,7 +3477,9 @@ export const mockRecentAnalysis = { brand: { brand: 'NEST', brandId: ['503501', '503001'], - links: ['http://www.cell-nest.com/page94?product_id=101&_l=en'], + links: [ + 'https://www.nest-biotech.com/deep-well-plates/59253726.html', + ], }, }, ], @@ -5418,7 +5420,9 @@ export const mockProtocolModuleInfo = [ brand: { brand: 'NEST', brandId: ['503501', '503001'], - links: ['http://www.cell-nest.com/page94?product_id=101&_l=en'], + links: [ + 'https://www.nest-biotech.com/deep-well-plates/59253726.html', + ], }, }, ], diff --git a/app/src/organisms/RunDetails/__fixtures__/analysis.json b/app/src/organisms/RunDetails/__fixtures__/analysis.json index 2865d948f8f..f1ba7c65030 100644 --- a/app/src/organisms/RunDetails/__fixtures__/analysis.json +++ b/app/src/organisms/RunDetails/__fixtures__/analysis.json @@ -2707,7 +2707,9 @@ "brand": { "brand": "NEST", "brandId": ["360102"], - "links": ["http://www.cell-nest.com/page94?_l=en&product_id=102"] + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] }, "parameters": { "format": "trough", diff --git a/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_HS_TM_6_3_SmokeV3.json b/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_HS_TM_6_3_SmokeV3.json index 7154d6f903f..acaa58a030e 100644 --- a/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_HS_TM_6_3_SmokeV3.json +++ b/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_HS_TM_6_3_SmokeV3.json @@ -3456,9 +3456,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "wells": [ "A1", @@ -3589,7 +3587,9 @@ "brand": { "brand": "NEST", "brandId": ["360102"], - "links": ["http://www.cell-nest.com/page94?_l=en&product_id=102"] + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] }, "metadata": { "displayName": "NEST 12 Well Reservoir 15 mL", @@ -4658,9 +4658,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "wells": [ "A1", @@ -4792,9 +4790,7 @@ "brand": { "brand": "NEST", "brandId": ["402501"], - "links": [ - "http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96" - ] + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] }, "metadata": { "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", diff --git a/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json b/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json index 6151ac0bcd6..29f22cbc95c 100644 --- a/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json +++ b/g-code-testing/g_code_test_data/protocol/protocols/fast/OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json @@ -2921,7 +2921,9 @@ "brand": { "brand": "NEST", "brandId": ["360102"], - "links": ["http://www.cell-nest.com/page94?_l=en&product_id=102"] + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] }, "metadata": { "displayName": "NEST 12 Well Reservoir 15 mL", diff --git a/labware-library/src/components/App/Page.tsx b/labware-library/src/components/App/Page.tsx index 8b8f552fab3..17cf935a59e 100644 --- a/labware-library/src/components/App/Page.tsx +++ b/labware-library/src/components/App/Page.tsx @@ -5,13 +5,13 @@ import styles from './styles.css' export interface PageProps { scrollRef: React.RefObject - detailPage: boolean + isDetailPage: boolean sidebar: React.ReactNode content: React.ReactNode } export function Page(props: PageProps): JSX.Element { - const { scrollRef, detailPage, sidebar, content } = props + const { scrollRef, isDetailPage, sidebar, content } = props return (
@@ -19,14 +19,14 @@ export function Page(props: PageProps): JSX.Element {
{sidebar}
{content} diff --git a/labware-library/src/components/App/__tests__/Page.test.tsx b/labware-library/src/components/App/__tests__/Page.test.tsx index 8b925e952a6..3844f7929b7 100644 --- a/labware-library/src/components/App/__tests__/Page.test.tsx +++ b/labware-library/src/components/App/__tests__/Page.test.tsx @@ -13,7 +13,7 @@ describe('Page', () => { scrollRef={{ current: null }} sidebar="foo" content="bar" - detailPage={false} + isDetailPage={false} /> ) @@ -26,7 +26,7 @@ describe('Page', () => { scrollRef={{ current: null }} sidebar="foo" content="bar" - detailPage={true} + isDetailPage={true} /> ) diff --git a/labware-library/src/components/App/__tests__/__snapshots__/App.test.tsx.snap b/labware-library/src/components/App/__tests__/__snapshots__/App.test.tsx.snap index 473d1dfb45b..1fcce950266 100644 --- a/labware-library/src/components/App/__tests__/__snapshots__/App.test.tsx.snap +++ b/labware-library/src/components/App/__tests__/__snapshots__/App.test.tsx.snap @@ -5,7 +5,9 @@ exports[`App component renders with definition 1`] = ` className="app is_detail_page" >