{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "30af8cfd", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:59.153807Z", "iopub.status.busy": "2024-10-11T06:14:59.153361Z", "iopub.status.idle": "2024-10-11T06:14:59.158878Z", "shell.execute_reply": "2024-10-11T06:14:59.158179Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2024 Keysight Technologies Inc." ] }, { "cell_type": "raw", "id": "4b879ca2", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "\n", ".. _res_spec:\n", "\n", "Resonator Spectroscopy\n", "======================\n", "Quantum computers use qudits for storing and processing information and rely on\n", "readout resonators for measurement. These resonators are coupled to qudits and help\n", "determine their state by detecting changes in the electromagnetic field.\n", "\n", "Resonator spectroscopy is used to characterize the resonators involved in qudit state\n", "readout. It focuses on finding the resonance frequency of the readout resonator, which\n", "is designed to be a specific value but often deviates due to manufacturing variations.\n", "Knowing this frequency is crucial and is typically the first step in characterizing a\n", "qubit chip.\n", "\n", "A resonator spectroscopy experiment typically follows these steps:\n", "\n", " #. Initialize the qudit: Prepare the qudit in a known state, usually the ground\n", " state.\n", "\n", " #. Sweep a probe signal: Apply a probe signal at varying frequencies through the\n", " resonator coupled to the qudit.\n", "\n", " #. Measure the response: Observe how the resonator responds by checking the\n", " transmission or reflection of the probe signal.\n", "\n", " #. Identify the resonance frequency: Find the frequency that gives the strongest\n", " response, which is the resonance frequency of the readout resonator.\n", "\n", "The strongest response is identified by a characteristic peak or dip (depending on\n", "the measurement setup) in the transmission or reflection curve as the frequency\n", "changes, indicating the resonant frequency of the resonator.\n", "\n", "Let's walk through the steps to perform this experiment on Keysight hardware using\n", "the QCS package.\n", "\n", ".. note::\n", "\n", " The assets are set up to map a maximum of 4 qudits to a single physical AWG and\n", " digitizer channel with an LO frequency of 5.5 GHz. For the purposes of this\n", " demonstration, we connect the output of the AWG to the digitizer so we can capture\n", " both the control and readout pulses.\n", "\n", "First, we'll load all the necessary packages and a channel mapper, which links up to\n", "the hardware channels. If a channel mapper doesn't exist, we can create a new one and\n", "add the hardware references to it. Then we generate a calibration set for the qubits\n", "using :py:func:`~keysight.qcs.experiments.make_calibration_set`. This file that stores\n", "all the important variables and parameters we need to run experiments on our quantum\n", "system." ] }, { "cell_type": "code", "execution_count": 2, "id": "1f8bf7e9", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:59.162831Z", "iopub.status.busy": "2024-10-11T06:14:59.162264Z", "iopub.status.idle": "2024-10-11T06:15:02.560480Z", "shell.execute_reply": "2024-10-11T06:15:02.559494Z" } }, "outputs": [], "source": [ "import numpy as np\n", "import keysight.qcs as qcs\n", "from keysight.qcs.experiments import make_calibration_set\n", "from keysight.qcs.experiments import ResonatorSpectroscopy, ResonatorSpectroscopy2D\n", "from simulated_experiments.simulated_experiments import (\n", " SimulatedResSpectroscopyExperiment,\n", ")" ] }, { "cell_type": "code", "execution_count": 3, "id": "ba73a072", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:02.565530Z", "iopub.status.busy": "2024-10-11T06:15:02.565045Z", "iopub.status.idle": "2024-10-11T06:15:02.753670Z", "shell.execute_reply": "2024-10-11T06:15:02.752802Z" } }, "outputs": [], "source": [ "# Set this to True if channel mapper exists\n", "channel_mapper_exists = False\n", "\n", "if channel_mapper_exists:\n", " mapper = qcs.load(\"\")\n", "else:\n", " # generate an empty channel mapper with the correct address\n", " mapper = qcs.ChannelMapper(\"\")\n", "\n", "# Generate the calibration_set template\n", "calibration_set = make_calibration_set(qubits=1)\n", "\n", "# Set this to True if connected to hardware\n", "run_on_hw = False" ] }, { "cell_type": "raw", "id": "0ed1c983", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Next, we’ll set up our ``ResonatorSpectroscopy`` experiment to find the readout\n", "resonator's frequency. The :py:class:`~keysight.qcs.experiments.ResonatorSpectroscopy`\n", "class is actually a subclass of the more general\n", ":py:class:`~keysight.qcs.experiments.CalibrationExperiment`. The\n", "``CalibrationExperiment`` class is specifically designed to calibrate quantum\n", "operations for individual qubits and store all the parameters in the\n", "``calibration_set``.\n", "\n", "In this example, we're setting up the experiment to calibrate the readout resonator\n", "for 1 qubit." ] }, { "cell_type": "code", "execution_count": 4, "id": "a3b86ef6", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:02.757480Z", "iopub.status.busy": "2024-10-11T06:15:02.757128Z", "iopub.status.idle": "2024-10-11T06:15:03.094382Z", "shell.execute_reply": "2024-10-11T06:15:03.093421Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "# Define the number of qubits\n", "n_qubits = 1\n", "qubits = qcs.Qudits(range(n_qubits))\n", "\n", "# Create a resonator spectroscopy experiment\n", "res_spectroscopy = ResonatorSpectroscopy(\n", " backend=mapper,\n", " calibration_set=calibration_set,\n", " qubits=qubits,\n", " operation=\"measurement\",\n", ")" ] }, { "cell_type": "code", "execution_count": 5, "id": "a9eb8181", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.098173Z", "iopub.status.busy": "2024-10-11T06:15:03.097824Z", "iopub.status.idle": "2024-10-11T06:15:03.176134Z", "shell.execute_reply": "2024-10-11T06:15:03.175439Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Program\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration100 ns
Layers1
Targets2
Repetitions\n", "
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration100 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " readout_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=readout_pulse_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=readout_pulse_amplitudes, value=0.1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeSineEnvelope()
Instantaneous PhaseScalarRef(name=measurement_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_acquisition\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " RFWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=measurement_integrator_amplitude, value=1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeConstantEnvelope()
Instantaneous PhaseScalarRef(name=measurement_integrator_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_integrator_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "
ClassifierClassifier(Array(name=references, shape=(1, 2), dtype=complex, unit=none))
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "# Draw the program to view the hardware operations\n", "res_spectroscopy.draw()" ] }, { "cell_type": "raw", "id": "98f5b246", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "\n", "Now we specify the frequency range to sweep over for the measurement operation.\n", "If you already have a specific frequency range in mind, you can pass it as an argument\n", "to the ``ResonatorSpectroscopy`` class. Alternatively, you can set an arbitrary range\n", "by retrieving the corresponding value from the ``calibration_set`` and using it as the\n", "mid-point for your frequency sweep. The frequency range can always be configured or\n", "modified using the ``configure_repetitions`` method.\n", "\n", ".. note::\n", " If the \"measurement\" operation is stored in the ``calibration_set`` under a\n", " different name, you’ll need to pass that name as an argument (``operation=``)\n", " to the ``ResonatorSpectroscopy`` class so it can reference the correct entry in the\n", " ``calibration_set``." ] }, { "cell_type": "code", "execution_count": 6, "id": "11bdc283", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.180091Z", "iopub.status.busy": "2024-10-11T06:15:03.179694Z", "iopub.status.idle": "2024-10-11T06:15:03.186547Z", "shell.execute_reply": "2024-10-11T06:15:03.185813Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "# Retrieve the readout frequencies stored in the calibration set\n", "current_freq = res_spectroscopy.calibration_set.variables.readout_frequencies[\n", " list(qubits.labels)\n", "].value\n", "\n", "# Set the frequency range for sweeping\n", "start_frequency = current_freq - 200e6\n", "end_frequency = current_freq + 200e6\n", "steps = 9\n", "freq_scan_values = np.linspace(start_frequency, end_frequency, steps)" ] }, { "cell_type": "code", "execution_count": 7, "id": "0ebcbbb6", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.189796Z", "iopub.status.busy": "2024-10-11T06:15:03.189477Z", "iopub.status.idle": "2024-10-11T06:15:03.205219Z", "shell.execute_reply": "2024-10-11T06:15:03.204360Z" } }, "outputs": [], "source": [ "# Configure the repetitions for this experiment\n", "res_spectroscopy.configure_repetitions(\n", " frequencies=freq_scan_values, n_shots=1, frequency_name=\"readout_frequencies\"\n", ")" ] }, { "cell_type": "raw", "id": "af9878c6", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We’ll now compile the program down to the waveform level and use the ``render`` method\n", "to visualize the waveforms to be executed on the hardware. You can adjust the index\n", "parameter to view individual waveforms from the sweep.\n", "\n", ".. note::\n", " ``res_spectroscopy.render()`` can also be used to display the waveforms. This\n", " requires a properly defined channel mapper with all connections configured and\n", " passed into the experiment class. For more information, refer to\n", " :py:meth:`~keysight.qcs.experiments.Experiment.render`.\n" ] }, { "cell_type": "code", "execution_count": 8, "id": "31d8e740", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.209072Z", "iopub.status.busy": "2024-10-11T06:15:03.208727Z", "iopub.status.idle": "2024-10-11T06:15:03.740180Z", "shell.execute_reply": "2024-10-11T06:15:03.739436Z" } }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2e-10, "legendgroup": "readout_pulse, labels: (0,)", "legendgrouptitle": { "text": "readout_pulse, labels: (0,)" }, "name": "Drive pulse for readout_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0003127645009414709, 0.0009050420777136429, 0.001399532220232912, 0.0017375015738507083, 0.0018695661244606256, 0.001758770740034472, 0.001383044977416346, 0.0007369072416706969, -0.00016767593961957943, -0.0013013296102983615, -0.002618221216522631, -0.0040578919159804435, -0.005547895863492363, -0.007007135977056625, -0.008349750297817309, -0.009489374837426272, -0.010343588069000662, -0.010838329962786514, -0.010912085336512495, -0.010519627537216894, -0.00963513394809723, -0.00825450897346064, -0.0063967820701261065, -0.0041044867933149425, -0.0014429701437291397, 0.001501372056428784, 0.0046238904218470515, 0.007805417815561963, 0.010916811776638159, 0.013824130593804744, 0.016394237601993884, 0.018500603914975988, 0.020029064724444993, 0.02088327931530661, 0.0209896504799712, 0.02030147503969808, 0.018802123238756286, 0.016507079981907202, 0.013464723956472165, 0.009755769987242648, 0.00549135359883179, 0.0008097925759753764, -0.004127883940986679, -0.009143494908090674, -0.014048162689222828, -0.018649429474205035, -0.02275876655323092, -0.02619918481564523, -0.02881264274145996, -0.03046694806800323, -0.031061861501375614, -0.030534135072521725, -0.028861253291280354, -0.026063690940998595, -0.02220555556483103, -0.017393543435181003, -0.011774202784292987, -0.005529564809178805, 0.0011287311659774857, 0.007966629610275855, 0.01473592268539469, 0.021183293054701333, 0.02705980500730981, 0.03213048790184805, 0.036183643900051146, 0.03903951402937422, 0.040557952985098386, 0.040644793398175276, 0.03925662364629406, 0.03640375823853009, 0.03215124444723387, 0.026617820872691385, 0.019972820357788947, 0.012431088243506321, 0.004246064372454806, -0.0042987494990291255, -0.012899649025979605, -0.02124356902191899, -0.02901951892813934, -0.03593019291480354, -0.04170332053935147, -0.046102325153979544, -0.04893587500574811, -0.050065945817868954, -0.04941406256489491, -0.046965450551633904, -0.042770899629864106, -0.036946227827088715, -0.029669318833817175, -0.021174798452210358, -0.011746504857198109, -0.0017079929520773356, 0.008588609082841585, 0.01877500580551862, 0.028479964075154015, 0.037342888977719736, 0.04502724804043156, 0.05123334310131374, 0.05570994533961313, 0.05826434348434251, 0.058770407077340256, 0.057174334182602767, 0.05349783380200142, 0.04783858464242874, 0.04036791051131282, 0.03132571491094902, 0.021012819586948565, 0.009780950046421185, -0.001979298321476916, -0.013852100397227058, -0.02541116937060966, -0.036235125876546606, -0.045922911900264006, -0.054108683804533715, -0.060475630331076745, -0.06476819358383862, -0.06680222287914, -0.06647266126682325, -0.06375845011659635, -0.058724435443558085, -0.05152016712898321, -0.042375595007640085, -0.03159377983000939, -0.019540848163938713, -0.006633524236334662, 0.006675335389515455, 0.019912700106309526, 0.03260225167976179, 0.04428159337607674, 0.05451915761292697, 0.0629301918981976, 0.06919122959312449, 0.07305250088519884, 0.07434780871382222, 0.07300148191794836, 0.06903212053604053, 0.0625529623628203, 0.05376882147304903, 0.04296967406540868, 0.03052109011117987, 0.016851826377430205, 0.002439003077743434, -0.012208621327309682, -0.02656868832154489, -0.04012394814583132, -0.05238096632488858, -0.06288814876615031, -0.07125242480053438, -0.07715397033391186, -0.08035841900888285, -0.08072609573107097, -0.07821791110588057, -0.0728976735988569, -0.06493070436803973, -0.054578773117176425, -0.042191507152143724, -0.02819455520351082, -0.013074907745233766, 0.00263611796668781, 0.018381631084039046, 0.033598993747801516, 0.0477400121126282, 0.060290764212678816, 0.07079034473906355, 0.07884784070680353, 0.08415691108377704, 0.08650742575931612, 0.08579372190841009, 0.08201915525824284, 0.07529675575016989, 0.06584593689003586, 0.05398535065510962, 0.04012212000566076, 0.024737813716989965, 0.0083716485294811, -0.008398492942279423, -0.024976557360294038, -0.04076959878994507, -0.055209076936360776, -0.06777140730658988, -0.07799701761361912, -0.08550721439605066, -0.09001823899130353, -0.09135199008122347, -0.0894430075896403, -0.08434144558731378, -0.0762119053075874, -0.06532814824381945, -0.05206385821215444, -0.03687976481712807, -0.02030757371826104, -0.0029312665886263634, 0.014633568653794093, 0.03176164250972178, 0.04784032061200939, 0.06229162972852481, 0.07459311932314097, 0.08429682271544348, 0.09104562714860655, 0.09458645259080624, 0.0947797516828626, 0.09160497391388278, 0.08516178119589865, 0.07566695435128801, 0.06344708513765797, 0.048927300707770745, 0.03261641131373628, 0.015089002375703955, -0.0030348960184053814, -0.021111839647990654, -0.038497914519003806, -0.05457177333890258, -0.06875693645350164, -0.08054255350519975, -0.08950187506893884, -0.0953077637711574, -0.09774467907349371, -0.09671669528959217, -0.0922512540221552, -0.08449850498060923, -0.07372624757267289, -0.060310644042401634, -0.04472302752791024, -0.02751326970493917, -0.009290297535856836, 0.009299547490111935, 0.027595535157945106, 0.04494613351207069, 0.06073231138185596, 0.07438971946192348, 0.08542895180784293, 0.09345315729009689, 0.09817236467098842, 0.0994140021727333, 0.09712922849238013, 0.09139484230309518, 0.08241069596128003, 0.07049270069651148, 0.056061669166864135, 0.03962839118634492, 0.02177547425236254, 0.0031365973024793537, -0.015626080322376987, -0.03384554583267111, -0.050873749173570335, -0.06610475440302814, -0.07899639563995985, -0.08908966029246515, -0.09602510362581038, -0.09955570517057474, -0.09955570517057491, -0.09602510362581088, -0.08908966029246601, -0.07899639563996101, -0.06610475440302956, -0.050873749173571965, -0.03384554583267291, -0.015626080322378874, 0.0031365973024774334, 0.02177547425236066, 0.03962839118634314, 0.05606166916686254, 0.07049270069651009, 0.0824106959612789, 0.09139484230309437, 0.09712922849237966, 0.0994140021727332, 0.09817236467098868, 0.09345315729009748, 0.08542895180784386, 0.0743897194619247, 0.060732311381857446, 0.04494613351207237, 0.02759553515794692, 0.00929954749011383, -0.00929029753585493, -0.027513269704937317, -0.04472302752790851, -0.06031064404240007, -0.07372624757267157, -0.0844985049806082, -0.09225125402215446, -0.09671669528959179, -0.09774467907349364, -0.09530776377115771, -0.08950187506893946, -0.0805425535052007, -0.06875693645350286, -0.054571773338904034, -0.03849791451900546, -0.021111839647992427, -0.003034896018407215, 0.015089002375702121, 0.03261641131373451, 0.0489273007077691, 0.06344708513765653, 0.0756669543512868, 0.08516178119589772, 0.09160497391388214, 0.09477975168286228, 0.09458645259080624, 0.0910456271486069, 0.08429682271544417, 0.07459311932314196, 0.06229162972852605, 0.04784032061201086, 0.03176164250972341, 0.014633568653795826, -0.0029312665886245875, -0.020307573718259277, -0.03687976481712639, -0.05206385821215289, -0.0653281482438181, -0.0762119053075863, -0.08434144558731295, -0.08944300758963979, -0.09135199008122327, -0.09001823899130366, -0.08550721439605113, -0.0779970176136199, -0.06777140730659093, -0.05520907693636208, -0.04076959878994658, -0.02497655736029568, -0.008398492942281132, 0.008371648529479386, 0.024737813716988303, 0.04012212000565921, 0.05398535065510826, 0.0658459368900347, 0.075296755750169, 0.08201915525824223, 0.0857937219084098, 0.08650742575931615, 0.08415691108377739, 0.07884784070680419, 0.07079034473906445, 0.06029076421267996, 0.04774001211262953, 0.033598993747802994, 0.018381631084040614, 0.0026361179666894133, -0.013074907745232182, -0.028194555203509317, -0.04219150715214234, -0.05457877311717521, -0.06493070436803873, -0.07289767359885617, -0.07821791110588011, -0.0807260957310708, -0.08035841900888296, -0.07715397033391228, -0.07125242480053505, -0.06288814876615123, -0.05238096632488973, -0.04012394814583263, -0.026568688321546328, -0.012208621327311176, 0.002439003077741934, 0.016851826377428752, 0.03052109011117852, 0.04296967406540747, 0.053768821473048026, 0.06255296236281953, 0.06903212053603999, 0.07300148191794809, 0.07434780871382221, 0.0730525008851991, 0.06919122959312501, 0.06293019189819835, 0.05451915761292793, 0.044281593376077864, 0.032602251679763036, 0.019912700106310844, 0.00667533538951681, -0.006633524236333319, -0.019540848163937433, -0.03159377983000821, -0.04237559500763905, -0.051520167128982344, -0.05872443544355742, -0.06375845011659592, -0.06647266126682304, -0.06680222287914005, -0.06476819358383892, -0.0604756303310773, -0.054108683804534465, -0.045922911900264936, -0.03623512587654767, -0.025411169370610814, -0.013852100397228263, -0.0019792983214781236, 0.009780950046420015, 0.021012819586947482, 0.031325714910948065, 0.04036791051131201, 0.047838584642428114, 0.053497833802000995, 0.05717433418260255, 0.05877040707734024, 0.0582643434843427, 0.055709945339613536, 0.05123334310131433, 0.04502724804043231, 0.03734288897772061, 0.028479964075154983, 0.018775005805519652, 0.008588609082842626, -0.001707992952076315, -0.011746504857197144, -0.021174798452209487, -0.029669318833816433, -0.03694622782708812, -0.042770899629863676, -0.04696545055163366, -0.04941406256489487, -0.050065945817869086, -0.048935875005748426, -0.04610232515398002, -0.04170332053935209, -0.035930192914804274, -0.02901951892814015, -0.021243569021919845, -0.012899649025980484, -0.004298749499029994, 0.004246064372453978, 0.01243108824350556, 0.019972820357788284, 0.026617820872690837, 0.03215124444723346, 0.03640375823852982, 0.039256623646293926, 0.040644793398175304, 0.04055795298509855, 0.03903951402937453, 0.036183643900051576, 0.03213048790184858, 0.027059805007310415, 0.021183293054701995, 0.01473592268539538, 0.007966629610276551, 0.001128731165978161, -0.005529564809178176, -0.011774202784292424, -0.01739354343518052, -0.022205555564830653, -0.02606369094099832, -0.028861253291280194, -0.030534135072521677, -0.031061861501375684, -0.03046694806800341, -0.028812642741460236, -0.02619918481564559, -0.02275876655323134, -0.01864942947420551, -0.014048162689223332, -0.009143494908091193, -0.00412788394098719, 0.0008097925759748933, 0.005491353598831351, 0.00975576998724227, 0.013464723956471858, 0.01650707998190697, 0.018802123238756137, 0.020301475039698022, 0.02098965047997122, 0.020883279315306705, 0.020029064724445156, 0.018500603914976214, 0.01639423760199416, 0.01382413059380505, 0.010916811776638485, 0.007805417815562298, 0.004623890421847378, 0.0015013720564290899, -0.0014429701437288641, -0.004104486793314706, -0.006396782070125914, -0.0082545089734605, -0.009635133948097143, -0.010519627537216856, -0.010912085336512506, -0.010838329962786566, -0.01034358806900075, -0.00948937483742639, -0.008349750297817449, -0.007007135977056776, -0.005547895863492519, -0.004057891915980598, -0.002618221216522773, -0.001301329610298486, -0.00016767593961968148, 0.0007369072416706204, 0.0013830449774162963, 0.0017587707400344493, 0.0018695661244606265, 0.0017375015738507295, 0.0013995322202329486, 0.0009050420777136894, 0.0003127645009415214 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Integration filter for readout_acquisition, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.99556196460308, -0.9602936856769432, -0.8910065241883682, -0.7901550123756911, -0.661311865323653, -0.509041415750373, -0.33873792024529364, -0.1564344650402337, 0.031410759078124906, 0.2181432413965387, 0.39714789063477646, 0.5620833778521264, 0.7071067811865434, 0.8270805742745581, 0.917754625683978, 0.9759167619387451, 0.9995065603657303, 0.9876883405951378, 0.9408807689542269, 0.8607420270039466, 0.7501110696304641, 0.6129070536529827, 0.4539904997395544, 0.27899110603923816, 0.09410831331852423, -0.09410831331850374, -0.27899110603921834, -0.453990499739536, -0.6129070536529662, -0.7501110696304503, -0.8607420270039359, -0.9408807689542196, -0.987688340595134, -0.9995065603657303, -0.9759167619387488, -0.9177546256839852, -0.8270805742745687, -0.7071067811865571, -0.5620833778521427, -0.39714789063479483, -0.21814324139655847, -0.03141075907814542, 0.15643446504021316, 0.3387379202452737, 0.5090414157503543, 0.6613118653236363, 0.7901550123756768, 0.8910065241883568, 0.9602936856769351, 0.9955619646030756, 0.9955619646030794, 0.9602936856769465, 0.8910065241883753, 0.7901550123757017, 0.6613118653236669, 0.5090414157503896, 0.33873792024531246, 0.15643446504025396, -0.03141075907810395, -0.21814324139651783, -0.3971478906347564, -0.5620833778521078, -0.707106781186527, -0.8270805742745445, -0.9177546256839677, -0.9759167619387384, -0.9995065603657275, -0.9876883405951389, -0.940880768954232, -0.8607420270039554, -0.7501110696304764, -0.6129070536529979, -0.4539904997395721, -0.2789911060392576, -0.09410831331854477, 0.09410831331848281, 0.2789911060391978, 0.45399049973951655, 0.6129070536529486, 0.7501110696304352, 0.8607420270039237, 0.9408807689542107, 0.9876883405951288, 0.999506560365729, 0.9759167619387515, 0.9177546256839919, 0.827080574274579, 0.7071067811865706, 0.5620833778521589, 0.39714789063481315, 0.2181432413965783, 0.03141075907816604, -0.15643446504019248, -0.33873792024525373, -0.5090414157503358, -0.6613118653236197, -0.7901550123756629, -0.8910065241883461, -0.960293685676928, -0.9955619646030722, -0.99556196460308, -0.960293685676951, -0.8910065241883834, -0.7901550123757133, -0.6613118653236816, -0.5090414157504068, -0.33873792024533156, -0.15643446504027428, 0.031410759078083106, 0.21814324139649718, 0.3971478906347367, 0.5620833778520897, 0.7071067811865112, 0.8270805742745314, 0.9177546256839579, 0.9759167619387323, 0.9995065603657253, 0.9876883405951405, 0.9408807689542376, 0.8607420270039647, 0.750111069630489, 0.6129070536530135, 0.45399049973958994, 0.27899110603927724, 0.09410831331856548, -0.0941083133184618, -0.2789911060391772, -0.4539904997394971, -0.612907053652931, -0.7501110696304198, -0.8607420270039113, -0.9408807689542018, -0.9876883405951238, -0.9995065603657278, -0.9759167619387542, -0.9177546256839985, -0.8270805742745891, -0.7071067811865841, -0.5620833778521751, -0.3971478906348317, -0.21814324139659846, -0.031410759078187106, 0.15643446504017122, 0.338737920245233, 0.5090414157503164, 0.6613118653236023, 0.790155012375648, 0.8910065241883345, 0.96029368567692, 0.9955619646030681, 0.9955619646030799, 0.9602936856769548, 0.8910065241883913, 0.7901550123757248, 0.6613118653236962, 0.509041415750424, 0.33873792024535077, 0.15643446504029487, -0.03141075907806187, -0.2181432413964761, -0.39714789063471645, -0.5620833778520711, -0.7071067811864948, -0.827080574274518, -0.9177546256839477, -0.9759167619387258, -0.9995065603657226, -0.987688340595142, -0.9408807689542429, -0.8607420270039737, -0.7501110696305014, -0.6129070536530289, -0.45399049973960787, -0.2789911060392969, -0.09410831331858616, 0.09410831331844077, 0.27899110603915656, 0.4539904997394776, 0.6129070536529133, 0.7501110696304046, 0.8607420270038991, 0.940880768954193, 0.9876883405951187, 0.9995065603657267, 0.9759167619387571, 0.9177546256840051, 0.8270805742745995, 0.7071067811865975, 0.5620833778521913, 0.39714789063485, 0.21814324139661828, 0.0314107590782077, -0.15643446504015054, -0.338737920245213, -0.5090414157502977, -0.6613118653235857, -0.790155012375634, -0.8910065241883235, -0.9602936856769124, -0.9955619646030643, -0.99556196460308, -0.9602936856769588, -0.891006524188399, -0.7901550123757359, -0.6613118653237104, -0.5090414157504408, -0.33873792024536953, -0.1564344650403149, 0.03141075907804128, 0.2181432413964557, 0.39714789063469697, 0.5620833778520532, 0.7071067811864792, 0.827080574274505, 0.917754625683938, 0.9759167619387196, 0.9995065603657202, 0.9876883405951433, 0.940880768954248, 0.8607420270039825, 0.7501110696305135, 0.6129070536530439, 0.45399049973962524, 0.2789911060393161, 0.0941083133186065, -0.09410831331842001, -0.2789911060391361, -0.45399049973945815, -0.6129070536528956, -0.7501110696303892, -0.8607420270038865, -0.9408807689541837, -0.987688340595113, -0.9995065603657248, -0.9759167619387591, -0.917754625684011, -0.827080574274609, -0.7071067811866105, -0.5620833778522072, -0.3971478906348683, -0.2181432413966382, -0.03141075907822863, 0.15643446504012942, 0.33873792024519245, 0.5090414157502784, 0.6613118653235683, 0.7901550123756192, 0.8910065241883118, 0.9602936856769042, 0.9955619646030599, 0.9955619646030796, 0.9602936856769623, 0.8910065241884063, 0.7901550123757468, 0.6613118653237244, 0.5090414157504576, 0.3387379202453884, 0.15643446504033526, -0.031410759078020184, -0.21814324139643454, -0.3971478906346766, -0.5620833778520343, -0.7071067811864624, -0.8270805742744911, -0.9177546256839273, -0.9759167619387126, -0.9995065603657172, -0.9876883405951444, -0.9408807689542531, -0.8607420270039915, -0.750111069630526, -0.6129070536530593, -0.4539904997396431, -0.27899110603933575, -0.09410831331862729, 0.09410831331839883, 0.27899110603911537, 0.4539904997394385, 0.6129070536528777, 0.7501110696303739, 0.8607420270038743, 0.9408807689541749, 0.9876883405951079, 0.9995065603657237, 0.975916761938762, 0.9177546256840178, 0.8270805742746193, 0.7071067811866241, 0.5620833778522235, 0.3971478906348867, 0.21814324139665814, 0.031410759078249334, -0.15643446504010866, -0.33873792024517235, -0.5090414157502596, -0.6613118653235516, -0.7901550123756051, -0.8910065241883008, -0.9602936856768968, -0.9955619646030562, -0.9955619646030798, -0.9602936856769665, -0.8910065241884143, -0.7901550123757582, -0.6613118653237389, -0.5090414157504746, -0.3387379202454073, -0.15643446504035538, 0.031410759077999534, 0.21814324139641408, 0.39714789063465705, 0.5620833778520162, 0.7071067811864465, 0.8270805742744779, 0.9177546256839174, 0.9759167619387062, 0.9995065603657146, 0.9876883405951458, 0.9408807689542583, 0.8607420270040003, 0.7501110696305382, 0.6129070536530744, 0.45399049973966055, 0.27899110603935495, 0.09410831331864758, -0.09410831331837821, -0.27899110603909516, -0.45399049973941946, -0.6129070536528605, -0.750111069630359, -0.8607420270038623, -0.9408807689541663, -0.9876883405951029, -0.9995065603657226, -0.9759167619387648, -0.9177546256840243, -0.8270805742746294, -0.7071067811866373, -0.5620833778522395, -0.39714789063490485, -0.21814324139667782, -0.031410759078269845, 0.156434465040088, 0.3387379202451523, 0.509041415750241, 0.6613118653235349, 0.790155012375591, 0.8910065241882899, 0.9602936856768892, 0.9955619646030524, 0.9955619646030798, 0.9602936856769703, 0.8910065241884217, 0.7901550123757692, 0.6613118653237531, 0.5090414157504912, 0.3387379202454259, 0.15643446504037536, -0.03141075907797891, -0.2181432413963936, -0.3971478906346374, -0.5620833778519982, -0.7071067811864308, -0.8270805742744649, -0.9177546256839076, -0.9759167619386999, -0.9995065603657121, -0.987688340595147, -0.9408807689542634, -0.860742027004009, -0.7501110696305502, -0.6129070536530894, -0.453990499739678, -0.2789911060393742, -0.09410831331866795, 0.09410831331835742, 0.2789911060390746, 0.4539904997394, 0.6129070536528427, 0.7501110696303436, 0.8607420270038497, 0.9408807689541572, 0.9876883405950976, 0.9995065603657212, 0.9759167619387672, 0.9177546256840307, 0.8270805742746394, 0.7071067811866506, 0.5620833778522556, 0.3971478906349232, 0.2181432413966977, 0.03141075907829058, -0.15643446504006714, -0.33873792024513205, -0.5090414157502221, -0.661311865323518, -0.7901550123755768, -0.8910065241882787, -0.9602936856768817, -0.9955619646030486, -0.9955619646030799, -0.9602936856769744, -0.8910065241884297, -0.7901550123757808, -0.6613118653237677, -0.5090414157505085, -0.33873792024544525, -0.15643446504039596, 0.03141075907795776, 0.21814324139637262, 0.3971478906346173, 0.5620833778519798, 0.7071067811864147, 0.8270805742744516, 0.9177546256838977, 0.9759167619386937, 0.9995065603657097, 0.9876883405951487, 0.9408807689542689, 0.8607420270040181, 0.7501110696305627, 0.6129070536531048, 0.45399049973969585, 0.2789911060393938, 0.09410831331868857, -0.09410831331833647, -0.27899110603905414, -0.4539904997393806, -0.6129070536528252, -0.7501110696303285, -0.8607420270038376, -0.9408807689541484, -0.9876883405950925, -0.9995065603657198, -0.9759167619387698, -0.917754625684037, -0.8270805742746494, -0.7071067811866638, -0.5620833778522717, -0.3971478906349415, -0.21814324139671767, -0.03141075907831148, 0.1564344650400461, 0.33873792024511157, 0.5090414157502028, 0.6613118653235008, 0.7901550123755622, 0.8910065241882672, 0.9602936856768737, 0.9955619646030445, 0.9955619646030797, 0.960293685676978, 0.8910065241884371, 0.7901550123757914, 0.6613118653237815, 0.509041415750525, 0.33873792024546373, 0.15643446504041586, -0.031410759077937195, -0.2181432413963521, -0.39714789063459754, -0.5620833778519614, -0.7071067811863984, -0.827080574274438, -0.9177546256838872, -0.9759167619386868, -0.9995065603657066, -0.9876883405951494, -0.9408807689542735, -0.8607420270040266, -0.7501110696305745, -0.6129070536531196, -0.45399049973971306, -0.2789911060394129, -0.09410831331870889, 0.09410831331831568, 0.27899110603903354, 0.453990499739361, 0.6129070536528073, 0.750111069630313, 0.8607420270038251, 0.9408807689541392, 0.9876883405950869, 0.9995065603657182, 0.9759167619387721, 0.9177546256840432, 0.8270805742746592, 0.7071067811866769, 0.5620833778522876, 0.3971478906349597, 0.21814324139673746, 0.03141075907833216, -0.15643446504002523, -0.3387379202450913, -0.5090414157501839, -0.661311865323484, -0.7901550123755479, -0.8910065241882559, -0.9602936856768657, -0.9955619646030401 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Waveforms", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# View the waveforms to be executed on the hardware\n", "res_spectroscopy.compiled_program.render(\n", " channel_subplots=False, lo_frequency=5e9, sweep_index=4, sample_rate=5e9\n", ")" ] }, { "cell_type": "raw", "id": "c7dbcff0", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To execute this experiment, we can simply run" ] }, { "cell_type": "code", "execution_count": 9, "id": "c4579263", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.777473Z", "iopub.status.busy": "2024-10-11T06:15:03.777065Z", "iopub.status.idle": "2024-10-11T06:15:03.892498Z", "shell.execute_reply": "2024-10-11T06:15:03.891603Z" } }, "outputs": [], "source": [ "if run_on_hw:\n", " res_spectroscopy.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " res_spectroscopy = qcs.load(\"ReadoutSpectroscopy.qcs\")" ] }, { "cell_type": "raw", "id": "05ddc783", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We can now plot the output trace waveforms that have been generated by the AWGs. To\n", "plot a specific channel, you may pass the argument to the ``channels`` parameter of\n", "``plot_trace`` method\n", "\n", ".. note::\n", " The ``plot_iq`` method is ideal for visualizing the transmission/reflection response\n", " from the resonator" ] }, { "cell_type": "code", "execution_count": 10, "id": "4912823c", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:03.896366Z", "iopub.status.busy": "2024-10-11T06:15:03.895996Z", "iopub.status.idle": "2024-10-11T06:15:04.147380Z", "shell.execute_reply": "2024-10-11T06:15:04.146643Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 4.95 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.003076171735301614, 0.0006591796409338713, -0.0010986328125, 0.0006591796409338713, 0.0041748047806322575, -0.002197265625, 0.0002197265566792339, 0.001977538922801614, 0.0006591796409338713, 0.00439453125, 0.0017578124534338713, 0.0035156249068677425, -0.002197265625, 0.0008789062267169356, 0.003955077845603228, -0.0032958984375, 0.0010986328125, 0.0013183592818677425, 0.003076171735301614, -0.002197265625, -0.0006591796409338713, -0.003735351376235485, 0.0035156249068677425, -0.0035156249068677425, 0.0028564452659338713, 0.008349609561264515, -0.003076171735301614, 0.003735351376235485, 0.0004394531133584678, 0.0057128905318677425, -0.0006591796409338713, 0.0013183592818677425, -0.0013183592818677425, 0.0028564452659338713, -0.003735351376235485, 0.003955077845603228, 0.0054931640625, 0.00527343712747097, 0.005053710658103228, 0.00527343712747097, 0.003955077845603228, 0.006152343470603228, -0.0017578124534338713, -0.0006591796409338713, 0.00439453125, 0.00439453125, 0.00637206993997097, 0.0057128905318677425, -0.0008789062267169356, 0.00527343712747097, 0.0057128905318677425, 0.005053710658103228, 0.001977538922801614, 0.007031249813735485, -0.0035156249068677425, 0.00747070275247097, -0.0017578124534338713, 0.007031249813735485, 0.0, 0.002636718563735485, 0.0024169920943677425, 0.00527343712747097, 0.007250976283103228, 0.0046142577193677425, 0.003955077845603228, 0.007031249813735485, 0.002636718563735485, 0.00856933556497097, 0.005053710658103228, 0.0076904296875, 0.0087890625, 0.01164550706744194, 0.007910155691206455, 0.013623046688735485, 0.007250976283103228, 0.013623046688735485, 0.012524413876235485, 0.009008788503706455, 0.01274413987994194, 0.0098876953125, 0.01735839806497097, 0.01054687425494194, 0.01779785193502903, 0.012524413876235485, 0.0120849609375, 0.01604003831744194, 0.01933593675494194, 0.01823730394244194, 0.019775390625, 0.01494140550494194, 0.01054687425494194, 0.0186767578125, 0.01274413987994194, 0.01823730394244194, 0.012304686941206455, 0.01406249962747097, 0.009228515438735485, 0.01296386681497097, 0.00527343712747097, 0.012524413876235485, 0.009228515438735485, 0.003076171735301614, 0.006591796875, 0.00637206993997097, 0.00637206993997097, 0.0054931640625, 0.0046142577193677425, -0.00747070275247097, -0.003735351376235485, -0.0006591796409338713, -0.0068115233443677425, -0.00637206993997097, -0.009228515438735485, -0.01494140550494194, -0.007910155691206455, -0.013403319753706455, -0.013403319753706455, -0.01691894419491291, -0.01911620981991291, -0.02241210825741291, -0.01889648474752903, -0.02219238132238388, -0.0252685546875, -0.02219238132238388, -0.02241210825741291, -0.02109374850988388, -0.02263183519244194, -0.02812499925494194, -0.02153320237994194, -0.02768554538488388, -0.02548827975988388, -0.03010253794491291, -0.02197265625, -0.02724609337747097, -0.02548827975988388, -0.0274658203125, -0.02592773362994194, -0.02395019493997097, -0.01845703087747097, -0.02241210825741291, -0.019775390625, -0.01735839806497097, -0.014501952566206455, -0.012524413876235485, -0.014721679501235485, -0.009008788503706455, -0.00966796837747097, -0.00439453125, -0.00856933556497097, 0.0004394531133584678, 0.0, 0.0032958984375, 0.005053710658103228, 0.010107421316206455, 0.009228515438735485, 0.01318359375, 0.007250976283103228, 0.017578125, 0.01823730394244194, 0.0230712890625, 0.02614746056497097, 0.02680663950741291, 0.019775390625, 0.028564453125, 0.02592773362994194, 0.03669433668255806, 0.03339843824505806, 0.03691406175494194, 0.03208007663488388, 0.03273925557732582, 0.03493652120232582, 0.0439453125, 0.04262695088982582, 0.04196777194738388, 0.04636230319738388, 0.03933105245232582, 0.04636230319738388, 0.03823241963982582, 0.050537109375, 0.04768066108226776, 0.04636230319738388, 0.04526367038488388, 0.04592284932732582, 0.04548339545726776, 0.04042968526482582, 0.03383788838982582, 0.04240722581744194, 0.03647460788488388, 0.03823241963982582, 0.03581542894244194, 0.0230712890625, 0.02614746056497097, 0.0263671875, 0.02373046800494194, 0.02504882775247097, 0.01911620981991291, 0.011425781063735485, 0.00966796837747097, 0.01054687425494194, 0.0068115233443677425, 0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.0057128905318677425, -0.01516113243997097, -0.0098876953125, -0.01582031138241291, -0.02175292931497097, -0.01889648474752903, -0.02834472618997097, -0.03142089769244194, -0.03142089769244194, -0.03669433668255806, -0.03559570387005806, -0.0340576171875, -0.03669433668255806, -0.04548339545726776, -0.04592284932732582, -0.04350585862994194, -0.04746093600988388, -0.04460449144244194, -0.04855956882238388, -0.05009765550494194, -0.050537109375, -0.04833984375, -0.04592284932732582, -0.0439453125, -0.04855956882238388, -0.04921874776482582, -0.0472412109375, -0.04768066108226776, -0.04526367038488388, -0.04372558370232582, -0.04218749701976776, -0.04108886793255806, -0.03251953050494194, -0.0362548828125, -0.03120117075741291, -0.0274658203125, -0.02680663950741291, -0.02373046800494194, -0.02175292931497097, -0.02175292931497097, -0.01845703087747097, -0.01296386681497097, -0.008349609561264515, -0.0076904296875, -0.0076904296875, -0.0017578124534338713, 0.0, 0.0054931640625, 0.009008788503706455, 0.00966796837747097, 0.02395019493997097, 0.02570800669491291, 0.02790527231991291, 0.02922363206744194, 0.03054199181497097, 0.03603515401482582, 0.03537597507238388, 0.03867187350988388, 0.04042968526482582, 0.0472412109375, 0.04240722581744194, 0.04746093600988388, 0.04921874776482582, 0.05624999850988388, 0.04899902269244194, 0.05471191182732582, 0.0582275390625, 0.059326171875, 0.05668945237994194, 0.052734375, 0.06130370870232582, 0.05559081956744194, 0.0604248046875, 0.05581054463982582, 0.04812011495232582, 0.04987792670726776, 0.0538330078125, 0.05229492112994194, 0.04899902269244194, 0.04877929389476776, 0.04042968526482582, 0.03977050632238388, 0.04262695088982582, 0.03251953050494194, 0.02922363206744194, 0.03208007663488388, 0.02460937388241291, 0.02592773362994194, 0.015380859375, 0.0164794921875, 0.009448242373764515, 0.01054687425494194, 0.0008789062267169356, 0.00527343712747097, 0.0010986328125, -0.001977538922801614, -0.007910155691206455, -0.0098876953125, -0.01296386681497097, -0.02109374850988388, -0.02548827975988388, -0.02329101413488388, -0.03032226487994194, -0.0340576171875, -0.03032226487994194, -0.03647460788488388, -0.0384521484375, -0.04108886793255806, -0.03757324069738388, -0.04790038987994194, -0.05075683444738388, -0.04921874776482582, -0.05141601338982582, -0.050537109375, -0.0472412109375, -0.050537109375, -0.05405273288488388, -0.05559081956744194, -0.05097655951976776, -0.05317382514476776, -0.04987792670726776, -0.0560302734375, -0.04680175706744194, -0.05207519233226776, -0.0450439453125, -0.04086913913488388, -0.04636230319738388, -0.03889160230755806, -0.03515625, -0.02878417819738388, -0.03427734225988388, -0.02878417819738388, -0.03208007663488388, -0.02153320237994194, -0.01669921912252903, -0.01691894419491291, -0.01691894419491291, -0.01318359375, -0.0068115233443677425, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, 0.003735351376235485, 0.009448242373764515, 0.010107421316206455, 0.01845703087747097, 0.02197265625, 0.01582031138241291, 0.02175292931497097, 0.02351074106991291, 0.02878417819738388, 0.03383788838982582, 0.032958984375, 0.03955078125, 0.03581542894244194, 0.0384521484375, 0.04570312425494194, 0.04921874776482582, 0.04482421651482582, 0.04877929389476776, 0.05031738057732582, 0.0439453125, 0.04965820163488388, 0.046142578125, 0.052734375, 0.04570312425494194, 0.05075683444738388, 0.04592284932732582, 0.04636230319738388, 0.04987792670726776, 0.0494384765625, 0.04833984375, 0.04658202826976776, 0.0406494140625, 0.03669433668255806, 0.04086913913488388, 0.03515625, 0.03691406175494194, 0.03273925557732582, 0.0318603515625, 0.02219238132238388, 0.0208740234375, 0.02175292931497097, 0.01933593675494194, 0.01713867112994194, 0.01713867112994194, 0.0054931640625, 0.00637206993997097, 0.0017578124534338713, 0.0008789062267169356, 0.0004394531133584678, -0.0002197265566792339, -0.011206054128706455, -0.00637206993997097, -0.014501952566206455, -0.012304686941206455, -0.013403319753706455, -0.015600585378706455, -0.02285156212747097, -0.01933593675494194, -0.02153320237994194, -0.02988281100988388, -0.02768554538488388, -0.02944335900247097, -0.0263671875, -0.032958984375, -0.03383788838982582, -0.03383788838982582, -0.037353515625, -0.03142089769244194, -0.03669433668255806, -0.0318603515625, -0.02988281100988388, -0.03537597507238388, -0.03208007663488388, -0.03493652120232582, -0.03120117075741291, -0.03273925557732582, -0.03251953050494194, -0.0274658203125, -0.03010253794491291, -0.02438964694738388, -0.02988281100988388, -0.02109374850988388, -0.02504882775247097, -0.02592773362994194, -0.01735839806497097, -0.01494140550494194, -0.0164794921875, -0.01076660118997097, -0.012304686941206455, -0.012524413876235485, -0.003076171735301614, -0.01296386681497097, -0.0076904296875, 0.002197265625, 0.0024169920943677425, 0.0046142577193677425, 0.0032958984375, 0.00747070275247097, 0.0068115233443677425, 0.004833984188735485, 0.010327148251235485, 0.010986328125, 0.01735839806497097, 0.01296386681497097, 0.01274413987994194, 0.017578125, 0.01735839806497097, 0.02175292931497097, 0.01801757700741291, 0.01889648474752903, 0.01735839806497097, 0.01955566368997097, 0.02768554538488388, 0.02021484263241291, 0.02482910081744194, 0.02197265625, 0.02592773362994194, 0.028564453125, 0.024169921875, 0.02395019493997097, 0.024169921875, 0.0252685546875, 0.02131347544491291, 0.01889648474752903, 0.02109374850988388, 0.01999511756002903, 0.01604003831744194, 0.01494140550494194, 0.02241210825741291, 0.0142822265625, 0.01999511756002903, 0.01801757700741291, 0.00856933556497097, 0.0098876953125, 0.009448242373764515, 0.01406249962747097, 0.012524413876235485, 0.006591796875, 0.0068115233443677425, 0.00966796837747097, 0.010327148251235485, 0.0004394531133584678, -0.0010986328125, 0.0035156249068677425, 0.0, -0.003735351376235485, -0.005932617001235485, -0.00747070275247097, -0.0024169920943677425, 0.0032958984375, -0.0017578124534338713, -0.00637206993997097, -0.0032958984375, -0.005932617001235485, -0.008129882626235485, -0.007031249813735485, -0.003076171735301614, -0.0068115233443677425, -0.00439453125, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0068115233443677425, -0.003076171735301614, -0.00637206993997097, -0.007031249813735485, -0.0006591796409338713, -0.003955077845603228, 0.0013183592818677425, -0.005053710658103228, -0.0046142577193677425, -0.0041748047806322575, -0.005053710658103228, 0.002636718563735485, 0.002636718563735485, -0.002197265625, 0.0, 0.0024169920943677425, 0.0028564452659338713, -0.0028564452659338713, -0.0004394531133584678, -0.0006591796409338713, 0.001538085867650807, 0.003955077845603228, 0.0041748047806322575, -0.002197265625, -0.0024169920943677425, 0.0032958984375, 0.004833984188735485, 0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, 0.0008789062267169356, 0.00747070275247097, -0.0013183592818677425, 0.0013183592818677425, 0.001538085867650807, 0.002636718563735485, 0.003955077845603228, -0.0035156249068677425, 0.001538085867650807, 0.00527343712747097, 0.0010986328125, 0.004833984188735485, -0.001977538922801614, -0.0010986328125, 0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, 0.0032958984375, 0.005053710658103228, -0.0004394531133584678, 0.005932617001235485, 0.0046142577193677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0054931640625, 0.0017578124534338713, -0.0013183592818677425, 0.00527343712747097, 0.003955077845603228, 0.0054931640625, -0.0032958984375, -0.0006591796409338713, 0.0008789062267169356, 0.006152343470603228, 0.0004394531133584678, 0.0, 0.0013183592818677425, 0.00439453125, -0.001538085867650807, 0.0046142577193677425, -0.0002197265566792339, 0.005053710658103228, -0.0006591796409338713, 0.004833984188735485, 0.0054931640625, 0.002197265625, 0.0013183592818677425, 0.001977538922801614, 0.001538085867650807, -0.0002197265566792339, -0.0024169920943677425, 0.006152343470603228, -0.0032958984375, 0.002636718563735485, -0.0006591796409338713, 0.0046142577193677425, 0.006152343470603228, -0.001977538922801614, 0.003955077845603228, 0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, 0.0008789062267169356, 0.0024169920943677425, 0.0017578124534338713, -0.0035156249068677425, 0.0035156249068677425, -0.003076171735301614, -0.0004394531133584678, 0.0002197265566792339, 0.003955077845603228, 0.006591796875, 0.0024169920943677425, 0.003735351376235485, 0.0024169920943677425, 0.0024169920943677425, 0.0041748047806322575, -0.003076171735301614, -0.0002197265566792339, -0.002197265625, -0.002197265625, -0.0004394531133584678, 0.0010986328125, -0.00637206993997097, -0.0035156249068677425, -0.0013183592818677425, -0.003076171735301614, 0.0004394531133584678, -0.0024169920943677425, -0.0068115233443677425, -0.0017578124534338713, -0.003076171735301614, -0.0032958984375, -0.0028564452659338713, -0.00747070275247097, -0.00747070275247097, -0.006152343470603228, -0.008129882626235485, -0.00527343712747097, -0.002197265625, -0.0046142577193677425, -0.001977538922801614, -0.0068115233443677425, -0.0013183592818677425, -0.003076171735301614, -0.003735351376235485, -0.01054687425494194, -0.006152343470603228, -0.002197265625, -0.003076171735301614, -0.00439453125, -0.0046142577193677425, -0.00966796837747097, -0.005053710658103228, -0.009008788503706455, -0.00966796837747097, -0.00527343712747097, -0.006591796875, -0.0057128905318677425, -0.005932617001235485, -0.010986328125, -0.014721679501235485, -0.00747070275247097, -0.01186523400247097, -0.0057128905318677425, -0.009228515438735485, -0.013403319753706455, -0.00747070275247097, -0.014501952566206455, -0.01186523400247097, -0.008349609561264515, -0.01274413987994194, -0.01076660118997097, -0.014501952566206455, -0.007031249813735485, -0.01669921912252903, -0.01494140550494194, -0.01779785193502903, -0.0098876953125, -0.0098876953125, -0.014501952566206455, -0.01054687425494194, -0.014721679501235485, -0.0142822265625, -0.01823730394244194, -0.0142822265625, -0.0186767578125, -0.01713867112994194, -0.014721679501235485, -0.017578125, -0.01296386681497097, -0.01911620981991291, -0.01296386681497097, -0.015380859375, -0.012524413876235485, -0.015380859375, -0.01582031138241291, -0.01713867112994194, -0.01582031138241291, -0.01076660118997097, -0.02131347544491291, -0.02065429650247097, -0.019775390625, -0.0186767578125, -0.015600585378706455, -0.0142822265625, -0.0208740234375, -0.02241210825741291, -0.01735839806497097, -0.02021484263241291, -0.01669921912252903, -0.01604003831744194, -0.019775390625, -0.02263183519244194, -0.02373046800494194, -0.02065429650247097, -0.02241210825741291, -0.01955566368997097, -0.02329101413488388, -0.02131347544491291, -0.02197265625, -0.02241210825741291, -0.01845703087747097, -0.0164794921875, -0.01801757700741291, -0.01999511756002903, -0.02680663950741291, -0.02504882775247097, -0.02131347544491291, -0.02131347544491291, -0.0208740234375, -0.02460937388241291, -0.02285156212747097, -0.02702636644244194, -0.0252685546875, -0.02548827975988388, -0.0208740234375, -0.02065429650247097, -0.02263183519244194, -0.01801757700741291, -0.02153320237994194, -0.02021484263241291, -0.01889648474752903, -0.02153320237994194, -0.02944335900247097, -0.02109374850988388, -0.02241210825741291, -0.02570800669491291, -0.0252685546875, -0.03032226487994194, -0.0252685546875, -0.02504882775247097, -0.02263183519244194, -0.02460937388241291, -0.02504882775247097, -0.0263671875, -0.0230712890625, -0.02219238132238388, -0.02241210825741291, -0.02351074106991291, -0.02219238132238388, -0.02834472618997097, -0.02834472618997097, -0.02351074106991291, -0.02197265625, -0.03054199181497097, -0.02438964694738388, -0.0252685546875, -0.03098144382238388, -0.0296630859375, -0.03120117075741291, -0.02724609337747097, -0.02812499925494194, -0.02658691257238388, -0.03120117075741291, -0.02724609337747097, -0.02438964694738388, -0.03076171875, -0.02812499925494194, -0.02812499925494194, -0.02900390513241291, -0.02944335900247097, -0.02614746056497097, -0.03098144382238388, -0.03120117075741291, -0.02988281100988388, -0.0252685546875, -0.032958984375, -0.02790527231991291, -0.02658691257238388, -0.0318603515625, -0.03054199181497097, -0.02988281100988388, -0.02812499925494194, -0.032958984375, -0.03317870944738388, -0.03208007663488388, -0.03054199181497097, -0.03208007663488388, -0.02834472618997097, -0.02548827975988388, -0.03120117075741291, -0.0340576171875, -0.02790527231991291, -0.02724609337747097, -0.03647460788488388, -0.03273925557732582, -0.03010253794491291, -0.02570800669491291, -0.02548827975988388, -0.03339843824505806, -0.03164062276482582, -0.02570800669491291, -0.028564453125, -0.03273925557732582, -0.0296630859375, -0.02592773362994194, -0.03273925557732582, -0.03515625, -0.02724609337747097, -0.02900390513241291, -0.03449707105755806, -0.0318603515625, -0.03317870944738388, -0.03317870944738388, -0.03317870944738388, -0.02834472618997097, -0.0340576171875, -0.03032226487994194, -0.02812499925494194, -0.0340576171875, -0.02504882775247097, -0.0318603515625, -0.02900390513241291, -0.03559570387005806, -0.028564453125, -0.03713378682732582, -0.02680663950741291, -0.0318603515625, -0.02922363206744194, -0.02878417819738388, -0.032958984375, -0.02614746056497097, -0.03603515401482582, -0.03449707105755806, -0.03427734225988388, -0.03076171875, -0.02482910081744194, -0.0296630859375, -0.03032226487994194, -0.03251953050494194, -0.02988281100988388, -0.03054199181497097, -0.03251953050494194, -0.03142089769244194, -0.03581542894244194, -0.02834472618997097, -0.03142089769244194, -0.02900390513241291, -0.02548827975988388, -0.02702636644244194, -0.02900390513241291, -0.02944335900247097, -0.03273925557732582, -0.02592773362994194, -0.03361816331744194, -0.02878417819738388, -0.03361816331744194, -0.02944335900247097, -0.03383788838982582, -0.0296630859375, -0.02724609337747097, -0.02504882775247097, -0.02548827975988388, -0.032958984375, -0.02614746056497097, -0.03120117075741291, -0.03449707105755806, -0.02878417819738388, -0.03120117075741291, -0.02724609337747097, -0.03317870944738388, -0.0274658203125, -0.03273925557732582, -0.03361816331744194, -0.02878417819738388, -0.02944335900247097, -0.02878417819738388, -0.02482910081744194, -0.02460937388241291, -0.03273925557732582, -0.02900390513241291, -0.0274658203125, -0.0274658203125, -0.02702636644244194, -0.03032226487994194, -0.03164062276482582, -0.02768554538488388, -0.0252685546875, -0.02351074106991291, -0.02504882775247097, -0.02373046800494194, -0.03208007663488388, -0.02482910081744194, -0.03142089769244194, -0.02768554538488388, -0.02614746056497097, -0.02438964694738388, -0.02944335900247097, -0.02702636644244194, -0.02460937388241291, -0.02900390513241291, -0.0274658203125, -0.02548827975988388, -0.0274658203125, -0.02351074106991291, -0.03098144382238388, -0.03120117075741291, -0.03098144382238388, -0.02900390513241291, -0.02900390513241291, -0.02131347544491291, -0.028564453125, -0.02592773362994194, -0.0230712890625, -0.03032226487994194, -0.0230712890625, -0.03010253794491291, -0.02790527231991291, -0.01889648474752903, -0.02241210825741291, -0.02438964694738388, -0.02614746056497097, -0.02131347544491291, -0.02131347544491291, -0.0263671875, -0.02702636644244194, -0.02878417819738388, -0.02834472618997097, -0.02131347544491291, -0.0230712890625, -0.02460937388241291, -0.02482910081744194, -0.02043456956744194, -0.02131347544491291, -0.01955566368997097, -0.02395019493997097, -0.02768554538488388, -0.02153320237994194, -0.02285156212747097, -0.0263671875, -0.01801757700741291, -0.024169921875, -0.02175292931497097, -0.02131347544491291, -0.01669921912252903, -0.02175292931497097, -0.01845703087747097, -0.02504882775247097, -0.01955566368997097, -0.01779785193502903, -0.02680663950741291, -0.02109374850988388, -0.0252685546875, -0.02043456956744194, -0.0186767578125, -0.02570800669491291, -0.02373046800494194, -0.01933593675494194, -0.01625976525247097, -0.01889648474752903, -0.01582031138241291, -0.02153320237994194, -0.02285156212747097, -0.01999511756002903, -0.01889648474752903, -0.01669921912252903, -0.01735839806497097, -0.017578125, -0.01933593675494194, -0.02021484263241291, -0.012304686941206455, -0.019775390625, -0.01823730394244194, -0.01889648474752903, -0.01669921912252903, -0.01296386681497097, -0.01999511756002903, -0.01669921912252903, -0.017578125, -0.01318359375, -0.01691894419491291, -0.01604003831744194, -0.01779785193502903, -0.0120849609375, -0.014721679501235485, -0.019775390625, -0.01801757700741291, -0.0142822265625, -0.01801757700741291, -0.015380859375, -0.011425781063735485, -0.01713867112994194, -0.0120849609375, -0.014721679501235485, -0.012524413876235485, -0.01076660118997097, -0.01406249962747097, -0.012524413876235485, -0.01604003831744194, -0.0120849609375, -0.015380859375, -0.013403319753706455, -0.010327148251235485, -0.01186523400247097, -0.01296386681497097, -0.0164794921875, -0.0068115233443677425, -0.007031249813735485, -0.0076904296875, -0.00856933556497097, -0.00527343712747097, -0.013623046688735485, -0.01274413987994194, -0.009448242373764515, -0.006591796875, -0.013403319753706455, -0.004833984188735485, -0.01494140550494194, -0.00747070275247097, -0.008349609561264515, -0.0046142577193677425, -0.0057128905318677425, -0.012524413876235485, -0.003735351376235485, -0.006152343470603228, -0.011206054128706455, -0.009228515438735485, -0.006152343470603228, -0.010327148251235485, -0.0032958984375, -0.0054931640625, -0.007250976283103228, -0.007250976283103228, -0.0057128905318677425, -0.0004394531133584678, -0.003076171735301614, 0.0, -0.002636718563735485, -0.0010986328125, -0.008129882626235485, -0.008129882626235485, -0.0008789062267169356, -0.0004394531133584678, -0.0041748047806322575, -0.007250976283103228, -0.005053710658103228, -0.0024169920943677425, -0.007250976283103228, -0.001977538922801614, -0.0013183592818677425, -0.00527343712747097, -0.0035156249068677425, -0.00527343712747097, 0.001977538922801614, -0.001538085867650807, -0.002197265625, 0.0008789062267169356, 0.003076171735301614, 0.003735351376235485, -0.0032958984375, 0.0024169920943677425, -0.002197265625, 0.004833984188735485, 0.004833984188735485, -0.0002197265566792339, 0.002636718563735485, 0.003076171735301614, 0.005053710658103228, 0.0013183592818677425, -0.002197265625, 0.0010986328125, 0.008129882626235485, 0.0054931640625, 0.003735351376235485, -0.0028564452659338713, -0.0002197265566792339, 0.0041748047806322575, -0.0006591796409338713, 0.006591796875, 0.00747070275247097, 0.001977538922801614, 0.005932617001235485, 0.010327148251235485, 0.007031249813735485, 0.006591796875, 0.006152343470603228, 0.0041748047806322575, 0.002636718563735485, 0.003735351376235485, 0.003735351376235485, 0.00527343712747097, 0.008129882626235485, 0.005053710658103228, 0.0024169920943677425, 0.0028564452659338713, 0.002197265625, 0.00856933556497097, 0.0, 0.006591796875, 0.0006591796409338713, 0.004833984188735485, 0.0098876953125, 0.003955077845603228, 0.006152343470603228, 0.0006591796409338713, 0.009448242373764515, 0.0098876953125, 0.005053710658103228, 0.0032958984375, 0.00856933556497097, 0.008129882626235485, 0.006591796875, 0.008349609561264515 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.05 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00637206993997097, 0.0046142577193677425, -0.002636718563735485, 0.0046142577193677425, 0.004833984188735485, -0.0006591796409338713, 0.001977538922801614, 0.0057128905318677425, -0.001538085867650807, 0.0008789062267169356, 0.0008789062267169356, 0.003735351376235485, -0.0006591796409338713, 0.00527343712747097, -0.0010986328125, 0.0041748047806322575, 0.00527343712747097, 0.003076171735301614, 0.004833984188735485, 0.007250976283103228, 0.0004394531133584678, -0.0010986328125, 0.001538085867650807, -0.0002197265566792339, 0.007250976283103228, 0.005053710658103228, 0.002636718563735485, -0.0004394531133584678, -0.0017578124534338713, 0.0054931640625, -0.0002197265566792339, 0.0032958984375, -0.0013183592818677425, -0.0006591796409338713, 0.0028564452659338713, 0.0008789062267169356, 0.0010986328125, -0.0010986328125, 0.0041748047806322575, -0.002197265625, 0.0006591796409338713, -0.001538085867650807, 0.003735351376235485, 0.0057128905318677425, 0.0006591796409338713, 0.00527343712747097, 0.001977538922801614, 0.0008789062267169356, 0.007031249813735485, 0.0010986328125, 0.0054931640625, 0.0017578124534338713, 0.0013183592818677425, -0.0057128905318677425, 0.003076171735301614, 0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.00747070275247097, -0.003076171735301614, 0.0013183592818677425, -0.006591796875, -0.004833984188735485, -0.002636718563735485, -0.00966796837747097, -0.005932617001235485, -0.0087890625, -0.00439453125, -0.0010986328125, -0.0004394531133584678, -0.0004394531133584678, -0.0054931640625, -0.0004394531133584678, -0.0035156249068677425, -0.0035156249068677425, -0.00439453125, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, 0.001977538922801614, -0.0028564452659338713, 0.0041748047806322575, -0.0004394531133584678, 0.00637206993997097, 0.0035156249068677425, 0.0028564452659338713, 0.009448242373764515, 0.00856933556497097, 0.0017578124534338713, 0.009228515438735485, 0.0054931640625, 0.01054687425494194, 0.01186523400247097, 0.009008788503706455, 0.010986328125, 0.0142822265625, 0.017578125, 0.01274413987994194, 0.015600585378706455, 0.014721679501235485, 0.01999511756002903, 0.01933593675494194, 0.02175292931497097, 0.02153320237994194, 0.0208740234375, 0.0230712890625, 0.02614746056497097, 0.02131347544491291, 0.02373046800494194, 0.019775390625, 0.0230712890625, 0.02175292931497097, 0.0208740234375, 0.02109374850988388, 0.0263671875, 0.02395019493997097, 0.02175292931497097, 0.01713867112994194, 0.02395019493997097, 0.02395019493997097, 0.01494140550494194, 0.01889648474752903, 0.01735839806497097, 0.015380859375, 0.014721679501235485, 0.00966796837747097, 0.010107421316206455, 0.00527343712747097, 0.01164550706744194, 0.005053710658103228, 0.003955077845603228, 0.0008789062267169356, 0.0013183592818677425, -0.0013183592818677425, -0.0068115233443677425, -0.001538085867650807, -0.0054931640625, -0.01406249962747097, -0.010986328125, -0.010107421316206455, -0.01801757700741291, -0.01735839806497097, -0.01713867112994194, -0.02592773362994194, -0.02460937388241291, -0.02504882775247097, -0.0274658203125, -0.03098144382238388, -0.02680663950741291, -0.03208007663488388, -0.03537597507238388, -0.03537597507238388, -0.03515625, -0.03076171875, -0.03208007663488388, -0.03691406175494194, -0.03647460788488388, -0.03669433668255806, -0.037353515625, -0.03559570387005806, -0.03757324069738388, -0.032958984375, -0.03339843824505806, -0.03010253794491291, -0.02658691257238388, -0.03120117075741291, -0.03032226487994194, -0.02790527231991291, -0.02153320237994194, -0.02570800669491291, -0.02197265625, -0.01582031138241291, -0.01779785193502903, -0.01845703087747097, -0.01318359375, -0.007910155691206455, -0.002636718563735485, -0.00637206993997097, -0.0054931640625, 0.0002197265566792339, 0.0054931640625, 0.00747070275247097, 0.0076904296875, 0.009448242373764515, 0.01582031138241291, 0.01713867112994194, 0.0186767578125, 0.02548827975988388, 0.02768554538488388, 0.03010253794491291, 0.0274658203125, 0.03010253794491291, 0.04086913913488388, 0.032958984375, 0.03801269456744194, 0.0450439453125, 0.04658202826976776, 0.0439453125, 0.04526367038488388, 0.05075683444738388, 0.05009765550494194, 0.04877929389476776, 0.04482421651482582, 0.05449218675494194, 0.05317382514476776, 0.04680175706744194, 0.05009765550494194, 0.04921874776482582, 0.04812011495232582, 0.04350585862994194, 0.04240722581744194, 0.0428466796875, 0.04130859300494194, 0.04438476264476776, 0.0428466796875, 0.03779296949505806, 0.037353515625, 0.03251953050494194, 0.0340576171875, 0.02438964694738388, 0.0274658203125, 0.01735839806497097, 0.015380859375, 0.00966796837747097, 0.01713867112994194, 0.013623046688735485, 0.00527343712747097, 0.005932617001235485, -0.0032958984375, 0.001538085867650807, -0.011206054128706455, -0.01274413987994194, -0.01384277269244194, -0.01318359375, -0.01669921912252903, -0.02153320237994194, -0.0208740234375, -0.02812499925494194, -0.03120117075741291, -0.03713378682732582, -0.03493652120232582, -0.03867187350988388, -0.03647460788488388, -0.04592284932732582, -0.04636230319738388, -0.05119628831744194, -0.04482421651482582, -0.04833984375, -0.04965820163488388, -0.04965820163488388, -0.05031738057732582, -0.05229492112994194, -0.05624999850988388, -0.05559081956744194, -0.054931640625, -0.05339355394244194, -0.052734375, -0.04460449144244194, -0.04812011495232582, -0.04526367038488388, -0.041748046875, -0.04768066108226776, -0.03537597507238388, -0.03955078125, -0.037353515625, -0.03713378682732582, -0.03339843824505806, -0.0296630859375, -0.01823730394244194, -0.019775390625, -0.01384277269244194, -0.01076660118997097, -0.00747070275247097, -0.00966796837747097, -0.004833984188735485, 0.00527343712747097, 0.0013183592818677425, 0.009228515438735485, 0.009008788503706455, 0.01318359375, 0.01823730394244194, 0.02043456956744194, 0.03032226487994194, 0.02504882775247097, 0.03164062276482582, 0.03603515401482582, 0.03515625, 0.03713378682732582, 0.0384521484375, 0.04899902269244194, 0.05251464620232582, 0.05009765550494194, 0.05031738057732582, 0.05405273288488388, 0.0582275390625, 0.05339355394244194, 0.05581054463982582, 0.06064452975988388, 0.05976562201976776, 0.05229492112994194, 0.05339355394244194, 0.05690917745232582, 0.05800781026482582, 0.05229492112994194, 0.05624999850988388, 0.04790038987994194, 0.04702148213982582, 0.05295410007238388, 0.04987792670726776, 0.0406494140625, 0.04240722581744194, 0.04548339545726776, 0.0384521484375, 0.03757324069738388, 0.03229980543255806, 0.02482910081744194, 0.03208007663488388, 0.02153320237994194, 0.01735839806497097, 0.01582031138241291, 0.01318359375, 0.006152343470603228, 0.0032958984375, 0.0032958984375, -0.001538085867650807, -0.003076171735301614, -0.0054931640625, -0.009448242373764515, -0.013403319753706455, -0.01691894419491291, -0.01999511756002903, -0.024169921875, -0.03120117075741291, -0.0252685546875, -0.02592773362994194, -0.03757324069738388, -0.03537597507238388, -0.03581542894244194, -0.03647460788488388, -0.0439453125, -0.04438476264476776, -0.04877929389476776, -0.04768066108226776, -0.05075683444738388, -0.04877929389476776, -0.04812011495232582, -0.04592284932732582, -0.046142578125, -0.05295410007238388, -0.04680175706744194, -0.04680175706744194, -0.0439453125, -0.046142578125, -0.04526367038488388, -0.04570312425494194, -0.04218749701976776, -0.03691406175494194, -0.03603515401482582, -0.03757324069738388, -0.03603515401482582, -0.03054199181497097, -0.02988281100988388, -0.02768554538488388, -0.02944335900247097, -0.02131347544491291, -0.01735839806497097, -0.0164794921875, -0.00966796837747097, -0.0035156249068677425, -0.004833984188735485, -0.006152343470603228, -0.001977538922801614, 0.0046142577193677425, 0.00439453125, 0.00527343712747097, 0.012524413876235485, 0.010986328125, 0.02109374850988388, 0.02570800669491291, 0.02329101413488388, 0.0252685546875, 0.03317870944738388, 0.03537597507238388, 0.032958984375, 0.03757324069738388, 0.03757324069738388, 0.04042968526482582, 0.037353515625, 0.03713378682732582, 0.03757324069738388, 0.04482421651482582, 0.04108886793255806, 0.04306640475988388, 0.04812011495232582, 0.04196777194738388, 0.04702148213982582, 0.0450439453125, 0.04350585862994194, 0.04108886793255806, 0.03955078125, 0.037353515625, 0.03933105245232582, 0.03581542894244194, 0.041748046875, 0.03779296949505806, 0.03120117075741291, 0.0340576171875, 0.0340576171875, 0.03229980543255806, 0.02702636644244194, 0.02988281100988388, 0.02131347544491291, 0.015600585378706455, 0.012524413876235485, 0.01779785193502903, 0.00856933556497097, 0.01494140550494194, 0.00747070275247097, 0.001538085867650807, 0.008349609561264515, -0.0010986328125, 0.0008789062267169356, 0.0006591796409338713, -0.0028564452659338713, -0.010986328125, -0.00856933556497097, -0.01406249962747097, -0.010986328125, -0.0186767578125, -0.01691894419491291, -0.019775390625, -0.02043456956744194, -0.02395019493997097, -0.02351074106991291, -0.02263183519244194, -0.0274658203125, -0.02900390513241291, -0.02153320237994194, -0.02460937388241291, -0.03054199181497097, -0.02724609337747097, -0.02197265625, -0.02504882775247097, -0.02790527231991291, -0.0296630859375, -0.02834472618997097, -0.02944335900247097, -0.02614746056497097, -0.02175292931497097, -0.017578125, -0.02197265625, -0.02395019493997097, -0.01691894419491291, -0.02548827975988388, -0.02241210825741291, -0.01911620981991291, -0.01735839806497097, -0.012304686941206455, -0.007910155691206455, -0.008349609561264515, -0.010327148251235485, -0.0046142577193677425, -0.001977538922801614, -0.001977538922801614, -0.0041748047806322575, -0.005932617001235485, -0.0028564452659338713, 0.002197265625, 0.0002197265566792339, 0.0006591796409338713, 0.006591796875, 0.00439453125, 0.003955077845603228, 0.006152343470603228, 0.009008788503706455, 0.007250976283103228, 0.011425781063735485, 0.008349609561264515, 0.013403319753706455, 0.0164794921875, 0.01669921912252903, 0.01516113243997097, 0.013403319753706455, 0.01823730394244194, 0.01691894419491291, 0.01604003831744194, 0.01779785193502903, 0.01889648474752903, 0.0164794921875, 0.011425781063735485, 0.010327148251235485, 0.0186767578125, 0.01318359375, 0.0098876953125, 0.01274413987994194, 0.007910155691206455, 0.00856933556497097, 0.00637206993997097, 0.0098876953125, 0.009228515438735485, 0.007910155691206455, 0.014721679501235485, 0.010986328125, 0.011425781063735485, 0.010107421316206455, 0.0057128905318677425, 0.0028564452659338713, 0.0017578124534338713, 0.0054931640625, 0.0054931640625, 0.002636718563735485, 0.0076904296875, 0.0006591796409338713, 0.0054931640625, 0.004833984188735485, 0.0046142577193677425, 0.0046142577193677425, 0.0002197265566792339, 0.002636718563735485, -0.0004394531133584678, 0.0076904296875, 0.002197265625, 0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, 0.0041748047806322575, 0.006591796875, 0.0017578124534338713, 0.0035156249068677425, 0.003735351376235485, 0.007250976283103228, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, 0.0013183592818677425, -0.0010986328125, 0.003955077845603228, -0.0006591796409338713, -0.0035156249068677425, 0.0024169920943677425, 0.003735351376235485, 0.002636718563735485, 0.0013183592818677425, 0.0, 0.0008789062267169356, 0.00637206993997097, -0.001538085867650807, -0.0035156249068677425, 0.0002197265566792339, 0.0013183592818677425, 0.003076171735301614, -0.0004394531133584678, 0.0013183592818677425, 0.001538085867650807, 0.0, 0.0013183592818677425, -0.0010986328125, -0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.1 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00439453125, 0.0046142577193677425, -0.0008789062267169356, -0.0024169920943677425, 0.0057128905318677425, 0.003955077845603228, 0.00439453125, -0.0010986328125, 0.005053710658103228, -0.0004394531133584678, -0.002636718563735485, 0.0010986328125, 0.002197265625, 0.002636718563735485, -0.0028564452659338713, 0.007250976283103228, -0.0010986328125, -0.0028564452659338713, 0.00439453125, 0.004833984188735485, 0.0004394531133584678, 0.001977538922801614, 0.002636718563735485, 0.0024169920943677425, 0.0028564452659338713, 0.0013183592818677425, 0.00527343712747097, -0.0008789062267169356, 0.0028564452659338713, 0.0057128905318677425, 0.002197265625, 0.0002197265566792339, -0.001977538922801614, 0.007031249813735485, -0.002197265625, -0.0002197265566792339, -0.003076171735301614, 0.002636718563735485, 0.0013183592818677425, 0.0004394531133584678, 0.002197265625, 0.0010986328125, 0.0041748047806322575, 0.005053710658103228, -0.0013183592818677425, 0.002636718563735485, 0.002197265625, 0.002636718563735485, 0.0054931640625, -0.002197265625, -0.003955077845603228, -0.002636718563735485, 0.0, -0.0046142577193677425, -0.0046142577193677425, -0.0024169920943677425, -0.001538085867650807, 0.003735351376235485, -0.0006591796409338713, 0.0028564452659338713, -0.003955077845603228, -0.001538085867650807, -0.005053710658103228, -0.002636718563735485, 0.0008789062267169356, 0.00527343712747097, -0.0017578124534338713, 0.004833984188735485, 0.0054931640625, 0.006591796875, 0.00856933556497097, 0.005932617001235485, 0.0076904296875, 0.008129882626235485, 0.0120849609375, 0.013403319753706455, 0.017578125, 0.01318359375, 0.01669921912252903, 0.015380859375, 0.01713867112994194, 0.01054687425494194, 0.01406249962747097, 0.01186523400247097, 0.01186523400247097, 0.014721679501235485, 0.011206054128706455, 0.0041748047806322575, 0.001977538922801614, 0.001977538922801614, -0.001977538922801614, 0.0004394531133584678, -0.002197265625, -0.0008789062267169356, -0.012304686941206455, -0.007250976283103228, -0.010986328125, -0.013403319753706455, -0.01669921912252903, -0.01296386681497097, -0.01999511756002903, -0.01691894419491291, -0.01889648474752903, -0.02021484263241291, -0.015600585378706455, -0.014501952566206455, -0.01691894419491291, -0.013403319753706455, -0.01625976525247097, -0.0098876953125, -0.001977538922801614, -0.0002197265566792339, 0.0006591796409338713, 0.0006591796409338713, 0.0076904296875, 0.00527343712747097, 0.009008788503706455, 0.011425781063735485, 0.01494140550494194, 0.01384277269244194, 0.01735839806497097, 0.02219238132238388, 0.03032226487994194, 0.028564453125, 0.02900390513241291, 0.02988281100988388, 0.03427734225988388, 0.03098144382238388, 0.024169921875, 0.02614746056497097, 0.02263183519244194, 0.02175292931497097, 0.02109374850988388, 0.014721679501235485, 0.011206054128706455, 0.0057128905318677425, 0.002197265625, 0.0057128905318677425, 0.0017578124534338713, -0.0057128905318677425, -0.009228515438735485, -0.00966796837747097, -0.01669921912252903, -0.01516113243997097, -0.02197265625, -0.028564453125, -0.03208007663488388, -0.02570800669491291, -0.03098144382238388, -0.03010253794491291, -0.03515625, -0.02790527231991291, -0.0263671875, -0.03032226487994194, -0.02592773362994194, -0.02482910081744194, -0.017578125, -0.01604003831744194, -0.01582031138241291, -0.011206054128706455, -0.00439453125, -0.0032958984375, 0.0032958984375, 0.0142822265625, 0.01384277269244194, 0.01801757700741291, 0.02373046800494194, 0.03054199181497097, 0.03229980543255806, 0.03757324069738388, 0.0362548828125, 0.04438476264476776, 0.037353515625, 0.03911132737994194, 0.04482421651482582, 0.04372558370232582, 0.04262695088982582, 0.03823241963982582, 0.03669433668255806, 0.02944335900247097, 0.03120117075741291, 0.02504882775247097, 0.0208740234375, 0.013403319753706455, 0.006152343470603228, -0.0035156249068677425, -0.0008789062267169356, -0.0054931640625, -0.01186523400247097, -0.01889648474752903, -0.02241210825741291, -0.028564453125, -0.03427734225988388, -0.03713378682732582, -0.03867187350988388, -0.0439453125, -0.04108886793255806, -0.04350585862994194, -0.03977050632238388, -0.0406494140625, -0.03757324069738388, -0.03383788838982582, -0.03647460788488388, -0.03471679612994194, -0.02395019493997097, -0.02197265625, -0.017578125, -0.008129882626235485, 0.0010986328125, -0.002636718563735485, 0.005053710658103228, 0.01735839806497097, 0.02131347544491291, 0.02900390513241291, 0.02988281100988388, 0.03273925557732582, 0.03955078125, 0.04020996019244194, 0.04746093600988388, 0.05339355394244194, 0.05339355394244194, 0.04899902269244194, 0.0494384765625, 0.05207519233226776, 0.04790038987994194, 0.04328612983226776, 0.04086913913488388, 0.03713378682732582, 0.03229980543255806, 0.02592773362994194, 0.01516113243997097, 0.01845703087747097, 0.0087890625, -0.0010986328125, -0.0032958984375, -0.009228515438735485, -0.01933593675494194, -0.02043456956744194, -0.03120117075741291, -0.03779296949505806, -0.0340576171875, -0.037353515625, -0.04921874776482582, -0.04812011495232582, -0.0494384765625, -0.0516357421875, -0.05449218675494194, -0.052734375, -0.04328612983226776, -0.03867187350988388, -0.03889160230755806, -0.03911132737994194, -0.03449707105755806, -0.0230712890625, -0.02131347544491291, -0.01801757700741291, -0.0087890625, 0.0008789062267169356, 0.0041748047806322575, 0.01186523400247097, 0.02131347544491291, 0.02790527231991291, 0.03669433668255806, 0.03955078125, 0.04592284932732582, 0.05251464620232582, 0.05515136569738388, 0.05251464620232582, 0.050537109375, 0.05427245795726776, 0.05712890625, 0.05339355394244194, 0.0560302734375, 0.04965820163488388, 0.04130859300494194, 0.04086913913488388, 0.03713378682732582, 0.02548827975988388, 0.02395019493997097, 0.01845703087747097, 0.01054687425494194, 0.00637206993997097, -0.0054931640625, -0.009008788503706455, -0.01933593675494194, -0.02065429650247097, -0.028564453125, -0.03229980543255806, -0.04262695088982582, -0.04152831807732582, -0.05009765550494194, -0.050537109375, -0.0516357421875, -0.04965820163488388, -0.0516357421875, -0.05537109076976776, -0.04790038987994194, -0.04438476264476776, -0.03757324069738388, -0.03383788838982582, -0.0340576171875, -0.02922363206744194, -0.01779785193502903, -0.01779785193502903, -0.00856933556497097, 0.00527343712747097, 0.00439453125, 0.0098876953125, 0.02395019493997097, 0.03208007663488388, 0.037353515625, 0.0384521484375, 0.04592284932732582, 0.04526367038488388, 0.04987792670726776, 0.05251464620232582, 0.05405273288488388, 0.05954589694738388, 0.05207519233226776, 0.05119628831744194, 0.04790038987994194, 0.04636230319738388, 0.046142578125, 0.03515625, 0.03493652120232582, 0.02790527231991291, 0.02065429650247097, 0.019775390625, 0.01384277269244194, 0.005932617001235485, -0.00966796837747097, -0.01076660118997097, -0.01494140550494194, -0.02570800669491291, -0.03251953050494194, -0.0340576171875, -0.03867187350988388, -0.03779296949505806, -0.0450439453125, -0.04702148213982582, -0.05119628831744194, -0.05229492112994194, -0.046142578125, -0.0472412109375, -0.04680175706744194, -0.03691406175494194, -0.03933105245232582, -0.032958984375, -0.02790527231991291, -0.0263671875, -0.01494140550494194, -0.01186523400247097, -0.00439453125, 0.0004394531133584678, 0.0054931640625, 0.01186523400247097, 0.013623046688735485, 0.02197265625, 0.03427734225988388, 0.03471679612994194, 0.04218749701976776, 0.04548339545726776, 0.0494384765625, 0.04921874776482582, 0.04636230319738388, 0.04548339545726776, 0.05141601338982582, 0.04438476264476776, 0.04548339545726776, 0.04416503757238388, 0.04350585862994194, 0.0384521484375, 0.02329101413488388, 0.03010253794491291, 0.014501952566206455, 0.01494140550494194, 0.009228515438735485, 0.0041748047806322575, -0.00527343712747097, -0.005053710658103228, -0.012524413876235485, -0.019775390625, -0.02021484263241291, -0.0318603515625, -0.03032226487994194, -0.03779296949505806, -0.0406494140625, -0.03779296949505806, -0.03559570387005806, -0.03823241963982582, -0.04438476264476776, -0.03911132737994194, -0.03911132737994194, -0.0318603515625, -0.03383788838982582, -0.02878417819738388, -0.02504882775247097, -0.0186767578125, -0.01911620981991291, -0.0046142577193677425, -0.003076171735301614, 0.002636718563735485, 0.007910155691206455, 0.01406249962747097, 0.01845703087747097, 0.024169921875, 0.02395019493997097, 0.02658691257238388, 0.03713378682732582, 0.03559570387005806, 0.03823241963982582, 0.03823241963982582, 0.03779296949505806, 0.03757324069738388, 0.03955078125, 0.03559570387005806, 0.02988281100988388, 0.032958984375, 0.03251953050494194, 0.03076171875, 0.02482910081744194, 0.01604003831744194, 0.01164550706744194, 0.015600585378706455, 0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.01054687425494194, -0.01274413987994194, -0.01296386681497097, -0.01735839806497097, -0.01955566368997097, -0.01933593675494194, -0.02504882775247097, -0.0296630859375, -0.0296630859375, -0.02351074106991291, -0.03098144382238388, -0.02834472618997097, -0.02702636644244194, -0.02548827975988388, -0.01955566368997097, -0.02219238132238388, -0.01625976525247097, -0.0164794921875, -0.014501952566206455, -0.01274413987994194, -0.009228515438735485, -0.0002197265566792339, 0.0017578124534338713, 0.0028564452659338713, 0.0087890625, 0.015380859375, 0.01669921912252903, 0.01669921912252903, 0.01669921912252903, 0.02241210825741291, 0.02109374850988388, 0.01911620981991291, 0.01955566368997097, 0.02395019493997097, 0.02373046800494194, 0.01955566368997097, 0.02285156212747097, 0.01801757700741291, 0.02570800669491291, 0.015380859375, 0.01669921912252903, 0.0164794921875, 0.009448242373764515, 0.00747070275247097, 0.00527343712747097, 0.0004394531133584678, 0.003076171735301614, -0.0032958984375, -0.0046142577193677425, -0.0008789062267169356, -0.010327148251235485, -0.008349609561264515, -0.0054931640625, -0.005932617001235485, -0.008129882626235485, -0.01384277269244194, -0.011206054128706455, -0.0087890625, -0.013403319753706455, -0.015600585378706455, -0.007031249813735485, -0.015380859375, -0.010107421316206455, -0.01054687425494194, -0.005053710658103228, -0.00637206993997097, -0.006152343470603228, -0.0013183592818677425, 0.0008789062267169356, -0.0017578124534338713, 0.003735351376235485, 0.0024169920943677425, 0.009008788503706455, 0.008129882626235485, 0.009228515438735485, 0.0032958984375, 0.0017578124534338713, 0.006591796875, 0.0068115233443677425, 0.003735351376235485, 0.0098876953125, 0.003076171735301614, 0.0046142577193677425, 0.001538085867650807, 0.002636718563735485, 0.010327148251235485, 0.0098876953125, 0.0076904296875, 0.0008789062267169356, 0.00637206993997097, 0.005932617001235485, -0.0028564452659338713, -0.0013183592818677425, 0.0004394531133584678, -0.002636718563735485, 0.0002197265566792339, -0.0002197265566792339, 0.0008789062267169356, -0.0017578124534338713, 0.0041748047806322575, 0.003955077845603228, 0.00747070275247097, 0.005053710658103228, 0.0, 0.006591796875, 0.0010986328125, 0.0035156249068677425, 0.0057128905318677425, 0.00747070275247097, 0.0010986328125, 0.0076904296875, 0.00439453125, -0.003735351376235485, -0.002197265625, 0.005932617001235485, 0.0028564452659338713, 0.003955077845603228, 0.002636718563735485, -0.0035156249068677425, 0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, 0.0006591796409338713, 0.004833984188735485, -0.0028564452659338713, 0.0017578124534338713, 0.0032958984375, 0.001977538922801614, -0.003735351376235485, 0.0, 0.00527343712747097, -0.0032958984375, 0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.15 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0017578124534338713, 0.0002197265566792339, 0.0, 0.003735351376235485, -0.003735351376235485, 0.0068115233443677425, -0.001538085867650807, 0.00637206993997097, -0.0004394531133584678, 0.0041748047806322575, 0.0054931640625, 0.005053710658103228, 0.0035156249068677425, 0.004833984188735485, 0.0006591796409338713, -0.0010986328125, 0.0008789062267169356, 0.0032958984375, 0.0032958984375, 0.00439453125, 0.005053710658103228, -0.003735351376235485, 0.0008789062267169356, 0.002197265625, 0.002636718563735485, 0.0017578124534338713, 0.00527343712747097, -0.0013183592818677425, 0.003735351376235485, 0.0004394531133584678, 0.007031249813735485, 0.001977538922801614, 0.0017578124534338713, 0.0032958984375, 0.0010986328125, -0.001538085867650807, 0.005932617001235485, -0.002197265625, 0.0032958984375, 0.0017578124534338713, 0.0054931640625, -0.0008789062267169356, -0.0004394531133584678, 0.0041748047806322575, 0.006591796875, 0.005053710658103228, 0.0017578124534338713, 0.0008789062267169356, 0.0046142577193677425, 0.00527343712747097, -0.0010986328125, 0.001538085867650807, 0.0006591796409338713, 0.002197265625, -0.0046142577193677425, -0.0008789062267169356, -0.0024169920943677425, -0.0035156249068677425, 0.002636718563735485, 0.003955077845603228, 0.001538085867650807, 0.0054931640625, 0.001538085867650807, 0.0046142577193677425, 0.006152343470603228, 0.01054687425494194, 0.008349609561264515, 0.005053710658103228, 0.006591796875, 0.009448242373764515, 0.0041748047806322575, 0.01164550706744194, 0.0076904296875, 0.003076171735301614, -0.0006591796409338713, -0.0004394531133584678, 0.0028564452659338713, -0.0046142577193677425, -0.0004394531133584678, -0.0068115233443677425, -0.009448242373764515, -0.011206054128706455, -0.01318359375, -0.0087890625, -0.01054687425494194, -0.011206054128706455, -0.010107421316206455, -0.00856933556497097, -0.0087890625, -0.003955077845603228, 0.0032958984375, 0.0004394531133584678, 0.0010986328125, 0.00856933556497097, 0.01164550706744194, 0.01186523400247097, 0.0142822265625, 0.024169921875, 0.012524413876235485, 0.019775390625, 0.01691894419491291, 0.02329101413488388, 0.02065429650247097, 0.01296386681497097, 0.0120849609375, 0.01296386681497097, 0.0054931640625, -0.0017578124534338713, -0.00439453125, -0.0054931640625, -0.015600585378706455, -0.01735839806497097, -0.02153320237994194, -0.02175292931497097, -0.01933593675494194, -0.02065429650247097, -0.01889648474752903, -0.02109374850988388, -0.014721679501235485, -0.015600585378706455, -0.0098876953125, -0.010107421316206455, -0.007031249813735485, -0.002197265625, 0.0046142577193677425, 0.01625976525247097, 0.01406249962747097, 0.019775390625, 0.02395019493997097, 0.02900390513241291, 0.03076171875, 0.03515625, 0.03251953050494194, 0.02922363206744194, 0.02373046800494194, 0.02109374850988388, 0.02219238132238388, 0.01823730394244194, 0.011206054128706455, 0.0032958984375, -0.002636718563735485, -0.01076660118997097, -0.01801757700741291, -0.01801757700741291, -0.02460937388241291, -0.03273925557732582, -0.02768554538488388, -0.0318603515625, -0.02944335900247097, -0.02548827975988388, -0.02482910081744194, -0.02219238132238388, -0.01823730394244194, -0.01164550706744194, -0.0002197265566792339, -0.0006591796409338713, 0.0087890625, 0.02065429650247097, 0.02768554538488388, 0.0296630859375, 0.03339843824505806, 0.03317870944738388, 0.03977050632238388, 0.03581542894244194, 0.03361816331744194, 0.04130859300494194, 0.03449707105755806, 0.0318603515625, 0.02329101413488388, 0.01999511756002903, 0.008129882626235485, -0.0010986328125, -0.0041748047806322575, -0.01054687425494194, -0.02570800669491291, -0.02460937388241291, -0.03054199181497097, -0.0362548828125, -0.0428466796875, -0.04152831807732582, -0.04240722581744194, -0.04020996019244194, -0.03010253794491291, -0.02438964694738388, -0.02241210825741291, -0.0164794921875, -0.006591796875, 0.003955077845603228, 0.01076660118997097, 0.02065429650247097, 0.02614746056497097, 0.03032226487994194, 0.03757324069738388, 0.04526367038488388, 0.04350585862994194, 0.04636230319738388, 0.04921874776482582, 0.03911132737994194, 0.03823241963982582, 0.03757324069738388, 0.028564453125, 0.02285156212747097, 0.006591796875, 0.0076904296875, -0.00747070275247097, -0.02153320237994194, -0.02460937388241291, -0.02768554538488388, -0.03889160230755806, -0.0406494140625, -0.04592284932732582, -0.04812011495232582, -0.04746093600988388, -0.04218749701976776, -0.03537597507238388, -0.03054199181497097, -0.02373046800494194, -0.01494140550494194, -0.003076171735301614, 0.001538085867650807, 0.01054687425494194, 0.02614746056497097, 0.02351074106991291, 0.03669433668255806, 0.04855956882238388, 0.04746093600988388, 0.05295410007238388, 0.05207519233226776, 0.0538330078125, 0.04592284932732582, 0.03999023512005806, 0.04108886793255806, 0.0252685546875, 0.01889648474752903, 0.013623046688735485, -0.003735351376235485, -0.010327148251235485, -0.01186523400247097, -0.02373046800494194, -0.03427734225988388, -0.0428466796875, -0.04482421651482582, -0.04833984375, -0.05141601338982582, -0.0538330078125, -0.04526367038488388, -0.04548339545726776, -0.03757324069738388, -0.02460937388241291, -0.01582031138241291, -0.010107421316206455, 0.00527343712747097, 0.01625976525247097, 0.02109374850988388, 0.03647460788488388, 0.04526367038488388, 0.04746093600988388, 0.05800781026482582, 0.04855956882238388, 0.05361327901482582, 0.05690917745232582, 0.05031738057732582, 0.04921874776482582, 0.03955078125, 0.03515625, 0.01669921912252903, 0.0120849609375, 0.0008789062267169356, -0.010327148251235485, -0.01845703087747097, -0.0296630859375, -0.04086913913488388, -0.04570312425494194, -0.04987792670726776, -0.05515136569738388, -0.04965820163488388, -0.05581054463982582, -0.04790038987994194, -0.04790038987994194, -0.03559570387005806, -0.02438964694738388, -0.01999511756002903, -0.0046142577193677425, 0.0054931640625, 0.01889648474752903, 0.02021484263241291, 0.02922363206744194, 0.04768066108226776, 0.04877929389476776, 0.0560302734375, 0.0560302734375, 0.05668945237994194, 0.05427245795726776, 0.04899902269244194, 0.04636230319738388, 0.03691406175494194, 0.0296630859375, 0.02482910081744194, 0.013623046688735485, 0.0046142577193677425, -0.01186523400247097, -0.01713867112994194, -0.0263671875, -0.03999023512005806, -0.04812011495232582, -0.04460449144244194, -0.05119628831744194, -0.052734375, -0.05537109076976776, -0.04548339545726776, -0.0439453125, -0.03801269456744194, -0.02482910081744194, -0.015380859375, -0.010107421316206455, 0.0068115233443677425, 0.01274413987994194, 0.02680663950741291, 0.02988281100988388, 0.04460449144244194, 0.04196777194738388, 0.0538330078125, 0.05119628831744194, 0.06020507588982582, 0.05646972358226776, 0.05185546725988388, 0.04899902269244194, 0.03559570387005806, 0.03317870944738388, 0.02109374850988388, 0.009228515438735485, -0.0010986328125, -0.00856933556497097, -0.02131347544491291, -0.0318603515625, -0.03010253794491291, -0.0450439453125, -0.04372558370232582, -0.046142578125, -0.04790038987994194, -0.0516357421875, -0.046142578125, -0.03867187350988388, -0.0318603515625, -0.028564453125, -0.01801757700741291, -0.008349609561264515, 0.008129882626235485, 0.0120849609375, 0.0186767578125, 0.0252685546875, 0.03493652120232582, 0.04877929389476776, 0.04658202826976776, 0.05119628831744194, 0.05097655951976776, 0.04658202826976776, 0.04702148213982582, 0.03889160230755806, 0.03493652120232582, 0.02570800669491291, 0.0208740234375, 0.0041748047806322575, 0.005053710658103228, -0.007031249813735485, -0.01274413987994194, -0.028564453125, -0.02988281100988388, -0.03361816331744194, -0.03779296949505806, -0.04218749701976776, -0.04108886793255806, -0.04218749701976776, -0.03801269456744194, -0.03779296949505806, -0.0263671875, -0.02021484263241291, -0.00856933556497097, -0.009228515438735485, 0.0035156249068677425, 0.01516113243997097, 0.02021484263241291, 0.03010253794491291, 0.03559570387005806, 0.04020996019244194, 0.04658202826976776, 0.04218749701976776, 0.05185546725988388, 0.04855956882238388, 0.04218749701976776, 0.04218749701976776, 0.03229980543255806, 0.028564453125, 0.01999511756002903, 0.00637206993997097, 0.002197265625, -0.006152343470603228, -0.01274413987994194, -0.02197265625, -0.02482910081744194, -0.03273925557732582, -0.03669433668255806, -0.03801269456744194, -0.0384521484375, -0.03867187350988388, -0.03010253794491291, -0.03098144382238388, -0.02131347544491291, -0.02460937388241291, -0.01318359375, -0.0028564452659338713, 0.0008789062267169356, 0.008129882626235485, 0.01845703087747097, 0.0263671875, 0.0296630859375, 0.03449707105755806, 0.03559570387005806, 0.04086913913488388, 0.04042968526482582, 0.037353515625, 0.03229980543255806, 0.02504882775247097, 0.03010253794491291, 0.02482910081744194, 0.01516113243997097, 0.009448242373764515, 0.005053710658103228, -0.0024169920943677425, -0.015600585378706455, -0.01889648474752903, -0.02351074106991291, -0.0208740234375, -0.02351074106991291, -0.0263671875, -0.03229980543255806, -0.02548827975988388, -0.02438964694738388, -0.02614746056497097, -0.01779785193502903, -0.010107421316206455, -0.0098876953125, -0.00439453125, 0.0013183592818677425, 0.0087890625, 0.012524413876235485, 0.011425781063735485, 0.0186767578125, 0.02680663950741291, 0.02658691257238388, 0.0296630859375, 0.03032226487994194, 0.02263183519244194, 0.024169921875, 0.02065429650247097, 0.01713867112994194, 0.01582031138241291, 0.01384277269244194, 0.002636718563735485, 0.0046142577193677425, -0.0024169920943677425, -0.008129882626235485, -0.00856933556497097, -0.01691894419491291, -0.01889648474752903, -0.01691894419491291, -0.02175292931497097, -0.0164794921875, -0.02153320237994194, -0.01516113243997097, -0.009448242373764515, -0.0087890625, -0.011206054128706455, -0.00747070275247097, -0.0013183592818677425, 0.0004394531133584678, 0.0046142577193677425, 0.0041748047806322575, 0.0098876953125, 0.01713867112994194, 0.01779785193502903, 0.01889648474752903, 0.02109374850988388, 0.0230712890625, 0.01691894419491291, 0.01889648474752903, 0.013623046688735485, 0.0164794921875, 0.01274413987994194, 0.01186523400247097, 0.0006591796409338713, 0.0046142577193677425, -0.0013183592818677425, 0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.00966796837747097, -0.009448242373764515, -0.007250976283103228, -0.005932617001235485, -0.013403319753706455, -0.003076171735301614, -0.001977538922801614, 0.0, -0.0035156249068677425, 0.0002197265566792339, -0.0041748047806322575, 0.0032958984375, 0.001977538922801614, 0.003735351376235485, 0.001538085867650807, 0.003076171735301614, 0.0024169920943677425, 0.0041748047806322575, 0.006591796875, 0.006152343470603228, 0.005053710658103228, 0.0017578124534338713, 0.003955077845603228, 0.0076904296875, 0.004833984188735485, 0.001538085867650807, 0.002636718563735485, 0.0046142577193677425, 0.00527343712747097, -0.0017578124534338713, 0.0013183592818677425, 0.0046142577193677425, 0.0, 0.001538085867650807, 0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, 0.0004394531133584678, 0.003076171735301614, -0.0032958984375, 0.0041748047806322575, 0.004833984188735485, -0.001538085867650807, -0.0002197265566792339, 0.0004394531133584678, 0.003735351376235485, 0.003955077845603228, 0.0041748047806322575, -0.001538085867650807, 0.0054931640625, 0.0041748047806322575, 0.003955077845603228, 0.0024169920943677425, -0.0002197265566792339, 0.0028564452659338713, 0.005053710658103228, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, 0.0 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.2 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0028564452659338713, 0.005053710658103228, -0.002636718563735485, -0.0010986328125, -0.0032958984375, -0.0013183592818677425, 0.001538085867650807, 0.0010986328125, 0.004833984188735485, 0.0032958984375, 0.0008789062267169356, 0.00527343712747097, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.004833984188735485, 0.0068115233443677425, 0.0002197265566792339, 0.002197265625, 0.007250976283103228, 0.0008789062267169356, 0.0046142577193677425, 0.0010986328125, -0.003076171735301614, -0.003735351376235485, -0.0013183592818677425, 0.0010986328125, 0.003076171735301614, 0.001977538922801614, 0.0017578124534338713, 0.0046142577193677425, 0.002197265625, -0.0004394531133584678, -0.0010986328125, 0.0054931640625, 0.0013183592818677425, -0.0006591796409338713, 0.0035156249068677425, 0.0041748047806322575, 0.0010986328125, -0.0010986328125, 0.00527343712747097, -0.0008789062267169356, 0.0004394531133584678, 0.0035156249068677425, -0.0028564452659338713, -0.0041748047806322575, 0.005932617001235485, 0.00637206993997097, 0.001977538922801614, 0.0024169920943677425, 0.0024169920943677425, 0.0008789062267169356, -0.00439453125, -0.0013183592818677425, 0.006152343470603228, 0.00856933556497097, 0.0010986328125, 0.00747070275247097, 0.00527343712747097, 0.0076904296875, 0.0057128905318677425, 0.00439453125, 0.005053710658103228, 0.001538085867650807, 0.0032958984375, -0.0024169920943677425, -0.002197265625, -0.00747070275247097, -0.006591796875, 0.0008789062267169356, -0.01164550706744194, -0.005053710658103228, -0.007031249813735485, -0.003735351376235485, -0.004833984188735485, -0.00527343712747097, -0.001538085867650807, 0.0024169920943677425, 0.0002197265566792339, 0.007250976283103228, 0.01274413987994194, 0.01186523400247097, 0.01516113243997097, 0.01296386681497097, 0.01845703087747097, 0.011425781063735485, 0.01318359375, 0.007250976283103228, 0.005932617001235485, 0.006591796875, 0.0013183592818677425, 0.0010986328125, -0.007031249813735485, -0.010986328125, -0.015600585378706455, -0.01735839806497097, -0.012524413876235485, -0.012524413876235485, -0.01296386681497097, -0.0087890625, -0.0057128905318677425, 0.0002197265566792339, 0.002636718563735485, 0.011206054128706455, 0.01691894419491291, 0.01933593675494194, 0.02351074106991291, 0.02724609337747097, 0.02548827975988388, 0.02263183519244194, 0.01625976525247097, 0.014501952566206455, 0.01054687425494194, 0.00747070275247097, 0.0002197265566792339, -0.009008788503706455, -0.013623046688735485, -0.01516113243997097, -0.02065429650247097, -0.01779785193502903, -0.02043456956744194, -0.019775390625, -0.02351074106991291, -0.013623046688735485, -0.009448242373764515, -0.0004394531133584678, -0.0013183592818677425, 0.013403319753706455, 0.01582031138241291, 0.0208740234375, 0.02241210825741291, 0.03010253794491291, 0.02548827975988388, 0.03229980543255806, 0.02944335900247097, 0.024169921875, 0.01582031138241291, 0.01054687425494194, -0.0010986328125, -0.0032958984375, -0.02197265625, -0.01801757700741291, -0.02922363206744194, -0.02900390513241291, -0.03251953050494194, -0.028564453125, -0.0274658203125, -0.01889648474752903, -0.01076660118997097, -0.0087890625, 0.00439453125, 0.013403319753706455, 0.01713867112994194, 0.02680663950741291, 0.03120117075741291, 0.03669433668255806, 0.03757324069738388, 0.0340576171875, 0.03493652120232582, 0.02482910081744194, 0.02197265625, 0.009448242373764515, 0.003076171735301614, -0.01164550706744194, -0.01713867112994194, -0.02790527231991291, -0.03076171875, -0.0384521484375, -0.03603515401482582, -0.037353515625, -0.02548827975988388, -0.02482910081744194, -0.01801757700741291, -0.001538085867650807, 0.003076171735301614, 0.01889648474752903, 0.02834472618997097, 0.02834472618997097, 0.03779296949505806, 0.04306640475988388, 0.0384521484375, 0.04196777194738388, 0.03493652120232582, 0.02592773362994194, 0.02241210825741291, 0.006152343470603228, 0.0032958984375, -0.01164550706744194, -0.0274658203125, -0.03471679612994194, -0.03647460788488388, -0.041748046875, -0.04086913913488388, -0.03823241963982582, -0.03515625, -0.03010253794491291, -0.01911620981991291, -0.01076660118997097, 0.002636718563735485, 0.0208740234375, 0.0296630859375, 0.03669433668255806, 0.03867187350988388, 0.05119628831744194, 0.04746093600988388, 0.0439453125, 0.04130859300494194, 0.03229980543255806, 0.01801757700741291, 0.0057128905318677425, 0.0006591796409338713, -0.01054687425494194, -0.02460937388241291, -0.0318603515625, -0.04570312425494194, -0.04526367038488388, -0.0494384765625, -0.04460449144244194, -0.03757324069738388, -0.03273925557732582, -0.01384277269244194, -0.009448242373764515, 0.0068115233443677425, 0.01823730394244194, 0.02812499925494194, 0.0439453125, 0.04768066108226776, 0.04965820163488388, 0.04658202826976776, 0.05537109076976776, 0.04328612983226776, 0.0362548828125, 0.02482910081744194, 0.01164550706744194, -0.00439453125, -0.01582031138241291, -0.02900390513241291, -0.0384521484375, -0.04526367038488388, -0.04768066108226776, -0.05295410007238388, -0.04152831807732582, -0.03889160230755806, -0.03339843824505806, -0.019775390625, -0.0120849609375, 0.0068115233443677425, 0.01999511756002903, 0.03383788838982582, 0.03999023512005806, 0.04833984375, 0.05668945237994194, 0.05559081956744194, 0.04768066108226776, 0.0450439453125, 0.037353515625, 0.02219238132238388, 0.005932617001235485, 0.0008789062267169356, -0.0164794921875, -0.02878417819738388, -0.03889160230755806, -0.04526367038488388, -0.05581054463982582, -0.0560302734375, -0.04570312425494194, -0.03757324069738388, -0.02900390513241291, -0.01911620981991291, -0.00856933556497097, 0.003076171735301614, 0.01735839806497097, 0.03120117075741291, 0.03867187350988388, 0.05075683444738388, 0.05405273288488388, 0.05009765550494194, 0.05207519233226776, 0.03977050632238388, 0.03757324069738388, 0.02373046800494194, 0.007250976283103228, -0.0057128905318677425, -0.0164794921875, -0.02702636644244194, -0.03977050632238388, -0.0428466796875, -0.05449218675494194, -0.05097655951976776, -0.05009765550494194, -0.0428466796875, -0.03010253794491291, -0.02460937388241291, -0.0054931640625, 0.007910155691206455, 0.02351074106991291, 0.03010253794491291, 0.04438476264476776, 0.0472412109375, 0.0516357421875, 0.05361327901482582, 0.05427245795726776, 0.04416503757238388, 0.03339843824505806, 0.02658691257238388, 0.007250976283103228, -0.0054931640625, -0.01735839806497097, -0.0296630859375, -0.03537597507238388, -0.04196777194738388, -0.0472412109375, -0.04702148213982582, -0.05339355394244194, -0.04020996019244194, -0.03054199181497097, -0.02482910081744194, -0.0035156249068677425, 0.007031249813735485, 0.0208740234375, 0.03010253794491291, 0.0450439453125, 0.05141601338982582, 0.052734375, 0.04768066108226776, 0.0516357421875, 0.03889160230755806, 0.03339843824505806, 0.02482910081744194, 0.007250976283103228, -0.0068115233443677425, -0.01889648474752903, -0.0274658203125, -0.03515625, -0.04108886793255806, -0.05009765550494194, -0.05009765550494194, -0.04240722581744194, -0.03757324069738388, -0.02592773362994194, -0.02175292931497097, -0.002636718563735485, 0.00856933556497097, 0.02109374850988388, 0.03164062276482582, 0.04262695088982582, 0.04768066108226776, 0.05229492112994194, 0.04877929389476776, 0.050537109375, 0.04438476264476776, 0.03515625, 0.01735839806497097, 0.01186523400247097, -0.00439453125, -0.01999511756002903, -0.02438964694738388, -0.03164062276482582, -0.04152831807732582, -0.04658202826976776, -0.046142578125, -0.04086913913488388, -0.03713378682732582, -0.0252685546875, -0.01691894419491291, -0.0057128905318677425, 0.0032958984375, 0.01318359375, 0.02131347544491291, 0.03164062276482582, 0.041748046875, 0.04350585862994194, 0.04526367038488388, 0.03933105245232582, 0.03933105245232582, 0.03449707105755806, 0.019775390625, 0.008129882626235485, -0.002197265625, -0.01274413987994194, -0.02153320237994194, -0.0318603515625, -0.03867187350988388, -0.03493652120232582, -0.03911132737994194, -0.03801269456744194, -0.0296630859375, -0.0208740234375, -0.013623046688735485, -0.008129882626235485, 0.009228515438735485, 0.011206054128706455, 0.02680663950741291, 0.03669433668255806, 0.04020996019244194, 0.04416503757238388, 0.04306640475988388, 0.03999023512005806, 0.03449707105755806, 0.02570800669491291, 0.01955566368997097, 0.010327148251235485, 0.003076171735301614, -0.015600585378706455, -0.019775390625, -0.02548827975988388, -0.03032226487994194, -0.03515625, -0.03273925557732582, -0.03471679612994194, -0.0274658203125, -0.01713867112994194, -0.014501952566206455, -0.007031249813735485, 0.009228515438735485, 0.0098876953125, 0.0186767578125, 0.02109374850988388, 0.02834472618997097, 0.03229980543255806, 0.03537597507238388, 0.037353515625, 0.03208007663488388, 0.02329101413488388, 0.017578125, 0.009448242373764515, -0.0024169920943677425, -0.007250976283103228, -0.015380859375, -0.02241210825741291, -0.0274658203125, -0.03208007663488388, -0.02438964694738388, -0.02197265625, -0.01713867112994194, -0.01999511756002903, -0.0068115233443677425, -0.008349609561264515, 0.007031249813735485, 0.01669921912252903, 0.0186767578125, 0.02351074106991291, 0.0274658203125, 0.03032226487994194, 0.0263671875, 0.02175292931497097, 0.01669921912252903, 0.01604003831744194, 0.012524413876235485, 0.00966796837747097, -0.0017578124534338713, -0.011206054128706455, -0.013403319753706455, -0.02043456956744194, -0.0164794921875, -0.0252685546875, -0.02548827975988388, -0.019775390625, -0.02021484263241291, -0.009228515438735485, -0.002636718563735485, -0.0024169920943677425, 0.003076171735301614, 0.003735351376235485, 0.012524413876235485, 0.014721679501235485, 0.014501952566206455, 0.01933593675494194, 0.02197265625, 0.01779785193502903, 0.02131347544491291, 0.01582031138241291, 0.008129882626235485, 0.0008789062267169356, 0.0006591796409338713, -0.0004394531133584678, -0.003735351376235485, -0.005932617001235485, -0.010327148251235485, -0.01318359375, -0.0087890625, -0.01406249962747097, -0.00747070275247097, -0.007910155691206455, -0.0054931640625, 0.002197265625, 0.008349609561264515, 0.003076171735301614, 0.010107421316206455, 0.01384277269244194, 0.0120849609375, 0.01406249962747097, 0.00966796837747097, 0.007910155691206455, 0.007031249813735485, 0.00747070275247097, -0.0008789062267169356, 0.006591796875, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.004833984188735485, 0.0, -0.004833984188735485, -0.0008789062267169356, -0.0006591796409338713, 0.0010986328125, -0.006591796875, 0.0046142577193677425, -0.0017578124534338713, 0.0076904296875, 0.003076171735301614, 0.007031249813735485, 0.001538085867650807, 0.0054931640625, 0.0035156249068677425, 0.007031249813735485, 0.0010986328125, 0.0057128905318677425, 0.0013183592818677425, 0.0017578124534338713, 0.001538085867650807, 0.004833984188735485, 0.00527343712747097, 0.002197265625, -0.0010986328125, 0.005932617001235485, -0.0006591796409338713, 0.0002197265566792339, 0.0010986328125, 0.0010986328125, -0.001977538922801614, 0.003076171735301614, 0.005053710658103228, 0.003735351376235485, -0.0010986328125, 0.002636718563735485, 0.0046142577193677425, -0.0010986328125, -0.0013183592818677425, 0.002636718563735485, -0.0002197265566792339, -0.0013183592818677425, 0.001538085867650807, -0.0017578124534338713, 0.0024169920943677425, 0.0013183592818677425, 0.0008789062267169356, -0.0046142577193677425, 0.006591796875, 0.006152343470603228, 0.0010986328125, -0.0006591796409338713, -0.0028564452659338713, 0.0057128905318677425, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.25 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0041748047806322575, -0.0028564452659338713, -0.0008789062267169356, 0.007031249813735485, -0.001977538922801614, -0.003076171735301614, 0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0002197265566792339, -0.0024169920943677425, 0.0, 0.005053710658103228, 0.002197265625, 0.004833984188735485, 0.005932617001235485, 0.006152343470603228, 0.001977538922801614, 0.003955077845603228, 0.0046142577193677425, 0.0017578124534338713, 0.005053710658103228, 0.003955077845603228, 0.004833984188735485, -0.0002197265566792339, 0.0006591796409338713, -0.0010986328125, 0.00439453125, -0.0017578124534338713, -0.0002197265566792339, 0.0013183592818677425, 0.006152343470603228, 0.00527343712747097, 0.002197265625, 0.0017578124534338713, 0.003955077845603228, 0.003076171735301614, 0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, 0.0, 0.0002197265566792339, 0.001538085867650807, 0.0008789062267169356, 0.0057128905318677425, 0.003076171735301614, 0.00527343712747097, 0.0024169920943677425, 0.00527343712747097, 0.002197265625, 0.0008789062267169356, -0.004833984188735485, 0.0004394531133584678, 0.0032958984375, 0.00439453125, 0.006591796875, 0.0010986328125, 0.0041748047806322575, 0.003076171735301614, 0.006591796875, 0.007910155691206455, 0.010986328125, 0.008129882626235485, 0.004833984188735485, 0.003955077845603228, 0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.00439453125, -0.005932617001235485, -0.007250976283103228, -0.002197265625, -0.005053710658103228, 0.0004394531133584678, 0.001538085867650807, 0.01296386681497097, 0.009228515438735485, 0.01735839806497097, 0.01691894419491291, 0.01735839806497097, 0.012524413876235485, 0.006152343470603228, 0.0008789062267169356, 0.00439453125, -0.003735351376235485, -0.002197265625, -0.013403319753706455, -0.0087890625, -0.01582031138241291, -0.013623046688735485, -0.009448242373764515, -0.0002197265566792339, 0.0004394531133584678, 0.007910155691206455, 0.015380859375, 0.013623046688735485, 0.014501952566206455, 0.02373046800494194, 0.02263183519244194, 0.01406249962747097, 0.01054687425494194, 0.011206054128706455, -0.001538085867650807, -0.00527343712747097, -0.014501952566206455, -0.01955566368997097, -0.01296386681497097, -0.0230712890625, -0.0120849609375, -0.0087890625, -0.0028564452659338713, 0.001977538922801614, 0.00527343712747097, 0.01801757700741291, 0.0230712890625, 0.01955566368997097, 0.02878417819738388, 0.02373046800494194, 0.02504882775247097, 0.017578125, 0.01318359375, 0.0010986328125, -0.0017578124534338713, -0.01582031138241291, -0.02285156212747097, -0.02175292931497097, -0.02329101413488388, -0.019775390625, -0.01582031138241291, -0.011425781063735485, -0.0057128905318677425, 0.003955077845603228, 0.01384277269244194, 0.02373046800494194, 0.03076171875, 0.03229980543255806, 0.03032226487994194, 0.02658691257238388, 0.01845703087747097, 0.01735839806497097, 0.0035156249068677425, -0.006591796875, -0.013403319753706455, -0.02175292931497097, -0.02988281100988388, -0.03449707105755806, -0.03142089769244194, -0.02241210825741291, -0.02065429650247097, -0.0068115233443677425, 0.00747070275247097, 0.01494140550494194, 0.02021484263241291, 0.03010253794491291, 0.03911132737994194, 0.03713378682732582, 0.032958984375, 0.02724609337747097, 0.015380859375, 0.007910155691206455, -0.009008788503706455, -0.01669921912252903, -0.02482910081744194, -0.03010253794491291, -0.03208007663488388, -0.0362548828125, -0.02504882775247097, -0.01494140550494194, -0.01274413987994194, 0.002636718563735485, 0.010327148251235485, 0.02944335900247097, 0.03999023512005806, 0.03669433668255806, 0.04086913913488388, 0.04020996019244194, 0.03361816331744194, 0.02219238132238388, 0.0035156249068677425, -0.005932617001235485, -0.01164550706744194, -0.02175292931497097, -0.03449707105755806, -0.04306640475988388, -0.03977050632238388, -0.03691406175494194, -0.02504882775247097, -0.015600585378706455, -0.002197265625, 0.015380859375, 0.02944335900247097, 0.03713378682732582, 0.04086913913488388, 0.04482421651482582, 0.03977050632238388, 0.03273925557732582, 0.02504882775247097, 0.014501952566206455, -0.0004394531133584678, -0.01779785193502903, -0.02548827975988388, -0.03779296949505806, -0.04548339545726776, -0.04196777194738388, -0.0384521484375, -0.02812499925494194, -0.02175292931497097, -0.0046142577193677425, 0.01494140550494194, 0.02219238132238388, 0.03955078125, 0.04570312425494194, 0.05097655951976776, 0.04548339545726776, 0.04218749701976776, 0.02944335900247097, 0.01406249962747097, -0.0002197265566792339, -0.01669921912252903, -0.02680663950741291, -0.04218749701976776, -0.04855956882238388, -0.0450439453125, -0.04592284932732582, -0.03229980543255806, -0.01955566368997097, -0.01186523400247097, 0.0076904296875, 0.02548827975988388, 0.03581542894244194, 0.05207519233226776, 0.05075683444738388, 0.04812011495232582, 0.04812011495232582, 0.03647460788488388, 0.02285156212747097, 0.008129882626235485, -0.012304686941206455, -0.0318603515625, -0.03757324069738388, -0.04416503757238388, -0.05009765550494194, -0.04460449144244194, -0.03691406175494194, -0.02702636644244194, -0.009228515438735485, 0.0024169920943677425, 0.02768554538488388, 0.03427734225988388, 0.05031738057732582, 0.054931640625, 0.05207519233226776, 0.05339355394244194, 0.0384521484375, 0.02878417819738388, 0.0087890625, -0.005053710658103228, -0.0252685546875, -0.037353515625, -0.04592284932732582, -0.04987792670726776, -0.04921874776482582, -0.03801269456744194, -0.03164062276482582, -0.01735839806497097, 0.0008789062267169356, 0.01823730394244194, 0.03757324069738388, 0.04855956882238388, 0.05756835639476776, 0.05427245795726776, 0.05185546725988388, 0.03779296949505806, 0.02175292931497097, 0.01054687425494194, -0.01076660118997097, -0.02197265625, -0.03493652120232582, -0.04460449144244194, -0.0472412109375, -0.0516357421875, -0.04130859300494194, -0.02988281100988388, -0.014721679501235485, -0.002636718563735485, 0.02043456956744194, 0.03559570387005806, 0.04899902269244194, 0.0494384765625, 0.05844726413488388, 0.052734375, 0.041748046875, 0.03076171875, 0.01625976525247097, -0.00527343712747097, -0.0230712890625, -0.03317870944738388, -0.04658202826976776, -0.05207519233226776, -0.04965820163488388, -0.04680175706744194, -0.03273925557732582, -0.019775390625, 0.0006591796409338713, 0.013623046688735485, 0.03383788838982582, 0.04130859300494194, 0.05251464620232582, 0.05756835639476776, 0.05888671800494194, 0.04152831807732582, 0.03515625, 0.0186767578125, 0.001538085867650807, -0.01296386681497097, -0.03229980543255806, -0.0439453125, -0.04965820163488388, -0.05229492112994194, -0.05097655951976776, -0.03801269456744194, -0.02175292931497097, -0.0046142577193677425, 0.0068115233443677425, 0.02790527231991291, 0.0439453125, 0.04702148213982582, 0.05251464620232582, 0.05207519233226776, 0.04921874776482582, 0.03427734225988388, 0.0274658203125, 0.006152343470603228, -0.01054687425494194, -0.03076171875, -0.0406494140625, -0.04196777194738388, -0.04658202826976776, -0.04592284932732582, -0.04130859300494194, -0.0274658203125, -0.014721679501235485, 0.00527343712747097, 0.02658691257238388, 0.0362548828125, 0.04350585862994194, 0.04877929389476776, 0.05581054463982582, 0.04350585862994194, 0.03427734225988388, 0.02395019493997097, 0.00439453125, -0.0098876953125, -0.02395019493997097, -0.02878417819738388, -0.04833984375, -0.0439453125, -0.04042968526482582, -0.0340576171875, -0.0263671875, -0.01582031138241291, 0.0076904296875, 0.01999511756002903, 0.0274658203125, 0.0450439453125, 0.05339355394244194, 0.05339355394244194, 0.04306640475988388, 0.04020996019244194, 0.02219238132238388, 0.012304686941206455, -0.00637206993997097, -0.015600585378706455, -0.028564453125, -0.03603515401482582, -0.04218749701976776, -0.04196777194738388, -0.03339843824505806, -0.02438964694738388, -0.010107421316206455, -0.0017578124534338713, 0.0142822265625, 0.02988281100988388, 0.03867187350988388, 0.04636230319738388, 0.04812011495232582, 0.04526367038488388, 0.03603515401482582, 0.02329101413488388, 0.01274413987994194, 0.0032958984375, -0.013623046688735485, -0.02988281100988388, -0.03383788838982582, -0.03823241963982582, -0.03251953050494194, -0.03999023512005806, -0.03010253794491291, -0.0186767578125, -0.00439453125, 0.0120849609375, 0.0230712890625, 0.03076171875, 0.03713378682732582, 0.04262695088982582, 0.03515625, 0.0384521484375, 0.02658691257238388, 0.01669921912252903, 0.0057128905318677425, -0.007031249813735485, -0.01669921912252903, -0.0274658203125, -0.03603515401482582, -0.03098144382238388, -0.03098144382238388, -0.02351074106991291, -0.013403319753706455, -0.002197265625, 0.009228515438735485, 0.02153320237994194, 0.02548827975988388, 0.02900390513241291, 0.03054199181497097, 0.03229980543255806, 0.03208007663488388, 0.02790527231991291, 0.019775390625, 0.0017578124534338713, -0.004833984188735485, -0.01516113243997097, -0.01933593675494194, -0.03032226487994194, -0.028564453125, -0.03010253794491291, -0.019775390625, -0.014501952566206455, -0.002636718563735485, 0.007250976283103228, 0.0120849609375, 0.02109374850988388, 0.03010253794491291, 0.03339843824505806, 0.03383788838982582, 0.03010253794491291, 0.02460937388241291, 0.008349609561264515, 0.009008788503706455, 0.0013183592818677425, -0.0087890625, -0.01735839806497097, -0.01955566368997097, -0.02285156212747097, -0.02197265625, -0.02131347544491291, -0.013623046688735485, -0.00637206993997097, 0.0054931640625, 0.012524413876235485, 0.01186523400247097, 0.02219238132238388, 0.02724609337747097, 0.02285156212747097, 0.02482910081744194, 0.01845703087747097, 0.00966796837747097, 0.0028564452659338713, -0.003735351376235485, -0.003955077845603228, -0.01164550706744194, -0.01845703087747097, -0.01823730394244194, -0.01318359375, -0.01164550706744194, -0.011206054128706455, -0.0002197265566792339, -0.0032958984375, 0.0046142577193677425, 0.008349609561264515, 0.01955566368997097, 0.014721679501235485, 0.02043456956744194, 0.02109374850988388, 0.014501952566206455, 0.01164550706744194, 0.005932617001235485, 0.004833984188735485, -0.004833984188735485, -0.009448242373764515, -0.01384277269244194, -0.015380859375, -0.009448242373764515, -0.0046142577193677425, -0.009448242373764515, -0.003076171735301614, 0.0006591796409338713, 0.006591796875, 0.010107421316206455, 0.00637206993997097, 0.006152343470603228, 0.010986328125, 0.01516113243997097, 0.010986328125, 0.00747070275247097, 0.0041748047806322575, 0.0024169920943677425, -0.003735351376235485, -0.0054931640625, -0.00439453125, -0.007250976283103228, 0.0004394531133584678, -0.002197265625, -0.004833984188735485, 0.0035156249068677425, -0.0024169920943677425, 0.0004394531133584678, 0.0004394531133584678, 0.00856933556497097, -0.0006591796409338713, 0.01076660118997097, 0.005053710658103228, 0.001977538922801614, 0.008129882626235485, 0.0017578124534338713, 0.006152343470603228, 0.003735351376235485, 0.00527343712747097, 0.0028564452659338713, 0.002197265625, 0.0035156249068677425, 0.0028564452659338713, -0.0013183592818677425, 0.0035156249068677425, -0.002636718563735485, -0.0017578124534338713, 0.001538085867650807, 0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, 0.007250976283103228, -0.003076171735301614, -0.0008789062267169356, 0.006591796875, 0.002636718563735485, 0.0, 0.001538085867650807, 0.003076171735301614, -0.0010986328125, -0.0032958984375, 0.0008789062267169356, -0.0024169920943677425, 0.0041748047806322575, -0.0013183592818677425, -0.002197265625, 0.002197265625, 0.005932617001235485, 0.0054931640625, -0.0008789062267169356, 0.003955077845603228, -0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.3 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0028564452659338713, 0.003735351376235485, 0.007250976283103228, 0.001977538922801614, -0.0002197265566792339, 0.003735351376235485, 0.0, 0.0002197265566792339, 0.003955077845603228, 0.003076171735301614, 0.0008789062267169356, 0.0046142577193677425, 0.0028564452659338713, 0.007031249813735485, 0.0, 0.0054931640625, 0.001977538922801614, 0.0041748047806322575, 0.0013183592818677425, 0.0054931640625, -0.0008789062267169356, 0.00747070275247097, 0.006152343470603228, -0.0006591796409338713, 0.003955077845603228, 0.002636718563735485, 0.003955077845603228, 0.003735351376235485, -0.0006591796409338713, 0.0017578124534338713, 0.0010986328125, 0.001977538922801614, -0.0006591796409338713, 0.003955077845603228, -0.0004394531133584678, -0.0004394531133584678, 0.0013183592818677425, 0.00637206993997097, 0.001538085867650807, 0.0013183592818677425, 0.0017578124534338713, 0.0032958984375, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, 0.001977538922801614, 0.002197265625, 0.0032958984375, 0.0035156249068677425, 0.003735351376235485, 0.005053710658103228, 0.005053710658103228, -0.0017578124534338713, -0.0002197265566792339, -0.003076171735301614, 0.006591796875, 0.00747070275247097, 0.005932617001235485, 0.006152343470603228, 0.006152343470603228, 0.005053710658103228, 0.001538085867650807, -0.001538085867650807, -0.0054931640625, -0.005053710658103228, -0.0054931640625, -0.00527343712747097, -0.006591796875, -0.0032958984375, -0.0006591796409338713, 0.00747070275247097, 0.006591796875, 0.009448242373764515, 0.01691894419491291, 0.01274413987994194, 0.01274413987994194, 0.0046142577193677425, 0.0004394531133584678, -0.002197265625, -0.010986328125, -0.008349609561264515, -0.010986328125, -0.009228515438735485, -0.005932617001235485, -0.0041748047806322575, 0.0032958984375, 0.01274413987994194, 0.015600585378706455, 0.01801757700741291, 0.0186767578125, 0.01582031138241291, 0.0098876953125, 0.0041748047806322575, -0.004833984188735485, -0.0098876953125, -0.01669921912252903, -0.012524413876235485, -0.010327148251235485, -0.01604003831744194, -0.0046142577193677425, 0.0024169920943677425, 0.0076904296875, 0.0098876953125, 0.01516113243997097, 0.01999511756002903, 0.02351074106991291, 0.0142822265625, 0.01604003831744194, 0.0028564452659338713, -0.0041748047806322575, -0.01384277269244194, -0.02021484263241291, -0.0164794921875, -0.01691894419491291, -0.01735839806497097, -0.011425781063735485, -0.0002197265566792339, 0.008349609561264515, 0.01384277269244194, 0.01779785193502903, 0.02548827975988388, 0.02504882775247097, 0.02043456956744194, 0.01911620981991291, 0.010986328125, -0.0076904296875, -0.0142822265625, -0.01889648474752903, -0.02131347544491291, -0.02021484263241291, -0.01801757700741291, -0.01384277269244194, -0.0032958984375, 0.010107421316206455, 0.01494140550494194, 0.02922363206744194, 0.03317870944738388, 0.03581542894244194, 0.02175292931497097, 0.01999511756002903, 0.009448242373764515, -0.0004394531133584678, -0.013403319753706455, -0.02263183519244194, -0.03120117075741291, -0.028564453125, -0.0263671875, -0.01713867112994194, -0.0006591796409338713, 0.00747070275247097, 0.02460937388241291, 0.02658691257238388, 0.03471679612994194, 0.03471679612994194, 0.0274658203125, 0.01999511756002903, 0.009008788503706455, -0.0032958984375, -0.01625976525247097, -0.02329101413488388, -0.03427734225988388, -0.02812499925494194, -0.02438964694738388, -0.01494140550494194, -0.007250976283103228, 0.0142822265625, 0.02197265625, 0.03361816331744194, 0.03449707105755806, 0.04262695088982582, 0.03779296949505806, 0.02351074106991291, 0.01054687425494194, -0.007910155691206455, -0.02131347544491291, -0.02944335900247097, -0.04020996019244194, -0.03757324069738388, -0.03647460788488388, -0.02263183519244194, -0.01076660118997097, 0.0098876953125, 0.02790527231991291, 0.03669433668255806, 0.04108886793255806, 0.03933105245232582, 0.041748046875, 0.02724609337747097, 0.00439453125, -0.00747070275247097, -0.02680663950741291, -0.032958984375, -0.03581542894244194, -0.03779296949505806, -0.03691406175494194, -0.02219238132238388, -0.00637206993997097, 0.0068115233443677425, 0.02438964694738388, 0.03933105245232582, 0.04328612983226776, 0.04372558370232582, 0.04196777194738388, 0.02680663950741291, 0.01582031138241291, -0.00637206993997097, -0.017578125, -0.037353515625, -0.03823241963982582, -0.0472412109375, -0.03317870944738388, -0.02680663950741291, -0.0041748047806322575, 0.01164550706744194, 0.03273925557732582, 0.037353515625, 0.0494384765625, 0.04680175706744194, 0.04570312425494194, 0.03317870944738388, 0.0164794921875, -0.00966796837747097, -0.0274658203125, -0.03801269456744194, -0.04306640475988388, -0.04855956882238388, -0.03427734225988388, -0.02834472618997097, -0.0120849609375, 0.0164794921875, 0.02482910081744194, 0.03801269456744194, 0.052734375, 0.05119628831744194, 0.04130859300494194, 0.02812499925494194, 0.013623046688735485, -0.011206054128706455, -0.02834472618997097, -0.03889160230755806, -0.0472412109375, -0.04855956882238388, -0.04328612983226776, -0.02944335900247097, -0.009448242373764515, 0.0164794921875, 0.03142089769244194, 0.04086913913488388, 0.04812011495232582, 0.04680175706744194, 0.03955078125, 0.02768554538488388, 0.006591796875, -0.003735351376235485, -0.03032226487994194, -0.03955078125, -0.04636230319738388, -0.04482421651482582, -0.037353515625, -0.02878417819738388, -0.007031249813735485, 0.010327148251235485, 0.02878417819738388, 0.04570312425494194, 0.05690917745232582, 0.05690917745232582, 0.04130859300494194, 0.02614746056497097, 0.0120849609375, -0.008349609561264515, -0.02900390513241291, -0.03603515401482582, -0.05185546725988388, -0.04921874776482582, -0.04130859300494194, -0.03098144382238388, -0.00856933556497097, 0.010986328125, 0.03449707105755806, 0.04680175706744194, 0.05559081956744194, 0.05229492112994194, 0.04812011495232582, 0.02878417819738388, 0.00856933556497097, -0.006591796875, -0.03098144382238388, -0.04482421651482582, -0.0538330078125, -0.04877929389476776, -0.046142578125, -0.03098144382238388, -0.006591796875, 0.013623046688735485, 0.03339843824505806, 0.0450439453125, 0.05690917745232582, 0.05317382514476776, 0.04702148213982582, 0.03251953050494194, 0.009008788503706455, -0.008349609561264515, -0.02373046800494194, -0.0384521484375, -0.04921874776482582, -0.04438476264476776, -0.0428466796875, -0.02614746056497097, -0.01296386681497097, 0.0120849609375, 0.02922363206744194, 0.04768066108226776, 0.04768066108226776, 0.04746093600988388, 0.05075683444738388, 0.03361816331744194, 0.01296386681497097, -0.0028564452659338713, -0.02658691257238388, -0.04416503757238388, -0.04855956882238388, -0.04833984375, -0.04218749701976776, -0.0230712890625, -0.00637206993997097, 0.006152343470603228, 0.02834472618997097, 0.04020996019244194, 0.04921874776482582, 0.05515136569738388, 0.03999023512005806, 0.02790527231991291, 0.01076660118997097, -0.003735351376235485, -0.02834472618997097, -0.03867187350988388, -0.04262695088982582, -0.05119628831744194, -0.03449707105755806, -0.028564453125, -0.0076904296875, 0.01296386681497097, 0.02680663950741291, 0.04240722581744194, 0.050537109375, 0.05185546725988388, 0.04372558370232582, 0.02614746056497097, 0.008129882626235485, -0.010107421316206455, -0.02680663950741291, -0.04152831807732582, -0.04812011495232582, -0.04746093600988388, -0.03867187350988388, -0.02043456956744194, -0.00527343712747097, 0.0120849609375, 0.03098144382238388, 0.04548339545726776, 0.04328612983226776, 0.04438476264476776, 0.04328612983226776, 0.0252685546875, 0.01186523400247097, -0.005932617001235485, -0.02043456956744194, -0.03054199181497097, -0.04680175706744194, -0.04372558370232582, -0.03603515401482582, -0.02285156212747097, -0.0076904296875, 0.011425781063735485, 0.02548827975988388, 0.0384521484375, 0.03823241963982582, 0.04526367038488388, 0.03471679612994194, 0.02504882775247097, 0.009008788503706455, -0.0004394531133584678, -0.01801757700741291, -0.02834472618997097, -0.04218749701976776, -0.03559570387005806, -0.0296630859375, -0.02285156212747097, -0.0046142577193677425, 0.00966796837747097, 0.02702636644244194, 0.032958984375, 0.0362548828125, 0.0362548828125, 0.03164062276482582, 0.0263671875, 0.014501952566206455, -0.001977538922801614, -0.01823730394244194, -0.02702636644244194, -0.03164062276482582, -0.03911132737994194, -0.03120117075741291, -0.02175292931497097, -0.009448242373764515, 0.0120849609375, 0.02241210825741291, 0.02900390513241291, 0.03823241963982582, 0.04306640475988388, 0.03317870944738388, 0.02153320237994194, 0.01186523400247097, -0.003955077845603228, -0.0208740234375, -0.03076171875, -0.0340576171875, -0.028564453125, -0.02197265625, -0.02351074106991291, -0.008349609561264515, 0.008349609561264515, 0.0142822265625, 0.03076171875, 0.03273925557732582, 0.02922363206744194, 0.03120117075741291, 0.02263183519244194, 0.01186523400247097, -0.0002197265566792339, -0.01713867112994194, -0.02834472618997097, -0.02768554538488388, -0.03076171875, -0.01669921912252903, -0.011206054128706455, -0.0013183592818677425, 0.007031249813735485, 0.01801757700741291, 0.0274658203125, 0.02812499925494194, 0.02988281100988388, 0.02658691257238388, 0.017578125, 0.004833984188735485, 0.003076171735301614, -0.01318359375, -0.01779785193502903, -0.02285156212747097, -0.02065429650247097, -0.01911620981991291, -0.009228515438735485, -0.007910155691206455, 0.0017578124534338713, 0.010107421316206455, 0.01911620981991291, 0.02329101413488388, 0.02702636644244194, 0.02065429650247097, 0.01494140550494194, 0.0032958984375, -0.0010986328125, -0.01076660118997097, -0.01582031138241291, -0.0186767578125, -0.014721679501235485, -0.019775390625, -0.00637206993997097, -0.0017578124534338713, 0.008129882626235485, 0.013623046688735485, 0.013623046688735485, 0.01625976525247097, 0.015600585378706455, 0.015380859375, 0.012524413876235485, 0.0041748047806322575, 0.0028564452659338713, -0.009448242373764515, -0.00856933556497097, -0.0142822265625, -0.010986328125, -0.006591796875, -0.010107421316206455, 0.001977538922801614, 0.001977538922801614, 0.004833984188735485, 0.00966796837747097, 0.0087890625, 0.012304686941206455, 0.00856933556497097, 0.004833984188735485, 0.0017578124534338713, -0.001538085867650807, 0.001977538922801614, -0.0035156249068677425, -0.0098876953125, -0.001977538922801614, -0.003735351376235485, -0.005932617001235485, -0.002636718563735485, 0.00527343712747097, 0.00527343712747097, 0.01164550706744194, 0.003735351376235485, 0.005932617001235485, 0.0041748047806322575, 0.0032958984375, 0.0004394531133584678, 0.003955077845603228, 0.0006591796409338713, -0.006591796875, -0.002636718563735485, -0.0017578124534338713, 0.0013183592818677425, 0.004833984188735485, 0.002197265625, -0.002636718563735485, 0.0054931640625, 0.007031249813735485, 0.001538085867650807, 0.003955077845603228, 0.0028564452659338713, 0.001977538922801614, 0.0008789062267169356, 0.002636718563735485, 0.003735351376235485, -0.001538085867650807, -0.0013183592818677425, 0.005932617001235485, 0.00439453125, -0.0024169920943677425, -0.0006591796409338713, 0.0032958984375, 0.0008789062267169356, -0.0004394531133584678, -0.0006591796409338713, 0.0002197265566792339, 0.0032958984375, 0.006152343470603228, 0.002197265625, 0.0035156249068677425, 0.0024169920943677425, -0.0006591796409338713, 0.0002197265566792339, 0.0004394531133584678, 0.007250976283103228, -0.003955077845603228, 0.003076171735301614, -0.0008789062267169356, 0.0041748047806322575, 0.005053710658103228, -0.0024169920943677425, 0.003735351376235485, -0.0008789062267169356, 0.001977538922801614, 0.003735351376235485, 0.0024169920943677425, -0.0002197265566792339, 0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for (readout_frequencies, 5.35 GHz)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, 0.0054931640625, 0.0006591796409338713, 0.00527343712747097, 0.003735351376235485, 0.003735351376235485, 0.0013183592818677425, 0.0010986328125, -0.0004394531133584678, 0.003735351376235485, 0.0008789062267169356, -0.0035156249068677425, 0.00637206993997097, 0.0028564452659338713, -0.0013183592818677425, 0.003955077845603228, 0.00637206993997097, -0.002636718563735485, 0.001977538922801614, 0.006152343470603228, 0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, -0.0006591796409338713, 0.001977538922801614, 0.0041748047806322575, 0.0035156249068677425, 0.0008789062267169356, 0.0013183592818677425, 0.0057128905318677425, -0.0010986328125, -0.001538085867650807, 0.004833984188735485, 0.005053710658103228, 0.003076171735301614, 0.0002197265566792339, -0.001538085867650807, 0.0046142577193677425, -0.0004394531133584678, -0.0017578124534338713, 0.002197265625, 0.0035156249068677425, 0.003955077845603228, 0.005053710658103228, 0.001538085867650807, 0.003076171735301614, 0.0004394531133584678, 0.0028564452659338713, 0.006152343470603228, 0.002197265625, -0.003735351376235485, -0.0002197265566792339, 0.005053710658103228, 0.00747070275247097, 0.0002197265566792339, 0.0087890625, 0.0024169920943677425, 0.003955077845603228, 0.0041748047806322575, 0.0006591796409338713, -0.0068115233443677425, 0.001538085867650807, -0.005932617001235485, -0.004833984188735485, 0.0008789062267169356, 0.0046142577193677425, 0.00439453125, 0.010327148251235485, 0.01076660118997097, 0.0028564452659338713, 0.004833984188735485, 0.005053710658103228, 0.0, -0.00966796837747097, -0.0010986328125, -0.012524413876235485, -0.009228515438735485, 0.0002197265566792339, 0.002636718563735485, 0.004833984188735485, 0.012524413876235485, 0.01779785193502903, 0.01318359375, 0.00856933556497097, 0.010107421316206455, 0.00439453125, -0.0054931640625, -0.01164550706744194, -0.007250976283103228, -0.007910155691206455, -0.01296386681497097, -0.005053710658103228, 0.003735351376235485, 0.014501952566206455, 0.014501952566206455, 0.015380859375, 0.01582031138241291, 0.0120849609375, 0.01274413987994194, -0.002197265625, -0.007250976283103228, -0.01494140550494194, -0.015380859375, -0.013623046688735485, -0.011206054128706455, 0.002197265625, 0.004833984188735485, 0.014721679501235485, 0.02043456956744194, 0.01889648474752903, 0.02241210825741291, 0.01582031138241291, 0.0, -0.0046142577193677425, -0.015380859375, -0.02043456956744194, -0.02021484263241291, -0.01779785193502903, -0.015600585378706455, -0.001538085867650807, 0.00966796837747097, 0.02131347544491291, 0.03054199181497097, 0.02680663950741291, 0.02285156212747097, 0.01582031138241291, 0.00439453125, -0.01076660118997097, -0.02241210825741291, -0.03032226487994194, -0.0230712890625, -0.024169921875, -0.011206054128706455, 0.002197265625, 0.02131347544491291, 0.02724609337747097, 0.0340576171875, 0.03208007663488388, 0.02614746056497097, 0.007910155691206455, -0.0028564452659338713, -0.01494140550494194, -0.02438964694738388, -0.03054199181497097, -0.02285156212747097, -0.02329101413488388, -0.001977538922801614, 0.012524413876235485, 0.02395019493997097, 0.03273925557732582, 0.03911132737994194, 0.03383788838982582, 0.01801757700741291, 0.0068115233443677425, -0.0076904296875, -0.02285156212747097, -0.02658691257238388, -0.03647460788488388, -0.03317870944738388, -0.01274413987994194, -0.0054931640625, 0.01274413987994194, 0.02702636644244194, 0.04152831807732582, 0.03581542894244194, 0.03208007663488388, 0.02504882775247097, 0.006152343470603228, -0.011425781063735485, -0.024169921875, -0.03273925557732582, -0.03251953050494194, -0.02944335900247097, -0.017578125, 0.0057128905318677425, 0.0208740234375, 0.037353515625, 0.046142578125, 0.04680175706744194, 0.02988281100988388, 0.01494140550494194, -0.002636718563735485, -0.01406249962747097, -0.02922363206744194, -0.03581542894244194, -0.04152831807732582, -0.03098144382238388, -0.009008788503706455, 0.004833984188735485, 0.02834472618997097, 0.04042968526482582, 0.04526367038488388, 0.04086913913488388, 0.02878417819738388, 0.01625976525247097, -0.0068115233443677425, -0.02395019493997097, -0.0384521484375, -0.037353515625, -0.03933105245232582, -0.0296630859375, -0.007250976283103228, 0.011425781063735485, 0.0263671875, 0.04877929389476776, 0.0439453125, 0.03889160230755806, 0.02285156212747097, 0.0057128905318677425, -0.010107421316206455, -0.032958984375, -0.037353515625, -0.04812011495232582, -0.03493652120232582, -0.02504882775247097, -0.001538085867650807, 0.02153320237994194, 0.03603515401482582, 0.04570312425494194, 0.05471191182732582, 0.04460449144244194, 0.024169921875, 0.001977538922801614, -0.01999511756002903, -0.0406494140625, -0.04262695088982582, -0.04592284932732582, -0.03823241963982582, -0.01845703087747097, 0.0024169920943677425, 0.03142089769244194, 0.04438476264476776, 0.05075683444738388, 0.04482421651482582, 0.04152831807732582, 0.01911620981991291, -0.007031249813735485, -0.02329101413488388, -0.03801269456744194, -0.04987792670726776, -0.04965820163488388, -0.02922363206744194, -0.011206054128706455, 0.01911620981991291, 0.02812499925494194, 0.05031738057732582, 0.0516357421875, 0.04482421651482582, 0.03823241963982582, 0.015600585378706455, -0.01296386681497097, -0.03515625, -0.04482421651482582, -0.04746093600988388, -0.04416503757238388, -0.02438964694738388, -0.0008789062267169356, 0.01889648474752903, 0.0384521484375, 0.0516357421875, 0.05646972358226776, 0.04218749701976776, 0.03229980543255806, 0.005053710658103228, -0.015600585378706455, -0.03559570387005806, -0.050537109375, -0.04702148213982582, -0.03669433668255806, -0.02724609337747097, 0.0013183592818677425, 0.02175292931497097, 0.04130859300494194, 0.0582275390625, 0.05800781026482582, 0.03977050632238388, 0.02329101413488388, -0.002197265625, -0.0230712890625, -0.04658202826976776, -0.0516357421875, -0.04921874776482582, -0.04042968526482582, -0.011425781063735485, 0.006591796875, 0.02614746056497097, 0.05185546725988388, 0.05690917745232582, 0.05075683444738388, 0.03779296949505806, 0.01604003831744194, -0.01296386681497097, -0.03647460788488388, -0.04833984375, -0.054931640625, -0.04746093600988388, -0.0263671875, -0.010327148251235485, 0.019775390625, 0.03317870944738388, 0.05295410007238388, 0.04965820163488388, 0.04548339545726776, 0.03120117075741291, 0.01406249962747097, -0.01406249962747097, -0.04020996019244194, -0.04658202826976776, -0.05009765550494194, -0.03867187350988388, -0.02548827975988388, -0.004833984188735485, 0.02021484263241291, 0.03779296949505806, 0.05559081956744194, 0.0538330078125, 0.04592284932732582, 0.019775390625, 0.003955077845603228, -0.02065429650247097, -0.04328612983226776, -0.04790038987994194, -0.04877929389476776, -0.03867187350988388, -0.02131347544491291, 0.007250976283103228, 0.02900390513241291, 0.0428466796875, 0.05295410007238388, 0.04965820163488388, 0.03977050632238388, 0.0142822265625, -0.00747070275247097, -0.02834472618997097, -0.04548339545726776, -0.04790038987994194, -0.04240722581744194, -0.03164062276482582, -0.0142822265625, 0.007031249813735485, 0.03581542894244194, 0.04306640475988388, 0.050537109375, 0.04548339545726776, 0.02680663950741291, 0.00637206993997097, -0.00747070275247097, -0.02680663950741291, -0.03977050632238388, -0.05075683444738388, -0.03713378682732582, -0.0274658203125, -0.008129882626235485, 0.01582031138241291, 0.03691406175494194, 0.04240722581744194, 0.05361327901482582, 0.03779296949505806, 0.02241210825741291, 0.009008788503706455, -0.010986328125, -0.03120117075741291, -0.0428466796875, -0.04658202826976776, -0.0384521484375, -0.01823730394244194, 0.001977538922801614, 0.01801757700741291, 0.03713378682732582, 0.0450439453125, 0.04416503757238388, 0.03229980543255806, 0.01845703087747097, 0.001977538922801614, -0.02351074106991291, -0.03867187350988388, -0.04218749701976776, -0.04020996019244194, -0.03251953050494194, -0.015380859375, 0.0041748047806322575, 0.02395019493997097, 0.03911132737994194, 0.04460449144244194, 0.03823241963982582, 0.02900390513241291, 0.01516113243997097, -0.009008788503706455, -0.02548827975988388, -0.03317870944738388, -0.03603515401482582, -0.03537597507238388, -0.01911620981991291, -0.009228515438735485, 0.01735839806497097, 0.02592773362994194, 0.0362548828125, 0.04218749701976776, 0.03911132737994194, 0.01933593675494194, 0.00747070275247097, -0.01691894419491291, -0.02900390513241291, -0.03713378682732582, -0.03911132737994194, -0.02504882775247097, -0.0142822265625, -0.0008789062267169356, 0.01999511756002903, 0.02834472618997097, 0.04108886793255806, 0.03647460788488388, 0.03427734225988388, 0.01494140550494194, 0.005053710658103228, -0.01889648474752903, -0.02834472618997097, -0.0274658203125, -0.0340576171875, -0.02570800669491291, -0.011425781063735485, 0.007910155691206455, 0.014501952566206455, 0.028564453125, 0.03647460788488388, 0.0362548828125, 0.028564453125, 0.008129882626235485, -0.007031249813735485, -0.02021484263241291, -0.02351074106991291, -0.03383788838982582, -0.02241210825741291, -0.01933593675494194, -0.009008788503706455, 0.00747070275247097, 0.02329101413488388, 0.03229980543255806, 0.03603515401482582, 0.02482910081744194, 0.0186767578125, 0.010986328125, -0.008129882626235485, -0.01406249962747097, -0.01889648474752903, -0.02504882775247097, -0.02263183519244194, -0.0164794921875, -0.0006591796409338713, 0.014501952566206455, 0.0208740234375, 0.02285156212747097, 0.02680663950741291, 0.02021484263241291, 0.012304686941206455, -0.0006591796409338713, -0.010327148251235485, -0.01779785193502903, -0.02197265625, -0.02329101413488388, -0.012524413876235485, -0.009228515438735485, -0.002636718563735485, 0.0142822265625, 0.01999511756002903, 0.01933593675494194, 0.02680663950741291, 0.01735839806497097, 0.008349609561264515, -0.001977538922801614, -0.01164550706744194, -0.0164794921875, -0.01625976525247097, -0.015600585378706455, -0.009008788503706455, -0.005053710658103228, 0.009228515438735485, 0.00747070275247097, 0.017578125, 0.02219238132238388, 0.01318359375, 0.014501952566206455, 0.009008788503706455, 0.0002197265566792339, -0.01054687425494194, -0.01164550706744194, -0.01735839806497097, -0.006591796875, -0.010327148251235485, -0.004833984188735485, 0.007910155691206455, 0.015600585378706455, 0.01516113243997097, 0.0120849609375, 0.01494140550494194, 0.0024169920943677425, 0.004833984188735485, -0.004833984188735485, -0.007910155691206455, -0.0017578124534338713, -0.010107421316206455, -0.0017578124534338713, -0.0054931640625, 0.003955077845603228, 0.0024169920943677425, 0.0076904296875, 0.013403319753706455, 0.010986328125, 0.009228515438735485, 0.0004394531133584678, 0.00747070275247097, 0.0028564452659338713, -0.003735351376235485, -0.0004394531133584678, 0.0008789062267169356, -0.0004394531133584678, 0.0024169920943677425, 0.0054931640625, 0.0054931640625, 0.003076171735301614, 0.002197265625, 0.00527343712747097, -0.0004394531133584678, -0.0002197265566792339, 0.006152343470603228, 0.00439453125, 0.00439453125, 0.00439453125, 0.00439453125, 0.001977538922801614, 0.0002197265566792339, 0.0008789062267169356, 0.0068115233443677425, 0.0057128905318677425, -0.0008789062267169356, -0.001538085867650807, 0.0035156249068677425, 0.0035156249068677425, 0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0002197265566792339, 0.003735351376235485, 0.0032958984375, 0.005053710658103228, -0.0004394531133584678, 0.0046142577193677425, 0.0002197265566792339, 0.0010986328125, 0.0002197265566792339, 0.003955077845603228, 0.0017578124534338713, 0.0024169920943677425, 0.001538085867650807, 0.0046142577193677425, -0.0024169920943677425, 0.004833984188735485, -0.0017578124534338713, 0.0013183592818677425 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "readout_acquisition, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the trace waveforms\n", "res_spectroscopy.plot_trace()" ] }, { "cell_type": "raw", "id": "6623ab2e", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "Fitting and calibration workflow\n", "\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n", "Now that we've plotted the response, let's go over how to extract the resonator's\n", "resonance frequency and update the variables in the calibration set.\n", "\n", "For this example, we will load an experiment with simulated data:\n" ] }, { "cell_type": "code", "execution_count": 11, "id": "1c235106", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.157533Z", "iopub.status.busy": "2024-10-11T06:15:04.157181Z", "iopub.status.idle": "2024-10-11T06:15:04.185834Z", "shell.execute_reply": "2024-10-11T06:15:04.184971Z" } }, "outputs": [], "source": [ "res_spectroscopy = SimulatedResSpectroscopyExperiment(calibration_set, qubits)" ] }, { "cell_type": "code", "execution_count": 12, "id": "38402ae8", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.189547Z", "iopub.status.busy": "2024-10-11T06:15:04.189228Z", "iopub.status.idle": "2024-10-11T06:15:04.372051Z", "shell.execute_reply": "2024-10-11T06:15:04.371130Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "IQ Value: %{y}
readout_frequencies: %{text}
", "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "symbol": "circle" }, "name": "I", "text": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "type": "scatter", "visible": "legendonly", "x": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "xaxis": "x", "y": [ -0.027011748981994183, -0.027005315342590104, -0.027001117238218842, -0.026990404454892796, -0.027002083760736782, -0.026997716790967987, -0.026983245852858148, -0.026991331080298196, -0.02699015398627438, -0.02701333985101216, -0.026987256027925136, -0.02699200112877037, -0.026990312889772848, -0.026995139510694082, -0.02696921958367618, -0.026991644177295545, -0.02698711748594356, -0.027002654901452837, -0.02699231274529306, -0.02697974685854992, -0.026981445119741203, -0.026996504116732923, -0.027010211306594575, -0.026953683384791365, -0.02696561787655227, -0.02701241979974353, -0.02697816617241178, -0.02695694706756351, -0.027023976404431084, -0.02698385397298448, -0.026968914917405242, -0.02698725895995213, -0.026942794642004504, -0.02695888506349704, -0.02697374139751444, -0.026958059625248876, -0.026928502880455892, -0.02693538260720146, -0.026916511790929267, -0.026902183307247172, -0.026900894118728504, -0.026855400459934082, -0.02685523661729927, -0.026809422173496113, -0.026787388355938115, -0.02670642084578423, -0.02666034446728935, -0.026598706876945332, -0.026538666600376973, -0.02649078616523308, -0.026514451790416064, -0.026538572822251954, -0.02662677034836363, -0.026659422753153233, -0.026771162713374885, -0.026759344309917017, -0.026837510834433993, -0.02686749480032717, -0.026867078604349344, -0.02689621726577608, -0.026926813420683093, -0.026922881544279065, -0.026901675435553524, -0.02693466585885567, -0.026914570053832194, -0.026933831529808317, -0.02694379550222063, -0.026957602506903624, -0.026989504854600204, -0.02693851294131902, -0.026962181119263243, -0.026969091498056288, -0.02696796719271942, -0.026991126334120083, -0.02697249611118259, -0.026965670623506716, -0.02697568522871333, -0.02697173543559208, -0.026992280212877945, -0.026974685472608756, -0.02696671049411573, -0.026983493982147562, -0.026999442233235617, -0.026988816731229926, -0.026980870639920555, -0.026979462586043845, -0.026983535835139037, -0.027000927591929666, -0.026979819460967863, -0.02698601858742688, -0.02698190396167048, -0.026991933551105733, -0.02698548182515115, -0.026994702661701397, -0.027017303470282427, -0.026970428666982113, -0.0269663031377166, -0.02697367296801908, -0.027009107547097483, -0.026999617802304674 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
readout_frequencies: %{text}
", "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "symbol": "square" }, "name": "Q", "text": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "type": "scatter", "visible": "legendonly", "x": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "xaxis": "x", "y": [ 0.02695049504950495, 0.026949495161990994, 0.026948454512271718, 0.026947370587206372, 0.026946240665663364, 0.026945061796905104, 0.026943830776273932, 0.026942544117787633, 0.026941198023188746, 0.026939788346916432, 0.026938310556380254, 0.026936759686809877, 0.026935130289830002, 0.026933416374762528, 0.02693161134148406, 0.026929707903461816, 0.02692769799935034, 0.026925572691249847, 0.026923322047400916, 0.0269209350067164, 0.02691839922213126, 0.026915700879292265, 0.026912824486633086, 0.026909752632429885, 0.0269064657040915, 0.026902941564859683, 0.02689915518354927, 0.026895078214421976, 0.026890678527588457, 0.02688591969691008, 0.026880760464728443, 0.026875154225260905, 0.026869048608854054, 0.026862385321100916, 0.0268551005184087, 0.02684712622868766, 0.02683839373163565, 0.0268288405416246, 0.026818423948581364, 0.02680714643513107, 0.026795102503213437, 0.026782563758042423, 0.026770130955697965, 0.02675899779034493, 0.026751381215469612, 0.026751131221719456, 0.026764301748180393, 0.026798796845784904, 0.026861227922624055, 0.026950005049994934, 0.027049994950005065, 0.027138772077375944, 0.027201203154215096, 0.027235698251819606, 0.027248868778280543, 0.027248618784530387, 0.027241002209655068, 0.027229869044302035, 0.027217436241957577, 0.027204897496786562, 0.02719285356486893, 0.027181576051418636, 0.0271711594583754, 0.02716160626836435, 0.027152873771312338, 0.027144899481591298, 0.027137614678899084, 0.027130951391145946, 0.027124845774739094, 0.027119239535271556, 0.02711408030308992, 0.027109321472411543, 0.027104921785578023, 0.02710084481645073, 0.027097058435140316, 0.027093534295908498, 0.027090247367570115, 0.027087175513366913, 0.027084299120707735, 0.02708160077786874, 0.0270790649932836, 0.027076677952599083, 0.027074427308750152, 0.02707230200064966, 0.027070292096538183, 0.02706838865851594, 0.02706658362523747, 0.027064869710169998, 0.027063240313190122, 0.027061689443619745, 0.027060211653083567, 0.027058801976811254, 0.027057455882212367, 0.027056169223726067, 0.027054938203094896, 0.027053759334336635, 0.027052629412793627, 0.02705154548772828, 0.027050504838009005, 0.02704950495049505 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
readout_frequencies: %{text}
", "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "symbol": "diamond" }, "name": "Magnitude", "text": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "type": "scatter", "visible": true, "x": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "xaxis": "x", "y": [ 0.03815709326559944, 0.038151832803142084, 0.03814812620184662, 0.038139778633376094, 0.03814724647250041, 0.03814332270744579, 0.0381322117593023, 0.038137024490974704, 0.03813524043620903, 0.03815065826539479, 0.03813114951779935, 0.03813341247987762, 0.03813106651561107, 0.038133272542730495, 0.038113652336155025, 0.03812817885972927, 0.03812355478892724, 0.0381330543817137, 0.03812414218586137, 0.03811356034520106, 0.03811297151143746, 0.03812172855929165, 0.03812940645584726, 0.03808721353349632, 0.03809333857972661, 0.03812399622652157, 0.038097060248986785, 0.03807915738777969, 0.03812353462602012, 0.03809174521053148, 0.03807752164971285, 0.0380865601072488, 0.03805075500257765, 0.03805744643307196, 0.038062831592431734, 0.038046092644285594, 0.03801899058992783, 0.03801712141922703, 0.037996400751611675, 0.037978290728932086, 0.037968877025068265, 0.03792780319656064, 0.037918908807563934, 0.03787860979524499, 0.03785763558210192, 0.03780021079351003, 0.03777700114066994, 0.0377580020645599, 0.03776011639861724, 0.03778974098676593, 0.03787767654624023, 0.03795798726631498, 0.03806429235151204, 0.0381117840148623, 0.038199424115056314, 0.03819096403026965, 0.03824034766022393, 0.03825347101918264, 0.038244329623060624, 0.03825588779545568, 0.0382688458931372, 0.0382580661728522, 0.03823574306264136, 0.03825217745443853, 0.03823182751613454, 0.038239728669824426, 0.03824157745864942, 0.03824657966810811, 0.038264743963600086, 0.038224816970929346, 0.03823784200749781, 0.03823934108905494, 0.03823542911371459, 0.03824887829139274, 0.03823305013081181, 0.03822573730903071, 0.0382304733948556, 0.03822550967220081, 0.03823797131060292, 0.038223641336717656, 0.038216216921405616, 0.03822637095557672, 0.03823603660164875, 0.03822702923542838, 0.03821999600575626, 0.03821765385264007, 0.03821925110867828, 0.03823031863917833, 0.038214259568855956, 0.03821753831350038, 0.03821358653812135, 0.0382196708678606, 0.03821416161782738, 0.038219762752489325, 0.03823485802221081, 0.03820091512779474, 0.03819720229363888, 0.038201638010172755, 0.038225929713766635, 0.03821851749528471 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
readout_frequencies: %{text}
", "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "symbol": "triangle-down" }, "name": "Phase", "text": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "type": "scatter", "visible": "legendonly", "x": [ "5.05 GHz", "5.052020202 GHz", "5.054040404 GHz", "5.0560606061 GHz", "5.0580808081 GHz", "5.0601010101 GHz", "5.0621212121 GHz", "5.0641414141 GHz", "5.0661616162 GHz", "5.0681818182 GHz", "5.0702020202 GHz", "5.0722222222 GHz", "5.0742424242 GHz", "5.0762626263 GHz", "5.0782828283 GHz", "5.0803030303 GHz", "5.0823232323 GHz", "5.0843434343 GHz", "5.0863636364 GHz", "5.0883838384 GHz", "5.0904040404 GHz", "5.0924242424 GHz", "5.0944444444 GHz", "5.0964646465 GHz", "5.0984848485 GHz", "5.1005050505 GHz", "5.1025252525 GHz", "5.1045454545 GHz", "5.1065656566 GHz", "5.1085858586 GHz", "5.1106060606 GHz", "5.1126262626 GHz", "5.1146464646 GHz", "5.1166666667 GHz", "5.1186868687 GHz", "5.1207070707 GHz", "5.1227272727 GHz", "5.1247474747 GHz", "5.1267676768 GHz", "5.1287878788 GHz", "5.1308080808 GHz", "5.1328282828 GHz", "5.1348484848 GHz", "5.1368686869 GHz", "5.1388888889 GHz", "5.1409090909 GHz", "5.1429292929 GHz", "5.1449494949 GHz", "5.146969697 GHz", "5.148989899 GHz", "5.151010101 GHz", "5.153030303 GHz", "5.1550505051 GHz", "5.1570707071 GHz", "5.1590909091 GHz", "5.1611111111 GHz", "5.1631313131 GHz", "5.1651515152 GHz", "5.1671717172 GHz", "5.1691919192 GHz", "5.1712121212 GHz", "5.1732323232 GHz", "5.1752525253 GHz", "5.1772727273 GHz", "5.1792929293 GHz", "5.1813131313 GHz", "5.1833333333 GHz", "5.1853535354 GHz", "5.1873737374 GHz", "5.1893939394 GHz", "5.1914141414 GHz", "5.1934343434 GHz", "5.1954545455 GHz", "5.1974747475 GHz", "5.1994949495 GHz", "5.2015151515 GHz", "5.2035353535 GHz", "5.2055555556 GHz", "5.2075757576 GHz", "5.2095959596 GHz", "5.2116161616 GHz", "5.2136363636 GHz", "5.2156565657 GHz", "5.2176767677 GHz", "5.2196969697 GHz", "5.2217171717 GHz", "5.2237373737 GHz", "5.2257575758 GHz", "5.2277777778 GHz", "5.2297979798 GHz", "5.2318181818 GHz", "5.2338383838 GHz", "5.2358585859 GHz", "5.2378787879 GHz", "5.2398989899 GHz", "5.2419191919 GHz", "5.2439393939 GHz", "5.245959596 GHz", "5.247979798 GHz", "5.25 GHz" ], "xaxis": "x", "y": [ 2.3573296154503813, 2.357229062645877, 2.3571706371294123, 2.3569923328642335, 2.35722961177809, 2.357170616723415, 2.356925385913555, 2.3570990598904205, 2.3571022358322176, 2.357557737532928, 2.3571021386641977, 2.357218830855915, 2.3572178027036066, 2.35733902499337, 2.3568922203654, 2.357343130651173, 2.3572965891608932, 2.3576238373292715, 2.357474094160704, 2.3572856049326263, 2.3573641757383306, 2.35769328210675, 2.358000521930822, 2.357010085072081, 2.3572925013468673, 2.3582250447810145, 2.3576609872310486, 2.3573433574001688, 2.3586668718742563, 2.358012470137498, 2.357831535788299, 2.358275803787253, 2.357564931762966, 2.357987454912425, 2.3583985258500473, 2.358256247578993, 2.357870411068099, 2.358176141183943, 2.3580198898518465, 2.3579639550764706, 2.358164683228848, 2.357552421243306, 2.3577815299461276, 2.3571357979309755, 2.3568670333853974, 2.355358118832625, 2.354248625183448, 2.3524473294004165, 2.3501540775273932, 2.3476016611593167, 2.3461967146423106, 2.3450133439540566, 2.345523254332168, 2.3455023620830215, 2.347351592475542, 2.3471354355240304, 2.3487334143353764, 2.3494960339575597, 2.3497166150016398, 2.3504889352729683, 2.351278754082073, 2.351413136727869, 2.351210808602852, 2.351999393759861, 2.3517869917511494, 2.3522915347032383, 2.352610664507389, 2.3529895923306188, 2.353693478235697, 2.352851289405302, 2.353385516710831, 2.353601410026946, 2.353661718176744, 2.354166123883513, 2.353890751893716, 2.353829242050938, 2.354075559436893, 2.354059043875089, 2.3544928511436503, 2.3542166413007095, 2.354115616565316, 2.3544707835368115, 2.354807775535436, 2.354650215767152, 2.3545401062622187, 2.35454917053243, 2.3546579954431377, 2.3550118184919566, 2.3546508916930122, 2.354794415896764, 2.35474547888484, 2.3549573489964306, 2.3548626970374626, 2.3550572923381017, 2.3554984819343057, 2.3546520218212246, 2.354596417118455, 2.354753080643172, 2.3554287192037413, 2.3552714940088197 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "readout_acquisition, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "coloraxis": { "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "height": 500, "hovermode": "closest", "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "showticklabels": true, "tickangle": 12, "title": { "text": "readout_frequencies" } }, "yaxis": { "anchor": "x", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "title": { "text": "I/Q Data" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "res_spectroscopy.plot_iq(plot_type=\"linear\")" ] }, { "cell_type": "raw", "id": "20d42b7c", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The :py:meth:`~keysight.qcs.experiments.Experiment.fit` method takes the I/Q data\n", "and fits it to a complex lorentzian model, as specified by the built-in\n", ":py:class:`~keysight.qcs.analysis.ComplexLorentzian`.\n", "\n", "The result of the fit is an :py:class:`~keysight.qcs.analysis.EstimateCollection`,\n", "which contains individual :py:class:`~keysight.qcs.analysis.Estimate`\\ for each\n", "qubit's readout resonator that was fitted." ] }, { "cell_type": "code", "execution_count": 13, "id": "6388edaa", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.376764Z", "iopub.status.busy": "2024-10-11T06:15:04.376193Z", "iopub.status.idle": "2024-10-11T06:15:04.420506Z", "shell.execute_reply": "2024-10-11T06:15:04.419530Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Estimate(amplitude=0.000499314294551207, resonance=5149864062.317487, kappa=19867396.825222116, offset_real=-0.02699828492003239, ...)\n" ] } ], "source": [ "ec = res_spectroscopy.fit()\n", "\n", "# View the data format of the estimate\n", "print(ec.estimates[0])" ] }, { "cell_type": "raw", "id": "62ffa80c", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The fitted and the pre-processed data can be visualized by calling the\n", ":py:meth:`~keysight.qcs.experiments.Experiment.plot` method:" ] }, { "cell_type": "code", "execution_count": 14, "id": "bd294b45", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.424915Z", "iopub.status.busy": "2024-10-11T06:15:04.424342Z", "iopub.status.idle": "2024-10-11T06:15:04.728221Z", "shell.execute_reply": "2024-10-11T06:15:04.727218Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#ff005c" }, "name": "I", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ -0.027011748981994183, -0.027005315342590104, -0.027001117238218842, -0.026990404454892796, -0.027002083760736782, -0.026997716790967987, -0.026983245852858148, -0.026991331080298196, -0.02699015398627438, -0.02701333985101216, -0.026987256027925136, -0.02699200112877037, -0.026990312889772848, -0.026995139510694082, -0.02696921958367618, -0.026991644177295545, -0.02698711748594356, -0.027002654901452837, -0.02699231274529306, -0.02697974685854992, -0.026981445119741203, -0.026996504116732923, -0.027010211306594575, -0.026953683384791365, -0.02696561787655227, -0.02701241979974353, -0.02697816617241178, -0.02695694706756351, -0.027023976404431084, -0.02698385397298448, -0.026968914917405242, -0.02698725895995213, -0.026942794642004504, -0.02695888506349704, -0.02697374139751444, -0.026958059625248876, -0.026928502880455892, -0.02693538260720146, -0.026916511790929267, -0.026902183307247172, -0.026900894118728504, -0.026855400459934082, -0.02685523661729927, -0.026809422173496113, -0.026787388355938115, -0.02670642084578423, -0.02666034446728935, -0.026598706876945332, -0.026538666600376973, -0.02649078616523308, -0.026514451790416064, -0.026538572822251954, -0.02662677034836363, -0.026659422753153233, -0.026771162713374885, -0.026759344309917017, -0.026837510834433993, -0.02686749480032717, -0.026867078604349344, -0.02689621726577608, -0.026926813420683093, -0.026922881544279065, -0.026901675435553524, -0.02693466585885567, -0.026914570053832194, -0.026933831529808317, -0.02694379550222063, -0.026957602506903624, -0.026989504854600204, -0.02693851294131902, -0.026962181119263243, -0.026969091498056288, -0.02696796719271942, -0.026991126334120083, -0.02697249611118259, -0.026965670623506716, -0.02697568522871333, -0.02697173543559208, -0.026992280212877945, -0.026974685472608756, -0.02696671049411573, -0.026983493982147562, -0.026999442233235617, -0.026988816731229926, -0.026980870639920555, -0.026979462586043845, -0.026983535835139037, -0.027000927591929666, -0.026979819460967863, -0.02698601858742688, -0.02698190396167048, -0.026991933551105733, -0.02698548182515115, -0.026994702661701397, -0.027017303470282427, -0.026970428666982113, -0.0269663031377166, -0.02697367296801908, -0.027009107547097483, -0.026999617802304674 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#00b287", "dash": "dash" }, "name": "I - Fit", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ -0.02699339275180974, -0.026993190729418737, -0.02699297597656664, -0.026992747404939153, -0.026992503807873516, -0.026992243844640825, -0.02699196602224966, -0.026991668674316266, -0.02699134993645111, -0.02699100771749339, -0.026990639665778176, -0.026990243129437493, -0.026989815109506456, -0.026989352204315614, -0.026988850543283007, -0.02698830570775129, -0.026987712635915633, -0.026987065508115603, -0.02698635760776326, -0.02698558115187461, -0.02698472708345915, -0.02698378481576013, -0.026982741915330233, -0.026981583706898373, -0.026980292777548515, -0.02697884835034532, -0.026977225487428296, -0.026975394068644864, -0.026973317472403526, -0.02697095085829007, -0.02696823891275639, -0.026965112865031213, -0.026961486503391672, -0.026957250812339954, -0.02695226669589195, -0.026946355034768842, -0.026939283029571836, -0.026930745404189285, -0.026920338629029428, -0.02690752606729617, -0.026891592457110626, -0.026871589096044795, -0.026846280797535562, -0.026814132359930843, -0.026773437162429938, -0.026722824800143558, -0.026662577879373633, -0.026597153424101735, -0.02653804309341373, -0.026502807583254892, -0.02650552918266403, -0.02654501945034621, -0.02660592564202215, -0.02667114741992101, -0.026730232604809168, -0.026779470071141755, -0.026818918989140565, -0.026850048446380132, -0.02687455965604379, -0.02689395013879197, -0.026909414213598017, -0.026921865821997792, -0.026931993150463053, -0.02694031251388876, -0.026947212410675967, -0.02695298703695609, -0.026957861003677707, -0.02696200734319357, -0.026965560592306318, -0.0269686263226446, -0.0269712881215322, -0.026973612742054155, -0.026975653932976643, -0.02697745531089025, -0.026979052532423938, -0.02698047495093908, -0.026981746890445905, -0.026982888632987933, -0.026983917189812304, -0.026984846908102853, -0.026985689951698415, -0.026986456684528703, -0.026987155978415875, -0.026987795461671796, -0.026988381721049164, -0.026988920466710916, -0.0269894166677044, -0.026989874663776368, -0.026990298258106112, -0.026990690794567607, -0.026991055222385277, -0.026991394150468136, -0.026991709893253994, -0.026992004509539543, -0.026992279835491025, -0.026992537512807033, -0.02699277901282709, -0.02699300565723695, -0.0269932186359068, -0.02699341902230566 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#00d539" }, "name": "Q", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 0.02695049504950495, 0.026949495161990994, 0.026948454512271718, 0.026947370587206372, 0.026946240665663364, 0.026945061796905104, 0.026943830776273932, 0.026942544117787633, 0.026941198023188746, 0.026939788346916432, 0.026938310556380254, 0.026936759686809877, 0.026935130289830002, 0.026933416374762528, 0.02693161134148406, 0.026929707903461816, 0.02692769799935034, 0.026925572691249847, 0.026923322047400916, 0.0269209350067164, 0.02691839922213126, 0.026915700879292265, 0.026912824486633086, 0.026909752632429885, 0.0269064657040915, 0.026902941564859683, 0.02689915518354927, 0.026895078214421976, 0.026890678527588457, 0.02688591969691008, 0.026880760464728443, 0.026875154225260905, 0.026869048608854054, 0.026862385321100916, 0.0268551005184087, 0.02684712622868766, 0.02683839373163565, 0.0268288405416246, 0.026818423948581364, 0.02680714643513107, 0.026795102503213437, 0.026782563758042423, 0.026770130955697965, 0.02675899779034493, 0.026751381215469612, 0.026751131221719456, 0.026764301748180393, 0.026798796845784904, 0.026861227922624055, 0.026950005049994934, 0.027049994950005065, 0.027138772077375944, 0.027201203154215096, 0.027235698251819606, 0.027248868778280543, 0.027248618784530387, 0.027241002209655068, 0.027229869044302035, 0.027217436241957577, 0.027204897496786562, 0.02719285356486893, 0.027181576051418636, 0.0271711594583754, 0.02716160626836435, 0.027152873771312338, 0.027144899481591298, 0.027137614678899084, 0.027130951391145946, 0.027124845774739094, 0.027119239535271556, 0.02711408030308992, 0.027109321472411543, 0.027104921785578023, 0.02710084481645073, 0.027097058435140316, 0.027093534295908498, 0.027090247367570115, 0.027087175513366913, 0.027084299120707735, 0.02708160077786874, 0.0270790649932836, 0.027076677952599083, 0.027074427308750152, 0.02707230200064966, 0.027070292096538183, 0.02706838865851594, 0.02706658362523747, 0.027064869710169998, 0.027063240313190122, 0.027061689443619745, 0.027060211653083567, 0.027058801976811254, 0.027057455882212367, 0.027056169223726067, 0.027054938203094896, 0.027053759334336635, 0.027052629412793627, 0.02705154548772828, 0.027050504838009005, 0.02704950495049505 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#c97a88", "dash": "dash" }, "name": "Q - Fit", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 0.0269507532924351, 0.02694975834754496, 0.026948722770530523, 0.026947644051416985, 0.026946519472054446, 0.02694534608443144, 0.026944120686273235, 0.02694283979352961, 0.02694149960929197, 0.02694009598860285, 0.026938624398530345, 0.026937079872772794, 0.02693545695993225, 0.026933749664445374, 0.02693195137898288, 0.026930054806919436, 0.02692805187322951, 0.026925933621876133, 0.026923690097424173, 0.026921310208224303, 0.026918781568078507, 0.026916090312820124, 0.026913220887740303, 0.026910155801310946, 0.026906875340273934, 0.026903357241038435, 0.026899576312723515, 0.02689550400857844, 0.026891107945741708, 0.026886351379815546, 0.026881192653073305, 0.02687558465773225, 0.026869474396459748, 0.026862802795077467, 0.02685550505225215, 0.026847512042891743, 0.02683875370795143, 0.026829166112948968, 0.026818705213014594, 0.026807372812598637, 0.02679526459686378, 0.026782657759629173, 0.026770168196110146, 0.02675902411091444, 0.026751513164513442, 0.026751614399412937, 0.026765575623423934, 0.026801479989952155, 0.02686583464811193, 0.026956332651953616, 0.027056783180754357, 0.02714440718609935, 0.027204787652409135, 0.027237264461064954, 0.02724891308238, 0.027247679266224706, 0.027239492135282435, 0.0272280628882246, 0.02721550322230802, 0.027202937263302803, 0.027190922539388915, 0.027179704597330365, 0.027169362498861857, 0.027159889704937507, 0.027151238327664102, 0.027143342996995574, 0.027136133472883635, 0.027129541071519898, 0.02712350171104172, 0.027117957130548914, 0.02711285514397204, 0.027108149405905422, 0.0271037989520521, 0.0270997676568324, 0.027096023683367314, 0.027092538963390502, 0.027089288723771855, 0.027086251064984076, 0.027083406590887992, 0.027080738086297705, 0.02707823023756464, 0.02707586939111677, 0.027073643345063392, 0.027071541169376944, 0.027069553050651292, 0.027067670157935673, 0.027065884526616544, 0.02706418895774832, 0.027062576930612585, 0.027061042526614204, 0.02705958036290539, 0.02705818553436975, 0.02705685356280314, 0.02705558035230161, 0.027054362150013302, 0.02705319551153514, 0.02705207727033991, 0.027051004510707938, 0.02704997454371247, 0.027048984885871548 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#ad6aff" }, "name": "Magnitude", "type": "scatter", "visible": true, "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 0.03815709326559944, 0.038151832803142084, 0.03814812620184662, 0.038139778633376094, 0.03814724647250041, 0.03814332270744579, 0.0381322117593023, 0.038137024490974704, 0.03813524043620903, 0.03815065826539479, 0.03813114951779935, 0.03813341247987762, 0.03813106651561107, 0.038133272542730495, 0.038113652336155025, 0.03812817885972927, 0.03812355478892724, 0.0381330543817137, 0.03812414218586137, 0.03811356034520106, 0.03811297151143746, 0.03812172855929165, 0.03812940645584726, 0.03808721353349632, 0.03809333857972661, 0.03812399622652157, 0.038097060248986785, 0.03807915738777969, 0.03812353462602012, 0.03809174521053148, 0.03807752164971285, 0.0380865601072488, 0.03805075500257765, 0.03805744643307196, 0.038062831592431734, 0.038046092644285594, 0.03801899058992783, 0.03801712141922703, 0.037996400751611675, 0.037978290728932086, 0.037968877025068265, 0.03792780319656064, 0.037918908807563934, 0.03787860979524499, 0.03785763558210192, 0.03780021079351003, 0.03777700114066994, 0.0377580020645599, 0.03776011639861724, 0.03778974098676593, 0.03787767654624023, 0.03795798726631498, 0.03806429235151204, 0.0381117840148623, 0.038199424115056314, 0.03819096403026965, 0.03824034766022393, 0.03825347101918264, 0.038244329623060624, 0.03825588779545568, 0.0382688458931372, 0.0382580661728522, 0.03823574306264136, 0.03825217745443853, 0.03823182751613454, 0.038239728669824426, 0.03824157745864942, 0.03824657966810811, 0.038264743963600086, 0.038224816970929346, 0.03823784200749781, 0.03823934108905494, 0.03823542911371459, 0.03824887829139274, 0.03823305013081181, 0.03822573730903071, 0.0382304733948556, 0.03822550967220081, 0.03823797131060292, 0.038223641336717656, 0.038216216921405616, 0.03822637095557672, 0.03823603660164875, 0.03822702923542838, 0.03821999600575626, 0.03821765385264007, 0.03821925110867828, 0.03823031863917833, 0.038214259568855956, 0.03821753831350038, 0.03821358653812135, 0.0382196708678606, 0.03821416161782738, 0.038219762752489325, 0.03823485802221081, 0.03820091512779474, 0.03819720229363888, 0.038201638010172755, 0.038225929713766635, 0.03821851749528471 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#a2fb7a", "dash": "dash" }, "name": "Magnitude - Fit", "type": "scatter", "visible": true, "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 0.03814428338929906, 0.03814343745319562, 0.038142553808501255, 0.03814162991258657, 0.03814066299208596, 0.03813965001646364, 0.03813858766790843, 0.03813747230695643, 0.03813629993312721, 0.03813506613972137, 0.03813376606175913, 0.038132394315834525, 0.03813094493040666, 0.038129411264739024, 0.038127785914311436, 0.038126060600050526, 0.03812422603812567, 0.03812227178630626, 0.03812018606193074, 0.03811795552534071, 0.03811556502111305, 0.0381129972674826, 0.03811023248186266, 0.038107247927175125, 0.03810401735958137, 0.038100510352879334, 0.03809669146794229, 0.03809251922666889, 0.038087944838447275, 0.038082910612493984, 0.03807734797103325, 0.038071174955848226, 0.03806429309490165, 0.03805658346944225, 0.03804790180362154, 0.03803807240848344, 0.03802688089685313, 0.03801406584859703, 0.03799931027274298, 0.03798223527092469, 0.03796240179039349, 0.037939333905804125, 0.03791259286712205, 0.0378819622720945, 0.037847858513814496, 0.037812144058146785, 0.0377794798485486, 0.037758812215389036, 0.03776295542681446, 0.0378026808551697, 0.037876280088511946, 0.03796652340028016, 0.038052276547947614, 0.03812110544064994, 0.03817078201030604, 0.038204398211282284, 0.03822622591277091, 0.03823993344944619, 0.03824821005419358, 0.03825289988770808, 0.038255232869008116, 0.038256021765674934, 0.03825580365972135, 0.03825493493825812, 0.0382536534128664, 0.03825211862455296, 0.03825043803346261, 0.03824868414371544, 0.0382469057980672, 0.038245135699389636, 0.0382433954689266, 0.03824169908060044, 0.038240055213675864, 0.03823846887762872, 0.03823694254247969, 0.03823547692995451, 0.03823407157000102, 0.03823272519368166, 0.03823143601114145, 0.03823020190833947, 0.03822902058603851, 0.03822788965756229, 0.03822680671700218, 0.038225769386191606, 0.038224775346404394, 0.03822382235906358, 0.038222908278558565, 0.038222031059417336, 0.03822118875946757, 0.03822037954017698, 0.03821960166504076, 0.03821885349664877, 0.03821813349289259, 0.038217440202646384, 0.03821677226116208, 0.03821612838535113, 0.03821550736907414, 0.03821490807852306, 0.03821432944775244, 0.0382137704743968 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#ff9000" }, "name": "Phase", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 2.3573296154503813, 2.357229062645877, 2.3571706371294123, 2.3569923328642335, 2.35722961177809, 2.357170616723415, 2.356925385913555, 2.3570990598904205, 2.3571022358322176, 2.357557737532928, 2.3571021386641977, 2.357218830855915, 2.3572178027036066, 2.35733902499337, 2.3568922203654, 2.357343130651173, 2.3572965891608932, 2.3576238373292715, 2.357474094160704, 2.3572856049326263, 2.3573641757383306, 2.35769328210675, 2.358000521930822, 2.357010085072081, 2.3572925013468673, 2.3582250447810145, 2.3576609872310486, 2.3573433574001688, 2.3586668718742563, 2.358012470137498, 2.357831535788299, 2.358275803787253, 2.357564931762966, 2.357987454912425, 2.3583985258500473, 2.358256247578993, 2.357870411068099, 2.358176141183943, 2.3580198898518465, 2.3579639550764706, 2.358164683228848, 2.357552421243306, 2.3577815299461276, 2.3571357979309755, 2.3568670333853974, 2.355358118832625, 2.354248625183448, 2.3524473294004165, 2.3501540775273932, 2.3476016611593167, 2.3461967146423106, 2.3450133439540566, 2.345523254332168, 2.3455023620830215, 2.347351592475542, 2.3471354355240304, 2.3487334143353764, 2.3494960339575597, 2.3497166150016398, 2.3504889352729683, 2.351278754082073, 2.351413136727869, 2.351210808602852, 2.351999393759861, 2.3517869917511494, 2.3522915347032383, 2.352610664507389, 2.3529895923306188, 2.353693478235697, 2.352851289405302, 2.353385516710831, 2.353601410026946, 2.353661718176744, 2.354166123883513, 2.353890751893716, 2.353829242050938, 2.354075559436893, 2.354059043875089, 2.3544928511436503, 2.3542166413007095, 2.354115616565316, 2.3544707835368115, 2.354807775535436, 2.354650215767152, 2.3545401062622187, 2.35454917053243, 2.3546579954431377, 2.3550118184919566, 2.3546508916930122, 2.354794415896764, 2.35474547888484, 2.3549573489964306, 2.3548626970374626, 2.3550572923381017, 2.3554984819343057, 2.3546520218212246, 2.354596417118455, 2.354753080643172, 2.3554287192037413, 2.3552714940088197 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#ff00e5", "dash": "dash" }, "name": "Phase - Fit", "type": "scatter", "visible": "legendonly", "x": [ 5050000000.0, 5052020202.020202, 5054040404.040404, 5056060606.060606, 5058080808.080808, 5060101010.10101, 5062121212.121212, 5064141414.141414, 5066161616.161616, 5068181818.181818, 5070202020.202021, 5072222222.222222, 5074242424.242424, 5076262626.262627, 5078282828.282828, 5080303030.30303, 5082323232.323233, 5084343434.343434, 5086363636.363636, 5088383838.383839, 5090404040.40404, 5092424242.424242, 5094444444.444445, 5096464646.464646, 5098484848.484848, 5100505050.505051, 5102525252.525252, 5104545454.545455, 5106565656.565657, 5108585858.585858, 5110606060.606061, 5112626262.626263, 5114646464.646464, 5116666666.666667, 5118686868.686869, 5120707070.70707, 5122727272.727273, 5124747474.747475, 5126767676.767676, 5128787878.787879, 5130808080.808081, 5132828282.828283, 5134848484.848485, 5136868686.868687, 5138888888.888889, 5140909090.909091, 5142929292.929293, 5144949494.949495, 5146969696.969697, 5148989898.989899, 5151010101.010101, 5153030303.030303, 5155050505.050505, 5157070707.070707, 5159090909.090909, 5161111111.111111, 5163131313.131313, 5165151515.151515, 5167171717.171717, 5169191919.191919, 5171212121.212121, 5173232323.232324, 5175252525.252525, 5177272727.272727, 5179292929.29293, 5181313131.313131, 5183333333.333333, 5185353535.353536, 5187373737.373737, 5189393939.393939, 5191414141.414142, 5193434343.434343, 5195454545.454545, 5197474747.474748, 5199494949.494949, 5201515151.515152, 5203535353.535354, 5205555555.555555, 5207575757.575758, 5209595959.59596, 5211616161.616161, 5213636363.636364, 5215656565.656566, 5217676767.676767, 5219696969.69697, 5221717171.717172, 5223737373.737373, 5225757575.757576, 5227777777.777778, 5229797979.797979, 5231818181.818182, 5233838383.838384, 5235858585.858586, 5237878787.878788, 5239898989.89899, 5241919191.919192, 5243939393.939394, 5245959595.959596, 5247979797.979798, 5250000000.0 ], "xaxis": "x", "y": [ 2.3569849272206636, 2.3569996440304575, 2.3570148795596793, 2.3570306603014712, 2.3570470144295745, 2.3570639719109914, 2.3570815646233307, 2.357099826475796, 2.357118793532196, 2.357138504133622, 2.3571589990173916, 2.3571803214274696, 2.357202517209673, 2.357225634882406, 2.3572497256701603, 2.3572748434822643, 2.3573010448128437, 2.357328388529042, 2.3573569355022563, 2.357386748020156, 2.3574178888936546, 2.357450420139968, 2.3574844010765044, 2.357519885594573, 2.3575569182881764, 2.35759552897842, 2.357635724978879, 2.3576774801619123, 2.35772071946503, 2.3577652968495237, 2.3578109637805524, 2.3578573238646885, 2.3579037670803187, 2.3579493736229127, 2.357992772042586, 2.358031927915445, 2.358063825903017, 2.3580839867984147, 2.358085727690729, 2.3580590220210507, 2.3579887423084496, 2.357851977906514, 2.357614064814067, 2.357223143966165, 2.3566040934998957, 2.3556561096703845, 2.354266712238092, 2.3523680707585313, 2.350056594365872, 2.3477111104199135, 2.345903027562113, 2.3450309730213386, 2.3450659016380935, 2.3456934160152296, 2.3465858810079294, 2.3475285235424423, 2.3484146710631015, 2.3492044479032717, 2.349891316690954, 2.350482816576898, 2.350991088475597, 2.3514286983446513, 2.351807024805579, 2.3521357995341634, 2.3524231261901765, 2.352675671554343, 2.352898896558921, 2.3530972744990772, 2.3532744789531743, 2.353433538789469, 2.3535769633059203, 2.3537068422129543, 2.353824925183802, 2.3539326851170093, 2.354031368534655, 2.3541220358588744, 2.3542055937285933, 2.3542828210468483, 2.35435439007587, 2.3544208836058798, 2.3544828089978296, 2.3545406097259587, 2.3545946749113225, 2.3546453472332947, 2.354692929525263, 2.35473769029791, 2.3547798683844072, 2.3548196768633876, 2.3548573063852936, 2.3548929280037325, 2.3549266955944734, 2.3549587479295386, 2.354989210461693, 2.3550181968648634, 2.3550458103680967, 2.3550721449142946, 2.3550972861696975, 2.355121312405856, 2.3551442952723023, 2.3551663004752594 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "customResSpectroscopy", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "readout_frequencies" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "I/Q Data" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "res_spectroscopy.plot()" ] }, { "cell_type": "raw", "id": "9673431f", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To compute the new calibration values for the readout resonator, use the\n", ":py:meth:`~keysight.qcs.experiments.ResonatorSpectroscopy.get_updated_calibration_values`\n", "method. This will calculate the updated calibration values based on the fit results." ] }, { "cell_type": "code", "execution_count": 15, "id": "f0caf071", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.733050Z", "iopub.status.busy": "2024-10-11T06:15:04.732461Z", "iopub.status.idle": "2024-10-11T06:15:04.774495Z", "shell.execute_reply": "2024-10-11T06:15:04.773726Z" } }, "outputs": [ { "data": { "text/plain": [ "{'readout_frequencies': 5149864062.317487}" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "res_spectroscopy.get_updated_calibration_values()" ] }, { "cell_type": "raw", "id": "864b4c34", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Let's check the current value of the variable in the calibration_set" ] }, { "cell_type": "code", "execution_count": 16, "id": "3e73e028", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.778410Z", "iopub.status.busy": "2024-10-11T06:15:04.778017Z", "iopub.status.idle": "2024-10-11T06:15:04.785547Z", "shell.execute_reply": "2024-10-11T06:15:04.784784Z" } }, "outputs": [ { "data": { "text/plain": [ "array([5.15e+09])" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "res_spectroscopy.calibration_set.variables.readout_frequencies.value" ] }, { "cell_type": "raw", "id": "d18c7a1a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We update this variable as follows:" ] }, { "cell_type": "code", "execution_count": 17, "id": "84bc0221", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.789031Z", "iopub.status.busy": "2024-10-11T06:15:04.788671Z", "iopub.status.idle": "2024-10-11T06:15:04.834350Z", "shell.execute_reply": "2024-10-11T06:15:04.833562Z" } }, "outputs": [ { "data": { "text/plain": [ "array([5.14986406e+09])" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "res_spectroscopy.set_updated_calibration_values()\n", "\n", "# Print the value of the variable to confirm the update\n", "res_spectroscopy.calibration_set.variables.readout_frequencies.value" ] }, { "cell_type": "raw", "id": "3eb56757", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "Resonator Spectroscopy vs Power\n", "-------------------------------\n", "To fully understand and characterize the coupling between a readout resonator and a\n", "qubit, it's important to perform a 2D sweep, where both the input power and the\n", "frequency of the readout pulse are varied. The 2D sweep is particularly useful because\n", "it reveals how the resonance frequency shifts with different power levels, allowing us\n", "to identify any nonlinearities in the system. This helps determine the optimal\n", "setting for qubit readout.\n", "\n", "Running the ``ResonatorSpectroscopy2D`` experiment is similar to the previous example.\n", "First, we define the qubits we want to target, then we initialize the\n", "``ResonatorSpectroscopy2D`` experiment and draw the program.\n", "\n", ".. note::\n", " The qubits object is defined differently here to demonstrate an alternative\n", " approach. Notice how it affects the definition of other parameters in the\n", " experiment." ] }, { "cell_type": "code", "execution_count": 18, "id": "cb99210a", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.838091Z", "iopub.status.busy": "2024-10-11T06:15:04.837700Z", "iopub.status.idle": "2024-10-11T06:15:04.850643Z", "shell.execute_reply": "2024-10-11T06:15:04.849865Z" } }, "outputs": [], "source": [ "# Define the number of qubits and the calibration set\n", "n_qubits = [0, 1]\n", "qubits = qcs.Qudits(n_qubits)\n", "calibration_set = make_calibration_set(qubits=len(qubits))" ] }, { "cell_type": "code", "execution_count": 19, "id": "00577cdf", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.854082Z", "iopub.status.busy": "2024-10-11T06:15:04.853776Z", "iopub.status.idle": "2024-10-11T06:15:04.877684Z", "shell.execute_reply": "2024-10-11T06:15:04.876827Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "# Create a resonator spectroscopy experiment\n", "res_spectroscopy2D = ResonatorSpectroscopy2D(\n", " backend=mapper,\n", " calibration_set=calibration_set,\n", " qubits=qubits,\n", " operation=\"measurement\",\n", ")" ] }, { "cell_type": "code", "execution_count": 20, "id": "40425deb", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.881875Z", "iopub.status.busy": "2024-10-11T06:15:04.881513Z", "iopub.status.idle": "2024-10-11T06:15:04.905450Z", "shell.execute_reply": "2024-10-11T06:15:04.904742Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Program\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration100 ns
Layers1
Targets4
Repetitions\n", "
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration100 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " readout_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArraySlice(name=readout_pulse_duration, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
AmplitudeArraySlice(name=readout_pulse_amplitudes, shape=(2,), dtype=float, unit=none, value=[0.1, 0.1])
FrequencyArraySlice(name=readout_frequencies, shape=(2,), dtype=float, unit=Hz, value=[5.15 GHz, 5.15 GHz])
EnvelopeSineEnvelope()
Instantaneous PhaseArraySlice(name=measurement_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
Post-phaseArraySlice(name=measurement_post_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('readout_pulse', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArraySlice(name=readout_pulse_duration, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
AmplitudeArraySlice(name=readout_pulse_amplitudes, shape=(2,), dtype=float, unit=none, value=[0.1, 0.1])
FrequencyArraySlice(name=readout_frequencies, shape=(2,), dtype=float, unit=Hz, value=[5.15 GHz, 5.15 GHz])
EnvelopeSineEnvelope()
Instantaneous PhaseArraySlice(name=measurement_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
Post-phaseArraySlice(name=measurement_post_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_acquisition\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArray(name=_implicit, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " RFWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArraySlice(name=acquisition_duration, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
AmplitudeArraySlice(name=measurement_integrator_amplitude, shape=(2,), dtype=float, unit=none, value=[1, 1])
FrequencyArraySlice(name=readout_frequencies, shape=(2,), dtype=float, unit=Hz, value=[5.15 GHz, 5.15 GHz])
EnvelopeConstantEnvelope()
Instantaneous PhaseArraySlice(name=measurement_integrator_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
Post-phaseArraySlice(name=measurement_integrator_post_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
\n", "
\n", "\n", "
ClassifierClassifier(ArraySlice(name=references, shape=(2, 2), dtype=complex, unit=none))
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArray(name=_implicit, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " RFWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationArraySlice(name=acquisition_duration, shape=(2,), dtype=float, unit=s, value=[100 ns, 100 ns])
AmplitudeArraySlice(name=measurement_integrator_amplitude, shape=(2,), dtype=float, unit=none, value=[1, 1])
FrequencyArraySlice(name=readout_frequencies, shape=(2,), dtype=float, unit=Hz, value=[5.15 GHz, 5.15 GHz])
EnvelopeConstantEnvelope()
Instantaneous PhaseArraySlice(name=measurement_integrator_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
Post-phaseArraySlice(name=measurement_integrator_post_phase, shape=(2,), dtype=float, unit=rad, value=[0 rad, 0 rad])
\n", "
\n", "\n", "
ClassifierClassifier(ArraySlice(name=references, shape=(2, 2), dtype=complex, unit=none))
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "# Draw the program to view the operations to be performed on hardware\n", "res_spectroscopy2D.draw()" ] }, { "cell_type": "raw", "id": "65e765ec", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "The experiment remains mostly the same, but now we’re also sweeping the amplitude\n", "parameter in the readout pulse. Next, we define the sweep values for both the\n", "amplitude and frequency of the readout pulse.\n" ] }, { "cell_type": "code", "execution_count": 21, "id": "34def974", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.909453Z", "iopub.status.busy": "2024-10-11T06:15:04.909088Z", "iopub.status.idle": "2024-10-11T06:15:04.915700Z", "shell.execute_reply": "2024-10-11T06:15:04.914714Z" } }, "outputs": [], "source": [ "# Retrieve the readout frequencies stored in the calibration set for the target qubits\n", "current_freq = res_spectroscopy2D.calibration_set.variables.readout_frequencies[\n", " [0, 1]\n", "].value\n", "\n", "# Set the range for sweeping the readout pulse frequency\n", "start_frequency = current_freq - 200e6\n", "end_frequency = current_freq + 200e6\n", "freq_steps = 9\n", "freq_scan_values = np.linspace(start_frequency, end_frequency, freq_steps)" ] }, { "cell_type": "code", "execution_count": 22, "id": "7aeba7f1", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.919212Z", "iopub.status.busy": "2024-10-11T06:15:04.918868Z", "iopub.status.idle": "2024-10-11T06:15:04.924089Z", "shell.execute_reply": "2024-10-11T06:15:04.923293Z" } }, "outputs": [], "source": [ "# Set the range for sweeping the readout pulse amplitude (units = V)\n", "start_amplitude = 0.1 if len(qubits) == 1 else [0.1] * len(qubits)\n", "end_amplitude = 1 if len(qubits) == 1 else [1] * len(qubits)\n", "ampl_steps = 10\n", "ampl_scan_values = np.linspace(start_amplitude, end_amplitude, ampl_steps)" ] }, { "cell_type": "raw", "id": "91701bc0", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ ".. note::\n", " The arrays for amplitudes and frequencies can be defined in different ways, as\n", " demonstrated above. However, the shape of the arrays must match the number of\n", " qubits, or an ``InconsistentShapes`` error will occur.\n" ] }, { "cell_type": "code", "execution_count": 23, "id": "adc93850", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.927430Z", "iopub.status.busy": "2024-10-11T06:15:04.926915Z", "iopub.status.idle": "2024-10-11T06:15:04.940803Z", "shell.execute_reply": "2024-10-11T06:15:04.939867Z" } }, "outputs": [], "source": [ "# Configure the repetitions for this experiment\n", "res_spectroscopy2D.configure_repetitions(\n", " frequencies=freq_scan_values,\n", " frequency_name=\"readout_frequencies\",\n", " amplitudes=ampl_scan_values,\n", " amplitude_name=\"readout_pulse_amplitudes\",\n", " n_shots=1,\n", ")" ] }, { "cell_type": "raw", "id": "d54e079a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "After configuring the repetitions, we compile the program to the waveform level and\n", "use the ``render`` method to visualize the waveforms. In this example, the\n", "``sweep_index`` is set to the midpoint of the nested sweeps. The right index\n", "represents the inner sweep (amplitude), and the left index represents the outer sweep\n", "(frequency)." ] }, { "cell_type": "code", "execution_count": 24, "id": "3d3a9d84", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:04.944438Z", "iopub.status.busy": "2024-10-11T06:15:04.944104Z", "iopub.status.idle": "2024-10-11T06:15:05.082961Z", "shell.execute_reply": "2024-10-11T06:15:05.082251Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2e-10, "legendgroup": "readout_pulse, labels: (0,)", "legendgrouptitle": { "text": "readout_pulse, labels: (0,)" }, "name": "Drive pulse for readout_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0018700890781240228, 0.0052576843218815955, 0.007624491984781647, 0.008409933504581439, 0.007222213134954023, 0.003884486760317131, -0.001538217733665497, -0.008734016288379222, -0.017162003840399846, -0.02609189596071732, -0.034662625122407094, -0.041955403070460265, -0.047075457436707005, -0.04923578760922, -0.047835936259470725, -0.04252897472475273, -0.03327064691742055, -0.02034586019589623, -0.004369366640511071, 0.013740574353529383, 0.03281466443557327, 0.051508188837964264, 0.0683948946995223, 0.08207262291421909, 0.09127303482570578, 0.09496716518238063, 0.0924585299207238, 0.08345613837218228, 0.06812097537327545, 0.047081255848947796, 0.021413898918252447, -0.007407926082187012, -0.03759883230509638, -0.0671720691062442, -0.09407029757359636, -0.11630767763511386, -0.13211351248454611, -0.14006721831354343, -0.13921462979375068, -0.1291566181322701, -0.11010264090692472, -0.0828840639291878, -0.04892475407811034, -0.010169362706902031, 0.03102729692443998, 0.07204353606206912, 0.11015800862544113, 0.1427301720866823, 0.16738202979075262, 0.18216871369429116, 0.18572583450189584, 0.17738273966064977, 0.1572328176578165, 0.12615465274772425, 0.08578100179021109, 0.03841602981616476, -0.013095226705067655, -0.06553784028709153, -0.11552813509937644, -0.15973237625879497, -0.19508884912139257, -0.21901854876165253, -0.22961005941905435, -0.22576554576589233, -0.20729703542041308, -0.17496521466025322, -0.1304566002105814, -0.0762989581429721, -0.015718955313269535, 0.04755002447137583, 0.10949845673192854, 0.16609537264708926, 0.21355095894278497, 0.2485699355847297, 0.2685787942484248, 0.271911317387269, 0.25793919765056944, 0.22713790314691124, 0.18108198388823601, 0.12236853477657669, 0.05447223056451004, -0.018460079385903532, -0.09186308913359657, -0.16103951499046365, -0.2214613137191383, -0.26906628567953295, -0.3005306214873577, -0.31349913882957037, -0.3067573647283892, -0.2803331117170888, -0.23551956415239078, -0.17481686203415747, -0.10179442863662994, -0.020881495071602828, 0.06290191260634265, 0.1442571619925048, 0.21794291735522814, 0.2791134124547173, 0.3236372246082916, 0.34837557352624837, 0.3514014412166436, 0.3321443365432151, 0.29145009963304774, 0.23155047560877076, 0.15594294831886021, 0.06918714421338885, -0.023370383646767325, -0.11592636384951889, -0.20258556756297735, -0.277737138647755, -0.33641841730443794, -0.37464263290809524, -0.38966882899811195, -0.3801957993019484, -0.34646645643103285, -0.290274640330477, -0.21487255253055115, -0.12478338246091461, -0.02552986311956463, 0.07670494689346183, 0.1754637771627534, 0.26442398412700774, 0.33780316742770694, 0.3907354910716291, 0.41959418999161463, 0.42223889532874426, 0.39817097954631286, 0.34858582739879396, 0.2763174261478477, 0.18567752892856035, 0.08219844075276735, -0.027705231500390833, -0.13713514674992205, -0.2391432911191386, -0.3271741534661472, -0.3954868109865927, -0.4395296993390221, -0.456243579360021, -0.4442725514991776, -0.40406864713140006, -0.3378821914973278, -0.24963736766252587, -0.14469975527670856, -0.02954960120876503, 0.08861925081894001, 0.20234989180836468, 0.30439405483669013, 0.38817508731418904, 0.44821255296803525, 0.4804810049461089, 0.4826794265072991, 0.4543933315792613, 0.39713821520394804, 0.3142805246102037, 0.21084011254765075, 0.09318573887982834, -0.03135788460608285, -0.1549672072118834, -0.2698125131768663, -0.36855505479744044, -0.44481700683678316, -0.4935940858567817, -0.5115840986124583, -0.49740983902243263, -0.45172132671243675, -0.3771699617428117, -0.2782552823037261, -0.16105313988663528, -0.03284173004670202, 0.09835145467882427, 0.22425348055686523, 0.33686893369034376, 0.4289888482717412, 0.4946531342781891, 0.5295367829337984, 0.53123478828407, 0.499427011743721, 0.4359117421246106, 0.3445049935193955, 0.23081111285760247, 0.10187849484993186, -0.03423840252192045, -0.16898346072561357, -0.29383805570378685, -0.40086090751552084, -0.4831943317156441, -0.5355045478358954, -0.5543277195067758, -0.5382992455003454, -0.48825112805268195, -0.4071705557748512, -0.3000216284182721, -0.17344086168782646, -0.03532518649543633, 0.10566191931475154, 0.24063520435942362, 0.36104898139264807, 0.4592394800524816, 0.5289137137627815, 0.5655536078938332, 0.5667093865061056, 0.5321631413758271, 0.4639516752460363, 0.3662466061416171, 0.24509877755083417, 0.10806266416149063, -0.036275857336925094, -0.17883878061232636, -0.31062833010668334, -0.42329623430949076, -0.5096738085176186, -0.564229110609588, -0.5834219522386102, -0.5659339380412681, -0.5127585662076778, -0.4271452594021133, -0.314400446326462, -0.18155789385704482, -0.036938819615080554, 0.11037063682534419, 0.25109169080819654, 0.37633880492019484, 0.47818211170587743, 0.5501506822505572, 0.5876446260627077, 0.5882297188317377, 0.5517956483190514, 0.4805675783555732, 0.378970011817834, 0.25335129690455793, 0.11158597204197292, -0.03742008015162641, -0.18429049618847929, -0.3197699041060304, -0.43530860297510215, -0.5236034246434973, -0.5790604801110135, -0.5981504002398811, -0.5796334588005579, -0.5246401867145247, -0.4366022291290549, -0.3210376818108359, -0.18520436812339924, -0.03764289640288795, 0.11236166295815386, 0.2553654665037262, 0.3823619180737205, 0.48535031277363205, 0.5578411150958901, 0.5952658832572191, 0.5952658832572214, 0.5578411150958971, 0.4853503127736434, 0.38236191807373543, 0.25536546650374364, 0.11236166295817278, -0.03764289640286874, -0.185204368123381, -0.3210376818108198, -0.43660222912904195, -0.5246401867145158, -0.5796334588005534, -0.5981504002398813, -0.5790604801110185, -0.5236034246435068, -0.43530860297511553, -0.3197699041060468, -0.18429049618849752, -0.03742008015164541, 0.11158597204195438, 0.25335129690454095, 0.37897001181781975, 0.4805675783555625, 0.5517956483190449, 0.5882297188317358, 0.5876446260627107, 0.5501506822505646, 0.478182111705889, 0.37633880492020955, 0.2510916908082137, 0.11037063682536269, -0.036938819615061895, -0.1815578938570272, -0.31440044632644654, -0.427145259402101, -0.5127585662076694, -0.5659339380412642, -0.5834219522386109, -0.5642291106095934, -0.5096738085176283, -0.423296234309504, -0.31062833010669944, -0.17883878061234423, -0.0362758573369436, 0.10806266416147267, 0.2450987775508179, 0.36624660614160354, 0.4639516752460264, 0.5321631413758212, 0.5667093865061043, 0.5655536078938364, 0.5289137137627891, 0.4592394800524931, 0.36104898139266267, 0.24063520435944033, 0.10566191931476937, -0.03532518649541847, -0.1734408616878097, -0.3000216284182575, -0.4071705557748397, -0.48825112805267423, -0.5382992455003419, -0.554327719506777, -0.5355045478359008, -0.4831943317156537, -0.40086090751553377, -0.29383805570380234, -0.16898346072563056, -0.034238402521937876, 0.10187849484991512, 0.2308111128575875, 0.3445049935193832, 0.4359117421246016, 0.4994270117437161, 0.5312347882840693, 0.5295367829338021, 0.49465313427819674, 0.4289888482717524, 0.3368689336903578, 0.22425348055688113, 0.09835145467884102, -0.03284173004668549, -0.16105313988662, -0.2782552823037131, -0.37716996174280176, -0.45172132671243054, -0.49740983902243063, -0.5115840986124603, -0.49359408585678755, -0.4448170068367926, -0.3685550547974529, -0.2698125131768808, -0.15496720721189913, -0.03135788460609882, 0.09318573887981314, 0.21084011254763735, 0.31428052461019285, 0.3971382152039405, 0.45439333157925743, 0.48267942650729917, 0.48048100494611284, 0.4482125529680428, 0.38817508731419964, 0.3043940548367031, 0.2023498918083792, 0.08861925081895507, -0.02954960120875036, -0.14469975527669526, -0.24963736766251485, -0.3378821914973196, -0.4040686471313951, -0.4442725514991763, -0.45624357936002335, -0.43952969933902797, -0.3954868109866017, -0.3271741534661587, -0.23914329111915175, -0.13713514674993613, -0.027705231500404912, 0.08219844075275415, 0.18567752892854886, 0.27631742614783866, 0.3485858273987878, 0.39817097954631, 0.42223889532874476, 0.41959418999161846, 0.39073549107163597, 0.3378031674277165, 0.2644239841270193, 0.17546377716276615, 0.07670494689347494, -0.02552986311955196, -0.12478338246090319, -0.21487255253054174, -0.2902746403304701, -0.3464664564310289, -0.38019579930194775, -0.38966882899811456, -0.37464263290810085, -0.33641841730444616, -0.2777371386477653, -0.202585567562989, -0.11592636384953109, -0.023370383646779274, 0.0691871442133779, 0.15594294831885092, 0.23155047560876366, 0.29145009963304325, 0.33214433654321346, 0.3514014412166448, 0.3483755735262524, 0.3236372246082982, 0.279113412454726, 0.2179429173552383, 0.14425716199251573, 0.06290191260635362, -0.020881495071592506, -0.1017944286366209, -0.17481686203415026, -0.23551956415238584, -0.2803331117170864, -0.30675736472838955, -0.3134991388295733, -0.300530621487363, -0.2690662856795403, -0.22146131371914715, -0.16103951499047345, -0.09186308913360658, -0.0184600793859131, 0.05447223056450152, 0.12236853477656974, 0.18108198388823102, 0.22713790314690843, 0.257939197650569, 0.27191131738727087, 0.26857879424842884, 0.2485699355847356, 0.2135509589427923, 0.1660953726470975, 0.10949845673193717, 0.047550024471384296, -0.015718955313261763, -0.07629895814296547, -0.13045660021057634, -0.17496521466025, -0.20729703542041183, -0.2257655457658931, -0.22961005941905707, -0.2190185487616569, -0.19508884912139826, -0.15973237625880163, -0.11552813509938362, -0.06553784028709872, -0.013095226705074407, 0.03841602981615887, 0.08578100179020637, 0.126154652747721, 0.15723281765781483, 0.1773827396606498, 0.18572583450189745, 0.18216871369429427, 0.16738202979075692, 0.14273017208668745, 0.1101580086254468, 0.07204353606207492, 0.03102729692444554, -0.010169362706897056, -0.04892475407810625, -0.08288406392918482, -0.11010264090692302, -0.12915661813226972, -0.13921462979375154, -0.14006721831354546, -0.13211351248454906, -0.11630767763511755, -0.09407029757360054, -0.06717206910624852, -0.03759883230510059, -0.007407926082190837, 0.02141389891824923, 0.047081255848945354, 0.0681209753732739, 0.08345613837218166, 0.09245852992072409, 0.09496716518238175, 0.0912730348257076, 0.08207262291422145, 0.068394894699525, 0.0515081888379671, 0.03281466443557604, 0.013740574353531904, -0.004369366640508947, -0.020345860195894613, -0.0332706469174195, -0.042528974724752255, -0.0478359362594708, -0.04923578760922055, -0.04707545743670795, -0.04195540307046148, -0.03466262512240845, -0.026091895960718686, -0.017162003840401112, -0.008734016288380298, -0.001538217733666317, 0.003884486760316596, 0.007222213134953768, 0.008409933504581434, 0.007624491984781829, 0.005257684321881888, 0.0018700890781243415 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_pulse, labels: (1,)", "legendgrouptitle": { "text": "readout_pulse, labels: (1,)" }, "name": "Drive pulse for readout_pulse, labels: (1,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0018700890781240228, 0.0052576843218815955, 0.007624491984781647, 0.008409933504581439, 0.007222213134954023, 0.003884486760317131, -0.001538217733665497, -0.008734016288379222, -0.017162003840399846, -0.02609189596071732, -0.034662625122407094, -0.041955403070460265, -0.047075457436707005, -0.04923578760922, -0.047835936259470725, -0.04252897472475273, -0.03327064691742055, -0.02034586019589623, -0.004369366640511071, 0.013740574353529383, 0.03281466443557327, 0.051508188837964264, 0.0683948946995223, 0.08207262291421909, 0.09127303482570578, 0.09496716518238063, 0.0924585299207238, 0.08345613837218228, 0.06812097537327545, 0.047081255848947796, 0.021413898918252447, -0.007407926082187012, -0.03759883230509638, -0.0671720691062442, -0.09407029757359636, -0.11630767763511386, -0.13211351248454611, -0.14006721831354343, -0.13921462979375068, -0.1291566181322701, -0.11010264090692472, -0.0828840639291878, -0.04892475407811034, -0.010169362706902031, 0.03102729692443998, 0.07204353606206912, 0.11015800862544113, 0.1427301720866823, 0.16738202979075262, 0.18216871369429116, 0.18572583450189584, 0.17738273966064977, 0.1572328176578165, 0.12615465274772425, 0.08578100179021109, 0.03841602981616476, -0.013095226705067655, -0.06553784028709153, -0.11552813509937644, -0.15973237625879497, -0.19508884912139257, -0.21901854876165253, -0.22961005941905435, -0.22576554576589233, -0.20729703542041308, -0.17496521466025322, -0.1304566002105814, -0.0762989581429721, -0.015718955313269535, 0.04755002447137583, 0.10949845673192854, 0.16609537264708926, 0.21355095894278497, 0.2485699355847297, 0.2685787942484248, 0.271911317387269, 0.25793919765056944, 0.22713790314691124, 0.18108198388823601, 0.12236853477657669, 0.05447223056451004, -0.018460079385903532, -0.09186308913359657, -0.16103951499046365, -0.2214613137191383, -0.26906628567953295, -0.3005306214873577, -0.31349913882957037, -0.3067573647283892, -0.2803331117170888, -0.23551956415239078, -0.17481686203415747, -0.10179442863662994, -0.020881495071602828, 0.06290191260634265, 0.1442571619925048, 0.21794291735522814, 0.2791134124547173, 0.3236372246082916, 0.34837557352624837, 0.3514014412166436, 0.3321443365432151, 0.29145009963304774, 0.23155047560877076, 0.15594294831886021, 0.06918714421338885, -0.023370383646767325, -0.11592636384951889, -0.20258556756297735, -0.277737138647755, -0.33641841730443794, -0.37464263290809524, -0.38966882899811195, -0.3801957993019484, -0.34646645643103285, -0.290274640330477, -0.21487255253055115, -0.12478338246091461, -0.02552986311956463, 0.07670494689346183, 0.1754637771627534, 0.26442398412700774, 0.33780316742770694, 0.3907354910716291, 0.41959418999161463, 0.42223889532874426, 0.39817097954631286, 0.34858582739879396, 0.2763174261478477, 0.18567752892856035, 0.08219844075276735, -0.027705231500390833, -0.13713514674992205, -0.2391432911191386, -0.3271741534661472, -0.3954868109865927, -0.4395296993390221, -0.456243579360021, -0.4442725514991776, -0.40406864713140006, -0.3378821914973278, -0.24963736766252587, -0.14469975527670856, -0.02954960120876503, 0.08861925081894001, 0.20234989180836468, 0.30439405483669013, 0.38817508731418904, 0.44821255296803525, 0.4804810049461089, 0.4826794265072991, 0.4543933315792613, 0.39713821520394804, 0.3142805246102037, 0.21084011254765075, 0.09318573887982834, -0.03135788460608285, -0.1549672072118834, -0.2698125131768663, -0.36855505479744044, -0.44481700683678316, -0.4935940858567817, -0.5115840986124583, -0.49740983902243263, -0.45172132671243675, -0.3771699617428117, -0.2782552823037261, -0.16105313988663528, -0.03284173004670202, 0.09835145467882427, 0.22425348055686523, 0.33686893369034376, 0.4289888482717412, 0.4946531342781891, 0.5295367829337984, 0.53123478828407, 0.499427011743721, 0.4359117421246106, 0.3445049935193955, 0.23081111285760247, 0.10187849484993186, -0.03423840252192045, -0.16898346072561357, -0.29383805570378685, -0.40086090751552084, -0.4831943317156441, -0.5355045478358954, -0.5543277195067758, -0.5382992455003454, -0.48825112805268195, -0.4071705557748512, -0.3000216284182721, -0.17344086168782646, -0.03532518649543633, 0.10566191931475154, 0.24063520435942362, 0.36104898139264807, 0.4592394800524816, 0.5289137137627815, 0.5655536078938332, 0.5667093865061056, 0.5321631413758271, 0.4639516752460363, 0.3662466061416171, 0.24509877755083417, 0.10806266416149063, -0.036275857336925094, -0.17883878061232636, -0.31062833010668334, -0.42329623430949076, -0.5096738085176186, -0.564229110609588, -0.5834219522386102, -0.5659339380412681, -0.5127585662076778, -0.4271452594021133, -0.314400446326462, -0.18155789385704482, -0.036938819615080554, 0.11037063682534419, 0.25109169080819654, 0.37633880492019484, 0.47818211170587743, 0.5501506822505572, 0.5876446260627077, 0.5882297188317377, 0.5517956483190514, 0.4805675783555732, 0.378970011817834, 0.25335129690455793, 0.11158597204197292, -0.03742008015162641, -0.18429049618847929, -0.3197699041060304, -0.43530860297510215, -0.5236034246434973, -0.5790604801110135, -0.5981504002398811, -0.5796334588005579, -0.5246401867145247, -0.4366022291290549, -0.3210376818108359, -0.18520436812339924, -0.03764289640288795, 0.11236166295815386, 0.2553654665037262, 0.3823619180737205, 0.48535031277363205, 0.5578411150958901, 0.5952658832572191, 0.5952658832572214, 0.5578411150958971, 0.4853503127736434, 0.38236191807373543, 0.25536546650374364, 0.11236166295817278, -0.03764289640286874, -0.185204368123381, -0.3210376818108198, -0.43660222912904195, -0.5246401867145158, -0.5796334588005534, -0.5981504002398813, -0.5790604801110185, -0.5236034246435068, -0.43530860297511553, -0.3197699041060468, -0.18429049618849752, -0.03742008015164541, 0.11158597204195438, 0.25335129690454095, 0.37897001181781975, 0.4805675783555625, 0.5517956483190449, 0.5882297188317358, 0.5876446260627107, 0.5501506822505646, 0.478182111705889, 0.37633880492020955, 0.2510916908082137, 0.11037063682536269, -0.036938819615061895, -0.1815578938570272, -0.31440044632644654, -0.427145259402101, -0.5127585662076694, -0.5659339380412642, -0.5834219522386109, -0.5642291106095934, -0.5096738085176283, -0.423296234309504, -0.31062833010669944, -0.17883878061234423, -0.0362758573369436, 0.10806266416147267, 0.2450987775508179, 0.36624660614160354, 0.4639516752460264, 0.5321631413758212, 0.5667093865061043, 0.5655536078938364, 0.5289137137627891, 0.4592394800524931, 0.36104898139266267, 0.24063520435944033, 0.10566191931476937, -0.03532518649541847, -0.1734408616878097, -0.3000216284182575, -0.4071705557748397, -0.48825112805267423, -0.5382992455003419, -0.554327719506777, -0.5355045478359008, -0.4831943317156537, -0.40086090751553377, -0.29383805570380234, -0.16898346072563056, -0.034238402521937876, 0.10187849484991512, 0.2308111128575875, 0.3445049935193832, 0.4359117421246016, 0.4994270117437161, 0.5312347882840693, 0.5295367829338021, 0.49465313427819674, 0.4289888482717524, 0.3368689336903578, 0.22425348055688113, 0.09835145467884102, -0.03284173004668549, -0.16105313988662, -0.2782552823037131, -0.37716996174280176, -0.45172132671243054, -0.49740983902243063, -0.5115840986124603, -0.49359408585678755, -0.4448170068367926, -0.3685550547974529, -0.2698125131768808, -0.15496720721189913, -0.03135788460609882, 0.09318573887981314, 0.21084011254763735, 0.31428052461019285, 0.3971382152039405, 0.45439333157925743, 0.48267942650729917, 0.48048100494611284, 0.4482125529680428, 0.38817508731419964, 0.3043940548367031, 0.2023498918083792, 0.08861925081895507, -0.02954960120875036, -0.14469975527669526, -0.24963736766251485, -0.3378821914973196, -0.4040686471313951, -0.4442725514991763, -0.45624357936002335, -0.43952969933902797, -0.3954868109866017, -0.3271741534661587, -0.23914329111915175, -0.13713514674993613, -0.027705231500404912, 0.08219844075275415, 0.18567752892854886, 0.27631742614783866, 0.3485858273987878, 0.39817097954631, 0.42223889532874476, 0.41959418999161846, 0.39073549107163597, 0.3378031674277165, 0.2644239841270193, 0.17546377716276615, 0.07670494689347494, -0.02552986311955196, -0.12478338246090319, -0.21487255253054174, -0.2902746403304701, -0.3464664564310289, -0.38019579930194775, -0.38966882899811456, -0.37464263290810085, -0.33641841730444616, -0.2777371386477653, -0.202585567562989, -0.11592636384953109, -0.023370383646779274, 0.0691871442133779, 0.15594294831885092, 0.23155047560876366, 0.29145009963304325, 0.33214433654321346, 0.3514014412166448, 0.3483755735262524, 0.3236372246082982, 0.279113412454726, 0.2179429173552383, 0.14425716199251573, 0.06290191260635362, -0.020881495071592506, -0.1017944286366209, -0.17481686203415026, -0.23551956415238584, -0.2803331117170864, -0.30675736472838955, -0.3134991388295733, -0.300530621487363, -0.2690662856795403, -0.22146131371914715, -0.16103951499047345, -0.09186308913360658, -0.0184600793859131, 0.05447223056450152, 0.12236853477656974, 0.18108198388823102, 0.22713790314690843, 0.257939197650569, 0.27191131738727087, 0.26857879424842884, 0.2485699355847356, 0.2135509589427923, 0.1660953726470975, 0.10949845673193717, 0.047550024471384296, -0.015718955313261763, -0.07629895814296547, -0.13045660021057634, -0.17496521466025, -0.20729703542041183, -0.2257655457658931, -0.22961005941905707, -0.2190185487616569, -0.19508884912139826, -0.15973237625880163, -0.11552813509938362, -0.06553784028709872, -0.013095226705074407, 0.03841602981615887, 0.08578100179020637, 0.126154652747721, 0.15723281765781483, 0.1773827396606498, 0.18572583450189745, 0.18216871369429427, 0.16738202979075692, 0.14273017208668745, 0.1101580086254468, 0.07204353606207492, 0.03102729692444554, -0.010169362706897056, -0.04892475407810625, -0.08288406392918482, -0.11010264090692302, -0.12915661813226972, -0.13921462979375154, -0.14006721831354546, -0.13211351248454906, -0.11630767763511755, -0.09407029757360054, -0.06717206910624852, -0.03759883230510059, -0.007407926082190837, 0.02141389891824923, 0.047081255848945354, 0.0681209753732739, 0.08345613837218166, 0.09245852992072409, 0.09496716518238175, 0.0912730348257076, 0.08207262291422145, 0.068394894699525, 0.0515081888379671, 0.03281466443557604, 0.013740574353531904, -0.004369366640508947, -0.020345860195894613, -0.0332706469174195, -0.042528974724752255, -0.0478359362594708, -0.04923578760922055, -0.04707545743670795, -0.04195540307046148, -0.03466262512240845, -0.026091895960718686, -0.017162003840401112, -0.008734016288380298, -0.001538217733666317, 0.003884486760316596, 0.007222213134953768, 0.008409933504581434, 0.007624491984781829, 0.005257684321881888, 0.0018700890781243415 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Integration filter for readout_acquisition, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.9921147013144779, -0.9297764858882519, -0.8090169943749486, -0.6374239897486917, -0.42577929156507577, -0.18738131458572876, 0.06279051952930842, 0.30901699437494196, 0.5358267949789911, 0.7289686274214066, 0.8763066800438597, 0.968583161128629, 1.0, 0.9685831611286336, 0.8763066800438688, 0.7289686274214194, 0.5358267949790071, 0.30901699437496, 0.06279051952932738, -0.18738131458571003, -0.42577929156505845, -0.637423989748677, -0.8090169943749372, -0.9297764858882447, -0.9921147013144753, -0.99211470131448, -0.9297764858882586, -0.8090169943749594, -0.6374239897487062, -0.42577929156509287, -0.18738131458574742, 0.06279051952928935, 0.3090169943749237, 0.5358267949789748, 0.7289686274213931, 0.87630668004385, 0.9685831611286236, 0.9999999999999994, 0.9685831611286378, 0.8763066800438776, 0.7289686274214322, 0.535826794979023, 0.309016994374978, 0.06279051952934642, -0.18738131458569113, -0.42577929156504085, -0.6374239897486618, -0.8090169943749252, -0.9297764858882368, -0.992114701314472, -0.9921147013144815, -0.9297764858882649, -0.8090169943749701, -0.6374239897487204, -0.4257792915651097, -0.18738131458576596, 0.06279051952927031, 0.3090169943749053, 0.5358267949789582, 0.7289686274213795, 0.8763066800438402, 0.9685831611286181, 0.9999999999999986, 0.9685831611286417, 0.876306680043886, 0.7289686274214446, 0.5358267949790386, 0.3090169943749959, 0.06279051952936546, -0.18738131458567223, -0.42577929156502325, -0.6374239897486466, -0.8090169943749135, -0.9297764858882291, -0.9921147013144689, -0.9921147013144832, -0.9297764858882711, -0.8090169943749806, -0.6374239897487346, -0.4257792915651266, -0.18738131458578455, 0.06279051952925119, 0.3090169943748869, 0.5358267949789417, 0.7289686274213658, 0.8763066800438303, 0.9685831611286126, 0.9999999999999979, 0.968583161128646, 0.8763066800438947, 0.7289686274214573, 0.5358267949790545, 0.30901699437501395, 0.0627905195293845, -0.1873813145856534, -0.4257792915650058, -0.6374239897486317, -0.8090169943749022, -0.9297764858882219, -0.9921147013144664, -0.9921147013144855, -0.9297764858882781, -0.8090169943749919, -0.6374239897487494, -0.42577929156514394, -0.1873813145858033, 0.06279051952923217, 0.3090169943748688, 0.5358267949789257, 0.7289686274213529, 0.8763066800438213, 0.968583161128608, 0.9999999999999979, 0.9685831611286506, 0.8763066800439038, 0.7289686274214703, 0.5358267949790705, 0.309016994375032, 0.06279051952940343, -0.1873813145856347, -0.4257792915649885, -0.6374239897486168, -0.8090169943748906, -0.9297764858882146, -0.9921147013144638, -0.9921147013144878, -0.929776485888285, -0.809016994375003, -0.637423989748764, -0.42577929156516126, -0.18738131458582213, 0.06279051952921302, 0.30901699437485053, 0.5358267949789094, 0.7289686274213397, 0.876306680043812, 0.9685831611286032, 0.999999999999998, 0.9685831611286555, 0.8763066800439132, 0.7289686274214835, 0.5358267949790867, 0.30901699437505015, 0.06279051952942247, -0.187381314585616, -0.42577929156497135, -0.6374239897486023, -0.8090169943748795, -0.9297764858882076, -0.9921147013144613, -0.99211470131449, -0.9297764858882918, -0.8090169943750138, -0.6374239897487783, -0.42577929156517813, -0.18738131458584054, 0.06279051952919426, 0.3090169943748326, 0.5358267949788934, 0.7289686274213266, 0.8763066800438026, 0.9685831611285982, 0.9999999999999976, 0.9685831611286597, 0.8763066800439219, 0.7289686274214962, 0.5358267949791025, 0.309016994375068, 0.06279051952944131, -0.18738131458559737, -0.42577929156495414, -0.6374239897485876, -0.8090169943748683, -0.9297764858882005, -0.9921147013144588, -0.9921147013144922, -0.9297764858882986, -0.809016994375025, -0.637423989748793, -0.42577929156519545, -0.18738131458585935, 0.06279051952917511, 0.30901699437481434, 0.5358267949788772, 0.7289686274213135, 0.8763066800437933, 0.9685831611285933, 0.9999999999999974, 0.9685831611286644, 0.8763066800439309, 0.7289686274215089, 0.5358267949791184, 0.3090169943750861, 0.06279051952946041, -0.18738131458557852, -0.4257792915649367, -0.6374239897485726, -0.8090169943748567, -0.9297764858881932, -0.9921147013144561, -0.9921147013144944, -0.9297764858883056, -0.8090169943750362, -0.6374239897488078, -0.4257792915652128, -0.18738131458587826, 0.0627905195291559, 0.309016994374796, 0.5358267949788609, 0.7289686274213001, 0.8763066800437839, 0.9685831611285884, 0.9999999999999974, 0.9685831611286692, 0.8763066800439402, 0.7289686274215222, 0.5358267949791348, 0.30901699437510455, 0.0627905195294797, -0.1873813145855595, -0.42577929156491917, -0.6374239897485576, -0.8090169943748453, -0.9297764858881861, -0.9921147013144537, -0.9921147013144966, -0.9297764858883124, -0.8090169943750471, -0.6374239897488222, -0.42577929156522987, -0.18738131458589688, 0.06279051952913686, 0.30901699437477775, 0.5358267949788446, 0.7289686274212868, 0.8763066800437743, 0.9685831611285833, 0.999999999999997, 0.9685831611286735, 0.8763066800439491, 0.728968627421535, 0.5358267949791506, 0.3090169943751225, 0.06279051952949863, -0.18738131458554078, -0.4257792915649018, -0.6374239897485428, -0.8090169943748339, -0.9297764858881787, -0.9921147013144509, -0.9921147013144986, -0.9297764858883191, -0.809016994375058, -0.6374239897488366, -0.42577929156524696, -0.18738131458591548, 0.0627905195291179, 0.3090169943747596, 0.5358267949788285, 0.7289686274212738, 0.8763066800437651, 0.9685831611285785, 0.9999999999999969, 0.9685831611286781, 0.8763066800439581, 0.7289686274215479, 0.5358267949791666, 0.30901699437514063, 0.06279051952951775, -0.18738131458552193, -0.4257792915648844, -0.6374239897485279, -0.8090169943748224, -0.9297764858881714, -0.9921147013144482, -0.9921147013145009, -0.929776485888326, -0.8090169943750692, -0.6374239897488514, -0.4257792915652643, -0.18738131458593438, 0.06279051952909862, 0.30901699437474117, 0.5358267949788119, 0.7289686274212601, 0.8763066800437553, 0.9685831611285731, 0.9999999999999963, 0.9685831611286824, 0.8763066800439668, 0.7289686274215607, 0.5358267949791825, 0.3090169943751586, 0.06279051952953676, -0.18738131458550306, -0.4257792915648669, -0.6374239897485129, -0.8090169943748109, -0.929776485888164, -0.9921147013144453, -0.9921147013145027, -0.9297764858883326, -0.80901699437508, -0.6374239897488657, -0.42577929156528127, -0.1873813145859529, 0.06279051952907971, 0.3090169943747231, 0.5358267949787958, 0.7289686274212471, 0.8763066800437461, 0.9685831611285683, 0.9999999999999961, 0.9685831611286868, 0.8763066800439757, 0.7289686274215734, 0.5358267949791984, 0.3090169943751766, 0.06279051952955572, -0.1873813145854843, -0.4257792915648495, -0.6374239897484979, -0.8090169943747992, -0.9297764858881565, -0.9921147013144426, -0.9921147013145047, -0.9297764858883392, -0.8090169943750909, -0.6374239897488801, -0.4257792915652983, -0.18738131458597157, 0.06279051952906065, 0.30901699437470476, 0.5358267949787794, 0.7289686274212335, 0.8763066800437362, 0.9685831611285628, 0.9999999999999954, 0.9685831611286909, 0.8763066800439844, 0.7289686274215861, 0.5358267949792143, 0.30901699437519464, 0.06279051952957479, -0.1873813145854654, -0.42577929156483196, -0.6374239897484829, -0.8090169943747878, -0.9297764858881492, -0.9921147013144398, -0.9921147013145067, -0.9297764858883458, -0.8090169943751018, -0.6374239897488947, -0.4257792915653156, -0.1873813145859904, 0.06279051952904141, 0.3090169943746863, 0.535826794978763, 0.7289686274212201, 0.8763066800437267, 0.9685831611285577, 0.999999999999995, 0.9685831611286952, 0.8763066800439933, 0.728968627421599, 0.5358267949792302, 0.3090169943752128, 0.06279051952959391, -0.1873813145854465, -0.4257792915648144, -0.6374239897484678, -0.809016994374776, -0.9297764858881415, -0.9921147013144368, -0.9921147013145085, -0.9297764858883524, -0.8090169943751127, -0.6374239897489091, -0.4257792915653327, -0.1873813145860091, 0.06279051952902223, 0.30901699437466795, 0.5358267949787464, 0.7289686274212066, 0.876306680043717, 0.9685831611285525, 0.9999999999999946, 0.9685831611286997, 0.8763066800440021, 0.7289686274216117, 0.5358267949792462, 0.3090169943752309, 0.06279051952961304, -0.18738131458542756, -0.4257792915647969, -0.6374239897484527, -0.8090169943747643, -0.9297764858881339, -0.9921147013144337, -0.9921147013145103, -0.9297764858883588, -0.8090169943751234, -0.6374239897489236, -0.4257792915653499, -0.187381314586028, 0.06279051952900289, 0.30901699437464936, 0.5358267949787298, 0.7289686274211928, 0.8763066800437072, 0.9685831611285471, 0.999999999999994, 0.9685831611287039, 0.8763066800440109, 0.7289686274216245, 0.5358267949792621, 0.309016994375249, 0.06279051952963222, -0.18738131458540855, -0.4257792915647792, -0.6374239897484375, -0.8090169943747526, -0.9297764858881266, -0.992114701314431, -0.9921147013145124, -0.9297764858883656, -0.8090169943751344, -0.637423989748938, -0.4257792915653669, -0.18738131458604654, 0.06279051952898398, 0.30901699437463126, 0.5358267949787137, 0.7289686274211797, 0.8763066800436978, 0.968583161128542, 0.9999999999999937, 0.9685831611287083, 0.8763066800440198, 0.7289686274216373, 0.5358267949792779, 0.3090169943752668, 0.06279051952965103, -0.18738131458538992, -0.42577929156476196, -0.6374239897484227, -0.8090169943747412, -0.9297764858881191, -0.9921147013144282, -0.9921147013145144, -0.9297764858883721, -0.8090169943751452, -0.6374239897489524, -0.425779291565384, -0.18738131458606525, 0.06279051952896486, 0.30901699437461294, 0.5358267949786972, 0.7289686274211663, 0.8763066800436882, 0.9685831611285368, 0.9999999999999931, 0.9685831611287125, 0.8763066800440285, 0.7289686274216499, 0.5358267949792939, 0.30901699437528496, 0.06279051952967013, -0.18738131458537102, -0.4257792915647445, -0.6374239897484077, -0.8090169943747296, -0.9297764858881117, -0.9921147013144255, -0.9921147013145164, -0.9297764858883789, -0.8090169943751562, -0.637423989748967, -0.4257792915654012, -0.18738131458608395, 0.06279051952894579, 0.3090169943745947, 0.535826794978681, 0.7289686274211531, 0.8763066800436787, 0.9685831611285318, 0.9999999999999929, 0.968583161128717, 0.8763066800440374, 0.7289686274216628, 0.5358267949793097, 0.30901699437530294, 0.06279051952968909, -0.1873813145853523, -0.42577929156472716, -0.6374239897483929, -0.8090169943747181, -0.9297764858881044, -0.9921147013144227 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_acquisition, labels: (1,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (1,)" }, "name": "Integration filter for readout_acquisition, labels: (1,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.9921147013144779, -0.9297764858882519, -0.8090169943749486, -0.6374239897486917, -0.42577929156507577, -0.18738131458572876, 0.06279051952930842, 0.30901699437494196, 0.5358267949789911, 0.7289686274214066, 0.8763066800438597, 0.968583161128629, 1.0, 0.9685831611286336, 0.8763066800438688, 0.7289686274214194, 0.5358267949790071, 0.30901699437496, 0.06279051952932738, -0.18738131458571003, -0.42577929156505845, -0.637423989748677, -0.8090169943749372, -0.9297764858882447, -0.9921147013144753, -0.99211470131448, -0.9297764858882586, -0.8090169943749594, -0.6374239897487062, -0.42577929156509287, -0.18738131458574742, 0.06279051952928935, 0.3090169943749237, 0.5358267949789748, 0.7289686274213931, 0.87630668004385, 0.9685831611286236, 0.9999999999999994, 0.9685831611286378, 0.8763066800438776, 0.7289686274214322, 0.535826794979023, 0.309016994374978, 0.06279051952934642, -0.18738131458569113, -0.42577929156504085, -0.6374239897486618, -0.8090169943749252, -0.9297764858882368, -0.992114701314472, -0.9921147013144815, -0.9297764858882649, -0.8090169943749701, -0.6374239897487204, -0.4257792915651097, -0.18738131458576596, 0.06279051952927031, 0.3090169943749053, 0.5358267949789582, 0.7289686274213795, 0.8763066800438402, 0.9685831611286181, 0.9999999999999986, 0.9685831611286417, 0.876306680043886, 0.7289686274214446, 0.5358267949790386, 0.3090169943749959, 0.06279051952936546, -0.18738131458567223, -0.42577929156502325, -0.6374239897486466, -0.8090169943749135, -0.9297764858882291, -0.9921147013144689, -0.9921147013144832, -0.9297764858882711, -0.8090169943749806, -0.6374239897487346, -0.4257792915651266, -0.18738131458578455, 0.06279051952925119, 0.3090169943748869, 0.5358267949789417, 0.7289686274213658, 0.8763066800438303, 0.9685831611286126, 0.9999999999999979, 0.968583161128646, 0.8763066800438947, 0.7289686274214573, 0.5358267949790545, 0.30901699437501395, 0.0627905195293845, -0.1873813145856534, -0.4257792915650058, -0.6374239897486317, -0.8090169943749022, -0.9297764858882219, -0.9921147013144664, -0.9921147013144855, -0.9297764858882781, -0.8090169943749919, -0.6374239897487494, -0.42577929156514394, -0.1873813145858033, 0.06279051952923217, 0.3090169943748688, 0.5358267949789257, 0.7289686274213529, 0.8763066800438213, 0.968583161128608, 0.9999999999999979, 0.9685831611286506, 0.8763066800439038, 0.7289686274214703, 0.5358267949790705, 0.309016994375032, 0.06279051952940343, -0.1873813145856347, -0.4257792915649885, -0.6374239897486168, -0.8090169943748906, -0.9297764858882146, -0.9921147013144638, -0.9921147013144878, -0.929776485888285, -0.809016994375003, -0.637423989748764, -0.42577929156516126, -0.18738131458582213, 0.06279051952921302, 0.30901699437485053, 0.5358267949789094, 0.7289686274213397, 0.876306680043812, 0.9685831611286032, 0.999999999999998, 0.9685831611286555, 0.8763066800439132, 0.7289686274214835, 0.5358267949790867, 0.30901699437505015, 0.06279051952942247, -0.187381314585616, -0.42577929156497135, -0.6374239897486023, -0.8090169943748795, -0.9297764858882076, -0.9921147013144613, -0.99211470131449, -0.9297764858882918, -0.8090169943750138, -0.6374239897487783, -0.42577929156517813, -0.18738131458584054, 0.06279051952919426, 0.3090169943748326, 0.5358267949788934, 0.7289686274213266, 0.8763066800438026, 0.9685831611285982, 0.9999999999999976, 0.9685831611286597, 0.8763066800439219, 0.7289686274214962, 0.5358267949791025, 0.309016994375068, 0.06279051952944131, -0.18738131458559737, -0.42577929156495414, -0.6374239897485876, -0.8090169943748683, -0.9297764858882005, -0.9921147013144588, -0.9921147013144922, -0.9297764858882986, -0.809016994375025, -0.637423989748793, -0.42577929156519545, -0.18738131458585935, 0.06279051952917511, 0.30901699437481434, 0.5358267949788772, 0.7289686274213135, 0.8763066800437933, 0.9685831611285933, 0.9999999999999974, 0.9685831611286644, 0.8763066800439309, 0.7289686274215089, 0.5358267949791184, 0.3090169943750861, 0.06279051952946041, -0.18738131458557852, -0.4257792915649367, -0.6374239897485726, -0.8090169943748567, -0.9297764858881932, -0.9921147013144561, -0.9921147013144944, -0.9297764858883056, -0.8090169943750362, -0.6374239897488078, -0.4257792915652128, -0.18738131458587826, 0.0627905195291559, 0.309016994374796, 0.5358267949788609, 0.7289686274213001, 0.8763066800437839, 0.9685831611285884, 0.9999999999999974, 0.9685831611286692, 0.8763066800439402, 0.7289686274215222, 0.5358267949791348, 0.30901699437510455, 0.0627905195294797, -0.1873813145855595, -0.42577929156491917, -0.6374239897485576, -0.8090169943748453, -0.9297764858881861, -0.9921147013144537, -0.9921147013144966, -0.9297764858883124, -0.8090169943750471, -0.6374239897488222, -0.42577929156522987, -0.18738131458589688, 0.06279051952913686, 0.30901699437477775, 0.5358267949788446, 0.7289686274212868, 0.8763066800437743, 0.9685831611285833, 0.999999999999997, 0.9685831611286735, 0.8763066800439491, 0.728968627421535, 0.5358267949791506, 0.3090169943751225, 0.06279051952949863, -0.18738131458554078, -0.4257792915649018, -0.6374239897485428, -0.8090169943748339, -0.9297764858881787, -0.9921147013144509, -0.9921147013144986, -0.9297764858883191, -0.809016994375058, -0.6374239897488366, -0.42577929156524696, -0.18738131458591548, 0.0627905195291179, 0.3090169943747596, 0.5358267949788285, 0.7289686274212738, 0.8763066800437651, 0.9685831611285785, 0.9999999999999969, 0.9685831611286781, 0.8763066800439581, 0.7289686274215479, 0.5358267949791666, 0.30901699437514063, 0.06279051952951775, -0.18738131458552193, -0.4257792915648844, -0.6374239897485279, -0.8090169943748224, -0.9297764858881714, -0.9921147013144482, -0.9921147013145009, -0.929776485888326, -0.8090169943750692, -0.6374239897488514, -0.4257792915652643, -0.18738131458593438, 0.06279051952909862, 0.30901699437474117, 0.5358267949788119, 0.7289686274212601, 0.8763066800437553, 0.9685831611285731, 0.9999999999999963, 0.9685831611286824, 0.8763066800439668, 0.7289686274215607, 0.5358267949791825, 0.3090169943751586, 0.06279051952953676, -0.18738131458550306, -0.4257792915648669, -0.6374239897485129, -0.8090169943748109, -0.929776485888164, -0.9921147013144453, -0.9921147013145027, -0.9297764858883326, -0.80901699437508, -0.6374239897488657, -0.42577929156528127, -0.1873813145859529, 0.06279051952907971, 0.3090169943747231, 0.5358267949787958, 0.7289686274212471, 0.8763066800437461, 0.9685831611285683, 0.9999999999999961, 0.9685831611286868, 0.8763066800439757, 0.7289686274215734, 0.5358267949791984, 0.3090169943751766, 0.06279051952955572, -0.1873813145854843, -0.4257792915648495, -0.6374239897484979, -0.8090169943747992, -0.9297764858881565, -0.9921147013144426, -0.9921147013145047, -0.9297764858883392, -0.8090169943750909, -0.6374239897488801, -0.4257792915652983, -0.18738131458597157, 0.06279051952906065, 0.30901699437470476, 0.5358267949787794, 0.7289686274212335, 0.8763066800437362, 0.9685831611285628, 0.9999999999999954, 0.9685831611286909, 0.8763066800439844, 0.7289686274215861, 0.5358267949792143, 0.30901699437519464, 0.06279051952957479, -0.1873813145854654, -0.42577929156483196, -0.6374239897484829, -0.8090169943747878, -0.9297764858881492, -0.9921147013144398, -0.9921147013145067, -0.9297764858883458, -0.8090169943751018, -0.6374239897488947, -0.4257792915653156, -0.1873813145859904, 0.06279051952904141, 0.3090169943746863, 0.535826794978763, 0.7289686274212201, 0.8763066800437267, 0.9685831611285577, 0.999999999999995, 0.9685831611286952, 0.8763066800439933, 0.728968627421599, 0.5358267949792302, 0.3090169943752128, 0.06279051952959391, -0.1873813145854465, -0.4257792915648144, -0.6374239897484678, -0.809016994374776, -0.9297764858881415, -0.9921147013144368, -0.9921147013145085, -0.9297764858883524, -0.8090169943751127, -0.6374239897489091, -0.4257792915653327, -0.1873813145860091, 0.06279051952902223, 0.30901699437466795, 0.5358267949787464, 0.7289686274212066, 0.876306680043717, 0.9685831611285525, 0.9999999999999946, 0.9685831611286997, 0.8763066800440021, 0.7289686274216117, 0.5358267949792462, 0.3090169943752309, 0.06279051952961304, -0.18738131458542756, -0.4257792915647969, -0.6374239897484527, -0.8090169943747643, -0.9297764858881339, -0.9921147013144337, -0.9921147013145103, -0.9297764858883588, -0.8090169943751234, -0.6374239897489236, -0.4257792915653499, -0.187381314586028, 0.06279051952900289, 0.30901699437464936, 0.5358267949787298, 0.7289686274211928, 0.8763066800437072, 0.9685831611285471, 0.999999999999994, 0.9685831611287039, 0.8763066800440109, 0.7289686274216245, 0.5358267949792621, 0.309016994375249, 0.06279051952963222, -0.18738131458540855, -0.4257792915647792, -0.6374239897484375, -0.8090169943747526, -0.9297764858881266, -0.992114701314431, -0.9921147013145124, -0.9297764858883656, -0.8090169943751344, -0.637423989748938, -0.4257792915653669, -0.18738131458604654, 0.06279051952898398, 0.30901699437463126, 0.5358267949787137, 0.7289686274211797, 0.8763066800436978, 0.968583161128542, 0.9999999999999937, 0.9685831611287083, 0.8763066800440198, 0.7289686274216373, 0.5358267949792779, 0.3090169943752668, 0.06279051952965103, -0.18738131458538992, -0.42577929156476196, -0.6374239897484227, -0.8090169943747412, -0.9297764858881191, -0.9921147013144282, -0.9921147013145144, -0.9297764858883721, -0.8090169943751452, -0.6374239897489524, -0.425779291565384, -0.18738131458606525, 0.06279051952896486, 0.30901699437461294, 0.5358267949786972, 0.7289686274211663, 0.8763066800436882, 0.9685831611285368, 0.9999999999999931, 0.9685831611287125, 0.8763066800440285, 0.7289686274216499, 0.5358267949792939, 0.30901699437528496, 0.06279051952967013, -0.18738131458537102, -0.4257792915647445, -0.6374239897484077, -0.8090169943747296, -0.9297764858881117, -0.9921147013144255, -0.9921147013145164, -0.9297764858883789, -0.8090169943751562, -0.637423989748967, -0.4257792915654012, -0.18738131458608395, 0.06279051952894579, 0.3090169943745947, 0.535826794978681, 0.7289686274211531, 0.8763066800436787, 0.9685831611285318, 0.9999999999999929, 0.968583161128717, 0.8763066800440374, 0.7289686274216628, 0.5358267949793097, 0.30901699437530294, 0.06279051952968909, -0.1873813145853523, -0.42577929156472716, -0.6374239897483929, -0.8090169943747181, -0.9297764858881044, -0.9921147013144227 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Waveforms", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# View the waveforms to be executed on the hardware\n", "res_spectroscopy2D.compiled_program.render(\n", " channel_subplots=False, lo_frequency=5e9, sweep_index=(5, 5), sample_rate=5e9\n", ")" ] }, { "cell_type": "raw", "id": "2d10590c", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We now proceed to execute the experiment (or load a previous run) and plot the trace\n", "waveforms associated with a specific readout resonator. These waveforms show the\n", "output that has passed through the resonator." ] }, { "cell_type": "code", "execution_count": 25, "id": "55ce8bb6", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:05.088750Z", "iopub.status.busy": "2024-10-11T06:15:05.088423Z", "iopub.status.idle": "2024-10-11T06:15:05.129030Z", "shell.execute_reply": "2024-10-11T06:15:05.128034Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "if run_on_hw:\n", " res_spectroscopy2D.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " res_spectroscopy2D = qcs.load(\"ReadoutSpectroscopy2D.qcs\")" ] }, { "cell_type": "code", "execution_count": 26, "id": "8df0b987", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:05.133488Z", "iopub.status.busy": "2024-10-11T06:15:05.132759Z", "iopub.status.idle": "2024-10-11T06:15:05.612270Z", "shell.execute_reply": "2024-10-11T06:15:05.611443Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0006591796409338713, -0.0004394531133584678, 0.001538085867650807, 0.0017578124534338713, 0.0046142577193677425, 0.006591796875, 0.001977538922801614, 0.001977538922801614, -0.0002197265566792339, -0.00439453125, -0.0024169920943677425, -0.0002197265566792339, 0.0057128905318677425, 0.005932617001235485, -0.001538085867650807, 0.002197265625, 0.00527343712747097, 0.0008789062267169356, 0.0008789062267169356, 0.001977538922801614, 0.0028564452659338713, 0.0002197265566792339, -0.0013183592818677425, 0.0024169920943677425, 0.0028564452659338713, -0.0006591796409338713, 0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, 0.0068115233443677425, -0.001977538922801614, 0.003076171735301614, 0.00637206993997097, 0.003955077845603228, -0.0002197265566792339, 0.0002197265566792339, 0.003735351376235485, 0.0006591796409338713, 0.001538085867650807, 0.0004394531133584678, 0.0032958984375, 0.0010986328125, 0.002636718563735485, 0.0013183592818677425, 0.003076171735301614, 0.0, 0.0046142577193677425, -0.0002197265566792339, -0.0004394531133584678, 0.0054931640625, 0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, 0.003076171735301614, -0.0006591796409338713, 0.0057128905318677425, 0.007031249813735485, 0.0054931640625, 0.001538085867650807, 0.0046142577193677425, 0.00527343712747097, 0.0054931640625, 0.003955077845603228, 0.00637206993997097, 0.005053710658103228, 0.00527343712747097, 0.00856933556497097, 0.007031249813735485, 0.00637206993997097, 0.01164550706744194, 0.004833984188735485, 0.009008788503706455, 0.006591796875, 0.0076904296875, 0.009008788503706455, 0.00747070275247097, 0.01845703087747097, 0.011425781063735485, 0.01582031138241291, 0.015380859375, 0.009008788503706455, 0.01889648474752903, 0.015600585378706455, 0.010107421316206455, 0.01801757700741291, 0.01516113243997097, 0.01582031138241291, 0.0164794921875, 0.01186523400247097, 0.0098876953125, 0.008129882626235485, 0.0142822265625, 0.01735839806497097, 0.0098876953125, 0.01186523400247097, 0.00637206993997097, 0.01076660118997097, 0.01164550706744194, 0.007910155691206455, 0.0087890625, 0.0032958984375, 0.005932617001235485, 0.003076171735301614, 0.004833984188735485, 0.0046142577193677425, -0.001538085867650807, 0.002636718563735485, -0.0054931640625, -0.007910155691206455, -0.00527343712747097, -0.007910155691206455, -0.006152343470603228, -0.006152343470603228, -0.014721679501235485, -0.01691894419491291, -0.013403319753706455, -0.01845703087747097, -0.01494140550494194, -0.019775390625, -0.01735839806497097, -0.01955566368997097, -0.02197265625, -0.02702636644244194, -0.02548827975988388, -0.024169921875, -0.03054199181497097, -0.02504882775247097, -0.02922363206744194, -0.02482910081744194, -0.02438964694738388, -0.02768554538488388, -0.0230712890625, -0.0318603515625, -0.02504882775247097, -0.02504882775247097, -0.02131347544491291, -0.02043456956744194, -0.01933593675494194, -0.02263183519244194, -0.02329101413488388, -0.017578125, -0.015380859375, -0.0120849609375, -0.010107421316206455, -0.01318359375, -0.00637206993997097, -0.012524413876235485, -0.005053710658103228, -0.0013183592818677425, 0.001538085867650807, 0.001977538922801614, 0.006591796875, 0.007031249813735485, 0.010986328125, 0.0068115233443677425, 0.012304686941206455, 0.01691894419491291, 0.0208740234375, 0.01889648474752903, 0.01911620981991291, 0.019775390625, 0.0208740234375, 0.02724609337747097, 0.03361816331744194, 0.037353515625, 0.03317870944738388, 0.03823241963982582, 0.03208007663488388, 0.03361816331744194, 0.0340576171875, 0.0384521484375, 0.04592284932732582, 0.0450439453125, 0.04196777194738388, 0.04240722581744194, 0.04790038987994194, 0.04548339545726776, 0.04086913913488388, 0.04921874776482582, 0.04152831807732582, 0.046142578125, 0.0439453125, 0.04262695088982582, 0.04262695088982582, 0.04108886793255806, 0.0318603515625, 0.04042968526482582, 0.03537597507238388, 0.03251953050494194, 0.03120117075741291, 0.02922363206744194, 0.02219238132238388, 0.02680663950741291, 0.01955566368997097, 0.01494140550494194, 0.01186523400247097, 0.005053710658103228, 0.007910155691206455, 0.009008788503706455, 0.0013183592818677425, -0.0006591796409338713, -0.006152343470603228, -0.0024169920943677425, -0.0120849609375, -0.0142822265625, -0.01274413987994194, -0.019775390625, -0.02131347544491291, -0.02175292931497097, -0.02460937388241291, -0.02504882775247097, -0.03471679612994194, -0.03603515401482582, -0.03471679612994194, -0.03383788838982582, -0.03691406175494194, -0.03933105245232582, -0.04658202826976776, -0.04108886793255806, -0.05207519233226776, -0.04899902269244194, -0.04372558370232582, -0.04526367038488388, -0.04636230319738388, -0.0450439453125, -0.04460449144244194, -0.05075683444738388, -0.05185546725988388, -0.04855956882238388, -0.04262695088982582, -0.04526367038488388, -0.04196777194738388, -0.04482421651482582, -0.04240722581744194, -0.03823241963982582, -0.0362548828125, -0.02812499925494194, -0.02592773362994194, -0.03164062276482582, -0.02460937388241291, -0.02197265625, -0.02131347544491291, -0.01911620981991291, -0.0120849609375, -0.0120849609375, -0.0068115233443677425, -0.0004394531133584678, -0.0013183592818677425, 0.00527343712747097, 0.00527343712747097, 0.01604003831744194, 0.0098876953125, 0.01999511756002903, 0.02241210825741291, 0.0296630859375, 0.03120117075741291, 0.03098144382238388, 0.03603515401482582, 0.03317870944738388, 0.04042968526482582, 0.04702148213982582, 0.04372558370232582, 0.05075683444738388, 0.04833984375, 0.052734375, 0.04812011495232582, 0.05624999850988388, 0.05251464620232582, 0.05800781026482582, 0.0560302734375, 0.0538330078125, 0.06020507588982582, 0.06086425483226776, 0.0604248046875, 0.05712890625, 0.05712890625, 0.05075683444738388, 0.05537109076976776, 0.04833984375, 0.05581054463982582, 0.04965820163488388, 0.041748046875, 0.04702148213982582, 0.04350585862994194, 0.04218749701976776, 0.03537597507238388, 0.03801269456744194, 0.02724609337747097, 0.02285156212747097, 0.02263183519244194, 0.02329101413488388, 0.01713867112994194, 0.0164794921875, 0.006152343470603228, 0.001977538922801614, 0.0004394531133584678, 0.0024169920943677425, -0.0046142577193677425, -0.011425781063735485, -0.007250976283103228, -0.01669921912252903, -0.02175292931497097, -0.02570800669491291, -0.03032226487994194, -0.03032226487994194, -0.032958984375, -0.03273925557732582, -0.04086913913488388, -0.0406494140625, -0.03867187350988388, -0.04482421651482582, -0.04636230319738388, -0.04218749701976776, -0.04416503757238388, -0.04877929389476776, -0.05097655951976776, -0.04965820163488388, -0.04877929389476776, -0.052734375, -0.05185546725988388, -0.05295410007238388, -0.05317382514476776, -0.04812011495232582, -0.05361327901482582, -0.05075683444738388, -0.0428466796875, -0.05097655951976776, -0.0428466796875, -0.04262695088982582, -0.04042968526482582, -0.03471679612994194, -0.04042968526482582, -0.03142089769244194, -0.03317870944738388, -0.02614746056497097, -0.02351074106991291, -0.01845703087747097, -0.01779785193502903, -0.01801757700741291, -0.01054687425494194, -0.0057128905318677425, -0.0006591796409338713, 0.0, 0.0013183592818677425, 0.0046142577193677425, 0.007250976283103228, 0.014501952566206455, 0.012524413876235485, 0.01735839806497097, 0.02680663950741291, 0.02263183519244194, 0.03164062276482582, 0.02790527231991291, 0.03076171875, 0.0318603515625, 0.03537597507238388, 0.04108886793255806, 0.04460449144244194, 0.0362548828125, 0.04328612983226776, 0.04965820163488388, 0.04812011495232582, 0.05119628831744194, 0.04768066108226776, 0.04855956882238388, 0.04680175706744194, 0.04965820163488388, 0.05009765550494194, 0.052734375, 0.04702148213982582, 0.05251464620232582, 0.04438476264476776, 0.04416503757238388, 0.04790038987994194, 0.04306640475988388, 0.04548339545726776, 0.04416503757238388, 0.03999023512005806, 0.03427734225988388, 0.037353515625, 0.03164062276482582, 0.03251953050494194, 0.02680663950741291, 0.02065429650247097, 0.02153320237994194, 0.02219238132238388, 0.01625976525247097, 0.01582031138241291, 0.0120849609375, 0.0035156249068677425, 0.002636718563735485, -0.0010986328125, -0.0054931640625, -0.0057128905318677425, -0.007250976283103228, -0.010107421316206455, -0.011206054128706455, -0.010327148251235485, -0.01494140550494194, -0.02241210825741291, -0.02329101413488388, -0.02768554538488388, -0.02241210825741291, -0.028564453125, -0.02878417819738388, -0.03010253794491291, -0.03273925557732582, -0.0296630859375, -0.03537597507238388, -0.03010253794491291, -0.03164062276482582, -0.03713378682732582, -0.03164062276482582, -0.0362548828125, -0.03208007663488388, -0.03339843824505806, -0.03120117075741291, -0.03449707105755806, -0.02812499925494194, -0.0340576171875, -0.03208007663488388, -0.03120117075741291, -0.02570800669491291, -0.0263671875, -0.02285156212747097, -0.02702636644244194, -0.01999511756002903, -0.02548827975988388, -0.02109374850988388, -0.01933593675494194, -0.0142822265625, -0.01625976525247097, -0.009008788503706455, -0.009228515438735485, -0.00439453125, -0.0087890625, 0.0006591796409338713, 0.0013183592818677425, 0.0008789062267169356, 0.0035156249068677425, 0.0054931640625, 0.0054931640625, 0.01186523400247097, 0.009008788503706455, 0.006591796875, 0.012524413876235485, 0.010327148251235485, 0.010986328125, 0.01955566368997097, 0.01823730394244194, 0.014501952566206455, 0.01604003831744194, 0.0230712890625, 0.02592773362994194, 0.02285156212747097, 0.02373046800494194, 0.02329101413488388, 0.02131347544491291, 0.02988281100988388, 0.02351074106991291, 0.02395019493997097, 0.02153320237994194, 0.02592773362994194, 0.02263183519244194, 0.0208740234375, 0.02175292931497097, 0.0252685546875, 0.024169921875, 0.02197265625, 0.015380859375, 0.019775390625, 0.01494140550494194, 0.01955566368997097, 0.01604003831744194, 0.010986328125, 0.01164550706744194, 0.01713867112994194, 0.0142822265625, 0.01274413987994194, 0.012304686941206455, 0.00527343712747097, 0.009008788503706455, 0.003735351376235485, 0.006152343470603228, 0.0017578124534338713, 0.0017578124534338713, 0.002197265625, -0.003076171735301614, 0.0, 0.0013183592818677425, 0.003735351376235485, 0.0002197265566792339, -0.006152343470603228, 0.0006591796409338713, -0.003735351376235485, 0.0013183592818677425, 0.0010986328125, -0.00856933556497097, -0.010107421316206455, -0.00439453125, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0098876953125, -0.006591796875, -0.003076171735301614, -0.001977538922801614, -0.0046142577193677425, -0.0017578124534338713, -0.0054931640625, 0.0010986328125, -0.00527343712747097, -0.001538085867650807, -0.00527343712747097, -0.0046142577193677425, 0.0010986328125, 0.003955077845603228, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0002197265566792339, 0.0008789062267169356, -0.0004394531133584678, 0.0024169920943677425, 0.0028564452659338713, 0.0041748047806322575, -0.0017578124534338713, 0.0, 0.003076171735301614, 0.006152343470603228, 0.005932617001235485, -0.0017578124534338713, -0.0013183592818677425, 0.0008789062267169356, -0.0017578124534338713, 0.0013183592818677425, 0.0076904296875, 0.0, -0.002636718563735485, -0.0004394531133584678, 0.007250976283103228, -0.0010986328125, 0.002197265625, 0.003735351376235485, -0.0008789062267169356, 0.0017578124534338713, 0.0028564452659338713, -0.0017578124534338713, 0.006152343470603228, -0.0002197265566792339, 0.002197265625, 0.0028564452659338713, -0.0024169920943677425, -0.002197265625, 0.0013183592818677425, -0.0002197265566792339, 0.007031249813735485, -0.0008789062267169356, 0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, 0.0008789062267169356, -0.0035156249068677425, 0.0013183592818677425, -0.003076171735301614, 0.0002197265566792339, 0.0054931640625, -0.002197265625, 0.0054931640625, 0.001538085867650807, 0.0035156249068677425, 0.0035156249068677425, 0.002197265625, 0.0028564452659338713, 0.0017578124534338713, 0.005053710658103228, 0.0041748047806322575, -0.0032958984375, 0.005053710658103228, 0.005053710658103228, 0.0035156249068677425, 0.0057128905318677425, 0.0024169920943677425, -0.0028564452659338713, 0.0028564452659338713, 0.0013183592818677425, 0.0004394531133584678, 0.0035156249068677425, -0.0010986328125, 0.0006591796409338713, -0.002197265625, -0.0046142577193677425, 0.003955077845603228, 0.0046142577193677425, -0.003735351376235485, 0.0017578124534338713, 0.0057128905318677425, 0.00527343712747097, 0.00439453125, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, 0.005053710658103228, 0.00527343712747097, 0.003076171735301614, 0.0024169920943677425, -0.0024169920943677425, 0.0035156249068677425, -0.0035156249068677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, 0.0010986328125, 0.0041748047806322575, -0.0002197265566792339, -0.0004394531133584678, 0.0028564452659338713, 0.004833984188735485, 0.0076904296875, 0.0032958984375, 0.0120849609375, 0.007031249813735485, 0.006152343470603228, 0.01384277269244194, 0.01054687425494194, 0.012524413876235485, 0.01604003831744194, 0.02109374850988388, 0.0142822265625, 0.01604003831744194, 0.01713867112994194, 0.02329101413488388, 0.02373046800494194, 0.02395019493997097, 0.02197265625, 0.02460937388241291, 0.0296630859375, 0.02460937388241291, 0.02790527231991291, 0.02900390513241291, 0.02768554538488388, 0.02504882775247097, 0.02548827975988388, 0.02614746056497097, 0.02834472618997097, 0.02460937388241291, 0.02263183519244194, 0.02658691257238388, 0.0208740234375, 0.02285156212747097, 0.02197265625, 0.02658691257238388, 0.02263183519244194, 0.02175292931497097, 0.01494140550494194, 0.01955566368997097, 0.01076660118997097, 0.0057128905318677425, 0.003735351376235485, 0.00637206993997097, 0.003735351376235485, 0.0002197265566792339, -0.00637206993997097, -0.00747070275247097, -0.0087890625, -0.0120849609375, -0.012524413876235485, -0.02021484263241291, -0.01911620981991291, -0.02153320237994194, -0.02329101413488388, -0.02922363206744194, -0.03449707105755806, -0.03581542894244194, -0.03229980543255806, -0.03867187350988388, -0.04262695088982582, -0.04438476264476776, -0.04196777194738388, -0.0494384765625, -0.05405273288488388, -0.05207519233226776, -0.05515136569738388, -0.05910644307732582, -0.05185546725988388, -0.05690917745232582, -0.05734863132238388, -0.054931640625, -0.05449218675494194, -0.05449218675494194, -0.05756835639476776, -0.05449218675494194, -0.05031738057732582, -0.04702148213982582, -0.05229492112994194, -0.04833984375, -0.04570312425494194, -0.03867187350988388, -0.0362548828125, -0.037353515625, -0.03559570387005806, -0.028564453125, -0.02065429650247097, -0.02504882775247097, -0.01406249962747097, -0.01296386681497097, -0.004833984188735485, -0.0002197265566792339, -0.001538085867650807, 0.0068115233443677425, 0.01516113243997097, 0.012524413876235485, 0.01801757700741291, 0.0186767578125, 0.03142089769244194, 0.03757324069738388, 0.03603515401482582, 0.04240722581744194, 0.0439453125, 0.054931640625, 0.05756835639476776, 0.05581054463982582, 0.06306152045726776, 0.06723632663488388, 0.06943359225988388, 0.06767577677965164, 0.07976073771715164, 0.07536620646715164, 0.07888183742761612, 0.08371581882238388, 0.08371581882238388, 0.0791015625, 0.081298828125, 0.08173827826976776, 0.08920898288488388, 0.08723144233226776, 0.08393554389476776, 0.0791015625, 0.081298828125, 0.08393554389476776, 0.07185058295726776, 0.07185058295726776, 0.06767577677965164, 0.06437987834215164, 0.06745605170726776, 0.05800781026482582, 0.05998535081744194, 0.0538330078125, 0.05229492112994194, 0.04460449144244194, 0.03801269456744194, 0.03251953050494194, 0.02702636644244194, 0.0186767578125, 0.01296386681497097, 0.0054931640625, -0.0006591796409338713, -0.00439453125, -0.01076660118997097, -0.0120849609375, -0.02592773362994194, -0.02790527231991291, -0.03779296949505806, -0.04152831807732582, -0.0439453125, -0.05515136569738388, -0.05559081956744194, -0.06108398362994194, -0.06306152045726776, -0.07185058295726776, -0.07119140774011612, -0.07492675632238388, -0.08371581882238388, -0.08437499403953552, -0.08723144233226776, -0.08986815810203552, -0.09030761569738388, -0.09580077975988388, -0.09514159709215164, -0.09843749552965164, -0.094482421875, -0.0999755859375, -0.09602050483226776, -0.09755858778953552, -0.09975585341453552, -0.09382323920726776, -0.09074706584215164, -0.09030761569738388, -0.08525390177965164, -0.0802001953125, -0.08415526896715164, -0.07602538913488388, -0.0714111328125, -0.06767577677965164, -0.0615234375, -0.05537109076976776, -0.0494384765625, -0.04790038987994194, -0.03933105245232582, -0.028564453125, -0.02438964694738388, -0.01669921912252903, -0.01384277269244194, -0.0013183592818677425, 0.0046142577193677425, 0.007031249813735485, 0.013403319753706455, 0.02153320237994194, 0.03273925557732582, 0.037353515625, 0.03955078125, 0.05097655951976776, 0.05712890625, 0.06130370870232582, 0.06591796875, 0.06943359225988388, 0.07382812350988388, 0.08327636867761612, 0.08876952528953552, 0.08745116740465164, 0.09711913764476776, 0.09711913764476776, 0.10502929240465164, 0.10524901747703552, 0.10458984225988388, 0.10964354872703552, 0.10986328125, 0.11162108927965164, 0.1109619140625, 0.10634765028953552, 0.11271972209215164, 0.11162108927965164, 0.10898437350988388, 0.10700683295726776, 0.10678710788488388, 0.10261230170726776, 0.09711913764476776, 0.09755858778953552, 0.0933837890625, 0.08173827826976776, 0.07822265475988388, 0.076904296875, 0.07316894084215164, 0.06459961086511612, 0.05515136569738388, 0.04812011495232582, 0.04482421651482582, 0.04130859300494194, 0.028564453125, 0.02285156212747097, 0.01604003831744194, 0.00747070275247097, -0.0006591796409338713, -0.008349609561264515, -0.00966796837747097, -0.013403319753706455, -0.02614746056497097, -0.03559570387005806, -0.03801269456744194, -0.04636230319738388, -0.05317382514476776, -0.06196288764476776, -0.06416015326976776, -0.06965331733226776, -0.07207030802965164, -0.07822265475988388, -0.08503417670726776, -0.09316405653953552, -0.09272460639476776, -0.09953612834215164, -0.10107421875, -0.098876953125, -0.09755858778953552, -0.10744628310203552, -0.10041503608226776, -0.10393065959215164, -0.10415038466453552, -0.10810546576976776, -0.1087646484375, -0.10678710788488388, -0.10019531100988388, -0.09404296427965164, -0.10173339396715164, -0.09184569865465164, -0.09030761569738388, -0.07976073771715164, -0.08041992038488388, -0.081298828125, -0.07338867336511612, -0.06723632663488388, -0.06547851115465164, -0.05427245795726776, -0.04987792670726776, -0.04855956882238388, -0.03889160230755806, -0.03032226487994194, -0.02548827975988388, -0.01582031138241291, -0.011206054128706455, -0.0068115233443677425, -0.0008789062267169356, 0.012304686941206455, 0.010986328125, 0.02153320237994194, 0.0263671875, 0.03229980543255806, 0.04042968526482582, 0.04328612983226776, 0.05646972358226776, 0.05251464620232582, 0.05668945237994194, 0.063720703125, 0.07185058295726776, 0.07294921576976776, 0.07866210490465164, 0.08283691108226776, 0.08415526896715164, 0.09294433146715164, 0.09162597358226776, 0.09580077975988388, 0.09382323920726776, 0.09909667819738388, 0.10019531100988388, 0.09382323920726776, 0.09689941257238388, 0.09689941257238388, 0.09602050483226776, 0.09074706584215164, 0.08986815810203552, 0.08723144233226776, 0.0911865234375, 0.085693359375, 0.076904296875, 0.07426757365465164, 0.07294921576976776, 0.07075195014476776, 0.06547851115465164, 0.05734863132238388, 0.05097655951976776, 0.05119628831744194, 0.04372558370232582, 0.04328612983226776, 0.032958984375, 0.02614746056497097, 0.02834472618997097, 0.024169921875, 0.01296386681497097, 0.009228515438735485, 0.005932617001235485, -0.007031249813735485, -0.011425781063735485, -0.0164794921875, -0.015600585378706455, -0.02021484263241291, -0.03010253794491291, -0.03603515401482582, -0.04130859300494194, -0.04636230319738388, -0.050537109375, -0.05515136569738388, -0.052734375, -0.0560302734375, -0.06284179538488388, -0.06086425483226776, -0.0626220703125, -0.06679687649011612, -0.06855468451976776, -0.07448730617761612, -0.06855468451976776, -0.07514648139476776, -0.07382812350988388, -0.07426757365465164, -0.07382812350988388, -0.07097167521715164, -0.06877440959215164, -0.06767577677965164, -0.0626220703125, -0.06679687649011612, -0.05800781026482582, -0.06328124552965164, -0.05405273288488388, -0.05119628831744194, -0.04965820163488388, -0.04746093600988388, -0.04086913913488388, -0.04218749701976776, -0.03691406175494194, -0.03669433668255806, -0.03449707105755806, -0.02614746056497097, -0.02043456956744194, -0.01999511756002903, -0.01691894419491291, -0.015600585378706455, -0.008129882626235485, -0.0068115233443677425, 0.004833984188735485, 0.011206054128706455, 0.0046142577193677425, 0.0186767578125, 0.01625976525247097, 0.02395019493997097, 0.01955566368997097, 0.02285156212747097, 0.02702636644244194, 0.03471679612994194, 0.03757324069738388, 0.0384521484375, 0.03713378682732582, 0.03647460788488388, 0.04130859300494194, 0.03955078125, 0.04086913913488388, 0.04921874776482582, 0.04548339545726776, 0.0450439453125, 0.04416503757238388, 0.04987792670726776, 0.04812011495232582, 0.0494384765625, 0.04833984375, 0.04570312425494194, 0.04152831807732582, 0.04020996019244194, 0.04460449144244194, 0.04460449144244194, 0.0362548828125, 0.03449707105755806, 0.03537597507238388, 0.03208007663488388, 0.02614746056497097, 0.02570800669491291, 0.02241210825741291, 0.02109374850988388, 0.017578125, 0.014501952566206455, 0.0208740234375, 0.017578125, 0.01823730394244194, 0.014501952566206455, 0.01164550706744194, 0.008349609561264515, 0.0076904296875, 0.006152343470603228, 0.005053710658103228, 0.002197265625, -0.0046142577193677425, -0.0054931640625, -0.010107421316206455, -0.002636718563735485, -0.008129882626235485, -0.0054931640625, -0.0120849609375, -0.00966796837747097, -0.006591796875, -0.01186523400247097, -0.0098876953125, -0.0120849609375, -0.008349609561264515, -0.015600585378706455, -0.013623046688735485, -0.01296386681497097, -0.012304686941206455, -0.015600585378706455, -0.009228515438735485, -0.009008788503706455, -0.00527343712747097, -0.009228515438735485, -0.00747070275247097, -0.006152343470603228, -0.011206054128706455, -0.01164550706744194, -0.0004394531133584678, -0.0041748047806322575, -0.006152343470603228, 0.001538085867650807, -0.006591796875, -0.0008789062267169356, -0.0057128905318677425, -0.0046142577193677425, -0.001538085867650807, -0.0024169920943677425, 0.0035156249068677425, 0.006152343470603228, 0.004833984188735485, 0.00439453125, 0.003735351376235485, 0.00637206993997097, 0.0054931640625, -0.0008789062267169356, 0.0002197265566792339, 0.0028564452659338713, -0.0004394531133584678, 0.003076171735301614, 0.004833984188735485, 0.002636718563735485, 0.0017578124534338713, 0.0046142577193677425, 0.001538085867650807, 0.0, 0.0010986328125, -0.0006591796409338713, -0.0032958984375, 0.005932617001235485, 0.0010986328125, 0.00637206993997097, -0.0010986328125, -0.001977538922801614, 0.00637206993997097, -0.0013183592818677425, 0.001538085867650807, 0.0041748047806322575, 0.00439453125, -0.0024169920943677425, -0.003076171735301614, 0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0002197265566792339, 0.0008789062267169356, 0.004833984188735485, -0.0002197265566792339, 0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, 0.0041748047806322575, -0.001538085867650807, 0.00637206993997097, -0.0006591796409338713, 0.0046142577193677425, -0.0008789062267169356, 0.0013183592818677425, 0.0035156249068677425, 0.005932617001235485, 0.00439453125, -0.001538085867650807, 0.0057128905318677425, -0.0008789062267169356, 0.006591796875, 0.0035156249068677425, 0.003735351376235485, -0.0010986328125, 0.005932617001235485, 0.0046142577193677425, 0.0054931640625, 0.00527343712747097, 0.0, 0.001538085867650807, 0.0041748047806322575, -0.001977538922801614, 0.0041748047806322575, 0.005932617001235485, 0.00527343712747097, 0.004833984188735485, 0.006152343470603228, 0.007031249813735485, 0.0010986328125, 0.001977538922801614, 0.0002197265566792339, 0.001977538922801614, 0.005932617001235485, 0.004833984188735485, 0.005053710658103228, 0.005053710658103228, 0.003735351376235485, 0.005932617001235485, -0.0008789062267169356, 0.0028564452659338713, -0.0010986328125, 0.001538085867650807, -0.001977538922801614, -0.0002197265566792339, 0.001538085867650807, 0.0041748047806322575, 0.00439453125, 0.0006591796409338713, 0.0057128905318677425, 0.001977538922801614, 0.00856933556497097, 0.00966796837747097, 0.01076660118997097, 0.010107421316206455, 0.00747070275247097, 0.01669921912252903, 0.01625976525247097, 0.0208740234375, 0.01296386681497097, 0.01516113243997097, 0.02021484263241291, 0.0252685546875, 0.02680663950741291, 0.03098144382238388, 0.0318603515625, 0.0274658203125, 0.0296630859375, 0.03120117075741291, 0.0340576171875, 0.0384521484375, 0.0340576171875, 0.03537597507238388, 0.03603515401482582, 0.04306640475988388, 0.04042968526482582, 0.04328612983226776, 0.04196777194738388, 0.04130859300494194, 0.0450439453125, 0.0406494140625, 0.0362548828125, 0.03999023512005806, 0.03911132737994194, 0.03603515401482582, 0.03317870944738388, 0.03208007663488388, 0.0252685546875, 0.02768554538488388, 0.017578125, 0.01604003831744194, 0.02241210825741291, 0.0164794921875, 0.01054687425494194, 0.009228515438735485, 0.0046142577193677425, -0.0032958984375, -0.009228515438735485, -0.011206054128706455, -0.01691894419491291, -0.0186767578125, -0.02021484263241291, -0.03164062276482582, -0.03098144382238388, -0.0318603515625, -0.04306640475988388, -0.04416503757238388, -0.04372558370232582, -0.05141601338982582, -0.05405273288488388, -0.06020507588982582, -0.05954589694738388, -0.07163085788488388, -0.06899414211511612, -0.07185058295726776, -0.0714111328125, -0.07558593899011612, -0.07646483927965164, -0.0780029296875, -0.08327636867761612, -0.08085937052965164, -0.08327636867761612, -0.08701171725988388, -0.07756347209215164, -0.0791015625, -0.07954101264476776, -0.08107910305261612, -0.07866210490465164, -0.0736083984375, -0.0692138671875, -0.0703125, -0.06833495944738388, -0.06020507588982582, -0.0615234375, -0.05888671800494194, -0.04482421651482582, -0.04306640475988388, -0.03999023512005806, -0.02768554538488388, -0.02065429650247097, -0.02263183519244194, -0.017578125, -0.009228515438735485, 0.0041748047806322575, 0.0057128905318677425, 0.01076660118997097, 0.02241210825741291, 0.02680663950741291, 0.03669433668255806, 0.04350585862994194, 0.04636230319738388, 0.05141601338982582, 0.06108398362994194, 0.06437987834215164, 0.07866210490465164, 0.07888183742761612, 0.08393554389476776, 0.09843749552965164, 0.0933837890625, 0.10590820014476776, 0.11118163913488388, 0.11821288615465164, 0.1142578125, 0.11601562052965164, 0.12458495795726776, 0.12370605021715164, 0.12370605021715164, 0.1329345703125, 0.12832030653953552, 0.12041015177965164, 0.1307373046875, 0.12766112387180328, 0.12612304091453552, 0.12260741740465164, 0.11821288615465164, 0.11271972209215164, 0.1153564453125, 0.10283202677965164, 0.09755858778953552, 0.08942870795726776, 0.08767089247703552, 0.08635253459215164, 0.07734374701976776, 0.07316894084215164, 0.06240234151482582, 0.05624999850988388, 0.04548339545726776, 0.03647460788488388, 0.032958984375, 0.02504882775247097, 0.012524413876235485, 0.0035156249068677425, -0.005053710658103228, -0.014501952566206455, -0.02614746056497097, -0.03669433668255806, -0.03933105245232582, -0.05229492112994194, -0.05251464620232582, -0.06240234151482582, -0.07492675632238388, -0.08613280951976776, -0.0867919921875, -0.09580077975988388, -0.10107421875, -0.10920409858226776, -0.12041015177965164, -0.13117675483226776, -0.12919922173023224, -0.13623046875, -0.13425292074680328, -0.13974608480930328, -0.14545898139476776, -0.147216796875, -0.14370116591453552, -0.15622557699680328, -0.14875487983226776, -0.14523924887180328, -0.14897461235523224, -0.1439208984375, -0.13798828423023224, -0.13337402045726776, -0.13776855170726776, -0.13139648735523224, -0.12392577528953552, -0.12282714247703552, -0.11667480319738388, -0.10349120944738388, -0.10173339396715164, -0.09228515625, -0.0867919921875, -0.07844237983226776, -0.06855468451976776, -0.06196288764476776, -0.04460449144244194, -0.03713378682732582, -0.02592773362994194, -0.01604003831744194, -0.0057128905318677425, 0.0046142577193677425, 0.0087890625, 0.01845703087747097, 0.03669433668255806, 0.04240722581744194, 0.0494384765625, 0.06723632663488388, 0.06965331733226776, 0.0758056640625, 0.08854980021715164, 0.10085448622703552, 0.10393065959215164, 0.11403807997703552, 0.12172850966453552, 0.12348632514476776, 0.1307373046875, 0.13864745199680328, 0.14545898139476776, 0.151611328125, 0.15644530951976776, 0.15666504204273224, 0.16215820610523224, 0.1636962890625, 0.16743163764476776, 0.16259765625, 0.16743163764476776, 0.16413573920726776, 0.16083984076976776, 0.16655273735523224, 0.1614990234375, 0.15688475966453552, 0.14809569716453552, 0.14479979872703552, 0.1351318359375, 0.12919922173023224, 0.12678222358226776, 0.11623534560203552, 0.1142578125, 0.10239257663488388, 0.0966796875, 0.08261718600988388, 0.07514648139476776, 0.07053222507238388, 0.06064452975988388, 0.04350585862994194, 0.03317870944738388, 0.02790527231991291, 0.008129882626235485, 0.0035156249068677425, -0.003955077845603228, -0.0142822265625, -0.024169921875, -0.04196777194738388, -0.046142578125, -0.05712890625, -0.06328124552965164, -0.076904296875, -0.08393554389476776, -0.094482421875, -0.10700683295726776, -0.10942382365465164, -0.11381835490465164, -0.12722167372703552, -0.13029785454273224, -0.1395263671875, -0.14304198324680328, -0.14523924887180328, -0.15622557699680328, -0.15007324516773224, -0.15512694418430328, -0.15534667670726776, -0.160400390625, -0.15754394233226776, -0.15996094048023224, -0.15974120795726776, -0.15446777641773224, -0.15358886122703552, -0.1439208984375, -0.14106445014476776, -0.14128418266773224, -0.13710936903953552, -0.13139648735523224, -0.12216796725988388, -0.11403807997703552, -0.10722655802965164, -0.0966796875, -0.090087890625, -0.08041992038488388, -0.07316894084215164, -0.06613769382238388, -0.059326171875, -0.046142578125, -0.03691406175494194, -0.02197265625, -0.01582031138241291, -0.013623046688735485, 0.0024169920943677425, 0.0076904296875, 0.02241210825741291, 0.03427734225988388, 0.03515625, 0.04877929389476776, 0.05712890625, 0.07009277492761612, 0.0823974609375, 0.08063964545726776, 0.08811035007238388, 0.10063476115465164, 0.10261230170726776, 0.11008300632238388, 0.11799316108226776, 0.11909179389476776, 0.13205565512180328, 0.13601073622703552, 0.13381347060203552, 0.13996581733226776, 0.13645018637180328, 0.14018554985523224, 0.13864745199680328, 0.14194335043430328, 0.14589843153953552, 0.14018554985523224, 0.14216308295726776, 0.138427734375, 0.14084471762180328, 0.13579101860523224, 0.129638671875, 0.12326660007238388, 0.11667480319738388, 0.11118163913488388, 0.10898437350988388, 0.10261230170726776, 0.09250488132238388, 0.09162597358226776, 0.081298828125, 0.08063964545726776, 0.07229004055261612, 0.05559081956744194, 0.050537109375, 0.04416503757238388, 0.03537597507238388, 0.02790527231991291, 0.01735839806497097, 0.008129882626235485, 0.0054931640625, -0.006591796875, -0.01582031138241291, -0.0230712890625, -0.03317870944738388, -0.04152831807732582, -0.04526367038488388, -0.05295410007238388, -0.0604248046875, -0.059326171875, -0.06679687649011612, -0.07185058295726776, -0.081298828125, -0.08173827826976776, -0.09272460639476776, -0.09953612834215164, -0.10085448622703552, -0.09733886271715164, -0.10085448622703552, -0.103271484375, -0.10151366889476776, -0.11052245646715164, -0.10195311903953552, -0.107666015625, -0.10393065959215164, -0.10239257663488388, -0.10261230170726776, -0.10393065959215164, -0.09909667819738388, -0.1021728515625, -0.09536132216453552, -0.09536132216453552, -0.090087890625, -0.08305663615465164, -0.0802001953125, -0.07053222507238388, -0.06328124552965164, -0.05954589694738388, -0.05734863132238388, -0.04965820163488388, -0.046142578125, -0.03933105245232582, -0.03933105245232582, -0.0252685546875, -0.0164794921875, -0.01582031138241291, -0.010986328125, -0.0010986328125, 0.001538085867650807, 0.009008788503706455, 0.0087890625, 0.01889648474752903, 0.01823730394244194, 0.03251953050494194, 0.03581542894244194, 0.0384521484375, 0.04306640475988388, 0.04833984375, 0.05251464620232582, 0.05207519233226776, 0.05251464620232582, 0.06196288764476776, 0.05998535081744194, 0.06877440959215164, 0.06723632663488388, 0.07338867336511612, 0.07097167521715164, 0.07294921576976776, 0.06877440959215164, 0.07163085788488388, 0.06855468451976776, 0.07294921576976776, 0.06657714396715164, 0.0692138671875, 0.06613769382238388, 0.06284179538488388, 0.06394042819738388, 0.06503906100988388, 0.05317382514476776, 0.05207519233226776, 0.05295410007238388, 0.05185546725988388, 0.04240722581744194, 0.03999023512005806, 0.03603515401482582, 0.0340576171875, 0.02878417819738388, 0.02438964694738388, 0.02263183519244194, 0.02109374850988388, 0.0230712890625, 0.02021484263241291, 0.011206054128706455, 0.01318359375, 0.01076660118997097, 0.005053710658103228, 0.0068115233443677425, -0.0041748047806322575, -0.0068115233443677425, -0.010986328125, -0.005053710658103228, -0.00527343712747097, -0.01186523400247097, -0.017578125, -0.01999511756002903, -0.01801757700741291, -0.01384277269244194, -0.02109374850988388, -0.01779785193502903, -0.019775390625, -0.02043456956744194, -0.01406249962747097, -0.02021484263241291, -0.02021484263241291, -0.01625976525247097, -0.01779785193502903, -0.02241210825741291, -0.01823730394244194, -0.01911620981991291, -0.01186523400247097, -0.01516113243997097, -0.007910155691206455, -0.014721679501235485, -0.011425781063735485, -0.009228515438735485, -0.0098876953125, -0.00637206993997097, -0.003735351376235485, -0.00637206993997097, -0.003955077845603228, -0.002636718563735485, -0.003735351376235485, 0.0010986328125, 0.0004394531133584678, 0.0087890625, 0.0002197265566792339, -0.0002197265566792339, 0.0013183592818677425, 0.007031249813735485, 0.001538085867650807, 0.0, 0.006152343470603228, 0.005932617001235485, -0.002197265625, -0.002197265625, -0.003955077845603228, 0.0004394531133584678, 0.002197265625, 0.005053710658103228, 0.003076171735301614, -0.0004394531133584678, 0.0057128905318677425, 0.003955077845603228, -0.0010986328125, 0.003955077845603228, 0.0013183592818677425, 0.0008789062267169356, -0.0013183592818677425, 0.0054931640625, -0.0035156249068677425, 0.0, 0.001538085867650807, -0.0008789062267169356, 0.00637206993997097, 0.0046142577193677425, 0.0046142577193677425, 0.003735351376235485, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.001538085867650807, 0.003955077845603228, 0.0057128905318677425, 0.0032958984375, -0.0004394531133584678, 0.0004394531133584678, 0.003076171735301614, 0.002197265625, 0.0002197265566792339, 0.0004394531133584678, 0.0054931640625, 0.005932617001235485, 0.001538085867650807, -0.0028564452659338713, 0.0046142577193677425, 0.0028564452659338713, 0.005932617001235485, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, 0.006152343470603228, -0.0024169920943677425, 0.0028564452659338713, 0.0068115233443677425, -0.0017578124534338713, 0.0054931640625, -0.0028564452659338713, 0.003735351376235485, -0.0032958984375, -0.0006591796409338713, 0.0010986328125, 0.002197265625, 0.002197265625, -0.0024169920943677425, 0.0054931640625, 0.0010986328125, -0.0002197265566792339, 0.0054931640625, 0.0028564452659338713, 0.003076171735301614, 0.0041748047806322575, -0.0032958984375, 0.0006591796409338713, -0.0004394531133584678, 0.0057128905318677425, 0.005053710658103228, 0.0, 0.0024169920943677425, 0.0046142577193677425, -0.003955077845603228, -0.003076171735301614, -0.0010986328125, 0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, 0.0035156249068677425, 0.0041748047806322575, 0.007031249813735485, 0.003076171735301614, 0.00856933556497097, 0.006591796875, 0.009448242373764515, 0.01296386681497097, 0.01933593675494194, 0.01823730394244194, 0.014501952566206455, 0.01625976525247097, 0.0208740234375, 0.03098144382238388, 0.03142089769244194, 0.03229980543255806, 0.03317870944738388, 0.0340576171875, 0.0318603515625, 0.03669433668255806, 0.04152831807732582, 0.04350585862994194, 0.04855956882238388, 0.04746093600988388, 0.05317382514476776, 0.05734863132238388, 0.05031738057732582, 0.05339355394244194, 0.05471191182732582, 0.05866698920726776, 0.05800781026482582, 0.05646972358226776, 0.05471191182732582, 0.05471191182732582, 0.05668945237994194, 0.050537109375, 0.04548339545726776, 0.04987792670726776, 0.04196777194738388, 0.04482421651482582, 0.03933105245232582, 0.03647460788488388, 0.02768554538488388, 0.0274658203125, 0.02263183519244194, 0.02131347544491291, 0.01713867112994194, 0.004833984188735485, 0.0017578124534338713, -0.003076171735301614, -0.011425781063735485, -0.015380859375, -0.01911620981991291, -0.028564453125, -0.02944335900247097, -0.03801269456744194, -0.04350585862994194, -0.0494384765625, -0.05778808519244194, -0.0538330078125, -0.06591796875, -0.06855468451976776, -0.07272949069738388, -0.07712402194738388, -0.08305663615465164, -0.08920898288488388, -0.09030761569738388, -0.09382323920726776, -0.10173339396715164, -0.10283202677965164, -0.103271484375, -0.11249999701976776, -0.10854491591453552, -0.10744628310203552, -0.11711425334215164, -0.11557617038488388, -0.10832519084215164, -0.1142578125, -0.10810546576976776, -0.10546875, -0.10634765028953552, -0.10085448622703552, -0.0966796875, -0.087890625, -0.08811035007238388, -0.07712402194738388, -0.07998047024011612, -0.06789550930261612, -0.06130370870232582, -0.05800781026482582, -0.052734375, -0.03757324069738388, -0.0384521484375, -0.02395019493997097, -0.019775390625, -0.00747070275247097, 0.0006591796409338713, 0.006591796875, 0.0208740234375, 0.03317870944738388, 0.03471679612994194, 0.04350585862994194, 0.05800781026482582, 0.06284179538488388, 0.07075195014476776, 0.08063964545726776, 0.09184569865465164, 0.10107421875, 0.10942382365465164, 0.11953124403953552, 0.1219482421875, 0.12919922173023224, 0.1351318359375, 0.13754881918430328, 0.14655761420726776, 0.1505126953125, 0.15974120795726776, 0.15644530951976776, 0.16062010824680328, 0.1669921875, 0.1669921875, 0.16193847358226776, 0.16567382216453552, 0.16611327230930328, 0.1614990234375, 0.16787108778953552, 0.15864257514476776, 0.14963378012180328, 0.147216796875, 0.1505126953125, 0.14216308295726776, 0.13623046875, 0.12260741740465164, 0.1131591796875, 0.11293944716453552, 0.09821777045726776, 0.09360351413488388, 0.08371581882238388, 0.07053222507238388, 0.05866698920726776, 0.0450439453125, 0.04042968526482582, 0.03076171875, 0.01845703087747097, 0.002197265625, -0.0054931640625, -0.01955566368997097, -0.03076171875, -0.04438476264476776, -0.05844726413488388, -0.072509765625, -0.07778320461511612, -0.09206542372703552, -0.10239257663488388, -0.11052245646715164, -0.120849609375, -0.12941893935203552, -0.14084471762180328, -0.15336914360523224, -0.15842284262180328, -0.16281737387180328, -0.17446288466453552, -0.18149413168430328, -0.18413084745407104, -0.1900634765625, -0.19291990995407104, -0.195556640625, -0.20148925483226776, -0.2032470703125, -0.20236815512180328, -0.20083007216453552, -0.1988525390625, -0.19621580839157104, -0.182373046875, -0.17951659858226776, -0.17336425185203552, -0.17204588651657104, -0.160400390625, -0.1549072265625, -0.14985351264476776, -0.1417236328125, -0.12568359076976776, -0.11513671278953552, -0.10612792521715164, -0.10107421875, -0.0823974609375, -0.07536620646715164, -0.0648193359375, -0.05119628831744194, -0.03713378682732582, -0.0274658203125, -0.006152343470603228, 0.0035156249068677425, 0.01494140550494194, 0.02438964694738388, 0.03757324069738388, 0.0582275390625, 0.06569824367761612, 0.07668457180261612, 0.0977783203125, 0.10744628310203552, 0.12062987685203552, 0.12788085639476776, 0.14128418266773224, 0.15029296278953552, 0.15644530951976776, 0.17270506918430328, 0.18259276449680328, 0.18742674589157104, 0.1900634765625, 0.19819335639476776, 0.20148925483226776, 0.21005858480930328, 0.21225585043430328, 0.21621093153953552, 0.217529296875, 0.21687011420726776, 0.21577148139476776, 0.21774901449680328, 0.20917968451976776, 0.21577148139476776, 0.20742186903953552, 0.20236815512180328, 0.19182127714157104, 0.19072264432907104, 0.18435057997703552, 0.17402343451976776, 0.16677245497703552, 0.1549072265625, 0.13908691704273224, 0.134033203125, 0.12041015177965164, 0.10546875, 0.09733886271715164, 0.08217773586511612, 0.0692138671875, 0.05515136569738388, 0.04240722581744194, 0.02482910081744194, 0.010327148251235485, 0.0057128905318677425, -0.01516113243997097, -0.02438964694738388, -0.04086913913488388, -0.04965820163488388, -0.059326171875, -0.08107910305261612, -0.08745116740465164, -0.10195311903953552, -0.11030273139476776, -0.12260741740465164, -0.1395263671875, -0.14238281548023224, -0.15776367485523224, -0.16765137016773224, -0.17534178495407104, -0.18149413168430328, -0.18918456137180328, -0.19489745795726776, -0.19929198920726776, -0.20126952230930328, -0.2142333984375, -0.20390623807907104, -0.21225585043430328, -0.21379393339157104, -0.2120361328125, -0.20368652045726776, -0.20148925483226776, -0.20302733778953552, -0.19511717557907104, -0.18962401151657104, -0.18720702826976776, -0.18039549887180328, -0.17270506918430328, -0.16435547173023224, -0.14765624701976776, -0.14458008110523224, -0.1241455078125, -0.12370605021715164, -0.10349120944738388, -0.09536132216453552, -0.08217773586511612, -0.06965331733226776, -0.0560302734375, -0.0450439453125, -0.03098144382238388, -0.02219238132238388, -0.0057128905318677425, 0.003735351376235485, 0.017578125, 0.02724609337747097, 0.04680175706744194, 0.05690917745232582, 0.06306152045726776, 0.07646483927965164, 0.0889892578125, 0.10393065959215164, 0.10898437350988388, 0.11601562052965164, 0.13425292074680328, 0.13710936903953552, 0.14501953125, 0.15578612685203552, 0.16523437201976776, 0.16896972060203552, 0.169189453125, 0.17709960043430328, 0.17995604872703552, 0.18852537870407104, 0.18962401151657104, 0.19204100966453552, 0.18874511122703552, 0.18588866293430328, 0.18720702826976776, 0.19050292670726776, 0.18522948026657104, 0.18039549887180328, 0.17666015028953552, 0.16962890326976776, 0.16545410454273224, 0.16237792372703552, 0.15622557699680328, 0.14479979872703552, 0.13359375298023224, 0.12612304091453552, 0.12150878459215164, 0.11008300632238388, 0.0966796875, 0.08964843302965164, 0.08217773586511612, 0.06459961086511612, 0.06284179538488388, 0.04592284932732582, 0.03339843824505806, 0.024169921875, 0.010107421316206455, 0.003955077845603228, -0.007910155691206455, -0.02219238132238388, -0.02614746056497097, -0.041748046875, -0.04855956882238388, -0.0604248046875, -0.06569824367761612, -0.07932128757238388, -0.08151855319738388, -0.08986815810203552, -0.1043701171875, -0.10283202677965164, -0.11162108927965164, -0.12590332329273224, -0.12546385824680328, -0.13139648735523224, -0.13227538764476776, -0.13798828423023224, -0.1351318359375, -0.14436034858226776, -0.14304198324680328, -0.14458008110523224, -0.14106445014476776, -0.14238281548023224, -0.1439208984375, -0.13710936903953552, -0.13557128608226776, -0.1373291015625, -0.13007812201976776, -0.12172850966453552, -0.12546385824680328, -0.11579589545726776, -0.10612792521715164, -0.10590820014476776, -0.09624022990465164, -0.09030761569738388, -0.0791015625, -0.07712402194738388, -0.0714111328125, -0.05954589694738388, -0.05581054463982582, -0.04855956882238388, -0.0362548828125, -0.02482910081744194, -0.02219238132238388, -0.011425781063735485, -0.00527343712747097, -0.0002197265566792339, 0.014501952566206455, 0.01582031138241291, 0.02702636644244194, 0.03120117075741291, 0.03955078125, 0.04042968526482582, 0.05295410007238388, 0.05471191182732582, 0.06525878608226776, 0.06591796875, 0.06635741889476776, 0.07229004055261612, 0.08041992038488388, 0.0780029296875, 0.08745116740465164, 0.09030761569738388, 0.08657225966453552, 0.09382323920726776, 0.08876952528953552, 0.09294433146715164, 0.09733886271715164, 0.0911865234375, 0.09228515625, 0.09426268935203552, 0.08701171725988388, 0.0845947265625, 0.0802001953125, 0.085693359375, 0.07646483927965164, 0.07316894084215164, 0.07404784858226776, 0.072509765625, 0.0670166015625, 0.05778808519244194, 0.05427245795726776, 0.04921874776482582, 0.05119628831744194, 0.04086913913488388, 0.0362548828125, 0.03471679612994194, 0.02878417819738388, 0.02702636644244194, 0.02373046800494194, 0.012304686941206455, 0.01494140550494194, 0.004833984188735485, -0.0002197265566792339, -0.0006591796409338713, -0.002197265625, -0.00747070275247097, -0.0068115233443677425, -0.0076904296875, -0.01713867112994194, -0.01274413987994194, -0.02021484263241291, -0.01691894419491291, -0.02373046800494194, -0.02592773362994194, -0.028564453125, -0.02263183519244194, -0.03054199181497097, -0.02724609337747097, -0.03098144382238388, -0.02548827975988388, -0.02592773362994194, -0.02812499925494194, -0.0230712890625, -0.02438964694738388, -0.02263183519244194, -0.019775390625, -0.01801757700741291, -0.019775390625, -0.0164794921875, -0.02131347544491291, -0.01274413987994194, -0.009448242373764515, -0.013623046688735485, -0.006591796875, -0.00856933556497097, -0.0017578124534338713, 0.0004394531133584678, -0.00527343712747097, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, 0.004833984188735485, -0.0002197265566792339, 0.00747070275247097, 0.0008789062267169356, -0.003955077845603228, 0.0017578124534338713, -0.0013183592818677425, 0.002197265625, 0.005053710658103228, -0.0028564452659338713, -0.0013183592818677425, 0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, 0.0054931640625, 0.0008789062267169356, 0.0008789062267169356, 0.0035156249068677425, 0.002636718563735485, 0.0032958984375, 0.0046142577193677425, 0.0013183592818677425, 0.00527343712747097, 0.0, 0.003955077845603228, 0.0010986328125, -0.0035156249068677425, 0.005053710658103228, 0.001977538922801614, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0032958984375, -0.0004394531133584678, 0.003955077845603228, 0.0006591796409338713, 0.0004394531133584678, 0.002197265625, 0.0, 0.0057128905318677425, 0.0013183592818677425, 0.0, 0.0006591796409338713, 0.0017578124534338713, 0.0017578124534338713, 0.0008789062267169356, 0.0010986328125, -0.0006591796409338713, 0.0032958984375, -0.001977538922801614, 0.0076904296875, 0.0006591796409338713, -0.0006591796409338713, 0.0013183592818677425, 0.0057128905318677425, 0.007250976283103228, 0.0017578124534338713, 0.006152343470603228, 0.0041748047806322575, 0.00637206993997097, -0.0002197265566792339, 0.005053710658103228, 0.0006591796409338713, 0.0041748047806322575, 0.006591796875, 0.005053710658103228, 0.003076171735301614, 0.001977538922801614, 0.0013183592818677425, 0.0006591796409338713, -0.002197265625, 0.00637206993997097, -0.0004394531133584678, 0.005053710658103228, 0.00637206993997097, 0.0028564452659338713, 0.002197265625, 0.001538085867650807, 0.0004394531133584678, 0.003076171735301614, -0.0041748047806322575, -0.0017578124534338713, -0.001538085867650807, -0.00637206993997097, 0.0008789062267169356, 0.0032958984375, 0.0013183592818677425, 0.0008789062267169356, -0.0006591796409338713, 0.0017578124534338713, 0.009008788503706455, 0.0028564452659338713, 0.007031249813735485, 0.011425781063735485, 0.01274413987994194, 0.01384277269244194, 0.0142822265625, 0.01999511756002903, 0.01889648474752903, 0.02812499925494194, 0.02768554538488388, 0.03691406175494194, 0.03713378682732582, 0.0362548828125, 0.04482421651482582, 0.04790038987994194, 0.04306640475988388, 0.05295410007238388, 0.05207519233226776, 0.06064452975988388, 0.05646972358226776, 0.0626220703125, 0.06196288764476776, 0.06350097805261612, 0.06284179538488388, 0.06679687649011612, 0.06437987834215164, 0.0670166015625, 0.063720703125, 0.07163085788488388, 0.06965331733226776, 0.06789550930261612, 0.068115234375, 0.06064452975988388, 0.06328124552965164, 0.05800781026482582, 0.05537109076976776, 0.04987792670726776, 0.0494384765625, 0.04416503757238388, 0.03867187350988388, 0.0340576171875, 0.02592773362994194, 0.0186767578125, 0.015380859375, 0.0054931640625, 0.003735351376235485, -0.002636718563735485, -0.01318359375, -0.014501952566206455, -0.0274658203125, -0.02834472618997097, -0.04130859300494194, -0.04658202826976776, -0.05185546725988388, -0.06130370870232582, -0.06789550930261612, -0.07492675632238388, -0.07954101264476776, -0.087890625, -0.09536132216453552, -0.103271484375, -0.107666015625, -0.10920409858226776, -0.12238769233226776, -0.12546385824680328, -0.129638671875, -0.13139648735523224, -0.13666991889476776, -0.13425292074680328, -0.13798828423023224, -0.14326171576976776, -0.1417236328125, -0.13491210341453552, -0.13491210341453552, -0.14128418266773224, -0.1351318359375, -0.13227538764476776, -0.12700195610523224, -0.12832030653953552, -0.11711425334215164, -0.1175537109375, -0.10832519084215164, -0.10502929240465164, -0.09843749552965164, -0.085693359375, -0.07624511420726776, -0.06877440959215164, -0.05954589694738388, -0.05097655951976776, -0.04526367038488388, -0.03054199181497097, -0.02373046800494194, -0.010107421316206455, -0.003076171735301614, 0.010327148251235485, 0.02219238132238388, 0.03471679612994194, 0.04746093600988388, 0.06284179538488388, 0.07426757365465164, 0.08481445163488388, 0.09030761569738388, 0.09799804538488388, 0.11711425334215164, 0.12172850966453552, 0.13535155355930328, 0.1461181640625, 0.15402831137180328, 0.1593017578125, 0.17072753608226776, 0.17556151747703552, 0.17973631620407104, 0.193359375, 0.193359375, 0.20017088949680328, 0.20039062201976776, 0.2021484375, 0.2032470703125, 0.20588378608226776, 0.21247558295726776, 0.2010498046875, 0.20017088949680328, 0.19577635824680328, 0.20192870497703552, 0.19050292670726776, 0.18105468153953552, 0.18215331435203552, 0.17006835341453552, 0.16655273735523224, 0.15402831137180328, 0.142822265625, 0.13007812201976776, 0.12106933444738388, 0.10810546576976776, 0.10041503608226776, 0.08173827826976776, 0.07294921576976776, 0.06328124552965164, 0.04262695088982582, 0.02790527231991291, 0.01911620981991291, 0.00439453125, -0.01516113243997097, -0.024169921875, -0.04262695088982582, -0.0582275390625, -0.0670166015625, -0.07954101264476776, -0.09909667819738388, -0.10898437350988388, -0.12062987685203552, -0.13645018637180328, -0.14655761420726776, -0.16325683891773224, -0.1724853515625, -0.18149413168430328, -0.19599609076976776, -0.20522460341453552, -0.20786131918430328, -0.221923828125, -0.23203124105930328, -0.23862303793430328, -0.23642577230930328, -0.2362060546875, -0.2518066465854645, -0.24477538466453552, -0.24895018339157104, -0.24411620199680328, -0.23488768935203552, -0.24257811903953552, -0.23554687201976776, -0.22565917670726776, -0.2164306640625, -0.20588378608226776, -0.20522460341453552, -0.19533690810203552, -0.17841796576976776, -0.16523437201976776, -0.16105957329273224, -0.14018554985523224, -0.13337402045726776, -0.11403807997703552, -0.1065673828125, -0.09316405653953552, -0.0703125, -0.05756835639476776, -0.04020996019244194, -0.02153320237994194, -0.008129882626235485, 0.0010986328125, 0.01823730394244194, 0.03933105245232582, 0.05581054463982582, 0.07492675632238388, 0.09030761569738388, 0.10393065959215164, 0.11799316108226776, 0.13469238579273224, 0.14853514730930328, 0.16281737387180328, 0.1724853515625, 0.18369139730930328, 0.19973143935203552, 0.21071776747703552, 0.21621093153953552, 0.226318359375, 0.23642577230930328, 0.243896484375, 0.24960936605930328, 0.26301267743110657, 0.2601562440395355, 0.26411131024360657, 0.2744384706020355, 0.2704834043979645, 0.2647705078125, 0.26762694120407104, 0.26630857586860657, 0.2546630799770355, 0.2493896484375, 0.2507080137729645, 0.23444823920726776, 0.23378905653953552, 0.21599119901657104, 0.2098388671875, 0.20017088949680328, 0.18962401151657104, 0.17314451932907104, 0.15424804389476776, 0.142822265625, 0.12568359076976776, 0.11799316108226776, 0.10458984225988388, 0.08151855319738388, 0.06855468451976776, 0.04833984375, 0.03471679612994194, 0.02219238132238388, -0.0024169920943677425, -0.0120849609375, -0.03032226487994194, -0.04987792670726776, -0.06306152045726776, -0.08327636867761612, -0.0933837890625, -0.10832519084215164, -0.1241455078125, -0.1395263671875, -0.15666504204273224, -0.16743163764476776, -0.17644041776657104, -0.19291990995407104, -0.20676268637180328, -0.21489256620407104, -0.22038573026657104, -0.23356932401657104, -0.23862303793430328, -0.24323730170726776, -0.2559814453125, -0.25883787870407104, -0.2603759765625, -0.26301267743110657, -0.25993651151657104, -0.2594970762729645, -0.257080078125, -0.2557617127895355, -0.2515869140625, -0.23752440512180328, -0.23576658964157104, -0.22829589247703552, -0.21708983182907104, -0.20083007216453552, -0.19401854276657104, -0.186767578125, -0.16984862089157104, -0.1593017578125, -0.14523924887180328, -0.12875975668430328, -0.11162108927965164, -0.10305175185203552, -0.08767089247703552, -0.07075195014476776, -0.052734375, -0.04438476264476776, -0.02351074106991291, -0.00637206993997097, 0.005053710658103228, 0.01933593675494194, 0.03537597507238388, 0.05295410007238388, 0.06350097805261612, 0.07734374701976776, 0.09733886271715164, 0.11359862983226776, 0.11821288615465164, 0.13579101860523224, 0.14985351264476776, 0.16171874105930328, 0.169189453125, 0.17995604872703552, 0.1922607421875, 0.19863280653953552, 0.21269530057907104, 0.21225585043430328, 0.217529296875, 0.22873534262180328, 0.235107421875, 0.23247069120407104, 0.23312987387180328, 0.23928222060203552, 0.23598632216453552, 0.23027342557907104, 0.23005370795726776, 0.230712890625, 0.22060546278953552, 0.2164306640625, 0.2120361328125, 0.19973143935203552, 0.195556640625, 0.18259276449680328, 0.17644041776657104, 0.1724853515625, 0.15227051079273224, 0.142822265625, 0.12875975668430328, 0.1241455078125, 0.10349120944738388, 0.09426268935203552, 0.076904296875, 0.07514648139476776, 0.05756835639476776, 0.03647460788488388, 0.02812499925494194, 0.01779785193502903, 0.005053710658103228, -0.0120849609375, -0.02724609337747097, -0.03581542894244194, -0.052734375, -0.06174316257238388, -0.07075195014476776, -0.07998047024011612, -0.09272460639476776, -0.10634765028953552, -0.11074218153953552, -0.13007812201976776, -0.13666991889476776, -0.14458008110523224, -0.14633788168430328, -0.15424804389476776, -0.16193847358226776, -0.16545410454273224, -0.17512206733226776, -0.17863768339157104, -0.17973631620407104, -0.17292480170726776, -0.18061523139476776, -0.182373046875, -0.18105468153953552, -0.17863768339157104, -0.1746826171875, -0.17072753608226776, -0.17116698622703552, -0.16281737387180328, -0.15073241293430328, -0.15446777641773224, -0.14743651449680328, -0.13798828423023224, -0.12810058891773224, -0.1219482421875, -0.11733397841453552, -0.09645995497703552, -0.09316405653953552, -0.08701171725988388, -0.07536620646715164, -0.06284179538488388, -0.05778808519244194, -0.04570312425494194, -0.03801269456744194, -0.028564453125, -0.012304686941206455, -0.01076660118997097, 0.001538085867650807, 0.01164550706744194, 0.01823730394244194, 0.03142089769244194, 0.03823241963982582, 0.05185546725988388, 0.0604248046875, 0.05866698920726776, 0.06833495944738388, 0.07778320461511612, 0.0802001953125, 0.09294433146715164, 0.0867919921875, 0.098876953125, 0.0999755859375, 0.10612792521715164, 0.10722655802965164, 0.11074218153953552, 0.11601562052965164, 0.11579589545726776, 0.112060546875, 0.11909179389476776, 0.11140136420726776, 0.10920409858226776, 0.10678710788488388, 0.11184081435203552, 0.10349120944738388, 0.10502929240465164, 0.1021728515625, 0.09514159709215164, 0.09755858778953552, 0.09096679091453552, 0.08942870795726776, 0.0780029296875, 0.07624511420726776, 0.072509765625, 0.06943359225988388, 0.06196288764476776, 0.05405273288488388, 0.05075683444738388, 0.04108886793255806, 0.03933105245232582, 0.03251953050494194, 0.02043456956744194, 0.01911620981991291, 0.01933593675494194, 0.009448242373764515, 0.0035156249068677425, 0.003735351376235485, -0.006591796875, -0.0076904296875, -0.0142822265625, -0.01823730394244194, -0.01823730394244194, -0.0252685546875, -0.02460937388241291, -0.03120117075741291, -0.02834472618997097, -0.02878417819738388, -0.03515625, -0.02658691257238388, -0.03229980543255806, -0.02988281100988388, -0.03076171875, -0.03229980543255806, -0.03515625, -0.03054199181497097, -0.03449707105755806, -0.03010253794491291, -0.02614746056497097, -0.02724609337747097, -0.0274658203125, -0.02658691257238388, -0.01735839806497097, -0.02263183519244194, -0.01955566368997097, -0.01384277269244194, -0.017578125, -0.012524413876235485, -0.01274413987994194, -0.0041748047806322575, -0.002636718563735485, 0.0010986328125, 0.0028564452659338713, 0.0028564452659338713, 0.002636718563735485, 0.001538085867650807, 0.0068115233443677425, 0.0046142577193677425, 0.009008788503706455, 0.005053710658103228, 0.001538085867650807, 0.0068115233443677425, 0.0041748047806322575, 0.006591796875, 0.005932617001235485, 0.0004394531133584678, -0.001538085867650807, 0.002197265625, 0.003076171735301614, 0.0004394531133584678, 0.0002197265566792339, 0.0004394531133584678, -0.0004394531133584678, 0.004833984188735485, 0.003955077845603228, 0.0017578124534338713, 0.001977538922801614, 0.0004394531133584678, 0.002636718563735485, -0.0035156249068677425, 0.0035156249068677425, 0.0017578124534338713, 0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, 0.0068115233443677425, 0.0008789062267169356, 0.001977538922801614, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0010986328125, 0.0035156249068677425, 0.0032958984375, -0.0035156249068677425, -0.0017578124534338713, 0.002636718563735485, -0.0006591796409338713, 0.0024169920943677425, 0.003955077845603228, -0.0004394531133584678, 0.0, -0.003076171735301614, -0.001977538922801614, 0.0010986328125, -0.0004394531133584678, 0.0008789062267169356, 0.0028564452659338713, 0.00527343712747097, 0.00439453125, -0.0006591796409338713, 0.001977538922801614, 0.0032958984375, 0.002197265625, -0.0013183592818677425, 0.00439453125, -0.0017578124534338713, -0.0010986328125, 0.0046142577193677425, 0.0013183592818677425, -0.0002197265566792339, 0.001977538922801614, 0.0010986328125, 0.001977538922801614, 0.0017578124534338713, -0.002197265625, 0.003735351376235485, 0.004833984188735485, -0.0008789062267169356, 0.003076171735301614, -0.0010986328125, 0.0004394531133584678, 0.0002197265566792339, -0.002197265625, -0.0002197265566792339, -0.001977538922801614, 0.0024169920943677425, -0.003735351376235485, -0.0004394531133584678, -0.0041748047806322575, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, 0.0002197265566792339, 0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, 0.002197265625, 0.006591796875, 0.001538085867650807, 0.01164550706744194, 0.011425781063735485, 0.00856933556497097, 0.01691894419491291, 0.015600585378706455, 0.02043456956744194, 0.02812499925494194, 0.03054199181497097, 0.02592773362994194, 0.0318603515625, 0.0362548828125, 0.03955078125, 0.04592284932732582, 0.05251464620232582, 0.05097655951976776, 0.05537109076976776, 0.06503906100988388, 0.05976562201976776, 0.06613769382238388, 0.06767577677965164, 0.06855468451976776, 0.07053222507238388, 0.07404784858226776, 0.07536620646715164, 0.08217773586511612, 0.07602538913488388, 0.08195800334215164, 0.07976073771715164, 0.081298828125, 0.07844237983226776, 0.081298828125, 0.07954101264476776, 0.07294921576976776, 0.068115234375, 0.06394042819738388, 0.0626220703125, 0.06569824367761612, 0.0538330078125, 0.05251464620232582, 0.04833984375, 0.04262695088982582, 0.03339843824505806, 0.0208740234375, 0.01582031138241291, 0.013623046688735485, -0.0008789062267169356, -0.006152343470603228, -0.014721679501235485, -0.02285156212747097, -0.0318603515625, -0.03691406175494194, -0.04658202826976776, -0.0516357421875, -0.05954589694738388, -0.07075195014476776, -0.08393554389476776, -0.08591308444738388, -0.09580077975988388, -0.10415038466453552, -0.11469726264476776, -0.12370605021715164, -0.12700195610523224, -0.13161620497703552, -0.14589843153953552, -0.14677734673023224, -0.15380859375, -0.15314941108226776, -0.1636962890625, -0.16391600668430328, -0.16896972060203552, -0.16611327230930328, -0.17402343451976776, -0.17006835341453552, -0.16501463949680328, -0.1593017578125, -0.1636962890625, -0.15622557699680328, -0.15095214545726776, -0.14655761420726776, -0.14194335043430328, -0.13710936903953552, -0.1285400390625, -0.1241455078125, -0.11689452826976776, -0.10041503608226776, -0.0911865234375, -0.08173827826976776, -0.07624511420726776, -0.05778808519244194, -0.05031738057732582, -0.03867187350988388, -0.02109374850988388, -0.013623046688735485, 0.004833984188735485, 0.01955566368997097, 0.02900390513241291, 0.0472412109375, 0.05800781026482582, 0.06525878608226776, 0.08107910305261612, 0.09184569865465164, 0.10415038466453552, 0.1263427734375, 0.12832030653953552, 0.14304198324680328, 0.1593017578125, 0.17072753608226776, 0.17709960043430328, 0.1878662109375, 0.20280760526657104, 0.20917968451976776, 0.21445311605930328, 0.22565917670726776, 0.23334960639476776, 0.2362060546875, 0.24367675185203552, 0.24477538466453552, 0.24741210043430328, 0.24082030355930328, 0.24785155057907104, 0.2427978515625, 0.24082030355930328, 0.23796385526657104, 0.226318359375, 0.22478026151657104, 0.21489256620407104, 0.20698241889476776, 0.20061033964157104, 0.191162109375, 0.18413084745407104, 0.17050780355930328, 0.1549072265625, 0.13710936903953552, 0.1285400390625, 0.10832519084215164, 0.10195311903953552, 0.08591308444738388, 0.07163085788488388, 0.04877929389476776, 0.03823241963982582, 0.02153320237994194, -0.0008789062267169356, -0.01054687425494194, -0.03032226487994194, -0.052734375, -0.06789550930261612, -0.08349609375, -0.0977783203125, -0.11491698771715164, -0.12722167372703552, -0.15073241293430328, -0.15886230766773224, -0.1768798828125, -0.19489745795726776, -0.21071776747703552, -0.21906737983226776, -0.23884277045726776, -0.24104003608226776, -0.25092771649360657, -0.25971677899360657, -0.2722412049770355, -0.2748779356479645, -0.2821289002895355, -0.2898193299770355, -0.28608396649360657, -0.2911376953125, -0.2865234315395355, -0.2931152284145355, -0.287841796875, -0.27751463651657104, -0.27180173993110657, -0.26652830839157104, -0.2583984434604645, -0.2518066465854645, -0.23554687201976776, -0.2197265625, -0.20830076932907104, -0.19973143935203552, -0.18281249701976776, -0.17006835341453552, -0.1483154296875, -0.13908691704273224, -0.11843261122703552, -0.10019531100988388, -0.07976073771715164, -0.06350097805261612, -0.04877929389476776, -0.0252685546875, -0.009228515438735485, 0.010986328125, 0.02351074106991291, 0.04877929389476776, 0.07163085788488388, 0.07976073771715164, 0.10458984225988388, 0.12502440810203552, 0.134033203125, 0.15688475966453552, 0.16787108778953552, 0.18391112983226776, 0.2010498046875, 0.21291503310203552, 0.230712890625, 0.2513671815395355, 0.261474609375, 0.2733398377895355, 0.2799316346645355, 0.2968505918979645, 0.3012451231479645, 0.30146482586860657, 0.3144287168979645, 0.3153076171875, 0.3238769471645355, 0.31904295086860657, 0.31486815214157104, 0.30937498807907104, 0.3153076171875, 0.3052001893520355, 0.29816892743110657, 0.2845458984375, 0.2836669981479645, 0.26520994305610657, 0.2513671815395355, 0.24873046576976776, 0.22917479276657104, 0.21291503310203552, 0.19973143935203552, 0.17622070014476776, 0.16721190512180328, 0.14501953125, 0.13249512016773224, 0.11491698771715164, 0.09206542372703552, 0.07602538913488388, 0.05690917745232582, 0.03889160230755806, 0.01625976525247097, -0.001977538922801614, -0.01955566368997097, -0.04020996019244194, -0.05559081956744194, -0.08327636867761612, -0.09470214694738388, -0.11689452826976776, -0.13337402045726776, -0.15336914360523224, -0.1614990234375, -0.18303221464157104, -0.19643554091453552, -0.21005858480930328, -0.228515625, -0.23554687201976776, -0.2535644471645355, -0.2623535096645355, -0.28081053495407104, -0.28300780057907104, -0.29597166180610657, -0.29597166180610657, -0.30256345868110657, -0.3087158203125, -0.30388182401657104, -0.3087158203125, -0.3122314512729645, -0.30476072430610657, -0.29707029461860657, -0.28608396649360657, -0.28168943524360657, -0.2724609375, -0.2678466737270355, -0.24697265028953552, -0.24653320014476776, -0.22609862685203552, -0.21027831733226776, -0.20126952230930328, -0.18698729574680328, -0.16127929091453552, -0.14501953125, -0.13601073622703552, -0.11887206882238388, -0.09733886271715164, -0.08481445163488388, -0.06613769382238388, -0.04372558370232582, -0.02768554538488388, -0.0120849609375, 0.009448242373764515, 0.02922363206744194, 0.04548339545726776, 0.06174316257238388, 0.0791015625, 0.10063476115465164, 0.11228027194738388, 0.13139648735523224, 0.15007324516773224, 0.15864257514476776, 0.17863768339157104, 0.18544921278953552, 0.20126952230930328, 0.20961913466453552, 0.22060546278953552, 0.23422850668430328, 0.23994140326976776, 0.2546630799770355, 0.2634521424770355, 0.2669677734375, 0.2759765684604645, 0.27180173993110657, 0.28190916776657104, 0.2792724668979645, 0.28410643339157104, 0.2770752012729645, 0.2744384706020355, 0.263671875, 0.25993651151657104, 0.25554198026657104, 0.24982909858226776, 0.24104003608226776, 0.23049315810203552, 0.21884764730930328, 0.20895995199680328, 0.19291990995407104, 0.17973631620407104, 0.16874998807907104, 0.14985351264476776, 0.14216308295726776, 0.12348632514476776, 0.10964354872703552, 0.09645995497703552, 0.07998047024011612, 0.06635741889476776, 0.04746093600988388, 0.03493652120232582, 0.01186523400247097, -0.0010986328125, -0.014501952566206455, -0.02922363206744194, -0.04746093600988388, -0.05537109076976776, -0.07426757365465164, -0.08613280951976776, -0.0977783203125, -0.112060546875, -0.12260741740465164, -0.13601073622703552, -0.14677734673023224, -0.15996094048023224, -0.16633300483226776, -0.17424315214157104, -0.18698729574680328, -0.195556640625, -0.19819335639476776, -0.2109375, -0.21247558295726776, -0.20654296875, -0.22104491293430328, -0.21621093153953552, -0.21906737983226776, -0.20961913466453552, -0.21049803495407104, -0.21401366591453552, -0.20236815512180328, -0.20126952230930328, -0.19423827528953552, -0.18984374403953552, -0.18281249701976776, -0.17556151747703552, -0.16083984076976776, -0.14919432997703552, -0.14567871391773224, -0.12941893935203552, -0.11733397841453552, -0.10986328125, -0.10041503608226776, -0.08767089247703552, -0.07822265475988388, -0.06394042819738388, -0.05427245795726776, -0.04570312425494194, -0.02922363206744194, -0.01801757700741291, -0.010986328125, 0.005053710658103228, 0.01054687425494194, 0.01955566368997097, 0.03647460788488388, 0.04460449144244194, 0.05207519233226776, 0.06240234151482582, 0.07822265475988388, 0.0823974609375, 0.09272460639476776, 0.09294433146715164, 0.10546875, 0.11469726264476776, 0.11118163913488388, 0.11601562052965164, 0.12238769233226776, 0.13051757216453552, 0.12766112387180328, 0.12941893935203552, 0.12897948920726776, 0.13139648735523224, 0.13908691704273224, 0.13557128608226776, 0.13688965141773224, 0.12985838949680328, 0.1307373046875, 0.12810058891773224, 0.12260741740465164, 0.12062987685203552, 0.1219482421875, 0.1131591796875, 0.10678710788488388, 0.10085448622703552, 0.09953612834215164, 0.09382323920726776, 0.08107910305261612, 0.07932128757238388, 0.07382812350988388, 0.059326171875, 0.05207519233226776, 0.05031738057732582, 0.0472412109375, 0.04130859300494194, 0.02878417819738388, 0.02241210825741291, 0.01384277269244194, 0.013623046688735485, 0.003955077845603228, -0.001538085867650807, -0.002197265625, -0.00856933556497097, -0.0098876953125, -0.01582031138241291, -0.02109374850988388, -0.02241210825741291, -0.0274658203125, -0.02878417819738388, -0.03032226487994194, -0.03208007663488388, -0.041748046875, -0.03801269456744194, -0.04218749701976776, -0.03801269456744194, -0.0362548828125, -0.0450439453125, -0.03933105245232582, -0.04130859300494194, -0.03801269456744194, -0.04086913913488388, -0.03779296949505806, -0.03251953050494194, -0.03317870944738388, -0.03229980543255806, -0.02351074106991291, -0.0230712890625, -0.02768554538488388, -0.024169921875, -0.01516113243997097, -0.0120849609375, -0.012304686941206455, -0.01164550706744194, -0.010327148251235485, -0.003955077845603228, -0.00527343712747097, 0.0013183592818677425, -0.001538085867650807, 0.003955077845603228, 0.007250976283103228, 0.0035156249068677425, -0.002197265625, 0.0024169920943677425, 0.0054931640625, 0.002636718563735485, 0.0010986328125, -0.0017578124534338713, 0.001977538922801614, 0.0024169920943677425, -0.0013183592818677425, 0.003955077845603228, 0.001977538922801614, 0.0028564452659338713, -0.001538085867650807, 0.0008789062267169356, -0.003735351376235485, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, 0.004833984188735485, 0.003076171735301614, 0.005053710658103228, 0.0032958984375, 0.0057128905318677425, 0.005053710658103228, 0.0028564452659338713, 0.0002197265566792339, -0.0006591796409338713, -0.005932617001235485, 0.005053710658103228, -0.003955077845603228, 0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0002197265566792339, 0.003735351376235485, -0.0010986328125, 0.00637206993997097, -0.0028564452659338713, -0.001538085867650807, 0.0041748047806322575, -0.001977538922801614, -0.0035156249068677425, 0.003076171735301614, 0.00439453125, -0.001977538922801614, -0.001538085867650807, 0.002636718563735485, -0.0002197265566792339, 0.002197265625, -0.001538085867650807, -0.0010986328125, 0.003735351376235485, 0.002636718563735485, 0.001977538922801614, 0.0002197265566792339, 0.006591796875, 0.0002197265566792339, 0.003076171735301614, 0.0046142577193677425, 0.00527343712747097, 0.003076171735301614, 0.0002197265566792339, 0.001977538922801614, -0.002197265625, 0.0024169920943677425, 0.00527343712747097, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, 0.006152343470603228, 0.0002197265566792339, -0.0028564452659338713, 0.002636718563735485, 0.0002197265566792339, 0.004833984188735485, -0.0006591796409338713, 0.0057128905318677425, 0.0002197265566792339, 0.007031249813735485, -0.0002197265566792339, 0.0041748047806322575, 0.0002197265566792339, 0.002636718563735485, -0.00747070275247097, 0.0017578124534338713, -0.005932617001235485, 0.003076171735301614, 0.003076171735301614, 0.002197265625, -0.0010986328125, 0.006152343470603228, 0.005932617001235485, 0.010327148251235485, 0.007250976283103228, 0.01318359375, 0.015600585378706455, 0.02219238132238388, 0.02197265625, 0.03208007663488388, 0.02878417819738388, 0.04130859300494194, 0.03603515401482582, 0.04790038987994194, 0.04526367038488388, 0.05712890625, 0.05207519233226776, 0.06569824367761612, 0.06679687649011612, 0.07338867336511612, 0.07778320461511612, 0.08063964545726776, 0.08701171725988388, 0.08701171725988388, 0.08723144233226776, 0.08767089247703552, 0.09426268935203552, 0.08591308444738388, 0.09733886271715164, 0.08942870795726776, 0.08854980021715164, 0.0955810546875, 0.09645995497703552, 0.09536132216453552, 0.0933837890625, 0.09250488132238388, 0.08151855319738388, 0.08173827826976776, 0.07053222507238388, 0.07558593899011612, 0.06679687649011612, 0.05998535081744194, 0.05844726413488388, 0.04438476264476776, 0.03867187350988388, 0.03361816331744194, 0.0252685546875, 0.00966796837747097, 0.006591796875, -0.0024169920943677425, -0.0186767578125, -0.02395019493997097, -0.0340576171875, -0.04460449144244194, -0.05009765550494194, -0.06613769382238388, -0.07712402194738388, -0.08107910305261612, -0.09404296427965164, -0.10854491591453552, -0.10832519084215164, -0.12656249105930328, -0.13776855170726776, -0.14216308295726776, -0.14809569716453552, -0.15842284262180328, -0.16193847358226776, -0.17138671875, -0.18149413168430328, -0.18435057997703552, -0.18918456137180328, -0.19291990995407104, -0.18984374403953552, -0.18808592855930328, -0.19863280653953552, -0.18962401151657104, -0.18918456137180328, -0.19313964247703552, -0.1845703125, -0.1845703125, -0.18171386420726776, -0.17072753608226776, -0.16567382216453552, -0.16413573920726776, -0.147216796875, -0.14238281548023224, -0.1263427734375, -0.1153564453125, -0.10854491591453552, -0.09821777045726776, -0.07646483927965164, -0.068115234375, -0.04965820163488388, -0.03911132737994194, -0.02395019493997097, -0.015380859375, 0.0017578124534338713, 0.01801757700741291, 0.03867187350988388, 0.04877929389476776, 0.06108398362994194, 0.0823974609375, 0.09821777045726776, 0.11249999701976776, 0.12436523288488388, 0.14436034858226776, 0.15095214545726776, 0.1680908203125, 0.18369139730930328, 0.19819335639476776, 0.20742186903953552, 0.22104491293430328, 0.23532713949680328, 0.24521483480930328, 0.25664061307907104, 0.25664061307907104, 0.27180173993110657, 0.2770752012729645, 0.27641600370407104, 0.2854247987270355, 0.2847656309604645, 0.2869628965854645, 0.2865234315395355, 0.27729490399360657, 0.2766357362270355, 0.2757568359375, 0.265869140625, 0.2603759765625, 0.24587401747703552, 0.23906248807907104, 0.22609862685203552, 0.21225585043430328, 0.20170897245407104, 0.18654784560203552, 0.17292480170726776, 0.16127929091453552, 0.13886718451976776, 0.13007812201976776, 0.11601562052965164, 0.08942870795726776, 0.07229004055261612, 0.05866698920726776, 0.03977050632238388, 0.01494140550494194, 0.0002197265566792339, -0.02131347544491291, -0.03691406175494194, -0.05778808519244194, -0.07822265475988388, -0.0977783203125, -0.11557617038488388, -0.13645018637180328, -0.1549072265625, -0.16281737387180328, -0.18940429389476776, -0.19841307401657104, -0.21884764730930328, -0.23378905653953552, -0.2551025450229645, -0.26872557401657104, -0.27751463651657104, -0.2902587950229645, -0.29816892743110657, -0.3150878846645355, -0.3221191465854645, -0.32475584745407104, -0.3304687440395355, -0.3348632752895355, -0.3396972417831421, -0.33771970868110657, -0.3293701112270355, -0.3306884765625, -0.31574705243110657, -0.3122314512729645, -0.3021240234375, -0.2887206971645355, -0.2713623046875, -0.26411131024360657, -0.2502685487270355, -0.23554687201976776, -0.21774901449680328, -0.20939940214157104, -0.18544921278953552, -0.16962890326976776, -0.15029296278953552, -0.12458495795726776, -0.11337890475988388, -0.08723144233226776, -0.063720703125, -0.04680175706744194, -0.02614746056497097, -0.0041748047806322575, 0.014721679501235485, 0.03603515401482582, 0.0538330078125, 0.07712402194738388, 0.09602050483226776, 0.12150878459215164, 0.14260253310203552, 0.15996094048023224, 0.18105468153953552, 0.19929198920726776, 0.21379393339157104, 0.23269042372703552, 0.2568603456020355, 0.2660888731479645, 0.27861326932907104, 0.2935546934604645, 0.31047362089157104, 0.31706541776657104, 0.3284912109375, 0.3502441346645355, 0.34650877118110657, 0.35090330243110657, 0.3649657964706421, 0.3680419921875, 0.36474609375, 0.362548828125, 0.3667236268520355, 0.3515625, 0.34782713651657104, 0.3331054747104645, 0.3309082090854645, 0.314208984375, 0.29707029461860657, 0.28630369901657104, 0.26762694120407104, 0.25751951336860657, 0.24169921875, 0.22258299589157104, 0.20061033964157104, 0.18303221464157104, 0.16940917074680328, 0.14677734673023224, 0.123046875, 0.10195311903953552, 0.08217773586511612, 0.0560302734375, 0.0362548828125, 0.0120849609375, -0.00637206993997097, -0.02175292931497097, -0.0494384765625, -0.0670166015625, -0.09206542372703552, -0.10898437350988388, -0.13666991889476776, -0.1505126953125, -0.17424315214157104, -0.18720702826976776, -0.20830076932907104, -0.230712890625, -0.24521483480930328, -0.2572998106479645, -0.2799316346645355, -0.2891601622104645, -0.30058592557907104, -0.3133300840854645, -0.3306884765625, -0.340576171875, -0.3473876714706421, -0.3528808355331421, -0.35771483182907104, -0.3517822027206421, -0.35991209745407104, -0.3546386659145355, -0.34716796875, -0.336181640625, -0.3320068418979645, -0.31684568524360657, -0.30498045682907104, -0.2946533262729645, -0.2911376953125, -0.27180173993110657, -0.25334471464157104, -0.23752440512180328, -0.22214354574680328, -0.1988525390625, -0.19072264432907104, -0.16215820610523224, -0.14304198324680328, -0.12436523288488388, -0.10920409858226776, -0.08745116740465164, -0.07272949069738388, -0.0439453125, -0.02702636644244194, -0.006152343470603228, 0.0164794921875, 0.03229980543255806, 0.05624999850988388, 0.0780029296875, 0.09096679091453552, 0.11469726264476776, 0.12788085639476776, 0.1439208984375, 0.16325683891773224, 0.182373046875, 0.20346678793430328, 0.21379393339157104, 0.23818358778953552, 0.24433593451976776, 0.25751951336860657, 0.27641600370407104, 0.2788330018520355, 0.29377439618110657, 0.2990478575229645, 0.3073974549770355, 0.3128906190395355, 0.3150878846645355, 0.32783201336860657, 0.32695311307907104, 0.32014158368110657, 0.32343748211860657, 0.3177246153354645, 0.3144287168979645, 0.3021240234375, 0.29619139432907104, 0.28564453125, 0.2700439393520355, 0.265869140625, 0.24631346762180328, 0.24125975370407104, 0.22016601264476776, 0.20698241889476776, 0.19072264432907104, 0.17182616889476776, 0.16325683891773224, 0.14589843153953552, 0.12502440810203552, 0.10788574069738388, 0.09074706584215164, 0.07119140774011612, 0.05009765550494194, 0.03493652120232582, 0.02219238132238388, -0.0054931640625, -0.014721679501235485, -0.032958984375, -0.05361327901482582, -0.07097167521715164, -0.08811035007238388, -0.09953612834215164, -0.11381835490465164, -0.138427734375, -0.14436034858226776, -0.156005859375, -0.17380370199680328, -0.18281249701976776, -0.1966552734375, -0.208740234375, -0.21445311605930328, -0.22016601264476776, -0.2274169921875, -0.23906248807907104, -0.24367675185203552, -0.2427978515625, -0.24543456733226776, -0.2535644471645355, -0.24763183295726776, -0.2513671815395355, -0.24521483480930328, -0.23906248807907104, -0.23774413764476776, -0.2362060546875, -0.22719725966453552, -0.21291503310203552, -0.21269530057907104, -0.19423827528953552, -0.18874511122703552, -0.17885741591453552, -0.16127929091453552, -0.15512694418430328, -0.13776855170726776, -0.12458495795726776, -0.11667480319738388, -0.09711913764476776, -0.08723144233226776, -0.07009277492761612, -0.0615234375, -0.05075683444738388, -0.03889160230755806, -0.01801757700741291, -0.008129882626235485, 0.006591796875, 0.017578125, 0.02658691257238388, 0.04306640475988388, 0.05031738057732582, 0.063720703125, 0.076904296875, 0.08591308444738388, 0.09602050483226776, 0.10063476115465164, 0.11469726264476776, 0.1219482421875, 0.1285400390625, 0.1307373046875, 0.14084471762180328, 0.14633788168430328, 0.14809569716453552, 0.15644530951976776, 0.16127929091453552, 0.15468749403953552, 0.16237792372703552, 0.16347655653953552, 0.16083984076976776, 0.158203125, 0.15205077826976776, 0.1494140625, 0.1505126953125, 0.14040526747703552, 0.14589843153953552, 0.1351318359375, 0.1318359375, 0.12282714247703552, 0.12238769233226776, 0.11271972209215164, 0.10942382365465164, 0.0977783203125, 0.08767089247703552, 0.07932128757238388, 0.07382812350988388, 0.07097167521715164, 0.0626220703125, 0.04987792670726776, 0.03955078125, 0.03779296949505806, 0.028564453125, 0.02109374850988388, 0.01582031138241291, 0.0041748047806322575, -0.0017578124534338713, -0.009228515438735485, -0.011206054128706455, -0.009008788503706455, -0.02153320237994194, -0.02131347544491291, -0.02834472618997097, -0.03032226487994194, -0.032958984375, -0.04086913913488388, -0.04020996019244194, -0.04196777194738388, -0.0428466796875, -0.04240722581744194, -0.04855956882238388, -0.04680175706744194, -0.04526367038488388, -0.0450439453125, -0.04548339545726776, -0.04240722581744194, -0.04460449144244194, -0.0439453125, -0.04130859300494194, -0.03471679612994194, -0.03713378682732582, -0.03032226487994194, -0.02812499925494194, -0.02680663950741291, -0.01911620981991291, -0.02285156212747097, -0.01318359375, -0.014721679501235485, -0.00637206993997097, -0.0057128905318677425, -0.006152343470603228, -0.007910155691206455, -0.0010986328125, 0.0032958984375, 0.002197265625, 0.0024169920943677425, 0.003735351376235485, 0.0017578124534338713, 0.0028564452659338713, 0.00747070275247097, -0.001977538922801614, 0.0054931640625, 0.0008789062267169356, 0.0017578124534338713, -0.0006591796409338713, 0.0010986328125, -0.0008789062267169356, 0.0024169920943677425, 0.0028564452659338713, 0.00527343712747097, 0.0057128905318677425, 0.0004394531133584678, -0.001977538922801614, 0.006591796875, 0.0054931640625, 0.007250976283103228, 0.0017578124534338713, 0.003076171735301614, 0.001977538922801614, -0.0028564452659338713, -0.0006591796409338713, 0.0057128905318677425, -0.003735351376235485, 0.0008789062267169356, 0.001538085867650807, 0.0006591796409338713, -0.001977538922801614, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0006591796409338713, 0.002197265625, 0.0035156249068677425, -0.0013183592818677425, 0.0068115233443677425, -0.0008789062267169356, -0.0006591796409338713, 0.00439453125, 0.0054931640625, 0.0008789062267169356, 0.0035156249068677425, -0.0017578124534338713, 0.0035156249068677425, 0.00637206993997097, 0.0008789062267169356, 0.001977538922801614, 0.001977538922801614, 0.004833984188735485, -0.0006591796409338713, 0.0002197265566792339, -0.001977538922801614, -0.0002197265566792339, 0.0046142577193677425, -0.0017578124534338713, -0.0032958984375, -0.0004394531133584678, 0.002197265625, 0.0013183592818677425, -0.0017578124534338713, 0.00439453125, 0.0004394531133584678, -0.0002197265566792339, 0.0032958984375, -0.0002197265566792339, 0.0008789062267169356, 0.0041748047806322575, 0.00439453125, 0.00439453125, 0.0017578124534338713, -0.0006591796409338713, 0.004833984188735485, 0.003955077845603228, -0.002636718563735485, 0.0054931640625, 0.0010986328125, -0.0006591796409338713, 0.0028564452659338713, 0.0028564452659338713, -0.0028564452659338713, -0.002636718563735485, -0.0057128905318677425, -0.003076171735301614, -0.001538085867650807, -0.0032958984375, 0.0004394531133584678, -0.0013183592818677425, 0.0004394531133584678, -0.002636718563735485, 0.01076660118997097, 0.007910155691206455, 0.01516113243997097, 0.01713867112994194, 0.0186767578125, 0.02153320237994194, 0.02329101413488388, 0.02944335900247097, 0.03493652120232582, 0.04526367038488388, 0.04196777194738388, 0.04812011495232582, 0.05251464620232582, 0.05668945237994194, 0.0692138671875, 0.06789550930261612, 0.07470703125, 0.0758056640625, 0.08547362685203552, 0.08920898288488388, 0.09272460639476776, 0.09799804538488388, 0.09492187201976776, 0.10239257663488388, 0.10063476115465164, 0.10063476115465164, 0.10832519084215164, 0.10700683295726776, 0.1087646484375, 0.10480956733226776, 0.10305175185203552, 0.10041503608226776, 0.10283202677965164, 0.09536132216453552, 0.09228515625, 0.0911865234375, 0.08349609375, 0.08085937052965164, 0.07646483927965164, 0.07075195014476776, 0.06328124552965164, 0.052734375, 0.03757324069738388, 0.03273925557732582, 0.0208740234375, 0.02197265625, 0.009228515438735485, -0.0076904296875, -0.01625976525247097, -0.02812499925494194, -0.03867187350988388, -0.050537109375, -0.06394042819738388, -0.07492675632238388, -0.08151855319738388, -0.09360351413488388, -0.10502929240465164, -0.11447753757238388, -0.12480468302965164, -0.14260253310203552, -0.14809569716453552, -0.16413573920726776, -0.17182616889476776, -0.1746826171875, -0.18984374403953552, -0.1944580078125, -0.19643554091453552, -0.20786131918430328, -0.21269530057907104, -0.21994628012180328, -0.21489256620407104, -0.22565917670726776, -0.21665038168430328, -0.2208251953125, -0.2230224609375, -0.2208251953125, -0.21115721762180328, -0.2076416015625, -0.19687499105930328, -0.19467772543430328, -0.18896484375, -0.173583984375, -0.16523437201976776, -0.15117187798023224, -0.14479979872703552, -0.12656249105930328, -0.12348632514476776, -0.10524901747703552, -0.09140624850988388, -0.07338867336511612, -0.06284179538488388, -0.04240722581744194, -0.0318603515625, -0.00856933556497097, 0.006591796875, 0.01801757700741291, 0.04328612983226776, 0.0582275390625, 0.07448730617761612, 0.09250488132238388, 0.10546875, 0.12480468302965164, 0.14633788168430328, 0.15666504204273224, 0.17380370199680328, 0.19313964247703552, 0.20654296875, 0.221923828125, 0.239501953125, 0.2513671815395355, 0.26301267743110657, 0.2691650390625, 0.27949216961860657, 0.29069823026657104, 0.2997070252895355, 0.3111328184604645, 0.31267088651657104, 0.3155273497104645, 0.31640625, 0.31706541776657104, 0.3238769471645355, 0.31157225370407104, 0.3084960877895355, 0.29926756024360657, 0.2968505918979645, 0.29179686307907104, 0.27421873807907104, 0.27092283964157104, 0.24895018339157104, 0.24213866889476776, 0.22587889432907104, 0.20654296875, 0.19313964247703552, 0.177978515625, 0.15556640923023224, 0.13447265326976776, 0.11689452826976776, 0.09602050483226776, 0.08591308444738388, 0.05800781026482582, 0.04152831807732582, 0.01516113243997097, -0.0010986328125, -0.0230712890625, -0.04987792670726776, -0.07053222507238388, -0.087890625, -0.10810546576976776, -0.12875975668430328, -0.14523924887180328, -0.17160643637180328, -0.1922607421875, -0.21005858480930328, -0.22587889432907104, -0.25334471464157104, -0.26323240995407104, -0.2876220643520355, -0.2942138612270355, -0.31047362089157104, -0.32805174589157104, -0.3342041075229645, -0.3524414002895355, -0.35859373211860657, -0.36210936307907104, -0.37309569120407104, -0.37089842557907104, -0.3711181581020355, -0.3755126893520355, -0.3744140565395355, -0.3636474609375, -0.3557372987270355, -0.340576171875, -0.34013670682907104, -0.3188232481479645, -0.3109130859375, -0.2953124940395355, -0.27399900555610657, -0.2594970762729645, -0.24257811903953552, -0.22148436307907104, -0.19929198920726776, -0.1834716796875, -0.15952147543430328, -0.14018554985523224, -0.11667480319738388, -0.10019531100988388, -0.0703125, -0.054931640625, -0.028564453125, 0.0010986328125, 0.0142822265625, 0.04658202826976776, 0.06416015326976776, 0.09206542372703552, 0.11711425334215164, 0.12875975668430328, 0.15952147543430328, 0.18303221464157104, 0.20017088949680328, 0.221923828125, 0.2427978515625, 0.2612548768520355, 0.2792724668979645, 0.29948729276657104, 0.32080078125, 0.3359619081020355, 0.3491455018520355, 0.35749509930610657, 0.3726562261581421, 0.38078612089157104, 0.39484861493110657, 0.3979247808456421, 0.4130859375, 0.40913084149360657, 0.4078124761581421, 0.41264647245407104, 0.39814451336860657, 0.3897949159145355, 0.38056638836860657, 0.3682616949081421, 0.36979979276657104, 0.3447509706020355, 0.34013670682907104, 0.31201171875, 0.30498045682907104, 0.28278806805610657, 0.2656494081020355, 0.24257811903953552, 0.22499999403953552, 0.20170897245407104, 0.17951659858226776, 0.15996094048023224, 0.13117675483226776, 0.10986328125, 0.08371581882238388, 0.0626220703125, 0.03669433668255806, 0.02043456956744194, -0.01186523400247097, -0.03054199181497097, -0.0538330078125, -0.08107910305261612, -0.10634765028953552, -0.129638671875, -0.14633788168430328, -0.17753905057907104, -0.19050292670726776, -0.21335448324680328, -0.23906248807907104, -0.25224608182907104, -0.2814697325229645, -0.2942138612270355, -0.3065185546875, -0.3232177793979645, -0.3396972417831421, -0.35771483182907104, -0.3658447265625, -0.38671875, -0.39616698026657104, -0.3941894471645355, -0.3957275152206421, -0.40693357586860657, -0.40056151151657104, -0.4007812440395355, -0.3988037109375, -0.3792480230331421, -0.37727048993110657, -0.36474609375, -0.34892576932907104, -0.3320068418979645, -0.3194824159145355, -0.2975097596645355, -0.2832275331020355, -0.26213377714157104, -0.25202634930610657, -0.22587889432907104, -0.20390623807907104, -0.17995604872703552, -0.1593017578125, -0.14326171576976776, -0.11909179389476776, -0.09404296427965164, -0.0736083984375, -0.04855956882238388, -0.0296630859375, -0.008129882626235485, 0.01713867112994194, 0.04438476264476776, 0.0538330078125, 0.08701171725988388, 0.10744628310203552, 0.1263427734375, 0.15336914360523224, 0.17050780355930328, 0.19182127714157104, 0.20917968451976776, 0.22236327826976776, 0.24367675185203552, 0.265869140625, 0.27421873807907104, 0.2931152284145355, 0.30322265625, 0.3284912109375, 0.3271728456020355, 0.3451904058456421, 0.3546386659145355, 0.3590331971645355, 0.36540526151657104, 0.3748534917831421, 0.3744140565395355, 0.36298826336860657, 0.36474609375, 0.3605712652206421, 0.3495849370956421, 0.3416748046875, 0.3394775390625, 0.3172851502895355, 0.31025388836860657, 0.29948729276657104, 0.27685546875, 0.26872557401657104, 0.24367675185203552, 0.2362060546875, 0.21467284858226776, 0.19819335639476776, 0.1812744140625, 0.15688475966453552, 0.13491210341453552, 0.11931151896715164, 0.10239257663488388, 0.07822265475988388, 0.06020507588982582, 0.0428466796875, 0.0164794921875, 0.001977538922801614, -0.01823730394244194, -0.04372558370232582, -0.05910644307732582, -0.08415526896715164, -0.09865722060203552, -0.11953124403953552, -0.13337402045726776, -0.1527099609375, -0.16545410454273224, -0.17929686605930328, -0.1944580078125, -0.21357421576976776, -0.22653807699680328, -0.23466795682907104, -0.24631346762180328, -0.2513671815395355, -0.25927734375, -0.27641600370407104, -0.2799316346645355, -0.27729490399360657, -0.2891601622104645, -0.28630369901657104, -0.29157713055610657, -0.28630369901657104, -0.28125, -0.27949216961860657, -0.27312010526657104, -0.26762694120407104, -0.2562011778354645, -0.24851073324680328, -0.23664550483226776, -0.22434081137180328, -0.21225585043430328, -0.19599609076976776, -0.18500976264476776, -0.17644041776657104, -0.1636962890625, -0.14458008110523224, -0.1263427734375, -0.11359862983226776, -0.09711913764476776, -0.08261718600988388, -0.0692138671875, -0.05515136569738388, -0.04372558370232582, -0.02482910081744194, -0.0098876953125, 0.003955077845603228, 0.02460937388241291, 0.03054199181497097, 0.05031738057732582, 0.06591796875, 0.07932128757238388, 0.08854980021715164, 0.098876953125, 0.1065673828125, 0.12128905951976776, 0.129638671875, 0.14106445014476776, 0.1527099609375, 0.15314941108226776, 0.15908202528953552, 0.1702880859375, 0.17336425185203552, 0.17666015028953552, 0.17578125, 0.18588866293430328, 0.18522948026657104, 0.17863768339157104, 0.177978515625, 0.17709960043430328, 0.17622070014476776, 0.17885741591453552, 0.17336425185203552, 0.16281737387180328, 0.1593017578125, 0.15732420980930328, 0.15314941108226776, 0.1395263671875, 0.13886718451976776, 0.12370605021715164, 0.12106933444738388, 0.1142578125, 0.10063476115465164, 0.09382323920726776, 0.09052734076976776, 0.07734374701976776, 0.06635741889476776, 0.06416015326976776, 0.05251464620232582, 0.04482421651482582, 0.02900390513241291, 0.02548827975988388, 0.01274413987994194, 0.009008788503706455, -0.0008789062267169356, -0.002636718563735485, -0.014721679501235485, -0.02175292931497097, -0.02241210825741291, -0.03229980543255806, -0.02944335900247097, -0.03647460788488388, -0.04372558370232582, -0.04768066108226776, -0.04526367038488388, -0.05207519233226776, -0.05251464620232582, -0.05119628831744194, -0.054931640625, -0.05998535081744194, -0.05537109076976776, -0.054931640625, -0.05427245795726776, -0.04702148213982582, -0.04987792670726776, -0.04658202826976776, -0.0406494140625, -0.04196777194738388, -0.03933105245232582, -0.03515625, -0.03076171875, -0.02658691257238388, -0.02702636644244194, -0.02021484263241291, -0.02285156212747097, -0.012304686941206455, -0.01604003831744194, -0.008349609561264515, -0.009008788503706455, 0.0006591796409338713, -0.003076171735301614, 0.0057128905318677425, -0.001538085867650807, -0.0008789062267169356, 0.0002197265566792339, 0.0035156249068677425, -0.0004394531133584678, 0.00637206993997097, 0.002636718563735485, 0.0004394531133584678, 0.0046142577193677425, 0.003735351376235485, 0.0, -0.0004394531133584678, 0.0046142577193677425, 0.0013183592818677425, 0.0046142577193677425, 0.00747070275247097, 0.0, 0.0035156249068677425, 0.0068115233443677425, 0.0010986328125, 0.005932617001235485, 0.0024169920943677425, 0.004833984188735485, 0.0054931640625, 0.0, 0.001538085867650807, 0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, 0.001977538922801614, 0.004833984188735485, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.001977538922801614, -0.0006591796409338713, 0.0, -0.0002197265566792339, 0.0010986328125, -0.0013183592818677425, 0.003955077845603228, 0.001538085867650807, 0.0024169920943677425, 0.0046142577193677425, -0.0002197265566792339, 0.006152343470603228, 0.0024169920943677425, 0.00527343712747097, -0.0008789062267169356, 0.0054931640625, 0.00439453125, 0.0057128905318677425, 0.0013183592818677425, 0.007031249813735485, -0.0013183592818677425, 0.00637206993997097, 0.004833984188735485, 0.003735351376235485, -0.001538085867650807, 0.0004394531133584678, -0.0010986328125, 0.001977538922801614, 0.0010986328125, 0.0002197265566792339, 0.001538085867650807, -0.0004394531133584678, 0.0010986328125, 0.0010986328125, -0.0002197265566792339, 0.00527343712747097, 0.0004394531133584678, 0.00527343712747097, 0.0, -0.0017578124534338713, 0.0002197265566792339, -0.001977538922801614, 0.001977538922801614, 0.006591796875, 0.0002197265566792339, 0.004833984188735485, -0.0024169920943677425, 0.003076171735301614, 0.0013183592818677425, -0.006152343470603228, -0.007250976283103228, -0.001538085867650807, -0.0010986328125, -0.007910155691206455, -0.001977538922801614, -0.0004394531133584678, -0.0035156249068677425, 0.001538085867650807, 0.0024169920943677425, 0.006152343470603228, 0.014501952566206455, 0.01164550706744194, 0.01823730394244194, 0.02680663950741291, 0.02900390513241291, 0.0296630859375, 0.0362548828125, 0.04526367038488388, 0.04833984375, 0.05866698920726776, 0.06130370870232582, 0.06503906100988388, 0.06877440959215164, 0.0845947265625, 0.08833007514476776, 0.0889892578125, 0.09602050483226776, 0.10019531100988388, 0.10129394382238388, 0.10371093451976776, 0.10612792521715164, 0.11381835490465164, 0.11359862983226776, 0.11821288615465164, 0.123046875, 0.11887206882238388, 0.12348632514476776, 0.1142578125, 0.1175537109375, 0.11777343600988388, 0.11557617038488388, 0.1131591796875, 0.10920409858226776, 0.10524901747703552, 0.09755858778953552, 0.0933837890625, 0.07954101264476776, 0.07976073771715164, 0.06240234151482582, 0.06064452975988388, 0.04416503757238388, 0.04416503757238388, 0.03142089769244194, 0.0208740234375, 0.0087890625, -0.0054931640625, -0.01582031138241291, -0.03273925557732582, -0.04526367038488388, -0.054931640625, -0.06987304240465164, -0.08349609375, -0.0977783203125, -0.1087646484375, -0.12106933444738388, -0.129638671875, -0.14479979872703552, -0.16325683891773224, -0.17270506918430328, -0.182373046875, -0.19599609076976776, -0.20346678793430328, -0.20654296875, -0.2208251953125, -0.23005370795726776, -0.23752440512180328, -0.23488768935203552, -0.24082030355930328, -0.25092771649360657, -0.2513671815395355, -0.2524658143520355, -0.24411620199680328, -0.24543456733226776, -0.24301756918430328, -0.23972167074680328, -0.23532713949680328, -0.2197265625, -0.21577148139476776, -0.2010498046875, -0.195556640625, -0.18193358182907104, -0.17138671875, -0.16237792372703552, -0.14655761420726776, -0.1285400390625, -0.1131591796875, -0.09404296427965164, -0.07976073771715164, -0.0604248046875, -0.04899902269244194, -0.02329101413488388, -0.012524413876235485, 0.008349609561264515, 0.02702636644244194, 0.04658202826976776, 0.06547851115465164, 0.08701171725988388, 0.10458984225988388, 0.11689452826976776, 0.13710936903953552, 0.15996094048023224, 0.17929686605930328, 0.19797362387180328, 0.2142333984375, 0.22653807699680328, 0.24191893637180328, 0.25971677899360657, 0.279052734375, 0.28959959745407104, 0.30036619305610657, 0.31267088651657104, 0.3216796815395355, 0.3328857421875, 0.3364013731479645, 0.34650877118110657, 0.35639646649360657, 0.3526611328125, 0.3570556640625, 0.35310056805610657, 0.3557372987270355, 0.3392578065395355, 0.3320068418979645, 0.32233884930610657, 0.3199218809604645, 0.2977294921875, 0.2898193299770355, 0.2781738340854645, 0.26081541180610657, 0.248291015625, 0.22258299589157104, 0.21159666776657104, 0.1856689453125, 0.16940917074680328, 0.14501953125, 0.12875975668430328, 0.10349120944738388, 0.0802001953125, 0.06284179538488388, 0.03691406175494194, 0.017578125, -0.005932617001235485, -0.02724609337747097, -0.052734375, -0.07822265475988388, -0.0966796875, -0.12216796725988388, -0.14633788168430328, -0.16787108778953552, -0.18984374403953552, -0.21335448324680328, -0.2340087890625, -0.25114744901657104, -0.2803710997104645, -0.28740233182907104, -0.3172851502895355, -0.32673338055610657, -0.34716796875, -0.36628416180610657, -0.3700195252895355, -0.3834228515625, -0.39287108182907104, -0.40825194120407104, -0.4141845703125, -0.4187988042831421, -0.4183593690395355, -0.41572263836860657, -0.4031982421875, -0.4012206792831421, -0.38935545086860657, -0.3744140565395355, -0.36848142743110657, -0.34672850370407104, -0.3326660096645355, -0.3166259825229645, -0.30168455839157104, -0.28125, -0.2612548768520355, -0.24411620199680328, -0.21730956435203552, -0.18742674589157104, -0.17446288466453552, -0.14348144829273224, -0.12810058891773224, -0.10129394382238388, -0.08107910305261612, -0.050537109375, -0.02153320237994194, -0.0010986328125, 0.02460937388241291, 0.05075683444738388, 0.07514648139476776, 0.10063476115465164, 0.12326660007238388, 0.14875487983226776, 0.16962890326976776, 0.20170897245407104, 0.21950682997703552, 0.248291015625, 0.2678466737270355, 0.28937986493110657, 0.3139892518520355, 0.33222654461860657, 0.35551756620407104, 0.3678222596645355, 0.3924316167831421, 0.40144041180610657, 0.42143553495407104, 0.42451170086860657, 0.44538572430610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.43461912870407104, 0.4306640625, 0.4117675721645355, 0.40473631024360657, 0.3847411870956421, 0.3658447265625, 0.34650877118110657, 0.3309082090854645, 0.30717772245407104, 0.2854247987270355, 0.2649902403354645, 0.2384033203125, 0.21291503310203552, 0.18962401151657104, 0.16281737387180328, 0.14150390028953552, 0.1153564453125, 0.09514159709215164, 0.06174316257238388, 0.03515625, 0.01823730394244194, -0.015600585378706455, -0.032958984375, -0.0692138671875, -0.09733886271715164, -0.11689452826976776, -0.14545898139476776, -0.16787108778953552, -0.19138182699680328, -0.21269530057907104, -0.24587401747703552, -0.2682861387729645, -0.2847656309604645, -0.3021240234375, -0.322998046875, -0.3528808355331421, -0.36628416180610657, -0.38737791776657104, -0.4012206792831421, -0.41352537274360657, -0.4205566346645355, -0.43352049589157104, -0.4407714605331421, -0.4427490234375, -0.44890135526657104, -0.4484618902206421, -0.4425292909145355, -0.4370361268520355, -0.42780759930610657, -0.41572263836860657, -0.40385740995407104, -0.388916015625, -0.36210936307907104, -0.34211423993110657, -0.3271728456020355, -0.31464841961860657, -0.2832275331020355, -0.2660888731479645, -0.24741210043430328, -0.22478026151657104, -0.20126952230930328, -0.17402343451976776, -0.14809569716453552, -0.1318359375, -0.10019531100988388, -0.07976073771715164, -0.0516357421875, -0.03142089769244194, -0.001538085867650807, 0.02197265625, 0.04855956882238388, 0.07338867336511612, 0.09404296427965164, 0.12326660007238388, 0.14084471762180328, 0.17160643637180328, 0.18940429389476776, 0.21708983182907104, 0.23906248807907104, 0.2548828125, 0.27180173993110657, 0.2887206971645355, 0.3155273497104645, 0.3304687440395355, 0.3438720703125, 0.35771483182907104, 0.3781493902206421, 0.38078612089157104, 0.39506834745407104, 0.40913084149360657, 0.4166015386581421, 0.41484373807907104, 0.410888671875, 0.4198974370956421, 0.4130859375, 0.40495604276657104, 0.39045408368110657, 0.38825681805610657, 0.3702392578125, 0.3548583984375, 0.3429931402206421, 0.3359619081020355, 0.3045410215854645, 0.29729002714157104, 0.28081053495407104, 0.2559814453125, 0.23312987387180328, 0.21555174887180328, 0.19709472358226776, 0.16962890326976776, 0.14897461235523224, 0.134033203125, 0.10502929240465164, 0.08151855319738388, 0.06350097805261612, 0.04240722581744194, 0.02065429650247097, -0.007910155691206455, -0.01691894419491291, -0.04768066108226776, -0.07163085788488388, -0.08701171725988388, -0.11184081435203552, -0.13117675483226776, -0.14370116591453552, -0.16874998807907104, -0.18742674589157104, -0.20456542074680328, -0.22346191108226776, -0.235107421875, -0.2546630799770355, -0.26960447430610657, -0.28190916776657104, -0.2880615293979645, -0.3052001893520355, -0.31486815214157104, -0.3150878846645355, -0.3251953125, -0.3238769471645355, -0.31926268339157104, -0.3227783143520355, -0.3293701112270355, -0.32365721464157104, -0.3128906190395355, -0.3065185546875, -0.2990478575229645, -0.292236328125, -0.2803710997104645, -0.26960447430610657, -0.25773924589157104, -0.23972167074680328, -0.22170409560203552, -0.21335448324680328, -0.19929198920726776, -0.177978515625, -0.15996094048023224, -0.14150390028953552, -0.13447265326976776, -0.11184081435203552, -0.0966796875, -0.07624511420726776, -0.06174316257238388, -0.0406494140625, -0.02900390513241291, -0.0142822265625, 0.005932617001235485, 0.02263183519244194, 0.03449707105755806, 0.04812011495232582, 0.0714111328125, 0.08415526896715164, 0.09514159709215164, 0.11228027194738388, 0.12612304091453552, 0.13666991889476776, 0.147216796875, 0.15095214545726776, 0.17182616889476776, 0.16984862089157104, 0.17951659858226776, 0.19094237685203552, 0.19621580839157104, 0.19467772543430328, 0.20654296875, 0.2054443359375, 0.208740234375, 0.2054443359375, 0.20830076932907104, 0.20083007216453552, 0.20039062201976776, 0.20126952230930328, 0.199951171875, 0.18522948026657104, 0.1812744140625, 0.17973631620407104, 0.16984862089157104, 0.16083984076976776, 0.151611328125, 0.14743651449680328, 0.13996581733226776, 0.125244140625, 0.11667480319738388, 0.10393065959215164, 0.10173339396715164, 0.08986815810203552, 0.0736083984375, 0.068115234375, 0.0516357421875, 0.0494384765625, 0.04196777194738388, 0.02592773362994194, 0.01625976525247097, 0.013623046688735485, 0.0010986328125, -0.003076171735301614, -0.01735839806497097, -0.01911620981991291, -0.0230712890625, -0.0362548828125, -0.03537597507238388, -0.04328612983226776, -0.0516357421875, -0.05251464620232582, -0.05624999850988388, -0.06064452975988388, -0.05800781026482582, -0.05778808519244194, -0.06416015326976776, -0.06284179538488388, -0.06525878608226776, -0.06350097805261612, -0.06459961086511612, -0.0626220703125, -0.06020507588982582, -0.0582275390625, -0.05229492112994194, -0.04746093600988388, -0.04746093600988388, -0.03977050632238388, -0.04350585862994194, -0.03537597507238388, -0.0340576171875, -0.02548827975988388, -0.02109374850988388, -0.0186767578125, -0.01318359375, -0.014501952566206455, -0.00439453125, -0.0028564452659338713, 0.001538085867650807, -0.0004394531133584678, 0.0068115233443677425, -0.00439453125, 0.007031249813735485, 0.007250976283103228, 0.0057128905318677425, 0.00637206993997097, 0.00527343712747097, 0.008349609561264515, 0.00747070275247097, 0.0004394531133584678, -0.0006591796409338713, 0.005932617001235485, 0.0057128905318677425, 0.0054931640625, 0.007250976283103228, 0.0041748047806322575, 0.0028564452659338713, 0.0010986328125, 0.002197265625, 0.0054931640625, 0.00527343712747097, 0.0024169920943677425, 0.0004394531133584678, 0.0046142577193677425, 0.0, -0.0013183592818677425, 0.007031249813735485, 0.002636718563735485, 0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, 0.0, 0.0006591796409338713, 0.003955077845603228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 4.95 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0046142577193677425, -0.0013183592818677425, -0.0002197265566792339, -0.003076171735301614, -0.002636718563735485, -0.002197265625, 0.00637206993997097, -0.0002197265566792339, 0.003735351376235485, 0.003955077845603228, 0.006591796875, 0.00527343712747097, -0.0006591796409338713, 0.0006591796409338713, 0.003076171735301614, 0.0057128905318677425, 0.00527343712747097, 0.0028564452659338713, 0.003955077845603228, 0.002197265625, 0.0041748047806322575, 0.0010986328125, 0.006152343470603228, 0.0010986328125, 0.001977538922801614, 0.0002197265566792339, 0.0, 0.00637206993997097, 0.00439453125, -0.001538085867650807, -0.0041748047806322575, 0.0002197265566792339, 0.0010986328125, -0.0002197265566792339, 0.004833984188735485, -0.0028564452659338713, 0.0008789062267169356, -0.001538085867650807, 0.003955077845603228, 0.00637206993997097, 0.001977538922801614, 0.0054931640625, 0.003076171735301614, 0.0054931640625, -0.0008789062267169356, -0.0008789062267169356, 0.0028564452659338713, -0.0004394531133584678, 0.003076171735301614, 0.0006591796409338713, -0.00439453125, -0.0076904296875, -0.003076171735301614, -0.001538085867650807, -0.001977538922801614, 0.0035156249068677425, -0.0006591796409338713, 0.008349609561264515, 0.0035156249068677425, 0.010107421316206455, 0.0142822265625, 0.01845703087747097, 0.01889648474752903, 0.02834472618997097, 0.03339843824505806, 0.032958984375, 0.04768066108226776, 0.04833984375, 0.05229492112994194, 0.06020507588982582, 0.07053222507238388, 0.07448730617761612, 0.08591308444738388, 0.08481445163488388, 0.08657225966453552, 0.1021728515625, 0.10129394382238388, 0.107666015625, 0.11623534560203552, 0.11931151896715164, 0.11887206882238388, 0.12370605021715164, 0.13095702230930328, 0.129638671875, 0.13623046875, 0.13666991889476776, 0.13381347060203552, 0.13579101860523224, 0.1318359375, 0.12568359076976776, 0.12832030653953552, 0.11865234375, 0.11293944716453552, 0.11601562052965164, 0.10305175185203552, 0.09250488132238388, 0.09426268935203552, 0.08217773586511612, 0.06965331733226776, 0.06899414211511612, 0.05581054463982582, 0.04086913913488388, 0.03251953050494194, 0.01911620981991291, -0.0010986328125, -0.00439453125, -0.02680663950741291, -0.03208007663488388, -0.04526367038488388, -0.06218261644244194, -0.08217773586511612, -0.0911865234375, -0.1021728515625, -0.1219482421875, -0.13579101860523224, -0.14216308295726776, -0.16633300483226776, -0.17622070014476776, -0.19204100966453552, -0.19643554091453552, -0.2098388671875, -0.22412109375, -0.23049315810203552, -0.23884277045726776, -0.24675291776657104, -0.2605957090854645, -0.25751951336860657, -0.2649902403354645, -0.2759765684604645, -0.27421873807907104, -0.27202147245407104, -0.2781738340854645, -0.2704834043979645, -0.27070310711860657, -0.263671875, -0.24741210043430328, -0.24609375, -0.23312987387180328, -0.22917479276657104, -0.21181640028953552, -0.20412597060203552, -0.19138182699680328, -0.1702880859375, -0.15468749403953552, -0.13688965141773224, -0.12238769233226776, -0.10195311903953552, -0.08745116740465164, -0.06459961086511612, -0.05207519233226776, -0.02570800669491291, -0.01164550706744194, 0.014501952566206455, 0.03098144382238388, 0.05207519233226776, 0.07404784858226776, 0.09492187201976776, 0.10986328125, 0.1351318359375, 0.15314941108226776, 0.17336425185203552, 0.195556640625, 0.21818846464157104, 0.22785644233226776, 0.24960936605930328, 0.2656494081020355, 0.2876220643520355, 0.2986083924770355, 0.3089355528354645, 0.33354490995407104, 0.34716796875, 0.35551756620407104, 0.3702392578125, 0.3682616949081421, 0.3810058534145355, 0.3803466558456421, 0.3875976502895355, 0.38671875, 0.38825681805610657, 0.37749022245407104, 0.37397459149360657, 0.3658447265625, 0.35002440214157104, 0.3436523377895355, 0.32343748211860657, 0.3183837831020355, 0.29509276151657104, 0.2810302674770355, 0.2605957090854645, 0.2471923828125, 0.22104491293430328, 0.20258788764476776, 0.17446288466453552, 0.15666504204273224, 0.13557128608226776, 0.11623534560203552, 0.09294433146715164, 0.06020507588982582, 0.03713378682732582, 0.00747070275247097, -0.00966796837747097, -0.04130859300494194, -0.054931640625, -0.0867919921875, -0.11074218153953552, -0.12875975668430328, -0.160400390625, -0.17863768339157104, -0.20895995199680328, -0.22609862685203552, -0.25883787870407104, -0.2748779356479645, -0.2953124940395355, -0.31904295086860657, -0.33991697430610657, -0.3561767339706421, -0.3766113221645355, -0.3924316167831421, -0.41462400555610657, -0.4207763671875, -0.4381347596645355, -0.4383544921875, -0.4471435546875, -0.44999998807907104, -0.4473632574081421, -0.4451659917831421, -0.4440673589706421, -0.4297851324081421, -0.41704100370407104, -0.41022947430610657, -0.3908935487270355, -0.3759521245956421, -0.35551756620407104, -0.3447509706020355, -0.31640625, -0.3008056581020355, -0.27861326932907104, -0.2515869140625, -0.22829589247703552, -0.20258788764476776, -0.17951659858226776, -0.15688475966453552, -0.12919922173023224, -0.10283202677965164, -0.07668457180261612, -0.04790038987994194, -0.02197265625, 0.0035156249068677425, 0.03142089769244194, 0.05471191182732582, 0.08327636867761612, 0.10744628310203552, 0.14348144829273224, 0.16347655653953552, 0.18522948026657104, 0.21599119901657104, 0.24016112089157104, 0.26806640625, 0.29619139432907104, 0.31904295086860657, 0.3331054747104645, 0.3535400331020355, 0.37529295682907104, 0.4045165777206421, 0.4161621034145355, 0.4392333924770355, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.4429687261581421, 0.4264892339706421, 0.406494140625, 0.388916015625, 0.3702392578125, 0.3403564393520355, 0.32036131620407104, 0.3034423887729645, 0.27421873807907104, 0.25004881620407104, 0.22258299589157104, 0.20280760526657104, 0.17072753608226776, 0.14348144829273224, 0.12260741740465164, 0.09624022990465164, 0.06108398362994194, 0.04152831807732582, 0.013623046688735485, -0.01845703087747097, -0.04086913913488388, -0.07668457180261612, -0.103271484375, -0.13007812201976776, -0.158203125, -0.18303221464157104, -0.20698241889476776, -0.23686522245407104, -0.26301267743110657, -0.2869628965854645, -0.3052001893520355, -0.3284912109375, -0.3480468690395355, -0.371337890625, -0.39484861493110657, -0.40869140625, -0.42890623211860657, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.4425292909145355, -0.4319823980331421, -0.4045165777206421, -0.38935545086860657, -0.3766113221645355, -0.353759765625, -0.3320068418979645, -0.30168455839157104, -0.27685546875, -0.25773924589157104, -0.23115234076976776, -0.20478515326976776, -0.17731933295726776, -0.15864257514476776, -0.13666991889476776, -0.10195311903953552, -0.0802001953125, -0.04921874776482582, -0.01999511756002903, 0.003076171735301614, 0.02329101413488388, 0.05734863132238388, 0.0845947265625, 0.11381835490465164, 0.13710936903953552, 0.15666504204273224, 0.18742674589157104, 0.2098388671875, 0.22983397543430328, 0.25554198026657104, 0.2781738340854645, 0.30366209149360657, 0.32475584745407104, 0.3348632752895355, 0.3660644292831421, 0.3737548589706421, 0.39616698026657104, 0.41352537274360657, 0.4282470643520355, 0.4339599609375, 0.44670408964157104, 0.44868162274360657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.4374755620956421, 0.43110349774360657, 0.4133056402206421, 0.40495604276657104, 0.3869384527206421, 0.37067869305610657, 0.3528808355331421, 0.3370605409145355, 0.3188232481479645, 0.2920165956020355, 0.27839353680610657, 0.252685546875, 0.2373046875, 0.20654296875, 0.19379882514476776, 0.16435547173023224, 0.13645018637180328, 0.11667480319738388, 0.09206542372703552, 0.06525878608226776, 0.04438476264476776, 0.02438964694738388, -0.001977538922801614, -0.03142089769244194, -0.05515136569738388, -0.07470703125, -0.09580077975988388, -0.12348632514476776, -0.13579101860523224, -0.16743163764476776, -0.18105468153953552, -0.20456542074680328, -0.22368162870407104, -0.2449951171875, -0.25642088055610657, -0.27751463651657104, -0.2924560606479645, -0.3155273497104645, -0.3232177793979645, -0.3328857421875, -0.340576171875, -0.34782713651657104, -0.35969236493110657, -0.362548828125, -0.3689208924770355, -0.366943359375, -0.3605712652206421, -0.353759765625, -0.35639646649360657, -0.3374999761581421, -0.3315673768520355, -0.3172851502895355, -0.30607908964157104, -0.29838865995407104, -0.27949216961860657, -0.2612548768520355, -0.24345701932907104, -0.22939452528953552, -0.21137695014476776, -0.19841307401657104, -0.17512206733226776, -0.16259765625, -0.14370116591453552, -0.12590332329273224, -0.10371093451976776, -0.08833007514476776, -0.06416015326976776, -0.04548339545726776, -0.02548827975988388, -0.008129882626235485, 0.010327148251235485, 0.02900390513241291, 0.04416503757238388, 0.06394042819738388, 0.076904296875, 0.094482421875, 0.10986328125, 0.12106933444738388, 0.1417236328125, 0.15183104574680328, 0.15996094048023224, 0.17644041776657104, 0.18720702826976776, 0.18808592855930328, 0.20346678793430328, 0.2098388671875, 0.21796874701976776, 0.22697752714157104, 0.22434081137180328, 0.22983397543430328, 0.23576658964157104, 0.2362060546875, 0.22829589247703552, 0.23247069120407104, 0.22456054389476776, 0.22697752714157104, 0.21555174887180328, 0.2109375, 0.204345703125, 0.20368652045726776, 0.19204100966453552, 0.18083494901657104, 0.17819823324680328, 0.16655273735523224, 0.15424804389476776, 0.14128418266773224, 0.13688965141773224, 0.11667480319738388, 0.10634765028953552, 0.09799804538488388, 0.08217773586511612, 0.07778320461511612, 0.06569824367761612, 0.05537109076976776, 0.0450439453125, 0.03427734225988388, 0.02570800669491291, 0.0142822265625, 0.001977538922801614, -0.01164550706744194, -0.01406249962747097, -0.02438964694738388, -0.03208007663488388, -0.03251953050494194, -0.0472412109375, -0.0538330078125, -0.05295410007238388, -0.06020507588982582, -0.06635741889476776, -0.06745605170726776, -0.07229004055261612, -0.0703125, -0.07163085788488388, -0.0736083984375, -0.07053222507238388, -0.06657714396715164, -0.06745605170726776, -0.0703125, -0.06218261644244194, -0.05888671800494194, -0.05888671800494194, -0.05734863132238388, -0.0494384765625, -0.05031738057732582, -0.04812011495232582, -0.04196777194738388, -0.03779296949505806, -0.02812499925494194, -0.03361816331744194, -0.0230712890625, -0.01713867112994194, -0.012524413876235485, -0.007910155691206455, -0.006591796875, -0.001538085867650807, 0.0028564452659338713, 0.0006591796409338713, 0.006152343470603228, 0.0068115233443677425, 0.006591796875, -0.001538085867650807, 0.005053710658103228, 0.0046142577193677425, 0.0057128905318677425, -0.0008789062267169356, 0.001977538922801614, 0.0002197265566792339, 0.0013183592818677425, 0.0010986328125, -0.0002197265566792339, -0.001538085867650807, 0.0087890625, 0.00439453125, -0.0004394531133584678, 0.0046142577193677425, 0.0032958984375, 0.0, -0.0013183592818677425, 0.002636718563735485, 0.005932617001235485, 0.0008789062267169356, 0.002636718563735485, 0.0008789062267169356, 0.0008789062267169356, 0.0041748047806322575, 0.00439453125, 0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, 0.002197265625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00439453125, -0.0013183592818677425, 0.0013183592818677425, 0.0054931640625, 0.003955077845603228, 0.004833984188735485, 0.002636718563735485, 0.0006591796409338713, 0.005932617001235485, 0.0006591796409338713, -0.0010986328125, 0.004833984188735485, 0.0024169920943677425, 0.004833984188735485, -0.0006591796409338713, 0.0017578124534338713, -0.0013183592818677425, 0.001538085867650807, 0.0054931640625, 0.00747070275247097, 0.0028564452659338713, 0.0024169920943677425, 0.0028564452659338713, 0.0032958984375, 0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, 0.00637206993997097, -0.0013183592818677425, 0.0054931640625, 0.003735351376235485, 0.0, -0.0017578124534338713, 0.001977538922801614, 0.006591796875, -0.0008789062267169356, 0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, 0.0004394531133584678, 0.004833984188735485, 0.004833984188735485, 0.0046142577193677425, 0.0017578124534338713, 0.0054931640625, 0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, 0.0013183592818677425, 0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, 0.0046142577193677425, 0.0013183592818677425, 0.003076171735301614, 0.003955077845603228, 0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.008129882626235485, -0.002636718563735485, -0.001977538922801614, -0.0068115233443677425, -0.00439453125, -0.002636718563735485, -0.007250976283103228, -0.0032958984375, -0.0008789062267169356, -0.00527343712747097, -0.0013183592818677425, -0.0054931640625, -0.0010986328125, -0.00637206993997097, -0.007910155691206455, 0.0004394531133584678, -0.003955077845603228, -0.009448242373764515, -0.009008788503706455, -0.0032958984375, -0.007031249813735485, -0.0035156249068677425, -0.009448242373764515, -0.009228515438735485, -0.012304686941206455, -0.0068115233443677425, -0.01164550706744194, -0.0024169920943677425, -0.005932617001235485, -0.0035156249068677425, -0.006591796875, -0.012524413876235485, -0.007250976283103228, -0.014501952566206455, -0.011206054128706455, -0.006152343470603228, -0.012304686941206455, -0.014501952566206455, -0.01406249962747097, -0.0054931640625, -0.01604003831744194, -0.014721679501235485, -0.01296386681497097, -0.012304686941206455, -0.00856933556497097, -0.010986328125, -0.011206054128706455, -0.012524413876235485, -0.011425781063735485, -0.01406249962747097, -0.009228515438735485, -0.015600585378706455, -0.01691894419491291, -0.00966796837747097, -0.01054687425494194, -0.01889648474752903, -0.01164550706744194, -0.01384277269244194, -0.01911620981991291, -0.01801757700741291, -0.01911620981991291, -0.01296386681497097, -0.017578125, -0.0142822265625, -0.017578125, -0.01669921912252903, -0.01296386681497097, -0.01779785193502903, -0.014501952566206455, -0.01296386681497097, -0.01582031138241291, -0.01582031138241291, -0.02109374850988388, -0.0230712890625, -0.01911620981991291, -0.02065429650247097, -0.01779785193502903, -0.02131347544491291, -0.01933593675494194, -0.02175292931497097, -0.014501952566206455, -0.015600585378706455, -0.01604003831744194, -0.015380859375, -0.014501952566206455, -0.0186767578125, -0.02219238132238388, -0.0164794921875, -0.024169921875, -0.01691894419491291, -0.02021484263241291, -0.02438964694738388, -0.02175292931497097, -0.01933593675494194, -0.01669921912252903, -0.01933593675494194, -0.0186767578125, -0.02021484263241291, -0.02131347544491291, -0.02043456956744194, -0.02570800669491291, -0.02504882775247097, -0.01735839806497097, -0.0208740234375, -0.02460937388241291, -0.02043456956744194, -0.02592773362994194, -0.02438964694738388, -0.02570800669491291, -0.02131347544491291, -0.02175292931497097, -0.02724609337747097, -0.02570800669491291, -0.02219238132238388, -0.02153320237994194, -0.02241210825741291, -0.0208740234375, -0.02724609337747097, -0.02241210825741291, -0.0208740234375, -0.0230712890625, -0.024169921875, -0.02548827975988388, -0.02482910081744194, -0.02988281100988388, -0.02834472618997097, -0.02724609337747097, -0.02175292931497097, -0.02285156212747097, -0.02614746056497097, -0.024169921875, -0.02263183519244194, -0.02614746056497097, -0.0274658203125, -0.02197265625, -0.02329101413488388, -0.03054199181497097, -0.03010253794491291, -0.02285156212747097, -0.02592773362994194, -0.02922363206744194, -0.02570800669491291, -0.028564453125, -0.03120117075741291, -0.03339843824505806, -0.02834472618997097, -0.03229980543255806, -0.02197265625, -0.03098144382238388, -0.03098144382238388, -0.02504882775247097, -0.03076171875, -0.02504882775247097, -0.03208007663488388, -0.02504882775247097, -0.03098144382238388, -0.03032226487994194, -0.02504882775247097, -0.03317870944738388, -0.0230712890625, -0.02988281100988388, -0.02438964694738388, -0.02944335900247097, -0.02988281100988388, -0.02878417819738388, -0.02768554538488388, -0.028564453125, -0.02724609337747097, -0.03251953050494194, -0.0274658203125, -0.02724609337747097, -0.02614746056497097, -0.02900390513241291, -0.03054199181497097, -0.02944335900247097, -0.03032226487994194, -0.03208007663488388, -0.03142089769244194, -0.03361816331744194, -0.0263671875, -0.03251953050494194, -0.0296630859375, -0.0340576171875, -0.02768554538488388, -0.02614746056497097, -0.03559570387005806, -0.02702636644244194, -0.03142089769244194, -0.03383788838982582, -0.03010253794491291, -0.03229980543255806, -0.03076171875, -0.02988281100988388, -0.03537597507238388, -0.02834472618997097, -0.0263671875, -0.02834472618997097, -0.03208007663488388, -0.0296630859375, -0.02702636644244194, -0.03208007663488388, -0.03339843824505806, -0.0340576171875, -0.03273925557732582, -0.03427734225988388, -0.03120117075741291, -0.02900390513241291, -0.03229980543255806, -0.02790527231991291, -0.03317870944738388, -0.03208007663488388, -0.02702636644244194, -0.02812499925494194, -0.0296630859375, -0.02900390513241291, -0.02834472618997097, -0.02900390513241291, -0.03054199181497097, -0.03032226487994194, -0.03427734225988388, -0.03493652120232582, -0.03471679612994194, -0.03361816331744194, -0.03076171875, -0.03032226487994194, -0.03317870944738388, -0.03054199181497097, -0.0296630859375, -0.03098144382238388, -0.0274658203125, -0.02724609337747097, -0.03317870944738388, -0.03251953050494194, -0.02812499925494194, -0.02812499925494194, -0.0274658203125, -0.03229980543255806, -0.032958984375, -0.02702636644244194, -0.03120117075741291, -0.02922363206744194, -0.02878417819738388, -0.02878417819738388, -0.02702636644244194, -0.0340576171875, -0.02922363206744194, -0.0252685546875, -0.0296630859375, -0.028564453125, -0.0252685546875, -0.0296630859375, -0.0230712890625, -0.03317870944738388, -0.02329101413488388, -0.03208007663488388, -0.02504882775247097, -0.02834472618997097, -0.02900390513241291, -0.03273925557732582, -0.03229980543255806, -0.03339843824505806, -0.02768554538488388, -0.02614746056497097, -0.03142089769244194, -0.02482910081744194, -0.03120117075741291, -0.02680663950741291, -0.03120117075741291, -0.02592773362994194, -0.03054199181497097, -0.02395019493997097, -0.028564453125, -0.03273925557732582, -0.02570800669491291, -0.02988281100988388, -0.03317870944738388, -0.02614746056497097, -0.02614746056497097, -0.02988281100988388, -0.03010253794491291, -0.024169921875, -0.03273925557732582, -0.02878417819738388, -0.028564453125, -0.02658691257238388, -0.03054199181497097, -0.02988281100988388, -0.02548827975988388, -0.03098144382238388, -0.02900390513241291, -0.03098144382238388, -0.02482910081744194, -0.02878417819738388, -0.02043456956744194, -0.0252685546875, -0.03054199181497097, -0.02175292931497097, -0.02351074106991291, -0.02900390513241291, -0.02504882775247097, -0.02548827975988388, -0.02614746056497097, -0.02395019493997097, -0.03010253794491291, -0.02351074106991291, -0.02438964694738388, -0.024169921875, -0.02570800669491291, -0.0252685546875, -0.02680663950741291, -0.02175292931497097, -0.02834472618997097, -0.0252685546875, -0.02812499925494194, -0.02658691257238388, -0.02834472618997097, -0.02219238132238388, -0.01889648474752903, -0.02065429650247097, -0.02021484263241291, -0.01735839806497097, -0.02197265625, -0.01999511756002903, -0.02548827975988388, -0.01713867112994194, -0.02680663950741291, -0.0208740234375, -0.0252685546875, -0.02065429650247097, -0.02482910081744194, -0.02131347544491291, -0.01779785193502903, -0.0252685546875, -0.02395019493997097, -0.02285156212747097, -0.02043456956744194, -0.02197265625, -0.02263183519244194, -0.02482910081744194, -0.02351074106991291, -0.02395019493997097, -0.0186767578125, -0.0230712890625, -0.01384277269244194, -0.01999511756002903, -0.01845703087747097, -0.015600585378706455, -0.01801757700741291, -0.01669921912252903, -0.014721679501235485, -0.01691894419491291, -0.0164794921875, -0.01494140550494194, -0.013623046688735485, -0.01494140550494194, -0.01186523400247097, -0.02131347544491291, -0.01933593675494194, -0.01406249962747097, -0.01054687425494194, -0.015600585378706455, -0.01625976525247097, -0.013403319753706455, -0.015380859375, -0.013403319753706455, -0.01823730394244194, -0.01186523400247097, -0.01625976525247097, -0.01054687425494194, -0.01669921912252903, -0.01274413987994194, -0.01691894419491291, -0.014721679501235485, -0.01911620981991291, -0.012524413876235485, -0.014721679501235485, -0.01076660118997097, -0.01054687425494194, -0.0142822265625, -0.009228515438735485, -0.008349609561264515, -0.01735839806497097, -0.01296386681497097, -0.01582031138241291, -0.01186523400247097, -0.0087890625, -0.014501952566206455, -0.0098876953125, -0.0076904296875, -0.0054931640625, -0.009448242373764515, -0.01076660118997097, -0.0068115233443677425, -0.009448242373764515, -0.011206054128706455, -0.01186523400247097, -0.01494140550494194, -0.00527343712747097, -0.007910155691206455, -0.003955077845603228, -0.006152343470603228, -0.01274413987994194, -0.0032958984375, -0.0076904296875, -0.0057128905318677425, -0.006152343470603228, -0.007250976283103228, -0.007031249813735485, -0.0035156249068677425, -0.0087890625, -0.0068115233443677425, -0.0054931640625, -0.010327148251235485, -0.0010986328125, -0.003735351376235485, -0.005932617001235485, -0.0068115233443677425, -0.0002197265566792339, -0.010107421316206455, -0.003076171735301614, -0.007031249813735485, 0.0006591796409338713, -0.0017578124534338713, -0.00439453125, 0.0017578124534338713, -0.0057128905318677425, 0.0008789062267169356, -0.0008789062267169356, 0.0008789062267169356, -0.0010986328125, 0.0013183592818677425, -0.00637206993997097, -0.0008789062267169356, -0.0010986328125, 0.0, -0.005053710658103228, 0.0002197265566792339, -0.0028564452659338713, -0.004833984188735485, 0.002636718563735485, -0.001977538922801614, -0.0046142577193677425, 0.0028564452659338713, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, 0.0010986328125, 0.0017578124534338713, 0.00527343712747097, 0.0057128905318677425, 0.0068115233443677425, 0.0054931640625, 0.0046142577193677425, 0.00439453125, 0.0032958984375, 0.00747070275247097, 0.007910155691206455, 0.001977538922801614, 0.0032958984375, -0.0010986328125, 0.006591796875, 0.0032958984375, 0.0008789062267169356, 0.0087890625, 0.00966796837747097, 0.007910155691206455, 0.0076904296875, 0.008349609561264515, 0.0013183592818677425, 0.006152343470603228, 0.0017578124534338713, 0.0068115233443677425, 0.0087890625, 0.00527343712747097, 0.004833984188735485, 0.002636718563735485, 0.008129882626235485, 0.005053710658103228, 0.0004394531133584678, 0.0035156249068677425, 0.008349609561264515, 0.0006591796409338713, 0.0076904296875, 0.00747070275247097, 0.002636718563735485, 0.006152343470603228, 0.00439453125, 0.008349609561264515, 0.0076904296875, 0.00856933556497097, 0.0076904296875, 0.001538085867650807, 0.005053710658103228, 0.00966796837747097, 0.0046142577193677425, 0.009448242373764515, 0.0035156249068677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0010986328125, 0.0054931640625, 0.0046142577193677425, 0.00439453125, 0.005053710658103228, 0.002636718563735485, 0.004833984188735485, -0.002197265625, 0.0002197265566792339, 0.005053710658103228, 0.00637206993997097, -0.0002197265566792339, 0.0041748047806322575, 0.0010986328125, 0.0054931640625, 0.0046142577193677425, -0.0010986328125, 0.005932617001235485, -0.001538085867650807, -0.002636718563735485, 0.0032958984375, 0.004833984188735485, -0.0013183592818677425, 0.0035156249068677425, 0.0054931640625, 0.0008789062267169356, -0.0008789062267169356, -0.0041748047806322575, 0.005053710658103228, -0.002197265625, 0.0004394531133584678, 0.004833984188735485, -0.001538085867650807, 0.0041748047806322575, -0.0017578124534338713, 0.005053710658103228, 0.00637206993997097, 0.0054931640625, 0.003076171735301614, -0.0017578124534338713, 0.0006591796409338713, 0.00439453125, 0.0004394531133584678, 0.0057128905318677425, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, 0.0006591796409338713, -0.003955077845603228, 0.002197265625, 0.002636718563735485, 0.001538085867650807, -0.0004394531133584678, -0.0057128905318677425, 0.001538085867650807, -0.0010986328125, -0.007910155691206455, 0.001977538922801614, -0.0076904296875, -0.0057128905318677425, 0.0006591796409338713, -0.0028564452659338713, -0.00527343712747097, -0.008129882626235485, -0.002636718563735485, -0.0087890625, -0.01076660118997097, -0.008349609561264515, -0.007031249813735485, -0.009008788503706455, -0.011206054128706455, -0.009008788503706455, -0.011206054128706455, -0.015380859375, -0.009008788503706455, -0.0120849609375, -0.0087890625, -0.006152343470603228, -0.0142822265625, -0.015380859375, -0.01076660118997097, -0.01955566368997097, -0.009008788503706455, -0.015380859375, -0.01516113243997097, -0.01735839806497097, -0.01274413987994194, -0.012524413876235485, -0.014501952566206455, -0.01801757700741291, -0.015600585378706455, -0.014501952566206455, -0.01494140550494194, -0.02241210825741291, -0.02197265625, -0.02131347544491291, -0.01845703087747097, -0.02351074106991291, -0.02131347544491291, -0.02548827975988388, -0.02460937388241291, -0.0230712890625, -0.024169921875, -0.02241210825741291, -0.02351074106991291, -0.02241210825741291, -0.02482910081744194, -0.02460937388241291, -0.02548827975988388, -0.02043456956744194, -0.02878417819738388, -0.02548827975988388, -0.03142089769244194, -0.02944335900247097, -0.02197265625, -0.02548827975988388, -0.02834472618997097, -0.02504882775247097, -0.02834472618997097, -0.03339843824505806, -0.03383788838982582, -0.0252685546875, -0.02614746056497097, -0.0263671875, -0.02812499925494194, -0.03229980543255806, -0.03383788838982582, -0.03449707105755806, -0.03559570387005806, -0.03273925557732582, -0.03229980543255806, -0.03164062276482582, -0.03076171875, -0.0384521484375, -0.03339843824505806, -0.03339843824505806, -0.03669433668255806, -0.03164062276482582, -0.03471679612994194, -0.03933105245232582, -0.04020996019244194, -0.04152831807732582, -0.03911132737994194, -0.041748046875, -0.0362548828125, -0.03977050632238388, -0.03559570387005806, -0.03779296949505806, -0.03911132737994194, -0.03471679612994194, -0.03801269456744194, -0.04262695088982582, -0.04372558370232582, -0.03955078125, -0.04240722581744194, -0.0384521484375, -0.046142578125, -0.04350585862994194, -0.046142578125, -0.04372558370232582, -0.04218749701976776, -0.04020996019244194, -0.04921874776482582, -0.04548339545726776, -0.04240722581744194, -0.04658202826976776, -0.04482421651482582, -0.04350585862994194, -0.046142578125, -0.04526367038488388, -0.04855956882238388, -0.04240722581744194, -0.04746093600988388, -0.04702148213982582, -0.04526367038488388, -0.04482421651482582, -0.05141601338982582, -0.05207519233226776, -0.05229492112994194, -0.04570312425494194, -0.05031738057732582, -0.0516357421875, -0.04833984375, -0.054931640625, -0.04570312425494194, -0.05229492112994194, -0.05097655951976776, -0.05009765550494194, -0.05295410007238388, -0.05075683444738388, -0.0494384765625, -0.05712890625, -0.05581054463982582, -0.05361327901482582, -0.05317382514476776, -0.05405273288488388, -0.05646972358226776, -0.05756835639476776, -0.05559081956744194, -0.05537109076976776, -0.052734375, -0.05009765550494194, -0.0560302734375, -0.05317382514476776, -0.05339355394244194, -0.05646972358226776, -0.054931640625, -0.05515136569738388, -0.05624999850988388, -0.05690917745232582, -0.05427245795726776, -0.05515136569738388, -0.05559081956744194, -0.0582275390625, -0.05515136569738388, -0.06218261644244194, -0.05998535081744194, -0.05449218675494194, -0.05998535081744194, -0.05734863132238388, -0.05954589694738388, -0.05844726413488388, -0.05537109076976776, -0.05910644307732582, -0.06174316257238388, -0.05668945237994194, -0.05668945237994194, -0.06350097805261612, -0.05888671800494194, -0.05668945237994194, -0.06394042819738388, -0.06394042819738388, -0.06240234151482582, -0.0626220703125, -0.06174316257238388, -0.05339355394244194, -0.06108398362994194, -0.06130370870232582, -0.05756835639476776, -0.05778808519244194, -0.05734863132238388, -0.06437987834215164, -0.06547851115465164, -0.05778808519244194, -0.06020507588982582, -0.06108398362994194, -0.05910644307732582, -0.0604248046875, -0.06635741889476776, -0.06306152045726776, -0.06503906100988388, -0.059326171875, -0.06020507588982582, -0.06525878608226776, -0.06306152045726776, -0.06086425483226776, -0.06086425483226776, -0.06240234151482582, -0.05998535081744194, -0.06547851115465164, -0.05998535081744194, -0.06855468451976776, -0.0582275390625, -0.06503906100988388, -0.06416015326976776, -0.06306152045726776, -0.05888671800494194, -0.05866698920726776, -0.06306152045726776, -0.05734863132238388, -0.0604248046875, -0.06240234151482582, -0.06569824367761612, -0.06284179538488388, -0.06394042819738388, -0.06086425483226776, -0.05800781026482582, -0.06064452975988388, -0.06547851115465164, -0.0615234375, -0.06020507588982582, -0.05888671800494194, -0.06416015326976776, -0.05954589694738388, -0.06218261644244194, -0.05888671800494194, -0.06613769382238388, -0.06218261644244194, -0.06723632663488388, -0.06503906100988388, -0.05976562201976776, -0.06218261644244194, -0.05998535081744194, -0.06130370870232582, -0.05646972358226776, -0.06020507588982582, -0.06437987834215164, -0.0615234375, -0.06064452975988388, -0.06789550930261612, -0.059326171875, -0.06437987834215164, -0.06459961086511612, -0.06394042819738388, -0.06657714396715164, -0.06328124552965164, -0.06086425483226776, -0.05910644307732582, -0.06064452975988388, -0.06174316257238388, -0.06064452975988388, -0.06218261644244194, -0.05998535081744194, -0.06284179538488388, -0.06020507588982582, -0.06218261644244194, -0.0626220703125, -0.0582275390625, -0.06394042819738388, -0.05910644307732582, -0.05888671800494194, -0.06284179538488388, -0.0626220703125, -0.06020507588982582, -0.05734863132238388, -0.0615234375, -0.06328124552965164, -0.06218261644244194, -0.06196288764476776, -0.06284179538488388, -0.05866698920726776, -0.0560302734375, -0.063720703125, -0.05537109076976776, -0.05734863132238388, -0.05668945237994194, -0.05581054463982582, -0.06064452975988388, -0.05888671800494194, -0.05734863132238388, -0.05734863132238388, -0.05954589694738388, -0.05559081956744194, -0.05844726413488388, -0.05207519233226776, -0.05471191182732582, -0.06086425483226776, -0.05559081956744194, -0.05361327901482582, -0.05778808519244194, -0.05317382514476776, -0.05251464620232582, -0.05471191182732582, -0.05515136569738388, -0.05734863132238388, -0.05866698920726776, -0.05339355394244194, -0.05207519233226776, -0.0516357421875, -0.05427245795726776, -0.05756835639476776, -0.04965820163488388, -0.05624999850988388, -0.050537109375, -0.05075683444738388, -0.05361327901482582, -0.05141601338982582, -0.04855956882238388, -0.04877929389476776, -0.050537109375, -0.0516357421875, -0.04855956882238388, -0.04746093600988388, -0.05009765550494194, -0.05075683444738388, -0.04833984375, -0.05097655951976776, -0.04855956882238388, -0.05361327901482582, -0.04855956882238388, -0.05229492112994194, -0.05031738057732582, -0.04416503757238388, -0.05009765550494194, -0.04899902269244194, -0.04899902269244194, -0.04130859300494194, -0.04240722581744194, -0.04833984375, -0.0439453125, -0.04086913913488388, -0.04218749701976776, -0.04768066108226776, -0.04812011495232582, -0.04768066108226776, -0.04570312425494194, -0.04548339545726776, -0.03911132737994194, -0.03977050632238388, -0.0472412109375, -0.04218749701976776, -0.04240722581744194, -0.03713378682732582, -0.04328612983226776, -0.04196777194738388, -0.04306640475988388, -0.03889160230755806, -0.03911132737994194, -0.04350585862994194, -0.03999023512005806, -0.03801269456744194, -0.03669433668255806, -0.03757324069738388, -0.037353515625, -0.03955078125, -0.03713378682732582, -0.04042968526482582, -0.0318603515625, -0.03669433668255806, -0.037353515625, -0.03383788838982582, -0.03515625, -0.03691406175494194, -0.03032226487994194, -0.03911132737994194, -0.02944335900247097, -0.03229980543255806, -0.03317870944738388, -0.03669433668255806, -0.02988281100988388, -0.0318603515625, -0.02878417819738388, -0.02768554538488388, -0.03493652120232582, -0.032958984375, -0.03142089769244194, -0.02680663950741291, -0.02724609337747097, -0.02548827975988388, -0.03251953050494194, -0.0252685546875, -0.03120117075741291, -0.02834472618997097, -0.02329101413488388, -0.02175292931497097, -0.03054199181497097, -0.02724609337747097, -0.0252685546875, -0.02395019493997097, -0.02790527231991291, -0.02351074106991291, -0.02263183519244194, -0.02175292931497097, -0.02153320237994194, -0.0252685546875, -0.02373046800494194, -0.01889648474752903, -0.01691894419491291, -0.01823730394244194, -0.024169921875, -0.02570800669491291, -0.01713867112994194, -0.02021484263241291, -0.02109374850988388, -0.01625976525247097, -0.02285156212747097, -0.01889648474752903, -0.02021484263241291, -0.02241210825741291, -0.01845703087747097, -0.02263183519244194, -0.012524413876235485, -0.01076660118997097, -0.01296386681497097, -0.010327148251235485, -0.01604003831744194, -0.011425781063735485, -0.011206054128706455, -0.013623046688735485, -0.01318359375, -0.010107421316206455, -0.012524413876235485, -0.00637206993997097, -0.011206054128706455, -0.005932617001235485, -0.01494140550494194, -0.005932617001235485, -0.01186523400247097, -0.00637206993997097, -0.0098876953125, -0.0035156249068677425, -0.0057128905318677425, -0.010327148251235485, -0.00747070275247097, -0.003076171735301614, -0.0098876953125, -0.003735351376235485, -0.0017578124534338713, -0.0068115233443677425, -0.002197265625, -0.0076904296875, 0.0013183592818677425, -0.0032958984375, 0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, 0.0032958984375, 0.001538085867650807, -0.001977538922801614, 0.0046142577193677425, -0.0024169920943677425, -0.0032958984375, -0.003735351376235485, 0.005932617001235485, 0.0013183592818677425, 0.007910155691206455, 0.0068115233443677425, 0.00439453125, 0.0087890625, -0.0004394531133584678, 0.003955077845603228, 0.007910155691206455, 0.00527343712747097, 0.008349609561264515, 0.0068115233443677425, 0.01076660118997097, 0.00747070275247097, 0.010327148251235485, 0.0087890625, 0.008349609561264515, 0.009228515438735485, 0.006591796875, 0.010327148251235485, 0.003735351376235485, 0.01296386681497097, 0.00747070275247097, 0.005932617001235485, 0.00637206993997097, 0.006591796875, 0.00966796837747097, 0.008349609561264515, 0.009228515438735485, 0.006152343470603228, 0.008129882626235485, 0.0046142577193677425, 0.01274413987994194, 0.01054687425494194, 0.0098876953125, 0.010327148251235485, 0.010107421316206455, 0.01274413987994194, 0.0076904296875, 0.010986328125, 0.01274413987994194, 0.0046142577193677425, 0.010327148251235485, 0.009228515438735485, 0.010986328125, 0.0057128905318677425, 0.013623046688735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0028564452659338713, -0.0006591796409338713, 0.006152343470603228, 0.003076171735301614, 0.0035156249068677425, 0.0041748047806322575, 0.0032958984375, -0.0004394531133584678, 0.001977538922801614, 0.0008789062267169356, 0.0013183592818677425, -0.002636718563735485, 0.003955077845603228, 0.0041748047806322575, 0.0006591796409338713, 0.0057128905318677425, 0.002636718563735485, 0.003735351376235485, 0.002197265625, 0.0057128905318677425, -0.0002197265566792339, 0.0054931640625, 0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, 0.0068115233443677425, 0.001977538922801614, 0.0054931640625, 0.0041748047806322575, 0.006591796875, 0.0008789062267169356, 0.0017578124534338713, 0.003735351376235485, 0.0035156249068677425, -0.0008789062267169356, -0.002197265625, 0.0008789062267169356, 0.00439453125, 0.0008789062267169356, 0.001538085867650807, -0.0017578124534338713, 0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, 0.001977538922801614, 0.0024169920943677425, 0.0046142577193677425, 0.004833984188735485, 0.0017578124534338713, -0.003076171735301614, -0.0057128905318677425, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, 0.0010986328125, -0.005053710658103228, -0.0054931640625, -0.00747070275247097, -0.0120849609375, -0.010107421316206455, -0.01054687425494194, -0.011425781063735485, -0.008129882626235485, -0.010986328125, -0.011425781063735485, -0.014501952566206455, -0.0142822265625, -0.00966796837747097, -0.013403319753706455, -0.01582031138241291, -0.01406249962747097, -0.01186523400247097, -0.02153320237994194, -0.01999511756002903, -0.01625976525247097, -0.01406249962747097, -0.01494140550494194, -0.02021484263241291, -0.01582031138241291, -0.02043456956744194, -0.01889648474752903, -0.02263183519244194, -0.02197265625, -0.02153320237994194, -0.02438964694738388, -0.02460937388241291, -0.02988281100988388, -0.028564453125, -0.02900390513241291, -0.02702636644244194, -0.03098144382238388, -0.02878417819738388, -0.03098144382238388, -0.03251953050494194, -0.0340576171875, -0.03383788838982582, -0.02812499925494194, -0.02768554538488388, -0.03471679612994194, -0.028564453125, -0.03164062276482582, -0.02988281100988388, -0.03229980543255806, -0.03801269456744194, -0.03383788838982582, -0.03779296949505806, -0.03757324069738388, -0.03757324069738388, -0.03537597507238388, -0.04152831807732582, -0.037353515625, -0.03691406175494194, -0.04130859300494194, -0.04130859300494194, -0.0362548828125, -0.03977050632238388, -0.04570312425494194, -0.04548339545726776, -0.04592284932732582, -0.0406494140625, -0.04548339545726776, -0.0516357421875, -0.0439453125, -0.04592284932732582, -0.05207519233226776, -0.0516357421875, -0.04680175706744194, -0.05075683444738388, -0.054931640625, -0.04855956882238388, -0.05317382514476776, -0.04702148213982582, -0.05405273288488388, -0.05449218675494194, -0.05844726413488388, -0.05800781026482582, -0.05756835639476776, -0.0560302734375, -0.05427245795726776, -0.0538330078125, -0.05515136569738388, -0.05734863132238388, -0.05559081956744194, -0.05559081956744194, -0.05734863132238388, -0.06306152045726776, -0.06086425483226776, -0.06174316257238388, -0.05998535081744194, -0.06130370870232582, -0.06459961086511612, -0.06064452975988388, -0.0582275390625, -0.06657714396715164, -0.06569824367761612, -0.06635741889476776, -0.06437987834215164, -0.06416015326976776, -0.06547851115465164, -0.06416015326976776, -0.06218261644244194, -0.0670166015625, -0.06591796875, -0.06987304240465164, -0.07053222507238388, -0.06569824367761612, -0.07229004055261612, -0.06767577677965164, -0.06723632663488388, -0.07097167521715164, -0.07053222507238388, -0.0703125, -0.068115234375, -0.06767577677965164, -0.07382812350988388, -0.07053222507238388, -0.07163085788488388, -0.07470703125, -0.0714111328125, -0.07404784858226776, -0.07624511420726776, -0.07514648139476776, -0.07492675632238388, -0.07426757365465164, -0.07338867336511612, -0.07888183742761612, -0.07404784858226776, -0.07866210490465164, -0.07668457180261612, -0.07294921576976776, -0.07536620646715164, -0.0736083984375, -0.07866210490465164, -0.07866210490465164, -0.07602538913488388, -0.081298828125, -0.07624511420726776, -0.07976073771715164, -0.08151855319738388, -0.07712402194738388, -0.07932128757238388, -0.08063964545726776, -0.0758056640625, -0.076904296875, -0.08173827826976776, -0.08085937052965164, -0.07954101264476776, -0.08195800334215164, -0.08393554389476776, -0.08041992038488388, -0.08327636867761612, -0.085693359375, -0.0845947265625, -0.08195800334215164, -0.08503417670726776, -0.08393554389476776, -0.0823974609375, -0.08635253459215164, -0.08591308444738388, -0.08833007514476776, -0.08920898288488388, -0.08723144233226776, -0.08964843302965164, -0.08701171725988388, -0.08723144233226776, -0.090087890625, -0.08415526896715164, -0.09250488132238388, -0.08613280951976776, -0.085693359375, -0.08415526896715164, -0.09030761569738388, -0.08942870795726776, -0.08613280951976776, -0.09382323920726776, -0.08854980021715164, -0.08767089247703552, -0.08613280951976776, -0.08745116740465164, -0.09074706584215164, -0.08481445163488388, -0.0911865234375, -0.08767089247703552, -0.08437499403953552, -0.08964843302965164, -0.09272460639476776, -0.08723144233226776, -0.08811035007238388, -0.0911865234375, -0.08833007514476776, -0.08920898288488388, -0.0889892578125, -0.09294433146715164, -0.09382323920726776, -0.09140624850988388, -0.09645995497703552, -0.09272460639476776, -0.09162597358226776, -0.0966796875, -0.09184569865465164, -0.0889892578125, -0.08767089247703552, -0.09580077975988388, -0.09382323920726776, -0.08986815810203552, -0.09206542372703552, -0.090087890625, -0.09052734076976776, -0.09492187201976776, -0.09184569865465164, -0.09162597358226776, -0.0889892578125, -0.087890625, -0.09404296427965164, -0.09316405653953552, -0.09470214694738388, -0.09272460639476776, -0.08942870795726776, -0.09733886271715164, -0.09140624850988388, -0.09580077975988388, -0.08811035007238388, -0.09228515625, -0.09228515625, -0.09052734076976776, -0.09360351413488388, -0.08811035007238388, -0.09184569865465164, -0.09470214694738388, -0.09711913764476776, -0.090087890625, -0.09382323920726776, -0.09162597358226776, -0.09074706584215164, -0.09250488132238388, -0.09250488132238388, -0.09206542372703552, -0.08811035007238388, -0.09272460639476776, -0.0933837890625, -0.08701171725988388, -0.09536132216453552, -0.09404296427965164, -0.09184569865465164, -0.09272460639476776, -0.08811035007238388, -0.09470214694738388, -0.09030761569738388, -0.09030761569738388, -0.09228515625, -0.08657225966453552, -0.09184569865465164, -0.08635253459215164, -0.09096679091453552, -0.09184569865465164, -0.09250488132238388, -0.09250488132238388, -0.09316405653953552, -0.08613280951976776, -0.09052734076976776, -0.0867919921875, -0.08942870795726776, -0.08415526896715164, -0.08547362685203552, -0.0889892578125, -0.08701171725988388, -0.08920898288488388, -0.0823974609375, -0.08547362685203552, -0.0889892578125, -0.08173827826976776, -0.0867919921875, -0.08591308444738388, -0.08503417670726776, -0.08547362685203552, -0.08964843302965164, -0.0823974609375, -0.08327636867761612, -0.08415526896715164, -0.08525390177965164, -0.08283691108226776, -0.08437499403953552, -0.08591308444738388, -0.087890625, -0.08173827826976776, -0.08415526896715164, -0.0791015625, -0.07866210490465164, -0.08041992038488388, -0.0791015625, -0.0802001953125, -0.08437499403953552, -0.07624511420726776, -0.08151855319738388, -0.08261718600988388, -0.07954101264476776, -0.07734374701976776, -0.07756347209215164, -0.07756347209215164, -0.08305663615465164, -0.07382812350988388, -0.076904296875, -0.08349609375, -0.07536620646715164, -0.0780029296875, -0.07976073771715164, -0.07448730617761612, -0.07624511420726776, -0.0780029296875, -0.07734374701976776, -0.076904296875, -0.07734374701976776, -0.07734374701976776, -0.07382812350988388, -0.0780029296875, -0.0692138671875, -0.07207030802965164, -0.07470703125, -0.076904296875, -0.06877440959215164, -0.06877440959215164, -0.06943359225988388, -0.07119140774011612, -0.07470703125, -0.07075195014476776, -0.07009277492761612, -0.06723632663488388, -0.06547851115465164, -0.06987304240465164, -0.06657714396715164, -0.06767577677965164, -0.06723632663488388, -0.06767577677965164, -0.06943359225988388, -0.068115234375, -0.06679687649011612, -0.06437987834215164, -0.06306152045726776, -0.06130370870232582, -0.06569824367761612, -0.06635741889476776, -0.06679687649011612, -0.0604248046875, -0.05976562201976776, -0.06020507588982582, -0.05954589694738388, -0.06437987834215164, -0.05712890625, -0.05998535081744194, -0.05668945237994194, -0.06218261644244194, -0.06196288764476776, -0.06218261644244194, -0.052734375, -0.05581054463982582, -0.05581054463982582, -0.05515136569738388, -0.05361327901482582, -0.05339355394244194, -0.05646972358226776, -0.04987792670726776, -0.05844726413488388, -0.05449218675494194, -0.04812011495232582, -0.050537109375, -0.05229492112994194, -0.050537109375, -0.0472412109375, -0.04482421651482582, -0.0516357421875, -0.04921874776482582, -0.04372558370232582, -0.04416503757238388, -0.04350585862994194, -0.04240722581744194, -0.04262695088982582, -0.041748046875, -0.04987792670726776, -0.04592284932732582, -0.04372558370232582, -0.03779296949505806, -0.0406494140625, -0.037353515625, -0.0450439453125, -0.03955078125, -0.03823241963982582, -0.04020996019244194, -0.04130859300494194, -0.03361816331744194, -0.0406494140625, -0.03713378682732582, -0.03537597507238388, -0.0296630859375, -0.03427734225988388, -0.03515625, -0.03361816331744194, -0.03251953050494194, -0.0274658203125, -0.03427734225988388, -0.03581542894244194, -0.02680663950741291, -0.0296630859375, -0.028564453125, -0.03229980543255806, -0.03054199181497097, -0.02614746056497097, -0.02944335900247097, -0.02724609337747097, -0.0263671875, -0.02680663950741291, -0.02790527231991291, -0.02263183519244194, -0.02658691257238388, -0.02285156212747097, -0.02702636644244194, -0.01779785193502903, -0.01801757700741291, -0.02285156212747097, -0.017578125, -0.015380859375, -0.0164794921875, -0.01801757700741291, -0.02021484263241291, -0.0142822265625, -0.0164794921875, -0.01625976525247097, -0.01779785193502903, -0.01625976525247097, -0.01801757700741291, -0.01186523400247097, -0.00637206993997097, -0.00856933556497097, -0.0142822265625, -0.006591796875, -0.0076904296875, -0.00637206993997097, -0.009008788503706455, -0.00747070275247097, -0.01164550706744194, -0.0057128905318677425, -0.0004394531133584678, -0.0087890625, 0.0013183592818677425, 0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, 0.0008789062267169356, -0.0024169920943677425, 0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, 0.008349609561264515, 0.007031249813735485, 0.001538085867650807, 0.0087890625, 0.003076171735301614, 0.0032958984375, 0.0068115233443677425, 0.005932617001235485, 0.01164550706744194, 0.01164550706744194, 0.01274413987994194, 0.0068115233443677425, 0.01076660118997097, 0.009448242373764515, 0.01274413987994194, 0.011425781063735485, 0.0098876953125, 0.00856933556497097, 0.01384277269244194, 0.010327148251235485, 0.013623046688735485, 0.015600585378706455, 0.014721679501235485, 0.008129882626235485, 0.0120849609375, 0.00856933556497097, 0.009448242373764515, 0.0142822265625, 0.007910155691206455, 0.009008788503706455, 0.007910155691206455, 0.01186523400247097, 0.008349609561264515, 0.0142822265625, 0.015600585378706455, 0.007250976283103228, 0.01164550706744194, 0.01691894419491291, 0.01406249962747097, 0.010107421316206455, 0.0087890625, 0.006152343470603228, 0.01076660118997097, 0.009008788503706455, 0.010107421316206455, 0.01669921912252903 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, 0.0028564452659338713, -0.0006591796409338713, -0.0013183592818677425, 0.0035156249068677425, -0.0006591796409338713, 0.0004394531133584678, 0.002197265625, 0.002197265625, 0.007031249813735485, 0.0035156249068677425, -0.0017578124534338713, 0.003955077845603228, 0.001977538922801614, 0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, 0.003076171735301614, -0.001977538922801614, -0.0004394531133584678, 0.004833984188735485, 0.005932617001235485, 0.0041748047806322575, 0.0046142577193677425, 0.001538085867650807, 0.002636718563735485, -0.0008789062267169356, 0.0006591796409338713, 0.0006591796409338713, 0.003076171735301614, -0.003735351376235485, -0.001977538922801614, -0.004833984188735485, 0.0028564452659338713, 0.0024169920943677425, -0.0002197265566792339, 0.006152343470603228, -0.0017578124534338713, 0.0057128905318677425, 0.0017578124534338713, 0.0013183592818677425, 0.0004394531133584678, -0.0006591796409338713, 0.0004394531133584678, 0.00527343712747097, -0.0008789062267169356, 0.001977538922801614, 0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.00747070275247097, -0.007031249813735485, -0.0057128905318677425, -0.0035156249068677425, -0.00637206993997097, -0.0032958984375, -0.004833984188735485, -0.012524413876235485, -0.0142822265625, -0.009228515438735485, -0.011206054128706455, -0.010327148251235485, -0.014721679501235485, -0.015380859375, -0.015380859375, -0.01186523400247097, -0.01669921912252903, -0.01669921912252903, -0.013403319753706455, -0.015600585378706455, -0.02065429650247097, -0.02329101413488388, -0.01911620981991291, -0.02197265625, -0.01955566368997097, -0.02790527231991291, -0.02241210825741291, -0.02482910081744194, -0.02768554538488388, -0.02614746056497097, -0.02570800669491291, -0.03098144382238388, -0.02768554538488388, -0.0340576171875, -0.02702636644244194, -0.03537597507238388, -0.03361816331744194, -0.03647460788488388, -0.03229980543255806, -0.03867187350988388, -0.03339843824505806, -0.03911132737994194, -0.03669433668255806, -0.03515625, -0.04240722581744194, -0.04262695088982582, -0.03911132737994194, -0.04416503757238388, -0.0384521484375, -0.04482421651482582, -0.04086913913488388, -0.0450439453125, -0.046142578125, -0.04899902269244194, -0.04790038987994194, -0.05185546725988388, -0.04592284932732582, -0.0472412109375, -0.05537109076976776, -0.052734375, -0.05800781026482582, -0.05866698920726776, -0.05229492112994194, -0.0560302734375, -0.0582275390625, -0.05712890625, -0.05471191182732582, -0.06174316257238388, -0.06350097805261612, -0.06130370870232582, -0.059326171875, -0.06569824367761612, -0.0626220703125, -0.06284179538488388, -0.06525878608226776, -0.06591796875, -0.06218261644244194, -0.06284179538488388, -0.06328124552965164, -0.063720703125, -0.068115234375, -0.06833495944738388, -0.072509765625, -0.07338867336511612, -0.07185058295726776, -0.07119140774011612, -0.07229004055261612, -0.07382812350988388, -0.07602538913488388, -0.07888183742761612, -0.07998047024011612, -0.07536620646715164, -0.07492675632238388, -0.07185058295726776, -0.07624511420726776, -0.07844237983226776, -0.07866210490465164, -0.07558593899011612, -0.07558593899011612, -0.07822265475988388, -0.08415526896715164, -0.081298828125, -0.08547362685203552, -0.07756347209215164, -0.07976073771715164, -0.08151855319738388, -0.087890625, -0.08085937052965164, -0.08173827826976776, -0.08854980021715164, -0.09052734076976776, -0.08613280951976776, -0.0889892578125, -0.085693359375, -0.09184569865465164, -0.08811035007238388, -0.08920898288488388, -0.08833007514476776, -0.09470214694738388, -0.09602050483226776, -0.09184569865465164, -0.0966796875, -0.09316405653953552, -0.09030761569738388, -0.09865722060203552, -0.098876953125, -0.09580077975988388, -0.0977783203125, -0.10195311903953552, -0.09931640326976776, -0.10041503608226776, -0.10041503608226776, -0.09514159709215164, -0.09514159709215164, -0.09931640326976776, -0.0966796875, -0.0999755859375, -0.09536132216453552, -0.10371093451976776, -0.10612792521715164, -0.09865722060203552, -0.10151366889476776, -0.09821777045726776, -0.09953612834215164, -0.10195311903953552, -0.10942382365465164, -0.10371093451976776, -0.10480956733226776, -0.10458984225988388, -0.10239257663488388, -0.10744628310203552, -0.112060546875, -0.11228027194738388, -0.10458984225988388, -0.11337890475988388, -0.10854491591453552, -0.10744628310203552, -0.10854491591453552, -0.10700683295726776, -0.10415038466453552, -0.10722655802965164, -0.11008300632238388, -0.10788574069738388, -0.10832519084215164, -0.10854491591453552, -0.11271972209215164, -0.11447753757238388, -0.11052245646715164, -0.10898437350988388, -0.10898437350988388, -0.11513671278953552, -0.11557617038488388, -0.11579589545726776, -0.10986328125, -0.11733397841453552, -0.11777343600988388, -0.11887206882238388, -0.11623534560203552, -0.1109619140625, -0.11821288615465164, -0.11184081435203552, -0.1131591796875, -0.11557617038488388, -0.11579589545726776, -0.11887206882238388, -0.11777343600988388, -0.1142578125, -0.12106933444738388, -0.1197509765625, -0.11447753757238388, -0.11909179389476776, -0.11865234375, -0.11557617038488388, -0.1142578125, -0.12326660007238388, -0.11337890475988388, -0.11843261122703552, -0.11469726264476776, -0.11403807997703552, -0.125244140625, -0.12150878459215164, -0.11381835490465164, -0.11491698771715164, -0.11579589545726776, -0.11447753757238388, -0.12128905951976776, -0.11601562052965164, -0.12326660007238388, -0.11667480319738388, -0.11887206882238388, -0.11469726264476776, -0.12106933444738388, -0.1197509765625, -0.11403807997703552, -0.11821288615465164, -0.11865234375, -0.11623534560203552, -0.1219482421875, -0.12502440810203552, -0.123046875, -0.12106933444738388, -0.12041015177965164, -0.11931151896715164, -0.11821288615465164, -0.12260741740465164, -0.12546385824680328, -0.12436523288488388, -0.11689452826976776, -0.12041015177965164, -0.11667480319738388, -0.11843261122703552, -0.12326660007238388, -0.11623534560203552, -0.12019042670726776, -0.11887206882238388, -0.11843261122703552, -0.12106933444738388, -0.1219482421875, -0.1219482421875, -0.11821288615465164, -0.12150878459215164, -0.11711425334215164, -0.12370605021715164, -0.11931151896715164, -0.11997070163488388, -0.12546385824680328, -0.11931151896715164, -0.12546385824680328, -0.116455078125, -0.11909179389476776, -0.12106933444738388, -0.11359862983226776, -0.11447753757238388, -0.116455078125, -0.11733397841453552, -0.11931151896715164, -0.11711425334215164, -0.11843261122703552, -0.11887206882238388, -0.11931151896715164, -0.11843261122703552, -0.11667480319738388, -0.11513671278953552, -0.11777343600988388, -0.11843261122703552, -0.11579589545726776, -0.12041015177965164, -0.11953124403953552, -0.11184081435203552, -0.11953124403953552, -0.11249999701976776, -0.11030273139476776, -0.116455078125, -0.11733397841453552, -0.11557617038488388, -0.11228027194738388, -0.11162108927965164, -0.1142578125, -0.11052245646715164, -0.1153564453125, -0.11667480319738388, -0.11403807997703552, -0.11293944716453552, -0.11118163913488388, -0.10964354872703552, -0.11184081435203552, -0.11184081435203552, -0.10700683295726776, -0.11030273139476776, -0.112060546875, -0.11074218153953552, -0.11228027194738388, -0.11228027194738388, -0.10942382365465164, -0.11074218153953552, -0.1043701171875, -0.10920409858226776, -0.1043701171875, -0.10964354872703552, -0.10502929240465164, -0.10810546576976776, -0.10195311903953552, -0.10502929240465164, -0.10964354872703552, -0.10920409858226776, -0.10261230170726776, -0.10546875, -0.10480956733226776, -0.10415038466453552, -0.10546875, -0.10612792521715164, -0.10612792521715164, -0.09843749552965164, -0.1065673828125, -0.09953612834215164, -0.09821777045726776, -0.1043701171875, -0.09755858778953552, -0.1021728515625, -0.09580077975988388, -0.09426268935203552, -0.09755858778953552, -0.09711913764476776, -0.09426268935203552, -0.0933837890625, -0.09580077975988388, -0.0977783203125, -0.10151366889476776, -0.10019531100988388, -0.090087890625, -0.09074706584215164, -0.09404296427965164, -0.09074706584215164, -0.08986815810203552, -0.09382323920726776, -0.09645995497703552, -0.09492187201976776, -0.0933837890625, -0.08547362685203552, -0.08613280951976776, -0.09074706584215164, -0.0889892578125, -0.09184569865465164, -0.08635253459215164, -0.09140624850988388, -0.08701171725988388, -0.08217773586511612, -0.07954101264476776, -0.08349609375, -0.08151855319738388, -0.08327636867761612, -0.08085937052965164, -0.08503417670726776, -0.08327636867761612, -0.08657225966453552, -0.07822265475988388, -0.085693359375, -0.07822265475988388, -0.076904296875, -0.076904296875, -0.07668457180261612, -0.07822265475988388, -0.07382812350988388, -0.07756347209215164, -0.072509765625, -0.07382812350988388, -0.07492675632238388, -0.07119140774011612, -0.06987304240465164, -0.0736083984375, -0.0670166015625, -0.06943359225988388, -0.0670166015625, -0.07185058295726776, -0.0648193359375, -0.0626220703125, -0.06635741889476776, -0.06591796875, -0.06635741889476776, -0.0615234375, -0.06196288764476776, -0.0692138671875, -0.06613769382238388, -0.06547851115465164, -0.0582275390625, -0.05800781026482582, -0.06020507588982582, -0.06196288764476776, -0.0648193359375, -0.06108398362994194, -0.06328124552965164, -0.05844726413488388, -0.0516357421875, -0.0560302734375, -0.0538330078125, -0.05405273288488388, -0.04921874776482582, -0.05207519233226776, -0.05646972358226776, -0.05097655951976776, -0.05075683444738388, -0.0439453125, -0.04702148213982582, -0.04636230319738388, -0.04921874776482582, -0.050537109375, -0.0450439453125, -0.04372558370232582, -0.041748046875, -0.04196777194738388, -0.04482421651482582, -0.04262695088982582, -0.04086913913488388, -0.04438476264476776, -0.03977050632238388, -0.03911132737994194, -0.03603515401482582, -0.03713378682732582, -0.03757324069738388, -0.03120117075741291, -0.03669433668255806, -0.03449707105755806, -0.032958984375, -0.03339843824505806, -0.02988281100988388, -0.02680663950741291, -0.03098144382238388, -0.02724609337747097, -0.032958984375, -0.02790527231991291, -0.02285156212747097, -0.02900390513241291, -0.024169921875, -0.02614746056497097, -0.019775390625, -0.01999511756002903, -0.02373046800494194, -0.0164794921875, -0.02175292931497097, -0.01516113243997097, -0.013623046688735485, -0.010107421316206455, -0.015380859375, -0.009448242373764515, -0.01164550706744194, -0.007910155691206455, -0.01054687425494194, -0.006591796875, -0.0076904296875, -0.006152343470603228, -0.007250976283103228, -0.0035156249068677425, -0.006152343470603228, -0.0024169920943677425, -0.0010986328125, -0.006152343470603228, -0.005932617001235485, 0.0004394531133584678, -0.0035156249068677425, -0.003955077845603228, 0.0024169920943677425, 0.0028564452659338713, 0.0004394531133584678, 0.0006591796409338713, 0.0054931640625, 0.001977538922801614, 0.00747070275247097, 0.01186523400247097, 0.00637206993997097, 0.010986328125, 0.01054687425494194, 0.009228515438735485, 0.015600585378706455, 0.00966796837747097, 0.01164550706744194, 0.01582031138241291, 0.01669921912252903, 0.01582031138241291, 0.01713867112994194, 0.014721679501235485, 0.015600585378706455, 0.01823730394244194, 0.01691894419491291, 0.01164550706744194, 0.00856933556497097, 0.01406249962747097, 0.015600585378706455, 0.0142822265625, 0.01691894419491291, 0.01801757700741291, 0.0120849609375, 0.01384277269244194, 0.01384277269244194, 0.01625976525247097, 0.01625976525247097, 0.02043456956744194, 0.011425781063735485, 0.0186767578125, 0.01823730394244194, 0.01801757700741291, 0.0164794921875, 0.01604003831744194, 0.01296386681497097, 0.01186523400247097, 0.01296386681497097, 0.013623046688735485, 0.01296386681497097, 0.0120849609375, 0.0120849609375 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, -0.003735351376235485, 0.0046142577193677425, -0.004833984188735485, -0.0028564452659338713, 0.0, 0.0008789062267169356, 0.004833984188735485, 0.0008789062267169356, 0.003955077845603228, -0.0032958984375, 0.0010986328125, -0.0002197265566792339, -0.0010986328125, 0.0006591796409338713, 0.002636718563735485, 0.0028564452659338713, -0.001977538922801614, -0.002197265625, 0.0046142577193677425, -0.0010986328125, 0.002197265625, 0.004833984188735485, 0.0, -0.0010986328125, -0.001538085867650807, 0.001977538922801614, -0.002197265625, -0.0002197265566792339, 0.0013183592818677425, 0.0054931640625, 0.0028564452659338713, 0.00439453125, 0.00637206993997097, 0.003076171735301614, -0.0028564452659338713, -0.0010986328125, 0.002197265625, 0.006591796875, 0.003955077845603228, 0.0004394531133584678, -0.001977538922801614, -0.0002197265566792339, 0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, 0.002197265625, -0.0008789062267169356, 0.002197265625, -0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0087890625, -0.0017578124534338713, -0.0087890625, -0.0076904296875, -0.01494140550494194, -0.011206054128706455, -0.01164550706744194, -0.00966796837747097, -0.01274413987994194, -0.01779785193502903, -0.01889648474752903, -0.01713867112994194, -0.02131347544491291, -0.024169921875, -0.02285156212747097, -0.02570800669491291, -0.02724609337747097, -0.02724609337747097, -0.02219238132238388, -0.02438964694738388, -0.028564453125, -0.03142089769244194, -0.02922363206744194, -0.0296630859375, -0.03427734225988388, -0.03251953050494194, -0.03010253794491291, -0.03713378682732582, -0.03449707105755806, -0.03889160230755806, -0.03559570387005806, -0.04416503757238388, -0.04218749701976776, -0.03713378682732582, -0.046142578125, -0.04372558370232582, -0.04372558370232582, -0.041748046875, -0.04526367038488388, -0.04680175706744194, -0.04899902269244194, -0.046142578125, -0.05185546725988388, -0.05471191182732582, -0.05427245795726776, -0.0538330078125, -0.052734375, -0.05559081956744194, -0.05668945237994194, -0.05756835639476776, -0.05624999850988388, -0.06020507588982582, -0.06394042819738388, -0.05756835639476776, -0.06064452975988388, -0.06635741889476776, -0.06394042819738388, -0.06547851115465164, -0.06987304240465164, -0.06547851115465164, -0.07207030802965164, -0.07075195014476776, -0.07009277492761612, -0.06745605170726776, -0.06833495944738388, -0.07229004055261612, -0.07207030802965164, -0.07426757365465164, -0.07316894084215164, -0.07822265475988388, -0.07646483927965164, -0.0823974609375, -0.08085937052965164, -0.07712402194738388, -0.08437499403953552, -0.08041992038488388, -0.087890625, -0.08327636867761612, -0.08349609375, -0.08942870795726776, -0.08591308444738388, -0.0889892578125, -0.08920898288488388, -0.08833007514476776, -0.08964843302965164, -0.08854980021715164, -0.09206542372703552, -0.09052734076976776, -0.09250488132238388, -0.090087890625, -0.09316405653953552, -0.09294433146715164, -0.0933837890625, -0.09492187201976776, -0.10085448622703552, -0.09843749552965164, -0.10107421875, -0.09580077975988388, -0.10195311903953552, -0.10393065959215164, -0.10678710788488388, -0.10173339396715164, -0.10744628310203552, -0.10898437350988388, -0.10261230170726776, -0.10019531100988388, -0.1065673828125, -0.11184081435203552, -0.10568847507238388, -0.11118163913488388, -0.11228027194738388, -0.11030273139476776, -0.10700683295726776, -0.11249999701976776, -0.11579589545726776, -0.11403807997703552, -0.11733397841453552, -0.11381835490465164, -0.11667480319738388, -0.11931151896715164, -0.11469726264476776, -0.11557617038488388, -0.11271972209215164, -0.11513671278953552, -0.1153564453125, -0.1197509765625, -0.123046875, -0.1197509765625, -0.12348632514476776, -0.120849609375, -0.12216796725988388, -0.11821288615465164, -0.12678222358226776, -0.125244140625, -0.1219482421875, -0.1197509765625, -0.12458495795726776, -0.12216796725988388, -0.12436523288488388, -0.12436523288488388, -0.12436523288488388, -0.12568359076976776, -0.129638671875, -0.12919922173023224, -0.12875975668430328, -0.12590332329273224, -0.1318359375, -0.12656249105930328, -0.1307373046875, -0.13227538764476776, -0.129638671875, -0.12941893935203552, -0.13315428793430328, -0.12832030653953552, -0.13337402045726776, -0.1318359375, -0.13710936903953552, -0.1307373046875, -0.13645018637180328, -0.1373291015625, -0.1307373046875, -0.13535155355930328, -0.13381347060203552, -0.13776855170726776, -0.13579101860523224, -0.1373291015625, -0.1351318359375, -0.13864745199680328, -0.13820800185203552, -0.13227538764476776, -0.1351318359375, -0.13908691704273224, -0.13447265326976776, -0.14106445014476776, -0.1417236328125, -0.13908691704273224, -0.14128418266773224, -0.13754881918430328, -0.13645018637180328, -0.14128418266773224, -0.1461181640625, -0.14260253310203552, -0.14501953125, -0.13864745199680328, -0.14348144829273224, -0.14326171576976776, -0.14040526747703552, -0.14414061605930328, -0.13886718451976776, -0.14260253310203552, -0.14106445014476776, -0.14260253310203552, -0.1417236328125, -0.14765624701976776, -0.14633788168430328, -0.14479979872703552, -0.14523924887180328, -0.14677734673023224, -0.140625, -0.13908691704273224, -0.13996581733226776, -0.14414061605930328, -0.13930663466453552, -0.14479979872703552, -0.14414061605930328, -0.13974608480930328, -0.1483154296875, -0.147216796875, -0.14260253310203552, -0.13996581733226776, -0.14304198324680328, -0.14501953125, -0.13908691704273224, -0.15007324516773224, -0.142822265625, -0.14523924887180328, -0.14919432997703552, -0.14699706435203552, -0.14370116591453552, -0.1483154296875, -0.14150390028953552, -0.14216308295726776, -0.14304198324680328, -0.1439208984375, -0.14106445014476776, -0.13930663466453552, -0.13930663466453552, -0.14809569716453552, -0.13886718451976776, -0.14194335043430328, -0.140625, -0.140625, -0.14216308295726776, -0.14545898139476776, -0.14128418266773224, -0.14699706435203552, -0.13754881918430328, -0.14084471762180328, -0.14150390028953552, -0.14699706435203552, -0.14304198324680328, -0.14545898139476776, -0.14194335043430328, -0.14699706435203552, -0.14414061605930328, -0.140625, -0.14326171576976776, -0.14523924887180328, -0.14084471762180328, -0.1395263671875, -0.14084471762180328, -0.138427734375, -0.14677734673023224, -0.14304198324680328, -0.140625, -0.14633788168430328, -0.14436034858226776, -0.1395263671875, -0.14633788168430328, -0.14260253310203552, -0.1395263671875, -0.1417236328125, -0.1395263671875, -0.14040526747703552, -0.13688965141773224, -0.138427734375, -0.140625, -0.14326171576976776, -0.14436034858226776, -0.13710936903953552, -0.13645018637180328, -0.13798828423023224, -0.14304198324680328, -0.14194335043430328, -0.13864745199680328, -0.13623046875, -0.13754881918430328, -0.13798828423023224, -0.13161620497703552, -0.13908691704273224, -0.13798828423023224, -0.13447265326976776, -0.138427734375, -0.13579101860523224, -0.13666991889476776, -0.13491210341453552, -0.13645018637180328, -0.12810058891773224, -0.13117675483226776, -0.13776855170726776, -0.1351318359375, -0.1307373046875, -0.13249512016773224, -0.13645018637180328, -0.12788085639476776, -0.1351318359375, -0.13095702230930328, -0.13205565512180328, -0.13315428793430328, -0.13205565512180328, -0.13117675483226776, -0.12436523288488388, -0.12546385824680328, -0.12722167372703552, -0.12568359076976776, -0.13381347060203552, -0.13007812201976776, -0.12678222358226776, -0.13139648735523224, -0.12348632514476776, -0.12766112387180328, -0.12810058891773224, -0.12326660007238388, -0.12480468302965164, -0.12326660007238388, -0.12392577528953552, -0.11865234375, -0.11865234375, -0.12436523288488388, -0.12700195610523224, -0.11909179389476776, -0.11865234375, -0.11733397841453552, -0.11777343600988388, -0.12172850966453552, -0.12019042670726776, -0.11293944716453552, -0.11359862983226776, -0.12128905951976776, -0.11557617038488388, -0.1175537109375, -0.1175537109375, -0.11271972209215164, -0.11403807997703552, -0.1131591796875, -0.1131591796875, -0.10546875, -0.107666015625, -0.11074218153953552, -0.11403807997703552, -0.10744628310203552, -0.107666015625, -0.1087646484375, -0.103271484375, -0.10063476115465164, -0.10788574069738388, -0.103271484375, -0.10151366889476776, -0.10854491591453552, -0.10678710788488388, -0.10239257663488388, -0.10480956733226776, -0.0977783203125, -0.09602050483226776, -0.10041503608226776, -0.09492187201976776, -0.10129394382238388, -0.09360351413488388, -0.09799804538488388, -0.09514159709215164, -0.09470214694738388, -0.09184569865465164, -0.09360351413488388, -0.09294433146715164, -0.09272460639476776, -0.0889892578125, -0.09074706584215164, -0.09228515625, -0.08833007514476776, -0.08437499403953552, -0.08833007514476776, -0.08151855319738388, -0.08854980021715164, -0.08613280951976776, -0.08876952528953552, -0.08525390177965164, -0.07822265475988388, -0.07668457180261612, -0.07646483927965164, -0.07646483927965164, -0.07624511420726776, -0.0802001953125, -0.08041992038488388, -0.07778320461511612, -0.07602538913488388, -0.07470703125, -0.07448730617761612, -0.07668457180261612, -0.07185058295726776, -0.07272949069738388, -0.06679687649011612, -0.06965331733226776, -0.06525878608226776, -0.068115234375, -0.0670166015625, -0.06284179538488388, -0.06789550930261612, -0.06218261644244194, -0.05690917745232582, -0.05778808519244194, -0.05712890625, -0.05559081956744194, -0.0582275390625, -0.06086425483226776, -0.0582275390625, -0.05471191182732582, -0.05207519233226776, -0.05251464620232582, -0.05712890625, -0.05141601338982582, -0.05031738057732582, -0.04636230319738388, -0.04592284932732582, -0.05251464620232582, -0.04812011495232582, -0.04548339545726776, -0.04350585862994194, -0.04020996019244194, -0.03867187350988388, -0.04592284932732582, -0.03867187350988388, -0.04328612983226776, -0.03889160230755806, -0.04196777194738388, -0.0362548828125, -0.037353515625, -0.03801269456744194, -0.03120117075741291, -0.0340576171875, -0.03054199181497097, -0.03142089769244194, -0.02592773362994194, -0.02460937388241291, -0.03098144382238388, -0.0274658203125, -0.02790527231991291, -0.02065429650247097, -0.0208740234375, -0.02065429650247097, -0.0208740234375, -0.0186767578125, -0.01582031138241291, -0.019775390625, -0.01801757700741291, -0.0164794921875, -0.01186523400247097, -0.01384277269244194, -0.009448242373764515, -0.01406249962747097, -0.012524413876235485, -0.0054931640625, -0.01186523400247097, -0.009228515438735485, -0.0076904296875, -0.001977538922801614, -0.006152343470603228, -0.0002197265566792339, 0.0002197265566792339, 0.0024169920943677425, 0.001977538922801614, 0.006152343470603228, 0.003955077845603228, 0.0087890625, 0.008129882626235485, 0.0087890625, 0.006152343470603228, 0.009008788503706455, 0.0046142577193677425, 0.01691894419491291, 0.012524413876235485, 0.01054687425494194, 0.01779785193502903, 0.01779785193502903, 0.02109374850988388, 0.0186767578125, 0.01735839806497097, 0.01735839806497097, 0.014721679501235485, 0.017578125, 0.02197265625, 0.01955566368997097, 0.01713867112994194, 0.01318359375, 0.01845703087747097, 0.01735839806497097, 0.014501952566206455, 0.01406249962747097, 0.01516113243997097, 0.0120849609375, 0.02219238132238388, 0.013623046688735485, 0.014501952566206455, 0.02219238132238388, 0.01845703087747097, 0.01955566368997097, 0.01669921912252903, 0.02153320237994194, 0.01494140550494194, 0.014721679501235485, 0.02153320237994194, 0.02241210825741291, 0.014721679501235485, 0.01186523400247097, 0.0164794921875, 0.015380859375, 0.01691894419491291, 0.015600585378706455 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0041748047806322575, -0.0008789062267169356, -0.0004394531133584678, 0.00527343712747097, 0.0035156249068677425, 0.00439453125, 0.00747070275247097, 0.0054931640625, 0.0041748047806322575, 0.002636718563735485, 0.001977538922801614, 0.005932617001235485, 0.0046142577193677425, 0.0008789062267169356, 0.002197265625, 0.0008789062267169356, -0.0035156249068677425, 0.0057128905318677425, 0.0013183592818677425, 0.0046142577193677425, 0.005053710658103228, 0.0004394531133584678, 0.0032958984375, 0.0004394531133584678, 0.0041748047806322575, 0.0032958984375, 0.00439453125, 0.006591796875, 0.003955077845603228, 0.0004394531133584678, 0.0041748047806322575, 0.0057128905318677425, 0.005053710658103228, 0.003955077845603228, 0.0008789062267169356, 0.00527343712747097, 0.0017578124534338713, -0.0017578124534338713, 0.0002197265566792339, 0.003955077845603228, -0.002197265625, -0.0004394531133584678, -0.0010986328125, 0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.00439453125, -0.0004394531133584678, 0.002636718563735485, 0.0, -0.00747070275247097, -0.007250976283103228, -0.0035156249068677425, -0.006591796875, -0.01076660118997097, -0.0057128905318677425, -0.0164794921875, -0.017578125, -0.01713867112994194, -0.01604003831744194, -0.01625976525247097, -0.01296386681497097, -0.015600585378706455, -0.02263183519244194, -0.01911620981991291, -0.02614746056497097, -0.02219238132238388, -0.02812499925494194, -0.03054199181497097, -0.02351074106991291, -0.02878417819738388, -0.03076171875, -0.03515625, -0.03208007663488388, -0.03515625, -0.0362548828125, -0.03911132737994194, -0.03229980543255806, -0.04416503757238388, -0.03955078125, -0.04592284932732582, -0.03779296949505806, -0.04570312425494194, -0.04658202826976776, -0.04548339545726776, -0.0538330078125, -0.04658202826976776, -0.04702148213982582, -0.05515136569738388, -0.05251464620232582, -0.05515136569738388, -0.05141601338982582, -0.0615234375, -0.06328124552965164, -0.05844726413488388, -0.06240234151482582, -0.05954589694738388, -0.05998535081744194, -0.06723632663488388, -0.06525878608226776, -0.06987304240465164, -0.06525878608226776, -0.06569824367761612, -0.06525878608226776, -0.07448730617761612, -0.0692138671875, -0.07712402194738388, -0.07470703125, -0.0780029296875, -0.07382812350988388, -0.08173827826976776, -0.076904296875, -0.07932128757238388, -0.0802001953125, -0.08591308444738388, -0.08745116740465164, -0.08613280951976776, -0.0889892578125, -0.08481445163488388, -0.08964843302965164, -0.08833007514476776, -0.09074706584215164, -0.09140624850988388, -0.09580077975988388, -0.09360351413488388, -0.09294433146715164, -0.0999755859375, -0.10063476115465164, -0.09426268935203552, -0.09645995497703552, -0.10195311903953552, -0.10502929240465164, -0.098876953125, -0.10019531100988388, -0.10678710788488388, -0.10393065959215164, -0.107666015625, -0.10700683295726776, -0.11140136420726776, -0.103271484375, -0.1153564453125, -0.11293944716453552, -0.11008300632238388, -0.1131591796875, -0.10920409858226776, -0.1153564453125, -0.11271972209215164, -0.11777343600988388, -0.1153564453125, -0.11359862983226776, -0.1131591796875, -0.112060546875, -0.12326660007238388, -0.11579589545726776, -0.11931151896715164, -0.12348632514476776, -0.12260741740465164, -0.1197509765625, -0.12106933444738388, -0.123046875, -0.12480468302965164, -0.12700195610523224, -0.12788085639476776, -0.1307373046875, -0.12502440810203552, -0.13271483778953552, -0.12590332329273224, -0.1329345703125, -0.12897948920726776, -0.134033203125, -0.12897948920726776, -0.1329345703125, -0.13381347060203552, -0.14018554985523224, -0.13666991889476776, -0.13820800185203552, -0.13227538764476776, -0.13315428793430328, -0.1395263671875, -0.14194335043430328, -0.1373291015625, -0.140625, -0.14545898139476776, -0.14370116591453552, -0.13930663466453552, -0.14523924887180328, -0.14040526747703552, -0.14875487983226776, -0.14414061605930328, -0.1417236328125, -0.1505126953125, -0.14326171576976776, -0.14655761420726776, -0.14260253310203552, -0.14523924887180328, -0.14765624701976776, -0.14458008110523224, -0.14919432997703552, -0.15468749403953552, -0.14479979872703552, -0.14787597954273224, -0.15007324516773224, -0.15424804389476776, -0.14809569716453552, -0.15227051079273224, -0.15183104574680328, -0.15578612685203552, -0.15007324516773224, -0.15468749403953552, -0.15688475966453552, -0.1549072265625, -0.15468749403953552, -0.15117187798023224, -0.15424804389476776, -0.1593017578125, -0.1571044921875, -0.15446777641773224, -0.15402831137180328, -0.1593017578125, -0.15996094048023224, -0.16171874105930328, -0.15666504204273224, -0.16501463949680328, -0.15776367485523224, -0.16303710639476776, -0.15644530951976776, -0.15336914360523224, -0.15556640923023224, -0.15776367485523224, -0.16083984076976776, -0.15688475966453552, -0.15886230766773224, -0.16325683891773224, -0.15732420980930328, -0.16523437201976776, -0.15798339247703552, -0.16018065810203552, -0.16303710639476776, -0.16303710639476776, -0.1614990234375, -0.16413573920726776, -0.1636962890625, -0.16237792372703552, -0.16062010824680328, -0.16413573920726776, -0.16743163764476776, -0.16655273735523224, -0.16831053793430328, -0.164794921875, -0.16193847358226776, -0.16787108778953552, -0.16391600668430328, -0.16874998807907104, -0.16193847358226776, -0.16083984076976776, -0.16281737387180328, -0.16567382216453552, -0.16523437201976776, -0.16062010824680328, -0.16193847358226776, -0.17050780355930328, -0.17138671875, -0.17050780355930328, -0.16281737387180328, -0.16677245497703552, -0.16984862089157104, -0.17270506918430328, -0.16655273735523224, -0.16193847358226776, -0.16633300483226776, -0.16655273735523224, -0.16787108778953552, -0.16611327230930328, -0.17006835341453552, -0.16962890326976776, -0.17072753608226776, -0.1724853515625, -0.17138671875, -0.16391600668430328, -0.16347655653953552, -0.16237792372703552, -0.16457518935203552, -0.16303710639476776, -0.1669921875, -0.16765137016773224, -0.16611327230930328, -0.16303710639476776, -0.16831053793430328, -0.16523437201976776, -0.16655273735523224, -0.1636962890625, -0.16457518935203552, -0.16655273735523224, -0.16984862089157104, -0.16259765625, -0.16874998807907104, -0.17116698622703552, -0.15996094048023224, -0.16303710639476776, -0.1669921875, -0.16655273735523224, -0.15886230766773224, -0.17160643637180328, -0.16677245497703552, -0.1636962890625, -0.15952147543430328, -0.15996094048023224, -0.16413573920726776, -0.158203125, -0.16765137016773224, -0.16062010824680328, -0.16545410454273224, -0.16062010824680328, -0.15908202528953552, -0.1636962890625, -0.1658935546875, -0.15886230766773224, -0.16896972060203552, -0.1669921875, -0.15776367485523224, -0.16171874105930328, -0.16655273735523224, -0.15754394233226776, -0.15798339247703552, -0.16347655653953552, -0.15666504204273224, -0.16083984076976776, -0.160400390625, -0.158203125, -0.16105957329273224, -0.16105957329273224, -0.15842284262180328, -0.160400390625, -0.15622557699680328, -0.158203125, -0.15622557699680328, -0.15227051079273224, -0.15424804389476776, -0.16062010824680328, -0.16018065810203552, -0.15908202528953552, -0.15754394233226776, -0.1549072265625, -0.15139159560203552, -0.15776367485523224, -0.1483154296875, -0.15424804389476776, -0.14963378012180328, -0.151611328125, -0.147216796875, -0.14809569716453552, -0.15029296278953552, -0.14743651449680328, -0.15446777641773224, -0.14567871391773224, -0.14787597954273224, -0.15314941108226776, -0.14853514730930328, -0.1494140625, -0.1483154296875, -0.1461181640625, -0.14348144829273224, -0.14897461235523224, -0.14436034858226776, -0.14809569716453552, -0.14853514730930328, -0.14458008110523224, -0.14787597954273224, -0.14655761420726776, -0.14633788168430328, -0.13908691704273224, -0.14370116591453552, -0.14633788168430328, -0.13579101860523224, -0.13776855170726776, -0.13359375298023224, -0.1417236328125, -0.13645018637180328, -0.14128418266773224, -0.1373291015625, -0.13447265326976776, -0.13447265326976776, -0.13798828423023224, -0.13161620497703552, -0.13095702230930328, -0.12985838949680328, -0.12919922173023224, -0.13051757216453552, -0.13051757216453552, -0.13447265326976776, -0.13095702230930328, -0.13117675483226776, -0.12436523288488388, -0.12919922173023224, -0.1285400390625, -0.12612304091453552, -0.12106933444738388, -0.11997070163488388, -0.1241455078125, -0.12370605021715164, -0.11997070163488388, -0.12436523288488388, -0.12678222358226776, -0.12436523288488388, -0.1197509765625, -0.11381835490465164, -0.11491698771715164, -0.11909179389476776, -0.11821288615465164, -0.11293944716453552, -0.11271972209215164, -0.116455078125, -0.11008300632238388, -0.116455078125, -0.10788574069738388, -0.1131591796875, -0.10722655802965164, -0.11381835490465164, -0.1109619140625, -0.10305175185203552, -0.107666015625, -0.09975585341453552, -0.10151366889476776, -0.10151366889476776, -0.103271484375, -0.10063476115465164, -0.09602050483226776, -0.09536132216453552, -0.10305175185203552, -0.10019531100988388, -0.09294433146715164, -0.09931640326976776, -0.09865722060203552, -0.09162597358226776, -0.09426268935203552, -0.08964843302965164, -0.09470214694738388, -0.0889892578125, -0.09360351413488388, -0.08261718600988388, -0.08942870795726776, -0.08701171725988388, -0.08085937052965164, -0.08041992038488388, -0.07624511420726776, -0.0791015625, -0.07954101264476776, -0.07866210490465164, -0.0823974609375, -0.08107910305261612, -0.076904296875, -0.07404784858226776, -0.07492675632238388, -0.07822265475988388, -0.07185058295726776, -0.07163085788488388, -0.06679687649011612, -0.06503906100988388, -0.06306152045726776, -0.06767577677965164, -0.06833495944738388, -0.06394042819738388, -0.06789550930261612, -0.06394042819738388, -0.0582275390625, -0.05317382514476776, -0.05515136569738388, -0.05624999850988388, -0.05185546725988388, -0.0516357421875, -0.05075683444738388, -0.05251464620232582, -0.04812011495232582, -0.04548339545726776, -0.04592284932732582, -0.04987792670726776, -0.04855956882238388, -0.04416503757238388, -0.04218749701976776, -0.04438476264476776, -0.03691406175494194, -0.03867187350988388, -0.04152831807732582, -0.03515625, -0.037353515625, -0.0340576171875, -0.03032226487994194, -0.0340576171875, -0.03208007663488388, -0.03010253794491291, -0.02768554538488388, -0.02219238132238388, -0.02790527231991291, -0.02043456956744194, -0.02065429650247097, -0.02460937388241291, -0.02131347544491291, -0.01911620981991291, -0.02021484263241291, -0.013403319753706455, -0.012524413876235485, -0.01296386681497097, -0.015600585378706455, -0.01274413987994194, -0.01494140550494194, -0.006591796875, -0.0035156249068677425, -0.0013183592818677425, -0.0076904296875, -0.005053710658103228, 0.0008789062267169356, 0.0004394531133584678, -0.003735351376235485, 0.006152343470603228, 0.006591796875, 0.006591796875, 0.0028564452659338713, 0.0098876953125, 0.0068115233443677425, 0.015600585378706455, 0.011206054128706455, 0.0076904296875, 0.01691894419491291, 0.0164794921875, 0.01801757700741291, 0.0208740234375, 0.01999511756002903, 0.01604003831744194, 0.01735839806497097, 0.01999511756002903, 0.02175292931497097, 0.02153320237994194, 0.01845703087747097, 0.01625976525247097, 0.02438964694738388, 0.01801757700741291, 0.01933593675494194, 0.02285156212747097, 0.02043456956744194, 0.0208740234375, 0.01625976525247097, 0.01933593675494194, 0.02109374850988388, 0.024169921875, 0.02548827975988388, 0.019775390625, 0.01889648474752903, 0.01779785193502903, 0.0230712890625, 0.02614746056497097, 0.02109374850988388, 0.01889648474752903, 0.02109374850988388, 0.01823730394244194, 0.01955566368997097, 0.01669921912252903, 0.017578125, 0.02285156212747097, 0.01955566368997097, 0.01845703087747097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.002197265625, 0.0017578124534338713, -0.0002197265566792339, 0.0032958984375, 0.0010986328125, -0.0035156249068677425, 0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, 0.0002197265566792339, -0.001977538922801614, 0.0024169920943677425, -0.0028564452659338713, 0.0024169920943677425, -0.0008789062267169356, 0.002197265625, 0.002197265625, 0.003955077845603228, 0.0028564452659338713, -0.0028564452659338713, 0.001538085867650807, 0.00527343712747097, 0.002636718563735485, 0.0046142577193677425, 0.0, 0.0006591796409338713, 0.0046142577193677425, -0.0002197265566792339, 0.005053710658103228, 0.003735351376235485, 0.0006591796409338713, 0.0046142577193677425, 0.005053710658103228, 0.006591796875, 0.001977538922801614, 0.007250976283103228, 0.001538085867650807, 0.0041748047806322575, 0.003735351376235485, 0.003076171735301614, -0.001538085867650807, 0.005932617001235485, 0.0004394531133584678, -0.0013183592818677425, 0.0002197265566792339, -0.001977538922801614, -0.00439453125, -0.00439453125, -0.003076171735301614, -0.006152343470603228, -0.003735351376235485, -0.008129882626235485, -0.006591796875, -0.00966796837747097, -0.012524413876235485, -0.0142822265625, -0.01625976525247097, -0.01933593675494194, -0.01845703087747097, -0.0186767578125, -0.02878417819738388, -0.0274658203125, -0.02922363206744194, -0.02482910081744194, -0.0318603515625, -0.02680663950741291, -0.03361816331744194, -0.03251953050494194, -0.03164062276482582, -0.03889160230755806, -0.03493652120232582, -0.03757324069738388, -0.04460449144244194, -0.0406494140625, -0.04548339545726776, -0.04877929389476776, -0.04372558370232582, -0.04702148213982582, -0.052734375, -0.04899902269244194, -0.05515136569738388, -0.05646972358226776, -0.05976562201976776, -0.05295410007238388, -0.06108398362994194, -0.05866698920726776, -0.05800781026482582, -0.0626220703125, -0.06108398362994194, -0.06833495944738388, -0.06723632663488388, -0.07119140774011612, -0.06899414211511612, -0.06657714396715164, -0.07075195014476776, -0.0791015625, -0.0780029296875, -0.07844237983226776, -0.07470703125, -0.07954101264476776, -0.081298828125, -0.08217773586511612, -0.08876952528953552, -0.08745116740465164, -0.08811035007238388, -0.09096679091453552, -0.09162597358226776, -0.09382323920726776, -0.09294433146715164, -0.090087890625, -0.09711913764476776, -0.09360351413488388, -0.09492187201976776, -0.09470214694738388, -0.09865722060203552, -0.09733886271715164, -0.098876953125, -0.09953612834215164, -0.10349120944738388, -0.10700683295726776, -0.10195311903953552, -0.10546875, -0.10546875, -0.10920409858226776, -0.11293944716453552, -0.11491698771715164, -0.112060546875, -0.11140136420726776, -0.112060546875, -0.11403807997703552, -0.120849609375, -0.11843261122703552, -0.1175537109375, -0.1219482421875, -0.12546385824680328, -0.11799316108226776, -0.125244140625, -0.125244140625, -0.12216796725988388, -0.12897948920726776, -0.13095702230930328, -0.13139648735523224, -0.12502440810203552, -0.13117675483226776, -0.12897948920726776, -0.12766112387180328, -0.13688965141773224, -0.13095702230930328, -0.1373291015625, -0.13469238579273224, -0.14128418266773224, -0.13161620497703552, -0.13820800185203552, -0.1439208984375, -0.14238281548023224, -0.14106445014476776, -0.14194335043430328, -0.140625, -0.14633788168430328, -0.1461181640625, -0.14040526747703552, -0.14414061605930328, -0.14150390028953552, -0.14436034858226776, -0.15073241293430328, -0.14260253310203552, -0.15358886122703552, -0.14809569716453552, -0.14875487983226776, -0.15227051079273224, -0.14875487983226776, -0.15183104574680328, -0.15227051079273224, -0.15556640923023224, -0.15908202528953552, -0.15402831137180328, -0.15644530951976776, -0.15402831137180328, -0.16083984076976776, -0.15446777641773224, -0.16018065810203552, -0.156005859375, -0.15996094048023224, -0.160400390625, -0.16259765625, -0.16457518935203552, -0.16391600668430328, -0.15974120795726776, -0.16787108778953552, -0.16237792372703552, -0.16743163764476776, -0.16567382216453552, -0.16325683891773224, -0.16984862089157104, -0.16655273735523224, -0.16501463949680328, -0.16962890326976776, -0.16984862089157104, -0.16523437201976776, -0.17094725370407104, -0.16853027045726776, -0.16787108778953552, -0.17512206733226776, -0.16567382216453552, -0.1746826171875, -0.17709960043430328, -0.17534178495407104, -0.16984862089157104, -0.17490233480930328, -0.1680908203125, -0.169189453125, -0.17314451932907104, -0.17160643637180328, -0.17226561903953552, -0.17863768339157104, -0.17600096762180328, -0.1746826171875, -0.17116698622703552, -0.17314451932907104, -0.17182616889476776, -0.1768798828125, -0.17160643637180328, -0.18413084745407104, -0.18171386420726776, -0.18171386420726776, -0.1834716796875, -0.17578125, -0.17709960043430328, -0.17556151747703552, -0.18413084745407104, -0.17490233480930328, -0.17819823324680328, -0.18281249701976776, -0.17819823324680328, -0.1790771484375, -0.18259276449680328, -0.17775878310203552, -0.17863768339157104, -0.17819823324680328, -0.1790771484375, -0.18017578125, -0.17622070014476776, -0.18544921278953552, -0.18281249701976776, -0.18193358182907104, -0.186767578125, -0.18500976264476776, -0.18017578125, -0.17973631620407104, -0.182373046875, -0.1845703125, -0.18918456137180328, -0.18413084745407104, -0.18632811307907104, -0.18962401151657104, -0.18874511122703552, -0.18808592855930328, -0.19028319418430328, -0.18830566108226776, -0.19248045980930328, -0.18698729574680328, -0.17929686605930328, -0.186767578125, -0.18544921278953552, -0.18830566108226776, -0.18610839545726776, -0.18940429389476776, -0.18654784560203552, -0.18083494901657104, -0.1812744140625, -0.18391112983226776, -0.18391112983226776, -0.18259276449680328, -0.18039549887180328, -0.1878662109375, -0.1900634765625, -0.19094237685203552, -0.18413084745407104, -0.18215331435203552, -0.186767578125, -0.18259276449680328, -0.19204100966453552, -0.18588866293430328, -0.186767578125, -0.18940429389476776, -0.18896484375, -0.18281249701976776, -0.19511717557907104, -0.18962401151657104, -0.18874511122703552, -0.18610839545726776, -0.182373046875, -0.18742674589157104, -0.18039549887180328, -0.18918456137180328, -0.191162109375, -0.193359375, -0.18500976264476776, -0.18874511122703552, -0.18149413168430328, -0.18610839545726776, -0.18918456137180328, -0.18105468153953552, -0.18852537870407104, -0.18984374403953552, -0.191162109375, -0.18105468153953552, -0.1878662109375, -0.18149413168430328, -0.18325194716453552, -0.18698729574680328, -0.1812744140625, -0.18369139730930328, -0.18830566108226776, -0.18544921278953552, -0.17666015028953552, -0.1845703125, -0.182373046875, -0.18479003012180328, -0.1900634765625, -0.18830566108226776, -0.18413084745407104, -0.18281249701976776, -0.17841796576976776, -0.18083494901657104, -0.17951659858226776, -0.177978515625, -0.18435057997703552, -0.17929686605930328, -0.17556151747703552, -0.186767578125, -0.17578125, -0.18479003012180328, -0.17951659858226776, -0.17446288466453552, -0.17753905057907104, -0.1724853515625, -0.17600096762180328, -0.17072753608226776, -0.17380370199680328, -0.17709960043430328, -0.1790771484375, -0.17380370199680328, -0.17138671875, -0.17204588651657104, -0.16962890326976776, -0.17270506918430328, -0.17709960043430328, -0.17006835341453552, -0.17072753608226776, -0.17182616889476776, -0.17182616889476776, -0.17094725370407104, -0.17204588651657104, -0.164794921875, -0.16940917074680328, -0.16962890326976776, -0.16721190512180328, -0.16633300483226776, -0.16457518935203552, -0.17226561903953552, -0.16831053793430328, -0.16325683891773224, -0.16501463949680328, -0.16171874105930328, -0.16105957329273224, -0.16567382216453552, -0.16413573920726776, -0.16193847358226776, -0.16347655653953552, -0.15908202528953552, -0.16127929091453552, -0.15732420980930328, -0.16391600668430328, -0.16215820610523224, -0.1614990234375, -0.16545410454273224, -0.15842284262180328, -0.15380859375, -0.160400390625, -0.15249022841453552, -0.15358886122703552, -0.151611328125, -0.15666504204273224, -0.15073241293430328, -0.15512694418430328, -0.14545898139476776, -0.147216796875, -0.15139159560203552, -0.15249022841453552, -0.147216796875, -0.14150390028953552, -0.14479979872703552, -0.14348144829273224, -0.14479979872703552, -0.147216796875, -0.13886718451976776, -0.14523924887180328, -0.14655761420726776, -0.14238281548023224, -0.14194335043430328, -0.13974608480930328, -0.134033203125, -0.14018554985523224, -0.13996581733226776, -0.1351318359375, -0.13798828423023224, -0.13864745199680328, -0.13425292074680328, -0.129638671875, -0.13051757216453552, -0.12590332329273224, -0.1263427734375, -0.12985838949680328, -0.12744140625, -0.12436523288488388, -0.13095702230930328, -0.12260741740465164, -0.12458495795726776, -0.12019042670726776, -0.11887206882238388, -0.11623534560203552, -0.11579589545726776, -0.12172850966453552, -0.1142578125, -0.12172850966453552, -0.11162108927965164, -0.11118163913488388, -0.10920409858226776, -0.11513671278953552, -0.11381835490465164, -0.10393065959215164, -0.10480956733226776, -0.10195311903953552, -0.10634765028953552, -0.10371093451976776, -0.10371093451976776, -0.10678710788488388, -0.10568847507238388, -0.10173339396715164, -0.10063476115465164, -0.10458984225988388, -0.09689941257238388, -0.094482421875, -0.09404296427965164, -0.090087890625, -0.09514159709215164, -0.09206542372703552, -0.09580077975988388, -0.08854980021715164, -0.09184569865465164, -0.087890625, -0.0845947265625, -0.08107910305261612, -0.07932128757238388, -0.08217773586511612, -0.07778320461511612, -0.08041992038488388, -0.07624511420726776, -0.07624511420726776, -0.07646483927965164, -0.06965331733226776, -0.0714111328125, -0.06877440959215164, -0.06416015326976776, -0.06547851115465164, -0.07009277492761612, -0.06284179538488388, -0.06569824367761612, -0.063720703125, -0.06503906100988388, -0.05559081956744194, -0.06130370870232582, -0.05954589694738388, -0.0560302734375, -0.05800781026482582, -0.0516357421875, -0.05229492112994194, -0.04680175706744194, -0.04877929389476776, -0.04526367038488388, -0.04350585862994194, -0.03977050632238388, -0.04460449144244194, -0.04438476264476776, -0.04196777194738388, -0.03493652120232582, -0.03339843824505806, -0.03098144382238388, -0.03713378682732582, -0.03120117075741291, -0.02570800669491291, -0.03098144382238388, -0.02482910081744194, -0.02109374850988388, -0.02702636644244194, -0.02197265625, -0.02219238132238388, -0.01955566368997097, -0.014721679501235485, -0.01779785193502903, -0.015380859375, -0.012304686941206455, -0.0041748047806322575, -0.00966796837747097, -0.0010986328125, -0.0057128905318677425, -0.0010986328125, -0.002197265625, -0.0006591796409338713, 0.0013183592818677425, 0.001977538922801614, 0.0076904296875, 0.0054931640625, 0.0, 0.010327148251235485, 0.004833984188735485, 0.01384277269244194, 0.014721679501235485, 0.01669921912252903, 0.0120849609375, 0.02263183519244194, 0.01955566368997097, 0.01955566368997097, 0.02351074106991291, 0.02197265625, 0.02021484263241291, 0.02482910081744194, 0.02329101413488388, 0.0263671875, 0.0208740234375, 0.0186767578125, 0.02438964694738388, 0.02592773362994194, 0.02351074106991291, 0.02548827975988388, 0.0230712890625, 0.019775390625, 0.02395019493997097, 0.02373046800494194, 0.01823730394244194, 0.019775390625, 0.02241210825741291, 0.01735839806497097, 0.02109374850988388, 0.02373046800494194, 0.01911620981991291, 0.02768554538488388, 0.01845703087747097, 0.02460937388241291, 0.02548827975988388, 0.02021484263241291, 0.02065429650247097, 0.0230712890625, 0.02351074106991291, 0.01889648474752903, 0.0263671875, 0.02197265625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, 0.002636718563735485, 0.0010986328125, 0.0035156249068677425, 0.0046142577193677425, -0.001538085867650807, 0.0, 0.005053710658103228, 0.0032958984375, -0.0008789062267169356, 0.0032958984375, -0.0004394531133584678, 0.0004394531133584678, -0.0006591796409338713, 0.00637206993997097, 0.001538085867650807, 0.003076171735301614, 0.0004394531133584678, 0.0035156249068677425, 0.005932617001235485, 0.001538085867650807, -0.0008789062267169356, 0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, 0.0010986328125, -0.0006591796409338713, 0.0035156249068677425, 0.003955077845603228, 0.0054931640625, 0.0002197265566792339, -0.0028564452659338713, 0.003735351376235485, 0.0006591796409338713, 0.0041748047806322575, 0.00439453125, 0.0046142577193677425, 0.0024169920943677425, 0.0004394531133584678, -0.001538085867650807, 0.006152343470603228, 0.0013183592818677425, 0.003735351376235485, 0.003735351376235485, 0.0076904296875, 0.006591796875, -0.0017578124534338713, -0.0013183592818677425, 0.0004394531133584678, 0.001538085867650807, -0.01076660118997097, -0.005053710658103228, -0.005932617001235485, -0.010107421316206455, -0.009228515438735485, -0.01691894419491291, -0.0164794921875, -0.0208740234375, -0.0164794921875, -0.01691894419491291, -0.02263183519244194, -0.02438964694738388, -0.02395019493997097, -0.02438964694738388, -0.02944335900247097, -0.02680663950741291, -0.03251953050494194, -0.0318603515625, -0.03339843824505806, -0.04130859300494194, -0.04350585862994194, -0.04042968526482582, -0.04636230319738388, -0.04262695088982582, -0.0450439453125, -0.04921874776482582, -0.0560302734375, -0.05581054463982582, -0.05251464620232582, -0.05800781026482582, -0.05646972358226776, -0.05405273288488388, -0.06196288764476776, -0.0604248046875, -0.06020507588982582, -0.06064452975988388, -0.07053222507238388, -0.06877440959215164, -0.072509765625, -0.07426757365465164, -0.07624511420726776, -0.07316894084215164, -0.07492675632238388, -0.07734374701976776, -0.07998047024011612, -0.07844237983226776, -0.07822265475988388, -0.07888183742761612, -0.09030761569738388, -0.08986815810203552, -0.08503417670726776, -0.08854980021715164, -0.09052734076976776, -0.08964843302965164, -0.09975585341453552, -0.09645995497703552, -0.0966796875, -0.10041503608226776, -0.0977783203125, -0.10744628310203552, -0.10612792521715164, -0.10898437350988388, -0.11030273139476776, -0.10371093451976776, -0.10788574069738388, -0.10964354872703552, -0.11513671278953552, -0.11184081435203552, -0.11162108927965164, -0.11118163913488388, -0.11711425334215164, -0.1197509765625, -0.12282714247703552, -0.12260741740465164, -0.12480468302965164, -0.12041015177965164, -0.129638671875, -0.12106933444738388, -0.13007812201976776, -0.12612304091453552, -0.12348632514476776, -0.129638671875, -0.12897948920726776, -0.13051757216453552, -0.129638671875, -0.13535155355930328, -0.138427734375, -0.13227538764476776, -0.13710936903953552, -0.13535155355930328, -0.13754881918430328, -0.14128418266773224, -0.13820800185203552, -0.14304198324680328, -0.14260253310203552, -0.14326171576976776, -0.14589843153953552, -0.14589843153953552, -0.14963378012180328, -0.14501953125, -0.15073241293430328, -0.15139159560203552, -0.14963378012180328, -0.15205077826976776, -0.1593017578125, -0.15446777641773224, -0.1527099609375, -0.15468749403953552, -0.15380859375, -0.16018065810203552, -0.164794921875, -0.1614990234375, -0.16127929091453552, -0.16567382216453552, -0.15864257514476776, -0.1658935546875, -0.1669921875, -0.16237792372703552, -0.1669921875, -0.16633300483226776, -0.1702880859375, -0.16171874105930328, -0.16303710639476776, -0.16413573920726776, -0.17138671875, -0.17006835341453552, -0.16874998807907104, -0.16940917074680328, -0.17753905057907104, -0.17050780355930328, -0.173583984375, -0.17402343451976776, -0.17666015028953552, -0.17270506918430328, -0.17995604872703552, -0.17270506918430328, -0.17182616889476776, -0.1746826171875, -0.18259276449680328, -0.17841796576976776, -0.17753905057907104, -0.17841796576976776, -0.17731933295726776, -0.18303221464157104, -0.17644041776657104, -0.1812744140625, -0.18325194716453552, -0.18039549887180328, -0.17885741591453552, -0.18413084745407104, -0.18061523139476776, -0.18259276449680328, -0.18874511122703552, -0.18830566108226776, -0.18479003012180328, -0.18830566108226776, -0.1834716796875, -0.191162109375, -0.1845703125, -0.18588866293430328, -0.18962401151657104, -0.19379882514476776, -0.19028319418430328, -0.19050292670726776, -0.18413084745407104, -0.18588866293430328, -0.19599609076976776, -0.19489745795726776, -0.1900634765625, -0.19138182699680328, -0.19270019233226776, -0.19050292670726776, -0.19775390625, -0.19028319418430328, -0.19731444120407104, -0.19094237685203552, -0.19599609076976776, -0.1922607421875, -0.19489745795726776, -0.19643554091453552, -0.19951170682907104, -0.19643554091453552, -0.19577635824680328, -0.19973143935203552, -0.20258788764476776, -0.19951170682907104, -0.20368652045726776, -0.20280760526657104, -0.19599609076976776, -0.2021484375, -0.20280760526657104, -0.20236815512180328, -0.19753417372703552, -0.19401854276657104, -0.20236815512180328, -0.20061033964157104, -0.199951171875, -0.1966552734375, -0.20346678793430328, -0.20566405355930328, -0.20500487089157104, -0.19951170682907104, -0.20654296875, -0.20017088949680328, -0.19863280653953552, -0.19907225668430328, -0.20610350370407104, -0.20632323622703552, -0.19841307401657104, -0.20126952230930328, -0.20917968451976776, -0.20478515326976776, -0.2054443359375, -0.20917968451976776, -0.20280760526657104, -0.20522460341453552, -0.2054443359375, -0.20654296875, -0.20588378608226776, -0.20258788764476776, -0.20742186903953552, -0.20500487089157104, -0.20720213651657104, -0.20566405355930328, -0.21049803495407104, -0.20852050185203552, -0.2076416015625, -0.20083007216453552, -0.20478515326976776, -0.20126952230930328, -0.20258788764476776, -0.19863280653953552, -0.20698241889476776, -0.20632323622703552, -0.20236815512180328, -0.204345703125, -0.204345703125, -0.2010498046875, -0.20280760526657104, -0.20720213651657104, -0.20895995199680328, -0.20939940214157104, -0.20808105170726776, -0.2032470703125, -0.20917968451976776, -0.20017088949680328, -0.20654296875, -0.2054443359375, -0.20720213651657104, -0.208740234375, -0.20808105170726776, -0.2021484375, -0.20830076932907104, -0.20390623807907104, -0.20192870497703552, -0.21049803495407104, -0.20961913466453552, -0.20895995199680328, -0.20456542074680328, -0.20390623807907104, -0.20786131918430328, -0.20566405355930328, -0.20588378608226776, -0.19951170682907104, -0.20258788764476776, -0.20258788764476776, -0.20698241889476776, -0.20280760526657104, -0.20742186903953552, -0.19797362387180328, -0.1988525390625, -0.204345703125, -0.20786131918430328, -0.19841307401657104, -0.20258788764476776, -0.20456542074680328, -0.20148925483226776, -0.20412597060203552, -0.20390623807907104, -0.20280760526657104, -0.19687499105930328, -0.2054443359375, -0.20083007216453552, -0.19379882514476776, -0.20258788764476776, -0.20346678793430328, -0.19797362387180328, -0.19797362387180328, -0.20061033964157104, -0.20061033964157104, -0.19951170682907104, -0.19401854276657104, -0.20039062201976776, -0.19511717557907104, -0.19731444120407104, -0.19357909262180328, -0.19709472358226776, -0.19577635824680328, -0.19270019233226776, -0.19379882514476776, -0.19819335639476776, -0.19599609076976776, -0.19248045980930328, -0.19819335639476776, -0.19709472358226776, -0.1900634765625, -0.19423827528953552, -0.18808592855930328, -0.18764647841453552, -0.18874511122703552, -0.1922607421875, -0.18544921278953552, -0.18435057997703552, -0.18544921278953552, -0.1856689453125, -0.18764647841453552, -0.18325194716453552, -0.17775878310203552, -0.18193358182907104, -0.18654784560203552, -0.18017578125, -0.18105468153953552, -0.18193358182907104, -0.18391112983226776, -0.18610839545726776, -0.17622070014476776, -0.17929686605930328, -0.1834716796875, -0.18259276449680328, -0.17556151747703552, -0.17973631620407104, -0.17600096762180328, -0.17578125, -0.173583984375, -0.17292480170726776, -0.17709960043430328, -0.1746826171875, -0.164794921875, -0.1746826171875, -0.17578125, -0.16457518935203552, -0.17006835341453552, -0.17116698622703552, -0.17072753608226776, -0.16259765625, -0.16435547173023224, -0.16523437201976776, -0.16413573920726776, -0.1658935546875, -0.16193847358226776, -0.16721190512180328, -0.16633300483226776, -0.15754394233226776, -0.16193847358226776, -0.15292967855930328, -0.15336914360523224, -0.15380859375, -0.15622557699680328, -0.15007324516773224, -0.15029296278953552, -0.147216796875, -0.14919432997703552, -0.1483154296875, -0.14787597954273224, -0.14589843153953552, -0.14304198324680328, -0.142822265625, -0.1527099609375, -0.14699706435203552, -0.1395263671875, -0.14370116591453552, -0.13557128608226776, -0.13579101860523224, -0.1395263671875, -0.13754881918430328, -0.13996581733226776, -0.14040526747703552, -0.1307373046875, -0.13645018637180328, -0.12678222358226776, -0.12678222358226776, -0.12766112387180328, -0.12700195610523224, -0.12282714247703552, -0.12150878459215164, -0.123046875, -0.12919922173023224, -0.12172850966453552, -0.123046875, -0.11689452826976776, -0.11074218153953552, -0.116455078125, -0.1175537109375, -0.11491698771715164, -0.10964354872703552, -0.11271972209215164, -0.10898437350988388, -0.10700683295726776, -0.1131591796875, -0.10986328125, -0.10942382365465164, -0.09821777045726776, -0.10195311903953552, -0.0977783203125, -0.09931640326976776, -0.09426268935203552, -0.09184569865465164, -0.09404296427965164, -0.09030761569738388, -0.08767089247703552, -0.0889892578125, -0.09206542372703552, -0.0823974609375, -0.08393554389476776, -0.085693359375, -0.08635253459215164, -0.07668457180261612, -0.08173827826976776, -0.07756347209215164, -0.07185058295726776, -0.07492675632238388, -0.07602538913488388, -0.07294921576976776, -0.0670166015625, -0.06657714396715164, -0.06965331733226776, -0.06328124552965164, -0.06569824367761612, -0.05690917745232582, -0.06459961086511612, -0.05998535081744194, -0.05888671800494194, -0.0494384765625, -0.04899902269244194, -0.05207519233226776, -0.04636230319738388, -0.04833984375, -0.05075683444738388, -0.04812011495232582, -0.04746093600988388, -0.04328612983226776, -0.03647460788488388, -0.037353515625, -0.03691406175494194, -0.03581542894244194, -0.0274658203125, -0.03317870944738388, -0.02592773362994194, -0.03010253794491291, -0.02482910081744194, -0.019775390625, -0.02043456956744194, -0.01911620981991291, -0.02065429650247097, -0.014501952566206455, -0.0164794921875, -0.01713867112994194, -0.009008788503706455, -0.00527343712747097, -0.003955077845603228, 0.0008789062267169356, -0.0002197265566792339, -0.002197265625, 0.0017578124534338713, 0.0024169920943677425, 0.009008788503706455, 0.009228515438735485, 0.007031249813735485, 0.01406249962747097, 0.01296386681497097, 0.012304686941206455, 0.02021484263241291, 0.01582031138241291, 0.02153320237994194, 0.02438964694738388, 0.02438964694738388, 0.02570800669491291, 0.0296630859375, 0.02153320237994194, 0.02065429650247097, 0.02351074106991291, 0.02438964694738388, 0.02153320237994194, 0.0274658203125, 0.02614746056497097, 0.02197265625, 0.02680663950741291, 0.02702636644244194, 0.0296630859375, 0.02988281100988388, 0.0263671875, 0.024169921875, 0.02504882775247097, 0.02592773362994194, 0.0252685546875, 0.02197265625, 0.02988281100988388, 0.02944335900247097, 0.02241210825741291, 0.0230712890625, 0.02263183519244194, 0.02768554538488388, 0.02219238132238388, 0.0296630859375, 0.024169921875, 0.02021484263241291, 0.02614746056497097, 0.02790527231991291, 0.02922363206744194, 0.02592773362994194 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, 0.0057128905318677425, 0.00527343712747097, 0.004833984188735485, -0.0002197265566792339, 0.0057128905318677425, 0.00439453125, 0.0035156249068677425, 0.001977538922801614, 0.0002197265566792339, -0.0008789062267169356, 0.004833984188735485, 0.0010986328125, 0.0008789062267169356, 0.001977538922801614, -0.0017578124534338713, -0.0035156249068677425, 0.0, -0.0010986328125, 0.00439453125, 0.0035156249068677425, 0.003955077845603228, -0.0017578124534338713, 0.0024169920943677425, 0.0008789062267169356, 0.0006591796409338713, 0.006152343470603228, 0.005053710658103228, 0.0004394531133584678, 0.005932617001235485, 0.0006591796409338713, 0.0004394531133584678, 0.0006591796409338713, -0.002197265625, 0.001538085867650807, 0.00747070275247097, 0.0013183592818677425, 0.0046142577193677425, 0.0002197265566792339, 0.002636718563735485, -0.0004394531133584678, 0.0, -0.0010986328125, 0.0057128905318677425, 0.0, 0.0004394531133584678, 0.0010986328125, 0.002197265625, 0.0017578124534338713, -0.005053710658103228, -0.01054687425494194, -0.005053710658103228, -0.00637206993997097, -0.010986328125, -0.0120849609375, -0.013403319753706455, -0.019775390625, -0.02263183519244194, -0.02263183519244194, -0.02680663950741291, -0.02263183519244194, -0.02395019493997097, -0.02658691257238388, -0.02922363206744194, -0.03559570387005806, -0.03229980543255806, -0.04240722581744194, -0.04350585862994194, -0.03691406175494194, -0.04416503757238388, -0.0450439453125, -0.04460449144244194, -0.04746093600988388, -0.0538330078125, -0.0560302734375, -0.05471191182732582, -0.0604248046875, -0.06064452975988388, -0.06130370870232582, -0.06196288764476776, -0.06240234151482582, -0.06657714396715164, -0.063720703125, -0.07536620646715164, -0.07207030802965164, -0.07316894084215164, -0.07470703125, -0.07316894084215164, -0.07668457180261612, -0.07822265475988388, -0.08437499403953552, -0.08591308444738388, -0.08107910305261612, -0.0911865234375, -0.08876952528953552, -0.08613280951976776, -0.09536132216453552, -0.09316405653953552, -0.09492187201976776, -0.09206542372703552, -0.09865722060203552, -0.10305175185203552, -0.09821777045726776, -0.10744628310203552, -0.11118163913488388, -0.10568847507238388, -0.10788574069738388, -0.10524901747703552, -0.1142578125, -0.10700683295726776, -0.11689452826976776, -0.112060546875, -0.112060546875, -0.11667480319738388, -0.11865234375, -0.11777343600988388, -0.1219482421875, -0.120849609375, -0.12590332329273224, -0.129638671875, -0.13337402045726776, -0.12788085639476776, -0.13469238579273224, -0.12788085639476776, -0.13447265326976776, -0.13337402045726776, -0.13315428793430328, -0.14238281548023224, -0.13908691704273224, -0.13908691704273224, -0.13996581733226776, -0.14216308295726776, -0.14238281548023224, -0.14545898139476776, -0.1439208984375, -0.14523924887180328, -0.14458008110523224, -0.15249022841453552, -0.147216796875, -0.14809569716453552, -0.156005859375, -0.15402831137180328, -0.15336914360523224, -0.15776367485523224, -0.1571044921875, -0.15996094048023224, -0.15776367485523224, -0.16062010824680328, -0.16105957329273224, -0.16259765625, -0.16787108778953552, -0.16413573920726776, -0.17094725370407104, -0.16347655653953552, -0.16721190512180328, -0.17402343451976776, -0.1669921875, -0.1746826171875, -0.16721190512180328, -0.16853027045726776, -0.173583984375, -0.17622070014476776, -0.17622070014476776, -0.1746826171875, -0.17775878310203552, -0.18259276449680328, -0.17929686605930328, -0.177978515625, -0.17841796576976776, -0.17995604872703552, -0.18522948026657104, -0.18435057997703552, -0.18435057997703552, -0.18852537870407104, -0.18830566108226776, -0.18764647841453552, -0.18215331435203552, -0.18500976264476776, -0.19028319418430328, -0.18500976264476776, -0.18764647841453552, -0.19094237685203552, -0.186767578125, -0.18698729574680328, -0.19357909262180328, -0.19028319418430328, -0.191162109375, -0.19291990995407104, -0.1988525390625, -0.19863280653953552, -0.19270019233226776, -0.19797362387180328, -0.18896484375, -0.19687499105930328, -0.19423827528953552, -0.19599609076976776, -0.20192870497703552, -0.19929198920726776, -0.20192870497703552, -0.19248045980930328, -0.199951171875, -0.2032470703125, -0.19841307401657104, -0.19863280653953552, -0.2054443359375, -0.20676268637180328, -0.19687499105930328, -0.20083007216453552, -0.19775390625, -0.20346678793430328, -0.20456542074680328, -0.20456542074680328, -0.20939940214157104, -0.20939940214157104, -0.20258788764476776, -0.20808105170726776, -0.2076416015625, -0.20390623807907104, -0.2054443359375, -0.20742186903953552, -0.21357421576976776, -0.2098388671875, -0.20939940214157104, -0.21401366591453552, -0.2109375, -0.21247558295726776, -0.21291503310203552, -0.20917968451976776, -0.20588378608226776, -0.21071776747703552, -0.21467284858226776, -0.21577148139476776, -0.2120361328125, -0.21511229872703552, -0.21687011420726776, -0.21401366591453552, -0.21818846464157104, -0.21115721762180328, -0.21884764730930328, -0.21533203125, -0.21225585043430328, -0.22324217855930328, -0.20961913466453552, -0.22104491293430328, -0.21621093153953552, -0.213134765625, -0.21291503310203552, -0.21555174887180328, -0.2142333984375, -0.21621093153953552, -0.21994628012180328, -0.21928709745407104, -0.21555174887180328, -0.21840819716453552, -0.21357421576976776, -0.22499999403953552, -0.21708983182907104, -0.21884764730930328, -0.2142333984375, -0.21884764730930328, -0.21379393339157104, -0.22258299589157104, -0.22060546278953552, -0.21950682997703552, -0.22060546278953552, -0.22499999403953552, -0.21555174887180328, -0.22434081137180328, -0.2186279296875, -0.22016601264476776, -0.21533203125, -0.22543944418430328, -0.221923828125, -0.21906737983226776, -0.21950682997703552, -0.22456054389476776, -0.21906737983226776, -0.2230224609375, -0.21708983182907104, -0.22456054389476776, -0.2197265625, -0.221923828125, -0.21665038168430328, -0.2230224609375, -0.2164306640625, -0.22126464545726776, -0.22038573026657104, -0.22478026151657104, -0.21884764730930328, -0.22829589247703552, -0.22038573026657104, -0.2142333984375, -0.22565917670726776, -0.22478026151657104, -0.22478026151657104, -0.21555174887180328, -0.22236327826976776, -0.22434081137180328, -0.22609862685203552, -0.22543944418430328, -0.2186279296875, -0.22697752714157104, -0.22258299589157104, -0.22148436307907104, -0.21357421576976776, -0.21950682997703552, -0.22214354574680328, -0.21840819716453552, -0.22609862685203552, -0.21840819716453552, -0.22346191108226776, -0.22280272841453552, -0.21840819716453552, -0.2164306640625, -0.2197265625, -0.22016601264476776, -0.22104491293430328, -0.217529296875, -0.2186279296875, -0.21884764730930328, -0.22346191108226776, -0.22104491293430328, -0.21928709745407104, -0.2208251953125, -0.2164306640625, -0.22060546278953552, -0.22016601264476776, -0.22016601264476776, -0.22016601264476776, -0.21928709745407104, -0.21533203125, -0.21950682997703552, -0.21291503310203552, -0.22280272841453552, -0.21335448324680328, -0.21027831733226776, -0.21115721762180328, -0.21467284858226776, -0.21291503310203552, -0.21115721762180328, -0.21950682997703552, -0.21621093153953552, -0.21533203125, -0.21489256620407104, -0.21401366591453552, -0.20610350370407104, -0.21159666776657104, -0.21137695014476776, -0.21445311605930328, -0.2164306640625, -0.2076416015625, -0.2109375, -0.20939940214157104, -0.21357421576976776, -0.20961913466453552, -0.21159666776657104, -0.20566405355930328, -0.2109375, -0.21071776747703552, -0.20039062201976776, -0.20852050185203552, -0.20917968451976776, -0.20939940214157104, -0.20170897245407104, -0.20522460341453552, -0.20742186903953552, -0.208740234375, -0.20852050185203552, -0.19731444120407104, -0.20346678793430328, -0.20368652045726776, -0.20302733778953552, -0.19819335639476776, -0.20039062201976776, -0.20126952230930328, -0.1988525390625, -0.19687499105930328, -0.20039062201976776, -0.19643554091453552, -0.193359375, -0.19138182699680328, -0.19643554091453552, -0.19182127714157104, -0.20017088949680328, -0.19687499105930328, -0.19467772543430328, -0.18698729574680328, -0.19357909262180328, -0.18896484375, -0.1922607421875, -0.19357909262180328, -0.18500976264476776, -0.18852537870407104, -0.191162109375, -0.19050292670726776, -0.18940429389476776, -0.1900634765625, -0.19050292670726776, -0.18522948026657104, -0.18325194716453552, -0.1790771484375, -0.18039549887180328, -0.17402343451976776, -0.1746826171875, -0.17819823324680328, -0.18325194716453552, -0.1746826171875, -0.17050780355930328, -0.16765137016773224, -0.16984862089157104, -0.16940917074680328, -0.17446288466453552, -0.1658935546875, -0.17424315214157104, -0.16501463949680328, -0.16567382216453552, -0.1669921875, -0.1669921875, -0.16127929091453552, -0.15974120795726776, -0.16018065810203552, -0.15732420980930328, -0.15534667670726776, -0.15908202528953552, -0.15358886122703552, -0.15512694418430328, -0.14985351264476776, -0.15402831137180328, -0.15380859375, -0.15073241293430328, -0.14853514730930328, -0.14084471762180328, -0.14589843153953552, -0.13754881918430328, -0.14765624701976776, -0.14216308295726776, -0.13930663466453552, -0.13886718451976776, -0.13798828423023224, -0.13754881918430328, -0.13469238579273224, -0.12875975668430328, -0.13315428793430328, -0.1351318359375, -0.1241455078125, -0.1263427734375, -0.1219482421875, -0.11887206882238388, -0.12810058891773224, -0.12172850966453552, -0.12260741740465164, -0.1153564453125, -0.11293944716453552, -0.11447753757238388, -0.1175537109375, -0.11140136420726776, -0.11249999701976776, -0.10305175185203552, -0.10480956733226776, -0.10349120944738388, -0.1043701171875, -0.10458984225988388, -0.10107421875, -0.1043701171875, -0.09294433146715164, -0.09470214694738388, -0.10019531100988388, -0.09074706584215164, -0.08723144233226776, -0.0889892578125, -0.08613280951976776, -0.08107910305261612, -0.085693359375, -0.08371581882238388, -0.08107910305261612, -0.08041992038488388, -0.0780029296875, -0.07207030802965164, -0.07053222507238388, -0.06899414211511612, -0.06569824367761612, -0.06174316257238388, -0.0626220703125, -0.05756835639476776, -0.06086425483226776, -0.05624999850988388, -0.059326171875, -0.05515136569738388, -0.04790038987994194, -0.04702148213982582, -0.04812011495232582, -0.04921874776482582, -0.03999023512005806, -0.03999023512005806, -0.04262695088982582, -0.03889160230755806, -0.03317870944738388, -0.03757324069738388, -0.03691406175494194, -0.02768554538488388, -0.024169921875, -0.02219238132238388, -0.02460937388241291, -0.0230712890625, -0.02153320237994194, -0.0142822265625, -0.01625976525247097, -0.007250976283103228, -0.009448242373764515, -0.012304686941206455, -0.0017578124534338713, 0.0006591796409338713, -0.00439453125, 0.0032958984375, 0.00637206993997097, 0.00527343712747097, 0.011206054128706455, 0.00747070275247097, 0.015380859375, 0.01625976525247097, 0.01054687425494194, 0.0142822265625, 0.02197265625, 0.02351074106991291, 0.02768554538488388, 0.02109374850988388, 0.02329101413488388, 0.02658691257238388, 0.02592773362994194, 0.028564453125, 0.02900390513241291, 0.03208007663488388, 0.024169921875, 0.02570800669491291, 0.0263671875, 0.03317870944738388, 0.02548827975988388, 0.03142089769244194, 0.02768554538488388, 0.02812499925494194, 0.02922363206744194, 0.02329101413488388, 0.02285156212747097, 0.03273925557732582, 0.02790527231991291, 0.028564453125, 0.03054199181497097, 0.02922363206744194, 0.02482910081744194, 0.02680663950741291, 0.02504882775247097, 0.0263671875, 0.02988281100988388, 0.02812499925494194, 0.0263671875, 0.03032226487994194, 0.02438964694738388, 0.02592773362994194, 0.02460937388241291, 0.02900390513241291 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0041748047806322575, 0.003076171735301614, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, 0.00527343712747097, 0.0, 0.002636718563735485, 0.0017578124534338713, -0.001977538922801614, 0.006591796875, 0.0024169920943677425, -0.0017578124534338713, 0.00637206993997097, 0.0035156249068677425, 0.0010986328125, 0.0046142577193677425, 0.0028564452659338713, -0.0002197265566792339, 0.001538085867650807, -0.0013183592818677425, -0.003955077845603228, 0.0032958984375, -0.0017578124534338713, 0.0028564452659338713, 0.0002197265566792339, 0.001977538922801614, 0.001977538922801614, 0.0017578124534338713, 0.006591796875, 0.001977538922801614, -0.001977538922801614, 0.0008789062267169356, 0.001977538922801614, -0.0002197265566792339, 0.005053710658103228, 0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, 0.0046142577193677425, 0.0006591796409338713, 0.0057128905318677425, 0.0013183592818677425, -0.001538085867650807, -0.0035156249068677425, 0.0004394531133584678, -0.003735351376235485, -0.0010986328125, -0.0010986328125, -0.0068115233443677425, -0.009008788503706455, -0.010986328125, -0.010986328125, -0.010107421316206455, -0.012524413876235485, -0.01911620981991291, -0.015600585378706455, -0.02131347544491291, -0.02219238132238388, -0.0318603515625, -0.02944335900247097, -0.0340576171875, -0.03273925557732582, -0.03098144382238388, -0.04020996019244194, -0.04086913913488388, -0.04328612983226776, -0.04130859300494194, -0.04350585862994194, -0.05141601338982582, -0.04855956882238388, -0.05141601338982582, -0.04987792670726776, -0.05559081956744194, -0.05646972358226776, -0.063720703125, -0.06613769382238388, -0.06459961086511612, -0.06657714396715164, -0.07075195014476776, -0.0692138671875, -0.07448730617761612, -0.07888183742761612, -0.0758056640625, -0.0758056640625, -0.07668457180261612, -0.08371581882238388, -0.08745116740465164, -0.08723144233226776, -0.08657225966453552, -0.08964843302965164, -0.0889892578125, -0.09096679091453552, -0.09645995497703552, -0.09909667819738388, -0.09711913764476776, -0.10107421875, -0.10195311903953552, -0.11030273139476776, -0.10502929240465164, -0.10678710788488388, -0.11403807997703552, -0.11733397841453552, -0.11777343600988388, -0.1109619140625, -0.11381835490465164, -0.12128905951976776, -0.11931151896715164, -0.12436523288488388, -0.12150878459215164, -0.1285400390625, -0.12744140625, -0.12370605021715164, -0.12700195610523224, -0.13447265326976776, -0.13161620497703552, -0.13469238579273224, -0.13337402045726776, -0.14194335043430328, -0.14238281548023224, -0.13623046875, -0.13908691704273224, -0.14260253310203552, -0.1439208984375, -0.15029296278953552, -0.14963378012180328, -0.15249022841453552, -0.15578612685203552, -0.15666504204273224, -0.15952147543430328, -0.15534667670726776, -0.14963378012180328, -0.1593017578125, -0.15534667670726776, -0.16018065810203552, -0.15776367485523224, -0.16018065810203552, -0.16721190512180328, -0.15908202528953552, -0.1636962890625, -0.16435547173023224, -0.17138671875, -0.16545410454273224, -0.17182616889476776, -0.17116698622703552, -0.17314451932907104, -0.17314451932907104, -0.173583984375, -0.17226561903953552, -0.17380370199680328, -0.1746826171875, -0.18083494901657104, -0.17951659858226776, -0.18303221464157104, -0.18588866293430328, -0.17885741591453552, -0.18435057997703552, -0.1812744140625, -0.18720702826976776, -0.19160155951976776, -0.191162109375, -0.18720702826976776, -0.19072264432907104, -0.18391112983226776, -0.18764647841453552, -0.19379882514476776, -0.18698729574680328, -0.19467772543430328, -0.19863280653953552, -0.19467772543430328, -0.19160155951976776, -0.19621580839157104, -0.19291990995407104, -0.19094237685203552, -0.20126952230930328, -0.19775390625, -0.19731444120407104, -0.2032470703125, -0.19511717557907104, -0.20017088949680328, -0.20522460341453552, -0.19753417372703552, -0.20126952230930328, -0.20676268637180328, -0.20258788764476776, -0.20895995199680328, -0.20917968451976776, -0.21137695014476776, -0.20917968451976776, -0.2098388671875, -0.20895995199680328, -0.20390623807907104, -0.213134765625, -0.20654296875, -0.21577148139476776, -0.21225585043430328, -0.21335448324680328, -0.21687011420726776, -0.21115721762180328, -0.20852050185203552, -0.2120361328125, -0.20939940214157104, -0.21796874701976776, -0.21269530057907104, -0.21489256620407104, -0.21796874701976776, -0.21445311605930328, -0.21511229872703552, -0.21994628012180328, -0.22148436307907104, -0.217529296875, -0.21818846464157104, -0.22456054389476776, -0.21730956435203552, -0.22170409560203552, -0.22543944418430328, -0.22104491293430328, -0.21906737983226776, -0.22434081137180328, -0.22104491293430328, -0.22258299589157104, -0.22434081137180328, -0.22763670980930328, -0.22126464545726776, -0.22499999403953552, -0.22873534262180328, -0.22280272841453552, -0.22873534262180328, -0.2274169921875, -0.22456054389476776, -0.22917479276657104, -0.22983397543430328, -0.22258299589157104, -0.22214354574680328, -0.22434081137180328, -0.22390136122703552, -0.23027342557907104, -0.2274169921875, -0.230712890625, -0.22719725966453552, -0.22807615995407104, -0.22587889432907104, -0.23115234076976776, -0.22807615995407104, -0.22719725966453552, -0.23093260824680328, -0.22719725966453552, -0.23159179091453552, -0.22543944418430328, -0.23137205839157104, -0.23247069120407104, -0.23115234076976776, -0.23137205839157104, -0.22785644233226776, -0.23752440512180328, -0.2340087890625, -0.235107421875, -0.23422850668430328, -0.23378905653953552, -0.23269042372703552, -0.22983397543430328, -0.235107421875, -0.22895507514476776, -0.22719725966453552, -0.23269042372703552, -0.23334960639476776, -0.2318115234375, -0.22983397543430328, -0.23137205839157104, -0.230712890625, -0.23203124105930328, -0.22653807699680328, -0.22807615995407104, -0.230712890625, -0.23356932401657104, -0.22939452528953552, -0.23422850668430328, -0.23378905653953552, -0.23269042372703552, -0.23005370795726776, -0.23115234076976776, -0.22653807699680328, -0.226318359375, -0.230712890625, -0.23906248807907104, -0.23225097358226776, -0.23994140326976776, -0.2340087890625, -0.2230224609375, -0.23378905653953552, -0.23159179091453552, -0.23554687201976776, -0.22719725966453552, -0.23291015625, -0.2340087890625, -0.23312987387180328, -0.22829589247703552, -0.22895507514476776, -0.23708495497703552, -0.23466795682907104, -0.2274169921875, -0.22807615995407104, -0.23708495497703552, -0.22785644233226776, -0.23027342557907104, -0.22697752714157104, -0.23356932401657104, -0.22895507514476776, -0.23115234076976776, -0.22653807699680328, -0.22653807699680328, -0.22829589247703552, -0.23247069120407104, -0.22983397543430328, -0.23291015625, -0.23027342557907104, -0.23247069120407104, -0.23005370795726776, -0.22873534262180328, -0.22434081137180328, -0.23554687201976776, -0.23005370795726776, -0.22697752714157104, -0.22917479276657104, -0.228515625, -0.22478026151657104, -0.22368162870407104, -0.22346191108226776, -0.23356932401657104, -0.22038573026657104, -0.22214354574680328, -0.22499999403953552, -0.22675780951976776, -0.22653807699680328, -0.22983397543430328, -0.22280272841453552, -0.22258299589157104, -0.2318115234375, -0.22829589247703552, -0.22785644233226776, -0.22609862685203552, -0.21950682997703552, -0.21796874701976776, -0.228515625, -0.22456054389476776, -0.226318359375, -0.22060546278953552, -0.22983397543430328, -0.21906737983226776, -0.2197265625, -0.22543944418430328, -0.22368162870407104, -0.21796874701976776, -0.21687011420726776, -0.2197265625, -0.22478026151657104, -0.21577148139476776, -0.21884764730930328, -0.22148436307907104, -0.22346191108226776, -0.22126464545726776, -0.22258299589157104, -0.213134765625, -0.21884764730930328, -0.2186279296875, -0.21708983182907104, -0.21884764730930328, -0.21401366591453552, -0.22126464545726776, -0.21533203125, -0.21818846464157104, -0.21181640028953552, -0.21247558295726776, -0.2109375, -0.2098388671875, -0.2120361328125, -0.20588378608226776, -0.21159666776657104, -0.20522460341453552, -0.20895995199680328, -0.20742186903953552, -0.20478515326976776, -0.20852050185203552, -0.21159666776657104, -0.20742186903953552, -0.19951170682907104, -0.20720213651657104, -0.20698241889476776, -0.2098388671875, -0.20126952230930328, -0.20808105170726776, -0.20895995199680328, -0.20566405355930328, -0.199951171875, -0.20698241889476776, -0.19819335639476776, -0.19929198920726776, -0.19973143935203552, -0.19423827528953552, -0.20170897245407104, -0.19621580839157104, -0.19577635824680328, -0.19511717557907104, -0.19489745795726776, -0.19182127714157104, -0.19248045980930328, -0.19533690810203552, -0.18544921278953552, -0.19401854276657104, -0.18918456137180328, -0.18413084745407104, -0.18083494901657104, -0.18391112983226776, -0.18962401151657104, -0.182373046875, -0.177978515625, -0.17929686605930328, -0.18435057997703552, -0.18039549887180328, -0.18083494901657104, -0.17951659858226776, -0.1790771484375, -0.1768798828125, -0.17644041776657104, -0.17402343451976776, -0.17424315214157104, -0.17116698622703552, -0.16215820610523224, -0.17072753608226776, -0.16677245497703552, -0.16171874105930328, -0.16391600668430328, -0.16127929091453552, -0.16259765625, -0.16347655653953552, -0.16127929091453552, -0.1593017578125, -0.15314941108226776, -0.14963378012180328, -0.14897461235523224, -0.14699706435203552, -0.14633788168430328, -0.14436034858226776, -0.14150390028953552, -0.14348144829273224, -0.1461181640625, -0.13798828423023224, -0.14040526747703552, -0.13666991889476776, -0.13139648735523224, -0.13205565512180328, -0.13359375298023224, -0.13161620497703552, -0.1263427734375, -0.12897948920726776, -0.12612304091453552, -0.12326660007238388, -0.123046875, -0.120849609375, -0.11909179389476776, -0.11337890475988388, -0.11843261122703552, -0.10810546576976776, -0.11228027194738388, -0.10788574069738388, -0.10568847507238388, -0.10612792521715164, -0.10239257663488388, -0.10019531100988388, -0.10129394382238388, -0.10019531100988388, -0.09426268935203552, -0.08986815810203552, -0.09250488132238388, -0.0933837890625, -0.08964843302965164, -0.08876952528953552, -0.08415526896715164, -0.08525390177965164, -0.0823974609375, -0.07954101264476776, -0.07338867336511612, -0.07624511420726776, -0.0692138671875, -0.06657714396715164, -0.06767577677965164, -0.06767577677965164, -0.06196288764476776, -0.06196288764476776, -0.05339355394244194, -0.05910644307732582, -0.05185546725988388, -0.05295410007238388, -0.05251464620232582, -0.04526367038488388, -0.04702148213982582, -0.0450439453125, -0.04152831807732582, -0.0439453125, -0.03603515401482582, -0.0318603515625, -0.03010253794491291, -0.0274658203125, -0.02922363206744194, -0.02329101413488388, -0.02175292931497097, -0.01516113243997097, -0.01691894419491291, -0.014721679501235485, -0.0087890625, -0.011206054128706455, -0.010107421316206455, -0.005932617001235485, -0.00527343712747097, 0.0006591796409338713, 0.0, 0.0032958984375, 0.00439453125, 0.014721679501235485, 0.015380859375, 0.013403319753706455, 0.0186767578125, 0.02131347544491291, 0.02197265625, 0.02065429650247097, 0.032958984375, 0.03142089769244194, 0.02944335900247097, 0.03054199181497097, 0.02702636644244194, 0.02790527231991291, 0.03010253794491291, 0.02658691257238388, 0.03208007663488388, 0.03229980543255806, 0.03208007663488388, 0.03142089769244194, 0.03273925557732582, 0.03449707105755806, 0.03054199181497097, 0.02702636644244194, 0.03317870944738388, 0.028564453125, 0.03076171875, 0.03120117075741291, 0.02548827975988388, 0.0263671875, 0.03647460788488388, 0.02592773362994194, 0.02878417819738388, 0.02702636644244194, 0.02504882775247097, 0.02548827975988388, 0.02988281100988388, 0.03010253794491291, 0.03229980543255806, 0.03317870944738388, 0.03515625, 0.02944335900247097, 0.02724609337747097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.001977538922801614, 0.0010986328125, 0.0057128905318677425, -0.0004394531133584678, 0.0017578124534338713, 0.0004394531133584678, 0.006591796875, 0.0013183592818677425, -0.0017578124534338713, 0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, 0.0054931640625, 0.003735351376235485, 0.005932617001235485, 0.0032958984375, 0.00637206993997097, -0.001977538922801614, 0.0024169920943677425, 0.0068115233443677425, 0.002636718563735485, 0.0041748047806322575, 0.005053710658103228, -0.0017578124534338713, -0.0004394531133584678, 0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, 0.0054931640625, -0.0017578124534338713, 0.0028564452659338713, -0.0006591796409338713, 0.0006591796409338713, 0.0035156249068677425, 0.0008789062267169356, 0.0046142577193677425, -0.003955077845603228, 0.0017578124534338713, -0.003955077845603228, 0.0017578124534338713, -0.001977538922801614, 0.0054931640625, 0.003955077845603228, -0.0024169920943677425, 0.0002197265566792339, 0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.003955077845603228, 0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.0002197265566792339, 0.002197265625, -0.0004394531133584678, -0.003955077845603228, -0.002197265625, -0.0013183592818677425, 0.0, -0.0010986328125, -0.0046142577193677425, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.00637206993997097, -0.007250976283103228, -0.0046142577193677425, -0.0006591796409338713, -0.007250976283103228, -0.0054931640625, -0.007250976283103228, -0.006591796875, -0.007250976283103228, -0.00966796837747097, 0.0017578124534338713, -0.004833984188735485, -0.0057128905318677425, 0.0008789062267169356, -0.0032958984375, 0.001538085867650807, -0.003955077845603228, -0.0008789062267169356, 0.001538085867650807, -0.0010986328125, 0.00747070275247097, 0.0008789062267169356, 0.002636718563735485, 0.010986328125, 0.0035156249068677425, 0.009448242373764515, 0.0046142577193677425, 0.013623046688735485, 0.01054687425494194, 0.009228515438735485, 0.01516113243997097, 0.015600585378706455, 0.01669921912252903, 0.01274413987994194, 0.01494140550494194, 0.01516113243997097, 0.02065429650247097, 0.0186767578125, 0.02043456956744194, 0.02548827975988388, 0.01823730394244194, 0.02373046800494194, 0.02658691257238388, 0.02482910081744194, 0.02614746056497097, 0.02153320237994194, 0.019775390625, 0.02504882775247097, 0.02153320237994194, 0.02175292931497097, 0.02658691257238388, 0.01845703087747097, 0.01823730394244194, 0.02043456956744194, 0.02131347544491291, 0.01845703087747097, 0.01845703087747097, 0.01933593675494194, 0.011206054128706455, 0.01494140550494194, 0.01384277269244194, 0.01076660118997097, 0.012524413876235485, 0.003955077845603228, 0.007910155691206455, 0.007250976283103228, 0.0035156249068677425, -0.0006591796409338713, -0.002636718563735485, 0.0004394531133584678, -0.009008788503706455, -0.00856933556497097, -0.01318359375, -0.00966796837747097, -0.01186523400247097, -0.01274413987994194, -0.013403319753706455, -0.017578125, -0.01779785193502903, -0.01955566368997097, -0.02197265625, -0.02263183519244194, -0.02702636644244194, -0.032958984375, -0.02702636644244194, -0.028564453125, -0.03669433668255806, -0.02944335900247097, -0.03691406175494194, -0.03537597507238388, -0.0318603515625, -0.037353515625, -0.03955078125, -0.03361816331744194, -0.037353515625, -0.03164062276482582, -0.03801269456744194, -0.03669433668255806, -0.03383788838982582, -0.02988281100988388, -0.02790527231991291, -0.03120117075741291, -0.02504882775247097, -0.028564453125, -0.02834472618997097, -0.01669921912252903, -0.02043456956744194, -0.01625976525247097, -0.01164550706744194, -0.010107421316206455, -0.0098876953125, -0.009008788503706455, -0.00856933556497097, -0.005932617001235485, -0.002197265625, -0.0013183592818677425, 0.010986328125, 0.013403319753706455, 0.01494140550494194, 0.01516113243997097, 0.015380859375, 0.02373046800494194, 0.02021484263241291, 0.02460937388241291, 0.028564453125, 0.02724609337747097, 0.03273925557732582, 0.03208007663488388, 0.03801269456744194, 0.04218749701976776, 0.0384521484375, 0.04570312425494194, 0.04526367038488388, 0.04877929389476776, 0.04350585862994194, 0.04812011495232582, 0.05229492112994194, 0.05295410007238388, 0.05009765550494194, 0.04987792670726776, 0.05075683444738388, 0.05207519233226776, 0.04965820163488388, 0.04548339545726776, 0.04240722581744194, 0.04768066108226776, 0.04152831807732582, 0.04702148213982582, 0.04438476264476776, 0.03647460788488388, 0.03889160230755806, 0.03339843824505806, 0.03559570387005806, 0.03208007663488388, 0.02504882775247097, 0.02395019493997097, 0.02197265625, 0.014501952566206455, 0.01911620981991291, 0.01516113243997097, 0.007031249813735485, 0.0068115233443677425, -0.0008789062267169356, 0.001538085867650807, -0.005053710658103228, -0.007031249813735485, -0.01186523400247097, -0.0142822265625, -0.017578125, -0.02395019493997097, -0.02812499925494194, -0.03010253794491291, -0.03010253794491291, -0.0296630859375, -0.03098144382238388, -0.03603515401482582, -0.04042968526482582, -0.04570312425494194, -0.04921874776482582, -0.04592284932732582, -0.04877929389476776, -0.04482421651482582, -0.04592284932732582, -0.04855956882238388, -0.04987792670726776, -0.0560302734375, -0.05537109076976776, -0.05778808519244194, -0.05668945237994194, -0.04790038987994194, -0.0494384765625, -0.04636230319738388, -0.05317382514476776, -0.0439453125, -0.04702148213982582, -0.04548339545726776, -0.03999023512005806, -0.03867187350988388, -0.037353515625, -0.03251953050494194, -0.03120117075741291, -0.02680663950741291, -0.03098144382238388, -0.0230712890625, -0.01669921912252903, -0.014721679501235485, -0.01274413987994194, -0.010107421316206455, -0.0057128905318677425, -0.003735351376235485, -0.003735351376235485, 0.0041748047806322575, 0.00747070275247097, 0.006591796875, 0.01296386681497097, 0.0208740234375, 0.02175292931497097, 0.02438964694738388, 0.03120117075741291, 0.03559570387005806, 0.03273925557732582, 0.03823241963982582, 0.041748046875, 0.046142578125, 0.04306640475988388, 0.04328612983226776, 0.04855956882238388, 0.05229492112994194, 0.0560302734375, 0.0516357421875, 0.05690917745232582, 0.05339355394244194, 0.05405273288488388, 0.06130370870232582, 0.05537109076976776, 0.05075683444738388, 0.05317382514476776, 0.05844726413488388, 0.05251464620232582, 0.05229492112994194, 0.05339355394244194, 0.0516357421875, 0.05009765550494194, 0.0494384765625, 0.04130859300494194, 0.04812011495232582, 0.04042968526482582, 0.03559570387005806, 0.04020996019244194, 0.03691406175494194, 0.02900390513241291, 0.03208007663488388, 0.02504882775247097, 0.02043456956744194, 0.01713867112994194, 0.01318359375, 0.010107421316206455, 0.0087890625, 0.0046142577193677425, -0.0002197265566792339, -0.002197265625, -0.01186523400247097, -0.006591796875, -0.015380859375, -0.02285156212747097, -0.02131347544491291, -0.02153320237994194, -0.02900390513241291, -0.02768554538488388, -0.03164062276482582, -0.037353515625, -0.03801269456744194, -0.03955078125, -0.04108886793255806, -0.04262695088982582, -0.03955078125, -0.04350585862994194, -0.04130859300494194, -0.04899902269244194, -0.04746093600988388, -0.04855956882238388, -0.04592284932732582, -0.05075683444738388, -0.04592284932732582, -0.052734375, -0.05031738057732582, -0.0494384765625, -0.04196777194738388, -0.04020996019244194, -0.04020996019244194, -0.03867187350988388, -0.04460449144244194, -0.0340576171875, -0.03977050632238388, -0.03010253794491291, -0.0296630859375, -0.02482910081744194, -0.02834472618997097, -0.02175292931497097, -0.014721679501235485, -0.014501952566206455, -0.01582031138241291, -0.011425781063735485, -0.0054931640625, -0.005053710658103228, -0.0068115233443677425, 0.0017578124534338713, 0.003735351376235485, 0.0046142577193677425, 0.006591796875, 0.013623046688735485, 0.010986328125, 0.02021484263241291, 0.02197265625, 0.02482910081744194, 0.02592773362994194, 0.028564453125, 0.03251953050494194, 0.02900390513241291, 0.03383788838982582, 0.03098144382238388, 0.03493652120232582, 0.03691406175494194, 0.04042968526482582, 0.041748046875, 0.03801269456744194, 0.04636230319738388, 0.03955078125, 0.04812011495232582, 0.04460449144244194, 0.04570312425494194, 0.04680175706744194, 0.03933105245232582, 0.04702148213982582, 0.04460449144244194, 0.03933105245232582, 0.03647460788488388, 0.03427734225988388, 0.03691406175494194, 0.03823241963982582, 0.03142089769244194, 0.03493652120232582, 0.02900390513241291, 0.03361816331744194, 0.02504882775247097, 0.02197265625, 0.02263183519244194, 0.02131347544491291, 0.01669921912252903, 0.01933593675494194, 0.01054687425494194, 0.01186523400247097, 0.01054687425494194, 0.0068115233443677425, 0.0046142577193677425, 0.0041748047806322575, -0.001538085867650807, -0.00637206993997097, -0.00966796837747097, -0.012304686941206455, -0.006152343470603228, -0.010986328125, -0.01625976525247097, -0.01801757700741291, -0.02021484263241291, -0.01625976525247097, -0.02175292931497097, -0.01933593675494194, -0.02351074106991291, -0.02263183519244194, -0.02614746056497097, -0.028564453125, -0.0230712890625, -0.02285156212747097, -0.02724609337747097, -0.02834472618997097, -0.0274658203125, -0.02878417819738388, -0.02834472618997097, -0.0274658203125, -0.0274658203125, -0.02241210825741291, -0.02504882775247097, -0.02438964694738388, -0.02812499925494194, -0.02570800669491291, -0.01625976525247097, -0.02263183519244194, -0.01735839806497097, -0.01406249962747097, -0.01955566368997097, -0.01999511756002903, -0.01406249962747097, -0.01186523400247097, -0.01494140550494194, -0.0120849609375, -0.01186523400247097, -0.00856933556497097, -0.00966796837747097, -0.0054931640625, 0.0017578124534338713, 0.0, 0.0008789062267169356, 0.0028564452659338713, 0.0057128905318677425, 0.0010986328125, 0.003076171735301614, 0.008349609561264515, 0.009008788503706455, 0.00747070275247097, 0.0076904296875, 0.00856933556497097, 0.013403319753706455, 0.0164794921875, 0.01494140550494194, 0.015600585378706455, 0.017578125, 0.012304686941206455, 0.01516113243997097, 0.01186523400247097, 0.01625976525247097, 0.01582031138241291, 0.01823730394244194, 0.01801757700741291, 0.0120849609375, 0.01779785193502903, 0.012304686941206455, 0.01823730394244194, 0.0142822265625, 0.008129882626235485, 0.01691894419491291, 0.01494140550494194, 0.011425781063735485, 0.015600585378706455, 0.01296386681497097, 0.0057128905318677425, 0.010107421316206455, 0.006591796875, 0.009008788503706455, 0.01164550706744194, 0.00856933556497097, 0.0028564452659338713, -0.0004394531133584678, 0.0041748047806322575, 0.0002197265566792339, 0.001977538922801614, 0.00856933556497097, 0.0017578124534338713, 0.002636718563735485, 0.0057128905318677425, 0.006152343470603228, -0.0017578124534338713, -0.003735351376235485, 0.0013183592818677425, 0.0054931640625, -0.002197265625, -0.001977538922801614, -0.003735351376235485, -0.002636718563735485, -0.003076171735301614, 0.0013183592818677425, 0.006152343470603228, 0.0, 0.00527343712747097, 0.0017578124534338713, 0.0041748047806322575, 0.0010986328125, -0.0010986328125, -0.0006591796409338713, 0.003955077845603228, 0.002636718563735485, 0.0008789062267169356, 0.0032958984375, -0.001538085867650807, 0.0035156249068677425, -0.0017578124534338713, 0.00439453125, 0.003735351376235485, 0.002197265625, 0.0057128905318677425, -0.0024169920943677425, 0.005053710658103228, 0.0028564452659338713, -0.0035156249068677425, 0.0006591796409338713, 0.00439453125, -0.003735351376235485, 0.003955077845603228, 0.0046142577193677425, -0.0017578124534338713, 0.0032958984375, -0.0013183592818677425, 0.00439453125, 0.0068115233443677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00439453125, 0.0004394531133584678, 0.005053710658103228, 0.0004394531133584678, -0.0035156249068677425, 0.0010986328125, 0.0024169920943677425, 0.001977538922801614, 0.004833984188735485, 0.0, -0.0010986328125, 0.0046142577193677425, 0.0057128905318677425, -0.0008789062267169356, 0.004833984188735485, -0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0032958984375, 0.0002197265566792339, 0.0028564452659338713, 0.005053710658103228, 0.003735351376235485, -0.0010986328125, 0.002197265625, 0.0004394531133584678, 0.0028564452659338713, 0.001538085867650807, 0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, 0.0008789062267169356, 0.0, 0.0010986328125, 0.003955077845603228, 0.00439453125, 0.005053710658103228, 0.0010986328125, 0.0004394531133584678, -0.0004394531133584678, -0.001977538922801614, 0.003735351376235485, 0.006591796875, 0.00527343712747097, 0.001977538922801614, 0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, 0.0004394531133584678, 0.003735351376235485, -0.0004394531133584678, 0.0006591796409338713, -0.007250976283103228, -0.0035156249068677425, -0.007910155691206455, -0.01076660118997097, -0.001977538922801614, -0.0076904296875, -0.0120849609375, -0.002197265625, -0.0054931640625, -0.007031249813735485, -0.0054931640625, -0.011206054128706455, -0.01494140550494194, -0.01406249962747097, -0.01186523400247097, -0.01274413987994194, -0.009008788503706455, -0.0076904296875, -0.012524413876235485, -0.0120849609375, -0.01669921912252903, -0.01384277269244194, -0.01164550706744194, -0.0120849609375, -0.008129882626235485, -0.00747070275247097, -0.00439453125, -0.00637206993997097, -0.008129882626235485, -0.003955077845603228, 0.0, -0.0017578124534338713, 0.00747070275247097, 0.001977538922801614, 0.003735351376235485, 0.0098876953125, 0.011206054128706455, 0.014501952566206455, 0.01823730394244194, 0.01318359375, 0.02021484263241291, 0.02131347544491291, 0.01933593675494194, 0.02263183519244194, 0.02900390513241291, 0.02900390513241291, 0.03229980543255806, 0.03098144382238388, 0.0318603515625, 0.03955078125, 0.03317870944738388, 0.03757324069738388, 0.03757324069738388, 0.0472412109375, 0.03889160230755806, 0.0472412109375, 0.04570312425494194, 0.04636230319738388, 0.04042968526482582, 0.04350585862994194, 0.04790038987994194, 0.04812011495232582, 0.04877929389476776, 0.04240722581744194, 0.04328612983226776, 0.04372558370232582, 0.03823241963982582, 0.04482421651482582, 0.03449707105755806, 0.03339843824505806, 0.03581542894244194, 0.02812499925494194, 0.03164062276482582, 0.0252685546875, 0.024169921875, 0.02153320237994194, 0.01823730394244194, 0.014721679501235485, 0.01054687425494194, 0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, -0.009228515438735485, -0.007250976283103228, -0.01054687425494194, -0.0208740234375, -0.01713867112994194, -0.02263183519244194, -0.02592773362994194, -0.03361816331744194, -0.0362548828125, -0.04240722581744194, -0.0406494140625, -0.04570312425494194, -0.05449218675494194, -0.052734375, -0.06218261644244194, -0.0615234375, -0.06240234151482582, -0.06218261644244194, -0.06789550930261612, -0.07009277492761612, -0.06503906100988388, -0.07163085788488388, -0.0714111328125, -0.07119140774011612, -0.0703125, -0.07097167521715164, -0.07514648139476776, -0.07163085788488388, -0.07185058295726776, -0.06855468451976776, -0.0626220703125, -0.06789550930261612, -0.06020507588982582, -0.0626220703125, -0.04877929389476776, -0.05097655951976776, -0.05207519233226776, -0.04152831807732582, -0.03559570387005806, -0.0296630859375, -0.03098144382238388, -0.02570800669491291, -0.02460937388241291, -0.01076660118997097, -0.0142822265625, -0.005053710658103228, 0.003735351376235485, 0.006591796875, 0.013623046688735485, 0.01713867112994194, 0.02768554538488388, 0.02504882775247097, 0.02900390513241291, 0.03493652120232582, 0.04636230319738388, 0.05515136569738388, 0.05624999850988388, 0.06350097805261612, 0.059326171875, 0.07448730617761612, 0.07229004055261612, 0.07163085788488388, 0.08173827826976776, 0.08547362685203552, 0.08261718600988388, 0.09294433146715164, 0.08920898288488388, 0.09162597358226776, 0.09645995497703552, 0.10019531100988388, 0.09580077975988388, 0.09975585341453552, 0.09821777045726776, 0.09975585341453552, 0.08876952528953552, 0.09294433146715164, 0.09074706584215164, 0.08986815810203552, 0.0889892578125, 0.08591308444738388, 0.07536620646715164, 0.07448730617761612, 0.07558593899011612, 0.06965331733226776, 0.06086425483226776, 0.06240234151482582, 0.04899902269244194, 0.04548339545726776, 0.04570312425494194, 0.03515625, 0.02900390513241291, 0.02768554538488388, 0.01779785193502903, 0.01494140550494194, 0.0017578124534338713, -0.0068115233443677425, -0.0054931640625, -0.01955566368997097, -0.02395019493997097, -0.02351074106991291, -0.03779296949505806, -0.04416503757238388, -0.04965820163488388, -0.0494384765625, -0.05756835639476776, -0.06635741889476776, -0.0692138671875, -0.07470703125, -0.07624511420726776, -0.08876952528953552, -0.08283691108226776, -0.09645995497703552, -0.09184569865465164, -0.09843749552965164, -0.10195311903953552, -0.10063476115465164, -0.10107421875, -0.10195311903953552, -0.10261230170726776, -0.10568847507238388, -0.10239257663488388, -0.103271484375, -0.1021728515625, -0.1043701171875, -0.09755858778953552, -0.09272460639476776, -0.09030761569738388, -0.085693359375, -0.087890625, -0.08371581882238388, -0.07734374701976776, -0.07646483927965164, -0.0703125, -0.06108398362994194, -0.05778808519244194, -0.052734375, -0.04526367038488388, -0.03515625, -0.02878417819738388, -0.01845703087747097, -0.01054687425494194, -0.00856933556497097, -0.0002197265566792339, 0.011206054128706455, 0.01494140550494194, 0.0230712890625, 0.02812499925494194, 0.04042968526482582, 0.04570312425494194, 0.046142578125, 0.05031738057732582, 0.05998535081744194, 0.06547851115465164, 0.07668457180261612, 0.08261718600988388, 0.08305663615465164, 0.085693359375, 0.09162597358226776, 0.09602050483226776, 0.09645995497703552, 0.09865722060203552, 0.10920409858226776, 0.11381835490465164, 0.10854491591453552, 0.11030273139476776, 0.11293944716453552, 0.11491698771715164, 0.10942382365465164, 0.1109619140625, 0.10832519084215164, 0.11228027194738388, 0.11008300632238388, 0.10524901747703552, 0.10195311903953552, 0.10349120944738388, 0.09404296427965164, 0.08986815810203552, 0.08591308444738388, 0.07954101264476776, 0.07756347209215164, 0.07009277492761612, 0.06130370870232582, 0.06130370870232582, 0.05119628831744194, 0.03999023512005806, 0.04042968526482582, 0.03383788838982582, 0.02438964694738388, 0.01516113243997097, 0.0120849609375, 0.003076171735301614, -0.0013183592818677425, -0.0068115233443677425, -0.01164550706744194, -0.01955566368997097, -0.03164062276482582, -0.03911132737994194, -0.03911132737994194, -0.0472412109375, -0.05185546725988388, -0.0560302734375, -0.06833495944738388, -0.072509765625, -0.07624511420726776, -0.0758056640625, -0.08261718600988388, -0.0845947265625, -0.09426268935203552, -0.08964843302965164, -0.09602050483226776, -0.09733886271715164, -0.10195311903953552, -0.10107421875, -0.098876953125, -0.09711913764476776, -0.10502929240465164, -0.10063476115465164, -0.09799804538488388, -0.09470214694738388, -0.08942870795726776, -0.09316405653953552, -0.09052734076976776, -0.0845947265625, -0.07888183742761612, -0.07426757365465164, -0.07514648139476776, -0.06767577677965164, -0.06416015326976776, -0.0582275390625, -0.05888671800494194, -0.04526367038488388, -0.04130859300494194, -0.04130859300494194, -0.03427734225988388, -0.02175292931497097, -0.02658691257238388, -0.0142822265625, -0.01164550706744194, -0.0028564452659338713, 0.007250976283103228, 0.009008788503706455, 0.01955566368997097, 0.02153320237994194, 0.03076171875, 0.03164062276482582, 0.03999023512005806, 0.03933105245232582, 0.04680175706744194, 0.05185546725988388, 0.05646972358226776, 0.063720703125, 0.06525878608226776, 0.07119140774011612, 0.0703125, 0.0703125, 0.08415526896715164, 0.085693359375, 0.07998047024011612, 0.08327636867761612, 0.08942870795726776, 0.08063964545726776, 0.08041992038488388, 0.08635253459215164, 0.08635253459215164, 0.08437499403953552, 0.07998047024011612, 0.08723144233226776, 0.07844237983226776, 0.07602538913488388, 0.07404784858226776, 0.07229004055261612, 0.07316894084215164, 0.07075195014476776, 0.05778808519244194, 0.0626220703125, 0.05097655951976776, 0.054931640625, 0.04790038987994194, 0.04328612983226776, 0.03537597507238388, 0.03515625, 0.02570800669491291, 0.02373046800494194, 0.02175292931497097, 0.014501952566206455, 0.00966796837747097, 0.005053710658103228, -0.006152343470603228, -0.005053710658103228, -0.01296386681497097, -0.01054687425494194, -0.01604003831744194, -0.02065429650247097, -0.02153320237994194, -0.02812499925494194, -0.02944335900247097, -0.0384521484375, -0.03713378682732582, -0.04570312425494194, -0.04086913913488388, -0.05207519233226776, -0.05251464620232582, -0.04680175706744194, -0.05361327901482582, -0.05251464620232582, -0.054931640625, -0.05427245795726776, -0.05910644307732582, -0.06064452975988388, -0.05800781026482582, -0.05097655951976776, -0.054931640625, -0.05581054463982582, -0.05690917745232582, -0.05515136569738388, -0.05141601338982582, -0.04987792670726776, -0.04680175706744194, -0.03933105245232582, -0.03999023512005806, -0.03889160230755806, -0.037353515625, -0.032958984375, -0.03010253794491291, -0.02812499925494194, -0.02329101413488388, -0.02548827975988388, -0.02131347544491291, -0.0208740234375, -0.01911620981991291, -0.00637206993997097, -0.005932617001235485, -0.006591796875, 0.001977538922801614, 0.002197265625, 0.0004394531133584678, 0.0028564452659338713, 0.00637206993997097, 0.01318359375, 0.014721679501235485, 0.01516113243997097, 0.01604003831744194, 0.02285156212747097, 0.02131347544491291, 0.0230712890625, 0.02834472618997097, 0.0274658203125, 0.02834472618997097, 0.02175292931497097, 0.02878417819738388, 0.02592773362994194, 0.032958984375, 0.03120117075741291, 0.03076171875, 0.0274658203125, 0.0252685546875, 0.03054199181497097, 0.03076171875, 0.02460937388241291, 0.02438964694738388, 0.02724609337747097, 0.01845703087747097, 0.02812499925494194, 0.02021484263241291, 0.017578125, 0.02065429650247097, 0.02065429650247097, 0.019775390625, 0.01845703087747097, 0.02065429650247097, 0.011206054128706455, 0.008349609561264515, 0.01186523400247097, 0.01164550706744194, 0.0032958984375, 0.010107421316206455, 0.0068115233443677425, 0.0054931640625, 0.009008788503706455, 0.0076904296875, 0.0013183592818677425, -0.003076171735301614, 0.0008789062267169356, 0.003735351376235485, -0.0041748047806322575, 0.00527343712747097, 0.001977538922801614, -0.002636718563735485, -0.001977538922801614, 0.003955077845603228, 0.0046142577193677425, 0.001977538922801614, 0.0, -0.0002197265566792339, 0.0032958984375, 0.0054931640625, -0.0006591796409338713, -0.0008789062267169356, 0.0013183592818677425, 0.0013183592818677425, 0.00439453125, 0.0002197265566792339, -0.0028564452659338713, 0.0010986328125, 0.002197265625, -0.0017578124534338713, 0.0008789062267169356, 0.0024169920943677425, -0.001977538922801614, 0.0013183592818677425, -0.0013183592818677425, 0.0068115233443677425, 0.0024169920943677425, 0.0028564452659338713, 0.005053710658103228, 0.0017578124534338713, 0.001538085867650807, 0.0008789062267169356, -0.0024169920943677425, -0.0035156249068677425, 0.0002197265566792339, -0.003735351376235485, 0.0035156249068677425, 0.007250976283103228, 0.00439453125, 0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0024169920943677425, 0.0004394531133584678, -0.0004394531133584678, 0.0017578124534338713, 0.0017578124534338713, -0.0010986328125, 0.0028564452659338713, 0.0002197265566792339, 0.0013183592818677425, 0.0010986328125, 0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, 0.0004394531133584678, 0.0013183592818677425, -0.0032958984375, 0.001538085867650807, -0.0028564452659338713, -0.002197265625, 0.006591796875, 0.0017578124534338713, -0.001977538922801614, 0.0028564452659338713, 0.0028564452659338713, 0.0024169920943677425, 0.0, 0.0076904296875, 0.001538085867650807, -0.0032958984375, 0.0032958984375, -0.0017578124534338713, 0.0046142577193677425, 0.003955077845603228, -0.002197265625, 0.0002197265566792339, 0.0, 0.00439453125, 0.0013183592818677425, 0.0046142577193677425, 0.0008789062267169356, 0.003076171735301614, -0.001977538922801614, 0.0013183592818677425, -0.003735351376235485, 0.007250976283103228, 0.0002197265566792339, -0.0024169920943677425, 0.0002197265566792339, 0.0004394531133584678, 0.001538085867650807, -0.00439453125, -0.005053710658103228, -0.01054687425494194, -0.0041748047806322575, -0.0028564452659338713, -0.006591796875, -0.0076904296875, -0.010327148251235485, -0.01186523400247097, -0.0120849609375, -0.01604003831744194, -0.014721679501235485, -0.01691894419491291, -0.02329101413488388, -0.02021484263241291, -0.02329101413488388, -0.01779785193502903, -0.01494140550494194, -0.01955566368997097, -0.01823730394244194, -0.01384277269244194, -0.01384277269244194, -0.02131347544491291, -0.019775390625, -0.017578125, -0.01713867112994194, -0.01669921912252903, -0.01164550706744194, -0.01164550706744194, -0.01076660118997097, -0.0010986328125, -0.007250976283103228, 0.0017578124534338713, -0.0017578124534338713, 0.003076171735301614, 0.0098876953125, 0.006152343470603228, 0.00966796837747097, 0.01999511756002903, 0.0208740234375, 0.02702636644244194, 0.0230712890625, 0.02944335900247097, 0.03032226487994194, 0.03339843824505806, 0.03537597507238388, 0.04526367038488388, 0.04790038987994194, 0.04526367038488388, 0.05031738057732582, 0.0560302734375, 0.06020507588982582, 0.06328124552965164, 0.06064452975988388, 0.05844726413488388, 0.0626220703125, 0.06108398362994194, 0.06437987834215164, 0.07053222507238388, 0.06987304240465164, 0.06943359225988388, 0.06899414211511612, 0.0714111328125, 0.06525878608226776, 0.06503906100988388, 0.06328124552965164, 0.06613769382238388, 0.05800781026482582, 0.06130370870232582, 0.052734375, 0.05295410007238388, 0.04812011495232582, 0.04855956882238388, 0.04680175706744194, 0.03449707105755806, 0.03054199181497097, 0.0318603515625, 0.0263671875, 0.02219238132238388, 0.013403319753706455, 0.00439453125, -0.0008789062267169356, -0.003735351376235485, -0.0068115233443677425, -0.013623046688735485, -0.01779785193502903, -0.02702636644244194, -0.03493652120232582, -0.04196777194738388, -0.04438476264476776, -0.04768066108226776, -0.05141601338982582, -0.06635741889476776, -0.06525878608226776, -0.07053222507238388, -0.07844237983226776, -0.08481445163488388, -0.085693359375, -0.09228515625, -0.09580077975988388, -0.09360351413488388, -0.10041503608226776, -0.1065673828125, -0.10568847507238388, -0.10700683295726776, -0.10920409858226776, -0.10986328125, -0.11403807997703552, -0.10854491591453552, -0.10415038466453552, -0.107666015625, -0.10898437350988388, -0.10283202677965164, -0.09580077975988388, -0.09799804538488388, -0.08964843302965164, -0.08767089247703552, -0.08657225966453552, -0.07536620646715164, -0.07624511420726776, -0.063720703125, -0.0582275390625, -0.05449218675494194, -0.04987792670726776, -0.03669433668255806, -0.03251953050494194, -0.02460937388241291, -0.012304686941206455, -0.005053710658103228, -0.00637206993997097, 0.003076171735301614, 0.017578125, 0.02395019493997097, 0.03339843824505806, 0.0406494140625, 0.04658202826976776, 0.054931640625, 0.06943359225988388, 0.07492675632238388, 0.076904296875, 0.09030761569738388, 0.09404296427965164, 0.09975585341453552, 0.10393065959215164, 0.11030273139476776, 0.11909179389476776, 0.12150878459215164, 0.13139648735523224, 0.134033203125, 0.14194335043430328, 0.14414061605930328, 0.14040526747703552, 0.14370116591453552, 0.14765624701976776, 0.14589843153953552, 0.14677734673023224, 0.14589843153953552, 0.1461181640625, 0.14018554985523224, 0.13227538764476776, 0.1307373046875, 0.12744140625, 0.12150878459215164, 0.12216796725988388, 0.11579589545726776, 0.107666015625, 0.10524901747703552, 0.10063476115465164, 0.0911865234375, 0.07536620646715164, 0.07470703125, 0.05778808519244194, 0.05646972358226776, 0.03999023512005806, 0.03801269456744194, 0.02504882775247097, 0.012304686941206455, 0.0068115233443677425, -0.0032958984375, -0.009448242373764515, -0.02153320237994194, -0.03427734225988388, -0.04152831807732582, -0.04680175706744194, -0.06328124552965164, -0.06635741889476776, -0.07624511420726776, -0.09074706584215164, -0.09580077975988388, -0.10700683295726776, -0.11381835490465164, -0.11843261122703552, -0.12678222358226776, -0.12810058891773224, -0.13491210341453552, -0.14699706435203552, -0.14765624701976776, -0.15029296278953552, -0.1593017578125, -0.15139159560203552, -0.1593017578125, -0.16083984076976776, -0.15842284262180328, -0.15512694418430328, -0.15666504204273224, -0.15358886122703552, -0.15380859375, -0.14787597954273224, -0.14436034858226776, -0.14501953125, -0.13557128608226776, -0.12700195610523224, -0.11777343600988388, -0.11843261122703552, -0.103271484375, -0.10107421875, -0.08811035007238388, -0.08151855319738388, -0.07294921576976776, -0.0648193359375, -0.05361327901482582, -0.04812011495232582, -0.03669433668255806, -0.02570800669491291, -0.00966796837747097, -0.0035156249068677425, 0.006591796875, 0.02219238132238388, 0.02790527231991291, 0.03515625, 0.04921874776482582, 0.05998535081744194, 0.06635741889476776, 0.07888183742761612, 0.08986815810203552, 0.09514159709215164, 0.10612792521715164, 0.10810546576976776, 0.12216796725988388, 0.1318359375, 0.13535155355930328, 0.14370116591453552, 0.14458008110523224, 0.15380859375, 0.15776367485523224, 0.16457518935203552, 0.15996094048023224, 0.16062010824680328, 0.16787108778953552, 0.16611327230930328, 0.16874998807907104, 0.1658935546875, 0.16105957329273224, 0.1593017578125, 0.16062010824680328, 0.15952147543430328, 0.1527099609375, 0.15073241293430328, 0.13666991889476776, 0.13359375298023224, 0.1241455078125, 0.1175537109375, 0.11623534560203552, 0.10502929240465164, 0.09689941257238388, 0.08525390177965164, 0.07492675632238388, 0.06635741889476776, 0.05449218675494194, 0.04833984375, 0.03911132737994194, 0.02482910081744194, 0.01779785193502903, 0.007031249813735485, -0.0013183592818677425, -0.01054687425494194, -0.0263671875, -0.02878417819738388, -0.04548339545726776, -0.04899902269244194, -0.06459961086511612, -0.07075195014476776, -0.07492675632238388, -0.08525390177965164, -0.09382323920726776, -0.10041503608226776, -0.10744628310203552, -0.12062987685203552, -0.12458495795726776, -0.12436523288488388, -0.13381347060203552, -0.13469238579273224, -0.14084471762180328, -0.14589843153953552, -0.14436034858226776, -0.15007324516773224, -0.15336914360523224, -0.147216796875, -0.15205077826976776, -0.1439208984375, -0.14501953125, -0.15117187798023224, -0.14765624701976776, -0.14150390028953552, -0.13864745199680328, -0.12480468302965164, -0.11777343600988388, -0.12150878459215164, -0.1153564453125, -0.10283202677965164, -0.09689941257238388, -0.09492187201976776, -0.08437499403953552, -0.07229004055261612, -0.06987304240465164, -0.05690917745232582, -0.0439453125, -0.03933105245232582, -0.02504882775247097, -0.02548827975988388, -0.01054687425494194, -0.0002197265566792339, 0.003076171735301614, 0.01955566368997097, 0.02351074106991291, 0.0362548828125, 0.041748046875, 0.04680175706744194, 0.05778808519244194, 0.06833495944738388, 0.07756347209215164, 0.0823974609375, 0.08657225966453552, 0.098876953125, 0.0977783203125, 0.098876953125, 0.10546875, 0.11513671278953552, 0.11447753757238388, 0.12019042670726776, 0.123046875, 0.11865234375, 0.12282714247703552, 0.12436523288488388, 0.13249512016773224, 0.12832030653953552, 0.125244140625, 0.12150878459215164, 0.1285400390625, 0.12238769233226776, 0.11491698771715164, 0.112060546875, 0.11293944716453552, 0.10964354872703552, 0.10019531100988388, 0.09755858778953552, 0.09184569865465164, 0.09096679091453552, 0.08195800334215164, 0.0703125, 0.07316894084215164, 0.05844726413488388, 0.05339355394244194, 0.04812011495232582, 0.04328612983226776, 0.02834472618997097, 0.02878417819738388, 0.01911620981991291, 0.01384277269244194, 0.00747070275247097, 0.0017578124534338713, -0.010986328125, -0.01669921912252903, -0.0230712890625, -0.02570800669491291, -0.03010253794491291, -0.03911132737994194, -0.04372558370232582, -0.04987792670726776, -0.0582275390625, -0.05471191182732582, -0.06679687649011612, -0.06437987834215164, -0.07492675632238388, -0.07272949069738388, -0.076904296875, -0.07492675632238388, -0.07954101264476776, -0.08525390177965164, -0.07932128757238388, -0.08063964545726776, -0.08833007514476776, -0.08371581882238388, -0.08283691108226776, -0.08481445163488388, -0.07976073771715164, -0.08305663615465164, -0.07822265475988388, -0.081298828125, -0.07272949069738388, -0.072509765625, -0.07097167521715164, -0.06547851115465164, -0.059326171875, -0.05734863132238388, -0.050537109375, -0.05207519233226776, -0.04680175706744194, -0.04328612983226776, -0.03251953050494194, -0.03032226487994194, -0.03032226487994194, -0.02614746056497097, -0.01801757700741291, -0.0076904296875, -0.0142822265625, 0.0, -0.00637206993997097, -0.0006591796409338713, 0.005932617001235485, 0.008129882626235485, 0.01691894419491291, 0.0230712890625, 0.02614746056497097, 0.0208740234375, 0.02131347544491291, 0.02724609337747097, 0.03515625, 0.03208007663488388, 0.03867187350988388, 0.03273925557732582, 0.03317870944738388, 0.03999023512005806, 0.0362548828125, 0.041748046875, 0.03823241963982582, 0.0450439453125, 0.03933105245232582, 0.04548339545726776, 0.04262695088982582, 0.03757324069738388, 0.04306640475988388, 0.0384521484375, 0.03471679612994194, 0.03955078125, 0.0296630859375, 0.03669433668255806, 0.03471679612994194, 0.03471679612994194, 0.02834472618997097, 0.0274658203125, 0.02812499925494194, 0.0208740234375, 0.01779785193502903, 0.0230712890625, 0.0120849609375, 0.01186523400247097, 0.01845703087747097, 0.012524413876235485, 0.00966796837747097, 0.0068115233443677425, 0.00966796837747097, 0.0054931640625, 0.002197265625, 0.005932617001235485, 0.0002197265566792339, 0.00527343712747097, -0.0006591796409338713, -0.0024169920943677425, 0.002197265625, 0.006152343470603228, -0.0032958984375, 0.001977538922801614, 0.0006591796409338713, 0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, 0.0004394531133584678, 0.0, -0.0041748047806322575, 0.003735351376235485, 0.002197265625, 0.0010986328125, 0.00527343712747097, 0.0, 0.0008789062267169356, 0.0028564452659338713, 0.0041748047806322575, 0.0010986328125, 0.004833984188735485, 0.0, -0.0017578124534338713, 0.003076171735301614, 0.00637206993997097, 0.0054931640625, 0.003735351376235485, -0.003735351376235485, 0.00439453125, 0.005053710658103228, 0.0004394531133584678, 0.003955077845603228, 0.00439453125, -0.0013183592818677425, 0.0013183592818677425, -0.0024169920943677425, 0.001977538922801614, 0.002197265625, 0.0024169920943677425, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0017578124534338713, 0.003076171735301614, 0.0, 0.00527343712747097, 0.0004394531133584678, 0.003735351376235485, 0.006152343470603228, 0.001538085867650807, 0.0017578124534338713, 0.00527343712747097, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, 0.0013183592818677425, 0.0057128905318677425, 0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, 0.0035156249068677425, 0.0032958984375, 0.002197265625, 0.003955077845603228, -0.0008789062267169356, 0.0057128905318677425, 0.0010986328125, 0.00439453125, 0.002636718563735485, -0.0032958984375, -0.0032958984375, 0.005053710658103228, 0.0032958984375, -0.0046142577193677425, -0.0035156249068677425, 0.0004394531133584678, 0.007250976283103228, 0.001538085867650807, 0.0006591796409338713, -0.0028564452659338713, -0.0004394531133584678, 0.0006591796409338713, -0.0017578124534338713, 0.0, -0.0041748047806322575, 0.0041748047806322575, -0.0002197265566792339, 0.006591796875, 0.002197265625, 0.00637206993997097, 0.0, 0.0035156249068677425, -0.0046142577193677425, 0.0008789062267169356, -0.0017578124534338713, -0.005053710658103228, -0.008129882626235485, -0.009008788503706455, -0.01713867112994194, -0.0120849609375, -0.01779785193502903, -0.017578125, -0.01274413987994194, -0.019775390625, -0.01735839806497097, -0.019775390625, -0.02438964694738388, -0.01999511756002903, -0.02482910081744194, -0.03010253794491291, -0.02263183519244194, -0.02834472618997097, -0.02329101413488388, -0.01933593675494194, -0.02351074106991291, -0.02438964694738388, -0.02570800669491291, -0.01669921912252903, -0.0230712890625, -0.019775390625, -0.01164550706744194, -0.013403319753706455, -0.005053710658103228, -0.008129882626235485, -0.002636718563735485, 0.002636718563735485, 0.0, 0.00747070275247097, 0.010107421316206455, 0.0164794921875, 0.01582031138241291, 0.01823730394244194, 0.02768554538488388, 0.03208007663488388, 0.03647460788488388, 0.04262695088982582, 0.04768066108226776, 0.05361327901482582, 0.05317382514476776, 0.06064452975988388, 0.05954589694738388, 0.06591796875, 0.07163085788488388, 0.07053222507238388, 0.07338867336511612, 0.08261718600988388, 0.08547362685203552, 0.07932128757238388, 0.08173827826976776, 0.0867919921875, 0.08920898288488388, 0.09382323920726776, 0.08833007514476776, 0.08767089247703552, 0.0889892578125, 0.0911865234375, 0.09404296427965164, 0.09074706584215164, 0.08833007514476776, 0.0823974609375, 0.08503417670726776, 0.07668457180261612, 0.07229004055261612, 0.068115234375, 0.0714111328125, 0.06679687649011612, 0.059326171875, 0.05141601338982582, 0.0439453125, 0.0406494140625, 0.02988281100988388, 0.02460937388241291, 0.01604003831744194, 0.014721679501235485, 0.0076904296875, -0.001977538922801614, -0.008349609561264515, -0.01735839806497097, -0.02285156212747097, -0.03471679612994194, -0.03999023512005806, -0.05251464620232582, -0.05888671800494194, -0.07163085788488388, -0.0703125, -0.081298828125, -0.08854980021715164, -0.09360351413488388, -0.10041503608226776, -0.107666015625, -0.11733397841453552, -0.120849609375, -0.12062987685203552, -0.1241455078125, -0.1285400390625, -0.13776855170726776, -0.142822265625, -0.13908691704273224, -0.1439208984375, -0.14589843153953552, -0.14238281548023224, -0.14897461235523224, -0.14633788168430328, -0.13601073622703552, -0.14238281548023224, -0.1329345703125, -0.12810058891773224, -0.12568359076976776, -0.12502440810203552, -0.12041015177965164, -0.107666015625, -0.10634765028953552, -0.09426268935203552, -0.08833007514476776, -0.07734374701976776, -0.0736083984375, -0.06437987834215164, -0.05646972358226776, -0.03933105245232582, -0.0384521484375, -0.02329101413488388, -0.009448242373764515, 0.0024169920943677425, 0.009228515438735485, 0.01955566368997097, 0.03449707105755806, 0.03669433668255806, 0.050537109375, 0.06394042819738388, 0.07185058295726776, 0.08481445163488388, 0.0999755859375, 0.10678710788488388, 0.11711425334215164, 0.12788085639476776, 0.13491210341453552, 0.13776855170726776, 0.14567871391773224, 0.15336914360523224, 0.15974120795726776, 0.17006835341453552, 0.16962890326976776, 0.17556151747703552, 0.18083494901657104, 0.19072264432907104, 0.18984374403953552, 0.19160155951976776, 0.193359375, 0.18918456137180328, 0.18764647841453552, 0.1845703125, 0.1878662109375, 0.17863768339157104, 0.17424315214157104, 0.16984862089157104, 0.1614990234375, 0.16259765625, 0.14589843153953552, 0.147216796875, 0.13776855170726776, 0.12019042670726776, 0.11601562052965164, 0.10129394382238388, 0.09580077975988388, 0.08701171725988388, 0.06723632663488388, 0.0538330078125, 0.04372558370232582, 0.03779296949505806, 0.02373046800494194, 0.0054931640625, -0.007250976283103228, -0.0142822265625, -0.02834472618997097, -0.041748046875, -0.04855956882238388, -0.06855468451976776, -0.08173827826976776, -0.09470214694738388, -0.10568847507238388, -0.1142578125, -0.123046875, -0.134033203125, -0.14216308295726776, -0.15622557699680328, -0.16874998807907104, -0.17160643637180328, -0.17709960043430328, -0.191162109375, -0.1922607421875, -0.20192870497703552, -0.20698241889476776, -0.20895995199680328, -0.21005858480930328, -0.21335448324680328, -0.21225585043430328, -0.20939940214157104, -0.20961913466453552, -0.20236815512180328, -0.20236815512180328, -0.19687499105930328, -0.19489745795726776, -0.18435057997703552, -0.18171386420726776, -0.1724853515625, -0.1669921875, -0.15424804389476776, -0.13623046875, -0.134033203125, -0.11469726264476776, -0.10942382365465164, -0.094482421875, -0.08547362685203552, -0.0703125, -0.05427245795726776, -0.04218749701976776, -0.03361816331744194, -0.02197265625, -0.0002197265566792339, 0.01406249962747097, 0.01845703087747097, 0.03603515401482582, 0.04833984375, 0.05778808519244194, 0.0758056640625, 0.0889892578125, 0.09821777045726776, 0.11821288615465164, 0.13139648735523224, 0.13996581733226776, 0.15292967855930328, 0.15754394233226776, 0.17314451932907104, 0.17841796576976776, 0.18303221464157104, 0.19291990995407104, 0.19907225668430328, 0.20895995199680328, 0.21269530057907104, 0.21159666776657104, 0.21269530057907104, 0.22060546278953552, 0.22324217855930328, 0.2197265625, 0.21489256620407104, 0.21818846464157104, 0.21357421576976776, 0.20346678793430328, 0.19863280653953552, 0.19819335639476776, 0.18940429389476776, 0.1878662109375, 0.17226561903953552, 0.16545410454273224, 0.16062010824680328, 0.14260253310203552, 0.13315428793430328, 0.1219482421875, 0.11513671278953552, 0.1021728515625, 0.08525390177965164, 0.07712402194738388, 0.06196288764476776, 0.05251464620232582, 0.03559570387005806, 0.02702636644244194, 0.00747070275247097, -0.0006591796409338713, -0.01933593675494194, -0.0340576171875, -0.0384521484375, -0.05449218675494194, -0.06503906100988388, -0.0823974609375, -0.08635253459215164, -0.10305175185203552, -0.11733397841453552, -0.12370605021715164, -0.13359375298023224, -0.14106445014476776, -0.14985351264476776, -0.16325683891773224, -0.164794921875, -0.17731933295726776, -0.17731933295726776, -0.19160155951976776, -0.18742674589157104, -0.19907225668430328, -0.19423827528953552, -0.1988525390625, -0.19863280653953552, -0.19907225668430328, -0.19687499105930328, -0.19929198920726776, -0.19072264432907104, -0.191162109375, -0.18610839545726776, -0.17182616889476776, -0.17072753608226776, -0.16874998807907104, -0.15446777641773224, -0.14589843153953552, -0.13447265326976776, -0.1307373046875, -0.120849609375, -0.112060546875, -0.09755858778953552, -0.08920898288488388, -0.07932128757238388, -0.06240234151482582, -0.052734375, -0.03669433668255806, -0.02592773362994194, -0.01164550706744194, -0.003955077845603228, 0.00747070275247097, 0.0164794921875, 0.02768554538488388, 0.04372558370232582, 0.05668945237994194, 0.0615234375, 0.07844237983226776, 0.08261718600988388, 0.09865722060203552, 0.10371093451976776, 0.11381835490465164, 0.11931151896715164, 0.13205565512180328, 0.138427734375, 0.14018554985523224, 0.14919432997703552, 0.15314941108226776, 0.16018065810203552, 0.16457518935203552, 0.16787108778953552, 0.16874998807907104, 0.16457518935203552, 0.16545410454273224, 0.16633300483226776, 0.16523437201976776, 0.16896972060203552, 0.16523437201976776, 0.15754394233226776, 0.15534667670726776, 0.15468749403953552, 0.14633788168430328, 0.14084471762180328, 0.13930663466453552, 0.12744140625, 0.12282714247703552, 0.10964354872703552, 0.10393065959215164, 0.09382323920726776, 0.08547362685203552, 0.08041992038488388, 0.06943359225988388, 0.06657714396715164, 0.05734863132238388, 0.04833984375, 0.0406494140625, 0.0230712890625, 0.01494140550494194, 0.0057128905318677425, -0.0008789062267169356, -0.007250976283103228, -0.017578125, -0.02944335900247097, -0.04020996019244194, -0.046142578125, -0.05141601338982582, -0.05317382514476776, -0.07075195014476776, -0.07185058295726776, -0.08085937052965164, -0.08283691108226776, -0.08854980021715164, -0.09843749552965164, -0.10041503608226776, -0.0966796875, -0.10832519084215164, -0.10568847507238388, -0.1065673828125, -0.11513671278953552, -0.1142578125, -0.1142578125, -0.10832519084215164, -0.11601562052965164, -0.11337890475988388, -0.10942382365465164, -0.10744628310203552, -0.10195311903953552, -0.10590820014476776, -0.09821777045726776, -0.09470214694738388, -0.0933837890625, -0.0823974609375, -0.07954101264476776, -0.07844237983226776, -0.06987304240465164, -0.06591796875, -0.06218261644244194, -0.054931640625, -0.0494384765625, -0.04526367038488388, -0.03515625, -0.03076171875, -0.0252685546875, -0.01582031138241291, -0.007910155691206455, -0.009448242373764515, 0.0013183592818677425, -0.0004394531133584678, 0.01384277269244194, 0.0142822265625, 0.01823730394244194, 0.02241210825741291, 0.0318603515625, 0.03142089769244194, 0.03427734225988388, 0.04196777194738388, 0.04240722581744194, 0.05207519233226776, 0.04658202826976776, 0.04570312425494194, 0.04899902269244194, 0.05097655951976776, 0.05075683444738388, 0.05734863132238388, 0.05624999850988388, 0.05119628831744194, 0.05009765550494194, 0.05251464620232582, 0.05515136569738388, 0.05119628831744194, 0.04877929389476776, 0.04833984375, 0.04526367038488388, 0.04965820163488388, 0.05141601338982582, 0.03977050632238388, 0.04152831807732582, 0.037353515625, 0.0406494140625, 0.03823241963982582, 0.02614746056497097, 0.03010253794491291, 0.02438964694738388, 0.02241210825741291, 0.02131347544491291, 0.01384277269244194, 0.01164550706744194, 0.01911620981991291, 0.00966796837747097, 0.01274413987994194, 0.011206054128706455, 0.009228515438735485, 0.0035156249068677425, 0.003076171735301614, 0.0028564452659338713, 0.0013183592818677425, 0.0004394531133584678, 0.006591796875, -0.005053710658103228, 0.0006591796409338713, 0.004833984188735485, -0.003076171735301614, -0.0035156249068677425, -0.0024169920943677425, 0.0006591796409338713, 0.0057128905318677425, 0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, 0.0035156249068677425, -0.0041748047806322575, 0.001977538922801614, 0.002197265625, -0.001538085867650807, 0.005053710658103228, 0.003735351376235485, 0.0024169920943677425, 0.0046142577193677425, 0.0032958984375, -0.003955077845603228, 0.002636718563735485, 0.0, -0.003735351376235485, 0.003076171735301614, 0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.0041748047806322575, 0.001977538922801614, 0.00637206993997097, -0.002636718563735485, 0.0004394531133584678, -0.0017578124534338713, 0.003076171735301614, -0.0017578124534338713, 0.001538085867650807, -0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.002197265625, 0.00439453125, 0.002197265625, 0.00439453125, 0.002197265625, 0.0057128905318677425, -0.0013183592818677425, 0.003955077845603228, 0.001977538922801614, 0.0017578124534338713, -0.0024169920943677425, 0.0017578124534338713, -0.001977538922801614, 0.001538085867650807, 0.005053710658103228, 0.0076904296875, -0.0013183592818677425, 0.005932617001235485, 0.0032958984375, 0.001538085867650807, 0.0, 0.0017578124534338713, 0.003076171735301614, 0.006152343470603228, -0.003735351376235485, 0.001977538922801614, 0.0008789062267169356, 0.005932617001235485, -0.0006591796409338713, 0.0, 0.0057128905318677425, 0.005053710658103228, 0.0008789062267169356, -0.0013183592818677425, 0.005053710658103228, -0.0017578124534338713, -0.002197265625, -0.0035156249068677425, 0.00637206993997097, -0.0017578124534338713, -0.0006591796409338713, 0.00637206993997097, -0.0006591796409338713, 0.0054931640625, -0.0013183592818677425, 0.003735351376235485, 0.003955077845603228, -0.0002197265566792339, -0.0041748047806322575, -0.0017578124534338713, -0.007910155691206455, -0.0068115233443677425, -0.007910155691206455, -0.00527343712747097, -0.0076904296875, -0.01274413987994194, -0.010327148251235485, -0.01604003831744194, -0.02219238132238388, -0.024169921875, -0.02438964694738388, -0.02922363206744194, -0.02197265625, -0.02922363206744194, -0.03317870944738388, -0.02570800669491291, -0.02988281100988388, -0.03339843824505806, -0.02790527231991291, -0.03032226487994194, -0.03164062276482582, -0.0274658203125, -0.02988281100988388, -0.03032226487994194, -0.02790527231991291, -0.03010253794491291, -0.02614746056497097, -0.02131347544491291, -0.02043456956744194, -0.0142822265625, -0.0142822265625, -0.00637206993997097, -0.0076904296875, -0.001977538922801614, -0.003735351376235485, 0.00747070275247097, 0.008349609561264515, 0.01516113243997097, 0.024169921875, 0.02241210825741291, 0.032958984375, 0.03493652120232582, 0.04592284932732582, 0.04833984375, 0.04899902269244194, 0.05515136569738388, 0.06240234151482582, 0.06965331733226776, 0.07316894084215164, 0.07426757365465164, 0.08371581882238388, 0.0889892578125, 0.09316405653953552, 0.10041503608226776, 0.10458984225988388, 0.09755858778953552, 0.10195311903953552, 0.11162108927965164, 0.11513671278953552, 0.11469726264476776, 0.11381835490465164, 0.11271972209215164, 0.112060546875, 0.1109619140625, 0.11118163913488388, 0.11052245646715164, 0.10854491591453552, 0.10920409858226776, 0.10744628310203552, 0.10085448622703552, 0.0889892578125, 0.09272460639476776, 0.0845947265625, 0.08063964545726776, 0.0736083984375, 0.06394042819738388, 0.05317382514476776, 0.05031738057732582, 0.03515625, 0.03537597507238388, 0.0263671875, 0.010986328125, 0.00527343712747097, -0.008349609561264515, -0.007910155691206455, -0.02241210825741291, -0.03032226487994194, -0.04350585862994194, -0.0494384765625, -0.06130370870232582, -0.06833495944738388, -0.07668457180261612, -0.08767089247703552, -0.09799804538488388, -0.11030273139476776, -0.11403807997703552, -0.12436523288488388, -0.13315428793430328, -0.13623046875, -0.14765624701976776, -0.15249022841453552, -0.15754394233226776, -0.16457518935203552, -0.16896972060203552, -0.17424315214157104, -0.17600096762180328, -0.1812744140625, -0.182373046875, -0.182373046875, -0.17600096762180328, -0.1790771484375, -0.17709960043430328, -0.17534178495407104, -0.1669921875, -0.16171874105930328, -0.1614990234375, -0.15644530951976776, -0.14150390028953552, -0.14040526747703552, -0.12260741740465164, -0.1241455078125, -0.112060546875, -0.09931640326976776, -0.08920898288488388, -0.07712402194738388, -0.06328124552965164, -0.04965820163488388, -0.04570312425494194, -0.03361816331744194, -0.01933593675494194, -0.0017578124534338713, 0.01318359375, 0.02614746056497097, 0.03471679612994194, 0.04833984375, 0.06437987834215164, 0.07712402194738388, 0.09052734076976776, 0.10546875, 0.11843261122703552, 0.12919922173023224, 0.140625, 0.15336914360523224, 0.16215820610523224, 0.17446288466453552, 0.18852537870407104, 0.19599609076976776, 0.1966552734375, 0.20632323622703552, 0.21445311605930328, 0.22126464545726776, 0.22478026151657104, 0.22412109375, 0.23115234076976776, 0.23049315810203552, 0.24038085341453552, 0.235107421875, 0.239501953125, 0.23862303793430328, 0.23137205839157104, 0.22499999403953552, 0.2230224609375, 0.21247558295726776, 0.20742186903953552, 0.191162109375, 0.18874511122703552, 0.17072753608226776, 0.16853027045726776, 0.1549072265625, 0.14479979872703552, 0.1318359375, 0.11162108927965164, 0.10634765028953552, 0.08767089247703552, 0.07272949069738388, 0.06130370870232582, 0.04460449144244194, 0.02373046800494194, 0.01384277269244194, -0.0041748047806322575, -0.01911620981991291, -0.03120117075741291, -0.04855956882238388, -0.06635741889476776, -0.08349609375, -0.09404296427965164, -0.11557617038488388, -0.123046875, -0.14018554985523224, -0.15249022841453552, -0.16259765625, -0.177978515625, -0.18413084745407104, -0.204345703125, -0.2109375, -0.22126464545726776, -0.22983397543430328, -0.24301756918430328, -0.24235838651657104, -0.2548828125, -0.2515869140625, -0.2568603456020355, -0.25554198026657104, -0.26301267743110657, -0.263671875, -0.26103514432907104, -0.2513671815395355, -0.24609375, -0.24653320014476776, -0.23576658964157104, -0.22719725966453552, -0.21994628012180328, -0.21379393339157104, -0.1966552734375, -0.18742674589157104, -0.17644041776657104, -0.16303710639476776, -0.14897461235523224, -0.13710936903953552, -0.11733397841453552, -0.10063476115465164, -0.08723144233226776, -0.06943359225988388, -0.0615234375, -0.0362548828125, -0.02922363206744194, -0.0024169920943677425, 0.007031249813735485, 0.02988281100988388, 0.04328612983226776, 0.06174316257238388, 0.07822265475988388, 0.0966796875, 0.10502929240465164, 0.12436523288488388, 0.13710936903953552, 0.15095214545726776, 0.16567382216453552, 0.18369139730930328, 0.18698729574680328, 0.20258788764476776, 0.2186279296875, 0.226318359375, 0.24016112089157104, 0.23994140326976776, 0.24697265028953552, 0.25444334745407104, 0.25773924589157104, 0.27202147245407104, 0.27092283964157104, 0.2671875059604645, 0.26542967557907104, 0.27290037274360657, 0.2691650390625, 0.2583984434604645, 0.2557617127895355, 0.24982909858226776, 0.24301756918430328, 0.23247069120407104, 0.22565917670726776, 0.21225585043430328, 0.204345703125, 0.18830566108226776, 0.18215331435203552, 0.173583984375, 0.14765624701976776, 0.14260253310203552, 0.12502440810203552, 0.11118163913488388, 0.09316405653953552, 0.07382812350988388, 0.06108398362994194, 0.04833984375, 0.02768554538488388, 0.01604003831744194, 0.0010986328125, -0.02021484263241291, -0.0362548828125, -0.04702148213982582, -0.06328124552965164, -0.0823974609375, -0.09250488132238388, -0.11469726264476776, -0.11777343600988388, -0.13535155355930328, -0.15358886122703552, -0.16413573920726776, -0.17138671875, -0.18325194716453552, -0.19489745795726776, -0.213134765625, -0.21005858480930328, -0.2197265625, -0.23203124105930328, -0.23225097358226776, -0.23862303793430328, -0.2471923828125, -0.24257811903953552, -0.24675291776657104, -0.24323730170726776, -0.24104003608226776, -0.23928222060203552, -0.2340087890625, -0.23115234076976776, -0.22895507514476776, -0.21533203125, -0.21555174887180328, -0.199951171875, -0.19248045980930328, -0.18830566108226776, -0.17446288466453552, -0.15688475966453552, -0.14501953125, -0.13820800185203552, -0.11711425334215164, -0.10810546576976776, -0.09404296427965164, -0.07954101264476776, -0.06284179538488388, -0.0516357421875, -0.03142089769244194, -0.0263671875, -0.007031249813735485, 0.01318359375, 0.02153320237994194, 0.0362548828125, 0.05251464620232582, 0.06657714396715164, 0.076904296875, 0.08876952528953552, 0.09799804538488388, 0.112060546875, 0.12590332329273224, 0.13557128608226776, 0.15314941108226776, 0.15974120795726776, 0.16962890326976776, 0.17863768339157104, 0.1845703125, 0.19379882514476776, 0.19423827528953552, 0.20148925483226776, 0.20083007216453552, 0.20302733778953552, 0.21027831733226776, 0.2109375, 0.20808105170726776, 0.20852050185203552, 0.2054443359375, 0.20148925483226776, 0.19577635824680328, 0.18940429389476776, 0.19138182699680328, 0.18500976264476776, 0.173583984375, 0.16523437201976776, 0.160400390625, 0.15424804389476776, 0.13908691704273224, 0.12941893935203552, 0.12062987685203552, 0.1087646484375, 0.09909667819738388, 0.0867919921875, 0.07844237983226776, 0.072509765625, 0.05119628831744194, 0.03955078125, 0.03229980543255806, 0.024169921875, 0.0028564452659338713, -0.005053710658103228, -0.015380859375, -0.0252685546875, -0.03142089769244194, -0.04702148213982582, -0.05866698920726776, -0.068115234375, -0.06855468451976776, -0.07844237983226776, -0.09228515625, -0.09426268935203552, -0.10810546576976776, -0.10854491591453552, -0.11557617038488388, -0.12216796725988388, -0.12612304091453552, -0.12941893935203552, -0.13029785454273224, -0.14128418266773224, -0.1439208984375, -0.1395263671875, -0.14567871391773224, -0.13754881918430328, -0.13798828423023224, -0.14084471762180328, -0.14348144829273224, -0.13381347060203552, -0.12941893935203552, -0.12436523288488388, -0.1197509765625, -0.12062987685203552, -0.1153564453125, -0.10283202677965164, -0.10129394382238388, -0.094482421875, -0.08723144233226776, -0.08437499403953552, -0.07294921576976776, -0.06745605170726776, -0.063720703125, -0.04921874776482582, -0.0428466796875, -0.03559570387005806, -0.0340576171875, -0.02658691257238388, -0.01516113243997097, -0.01274413987994194, -0.0041748047806322575, 0.007031249813735485, 0.008349609561264515, 0.02109374850988388, 0.02197265625, 0.03471679612994194, 0.03691406175494194, 0.03977050632238388, 0.04328612983226776, 0.05295410007238388, 0.05031738057732582, 0.05668945237994194, 0.0615234375, 0.05910644307732582, 0.06525878608226776, 0.06591796875, 0.05976562201976776, 0.06569824367761612, 0.06657714396715164, 0.06569824367761612, 0.07426757365465164, 0.07075195014476776, 0.06569824367761612, 0.06987304240465164, 0.0648193359375, 0.06064452975988388, 0.05581054463982582, 0.05778808519244194, 0.05559081956744194, 0.05581054463982582, 0.0516357421875, 0.04570312425494194, 0.04262695088982582, 0.04020996019244194, 0.03713378682732582, 0.03471679612994194, 0.03076171875, 0.0318603515625, 0.02109374850988388, 0.0230712890625, 0.02395019493997097, 0.014721679501235485, 0.01801757700741291, 0.014721679501235485, 0.009448242373764515, 0.009228515438735485, 0.001977538922801614, 0.003076171735301614, 0.002197265625, 0.0054931640625, 0.005053710658103228, 0.0, 0.002197265625, -0.0035156249068677425, -0.0013183592818677425, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, 0.0054931640625, 0.006152343470603228, 0.0024169920943677425, 0.0032958984375, 0.003955077845603228, 0.0028564452659338713, -0.002197265625, -0.001977538922801614, 0.005932617001235485, -0.0017578124534338713, 0.0046142577193677425, -0.0028564452659338713, -0.001977538922801614, -0.0035156249068677425, -0.003955077845603228, 0.003735351376235485, 0.001977538922801614, 0.001538085867650807, -0.001538085867650807, 0.002636718563735485, 0.0046142577193677425, 0.005053710658103228, 0.0002197265566792339, 0.0006591796409338713, 0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, 0.002197265625, 0.003735351376235485, -0.0017578124534338713, -0.003735351376235485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0006591796409338713, 0.003735351376235485, -0.0008789062267169356, -0.0006591796409338713, 0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, 0.0004394531133584678, 0.0068115233443677425, 0.006152343470603228, 0.00439453125, 0.00747070275247097, 0.005053710658103228, 0.0, -0.0017578124534338713, -0.002197265625, 0.0057128905318677425, 0.00527343712747097, 0.0041748047806322575, 0.0017578124534338713, -0.001977538922801614, 0.003076171735301614, 0.002636718563735485, -0.0013183592818677425, 0.0028564452659338713, 0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, 0.0010986328125, 0.0041748047806322575, -0.0008789062267169356, 0.0004394531133584678, 0.0057128905318677425, 0.00527343712747097, 0.002197265625, 0.0002197265566792339, 0.0054931640625, 0.00527343712747097, -0.0024169920943677425, 0.0006591796409338713, 0.005932617001235485, 0.00439453125, 0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, 0.0004394531133584678, -0.0013183592818677425, 0.002197265625, 0.0002197265566792339, -0.0098876953125, -0.0008789062267169356, -0.007031249813735485, -0.009448242373764515, -0.009228515438735485, -0.017578125, -0.02153320237994194, -0.01691894419491291, -0.019775390625, -0.02878417819738388, -0.02548827975988388, -0.03142089769244194, -0.03273925557732582, -0.03801269456744194, -0.03911132737994194, -0.04042968526482582, -0.03977050632238388, -0.03999023512005806, -0.04306640475988388, -0.03317870944738388, -0.04218749701976776, -0.03427734225988388, -0.04020996019244194, -0.03471679612994194, -0.03317870944738388, -0.032958984375, -0.02878417819738388, -0.02724609337747097, -0.02570800669491291, -0.02153320237994194, -0.01845703087747097, -0.009228515438735485, -0.01318359375, -0.006152343470603228, -0.003076171735301614, 0.009228515438735485, 0.011206054128706455, 0.01494140550494194, 0.02065429650247097, 0.03361816331744194, 0.037353515625, 0.04130859300494194, 0.04548339545726776, 0.0516357421875, 0.06306152045726776, 0.07119140774011612, 0.07646483927965164, 0.08305663615465164, 0.08481445163488388, 0.09909667819738388, 0.09821777045726776, 0.1087646484375, 0.1065673828125, 0.1142578125, 0.11821288615465164, 0.1285400390625, 0.12744140625, 0.134033203125, 0.12832030653953552, 0.13645018637180328, 0.13381347060203552, 0.13359375298023224, 0.1373291015625, 0.13645018637180328, 0.13161620497703552, 0.13029785454273224, 0.12832030653953552, 0.12700195610523224, 0.11843261122703552, 0.1197509765625, 0.10832519084215164, 0.10788574069738388, 0.09733886271715164, 0.09360351413488388, 0.0780029296875, 0.08041992038488388, 0.06284179538488388, 0.05998535081744194, 0.04812011495232582, 0.03603515401482582, 0.02658691257238388, 0.019775390625, 0.010986328125, -0.0035156249068677425, -0.01296386681497097, -0.03054199181497097, -0.03889160230755806, -0.05339355394244194, -0.05646972358226776, -0.07316894084215164, -0.08547362685203552, -0.0966796875, -0.10590820014476776, -0.12282714247703552, -0.13359375298023224, -0.13315428793430328, -0.151611328125, -0.1636962890625, -0.16435547173023224, -0.18171386420726776, -0.1845703125, -0.191162109375, -0.2010498046875, -0.20500487089157104, -0.2076416015625, -0.20917968451976776, -0.21005858480930328, -0.21730956435203552, -0.2109375, -0.21137695014476776, -0.21511229872703552, -0.21027831733226776, -0.208740234375, -0.20280760526657104, -0.19423827528953552, -0.19138182699680328, -0.1812744140625, -0.17863768339157104, -0.16501463949680328, -0.1483154296875, -0.14326171576976776, -0.1351318359375, -0.11843261122703552, -0.10458984225988388, -0.090087890625, -0.0802001953125, -0.06437987834215164, -0.04899902269244194, -0.03911132737994194, -0.019775390625, -0.005053710658103228, 0.009228515438735485, 0.02790527231991291, 0.041748046875, 0.05954589694738388, 0.07272949069738388, 0.08547362685203552, 0.10129394382238388, 0.116455078125, 0.13249512016773224, 0.15007324516773224, 0.15864257514476776, 0.17270506918430328, 0.18940429389476776, 0.20346678793430328, 0.20895995199680328, 0.23027342557907104, 0.23576658964157104, 0.24104003608226776, 0.25422361493110657, 0.263671875, 0.26323240995407104, 0.27312010526657104, 0.27641600370407104, 0.27971190214157104, 0.2788330018520355, 0.2748779356479645, 0.2755371034145355, 0.2715820372104645, 0.2704834043979645, 0.2645507752895355, 0.25224608182907104, 0.2548828125, 0.23664550483226776, 0.22785644233226776, 0.2197265625, 0.20698241889476776, 0.19160155951976776, 0.17951659858226776, 0.16523437201976776, 0.14853514730930328, 0.13798828423023224, 0.12480468302965164, 0.103271484375, 0.0867919921875, 0.06569824367761612, 0.04812011495232582, 0.03911132737994194, 0.015380859375, 0.0006591796409338713, -0.01713867112994194, -0.03251953050494194, -0.05734863132238388, -0.07558593899011612, -0.08986815810203552, -0.10524901747703552, -0.12546385824680328, -0.13908691704273224, -0.16325683891773224, -0.1790771484375, -0.19401854276657104, -0.20698241889476776, -0.221923828125, -0.23444823920726776, -0.2524658143520355, -0.2594970762729645, -0.26740720868110657, -0.2832275331020355, -0.28410643339157104, -0.2986083924770355, -0.3012451231479645, -0.31157225370407104, -0.3034423887729645, -0.3052001893520355, -0.3133300840854645, -0.31201171875, -0.30695798993110657, -0.29399412870407104, -0.2858642637729645, -0.2792724668979645, -0.270263671875, -0.26411131024360657, -0.24455565214157104, -0.24147948622703552, -0.2197265625, -0.20917968451976776, -0.19533690810203552, -0.17775878310203552, -0.15556640923023224, -0.13996581733226776, -0.12546385824680328, -0.09931640326976776, -0.087890625, -0.06987304240465164, -0.05317382514476776, -0.03537597507238388, -0.010986328125, 0.009448242373764515, 0.02702636644244194, 0.05229492112994194, 0.06745605170726776, 0.09316405653953552, 0.10085448622703552, 0.12810058891773224, 0.14150390028953552, 0.16237792372703552, 0.17490233480930328, 0.19401854276657104, 0.20610350370407104, 0.22719725966453552, 0.2340087890625, 0.2524658143520355, 0.26191404461860657, 0.2735595703125, 0.28168943524360657, 0.2964111268520355, 0.30498045682907104, 0.3100341856479645, 0.30827635526657104, 0.31245115399360657, 0.32365721464157104, 0.3183837831020355, 0.3122314512729645, 0.31574705243110657, 0.3052001893520355, 0.30388182401657104, 0.2920165956020355, 0.2845458984375, 0.2766357362270355, 0.2715820372104645, 0.25861814618110657, 0.23884277045726776, 0.23159179091453552, 0.21027831733226776, 0.19313964247703552, 0.17556151747703552, 0.1593017578125, 0.14589843153953552, 0.1263427734375, 0.11667480319738388, 0.09052734076976776, 0.07272949069738388, 0.0582275390625, 0.03581542894244194, 0.02175292931497097, 0.0035156249068677425, -0.01691894419491291, -0.03647460788488388, -0.0538330078125, -0.06987304240465164, -0.09052734076976776, -0.11030273139476776, -0.12392577528953552, -0.13996581733226776, -0.16062010824680328, -0.17819823324680328, -0.19138182699680328, -0.20346678793430328, -0.21950682997703552, -0.22895507514476776, -0.24147948622703552, -0.2548828125, -0.2581787109375, -0.27685546875, -0.2792724668979645, -0.27949216961860657, -0.292236328125, -0.2867431640625, -0.29377439618110657, -0.2887206971645355, -0.2869628965854645, -0.2946533262729645, -0.28520506620407104, -0.27421873807907104, -0.2755371034145355, -0.2601562440395355, -0.2546630799770355, -0.23972167074680328, -0.23247069120407104, -0.21511229872703552, -0.19687499105930328, -0.18896484375, -0.17006835341453552, -0.15644530951976776, -0.14128418266773224, -0.12985838949680328, -0.10854491591453552, -0.09602050483226776, -0.07624511420726776, -0.05844726413488388, -0.04702148213982582, -0.02504882775247097, -0.011425781063735485, 0.00966796837747097, 0.02614746056497097, 0.04526367038488388, 0.05734863132238388, 0.07822265475988388, 0.09470214694738388, 0.10810546576976776, 0.11821288615465164, 0.12875975668430328, 0.15117187798023224, 0.1636962890625, 0.16962890326976776, 0.1845703125, 0.19819335639476776, 0.20566405355930328, 0.2208251953125, 0.22170409560203552, 0.226318359375, 0.23444823920726776, 0.2449951171875, 0.24543456733226776, 0.248291015625, 0.24367675185203552, 0.24565428495407104, 0.24323730170726776, 0.24169921875, 0.24521483480930328, 0.23444823920726776, 0.22829589247703552, 0.221923828125, 0.2197265625, 0.21137695014476776, 0.1988525390625, 0.18632811307907104, 0.1768798828125, 0.1680908203125, 0.15358886122703552, 0.14260253310203552, 0.13623046875, 0.11777343600988388, 0.1021728515625, 0.08723144233226776, 0.076904296875, 0.06965331733226776, 0.050537109375, 0.03581542894244194, 0.02482910081744194, 0.01604003831744194, -0.003076171735301614, -0.01625976525247097, -0.0263671875, -0.03713378682732582, -0.05646972358226776, -0.0692138671875, -0.07646483927965164, -0.08920898288488388, -0.09294433146715164, -0.11184081435203552, -0.11030273139476776, -0.12700195610523224, -0.13205565512180328, -0.13754881918430328, -0.14567871391773224, -0.1494140625, -0.15402831137180328, -0.1614990234375, -0.1658935546875, -0.16721190512180328, -0.17292480170726776, -0.17050780355930328, -0.16281737387180328, -0.17292480170726776, -0.1658935546875, -0.16962890326976776, -0.16018065810203552, -0.15512694418430328, -0.1549072265625, -0.14545898139476776, -0.14479979872703552, -0.12985838949680328, -0.13271483778953552, -0.11953124403953552, -0.11579589545726776, -0.10634765028953552, -0.0955810546875, -0.08964843302965164, -0.0780029296875, -0.07294921576976776, -0.05866698920726776, -0.052734375, -0.04833984375, -0.037353515625, -0.02504882775247097, -0.017578125, -0.0087890625, 0.0013183592818677425, 0.003955077845603228, 0.0087890625, 0.0230712890625, 0.0274658203125, 0.03427734225988388, 0.04152831807732582, 0.04746093600988388, 0.04965820163488388, 0.05624999850988388, 0.0626220703125, 0.06613769382238388, 0.06635741889476776, 0.07075195014476776, 0.07668457180261612, 0.07338867336511612, 0.08327636867761612, 0.08195800334215164, 0.076904296875, 0.08305663615465164, 0.08723144233226776, 0.08481445163488388, 0.0845947265625, 0.07624511420726776, 0.07382812350988388, 0.07426757365465164, 0.07075195014476776, 0.06833495944738388, 0.06767577677965164, 0.06306152045726776, 0.0582275390625, 0.0582275390625, 0.04921874776482582, 0.0516357421875, 0.04833984375, 0.04240722581744194, 0.041748046875, 0.03603515401482582, 0.03449707105755806, 0.0274658203125, 0.02878417819738388, 0.02241210825741291, 0.01955566368997097, 0.01955566368997097, 0.00856933556497097, 0.01406249962747097, 0.01186523400247097, 0.008349609561264515, 0.0087890625, 0.006591796875, 0.005932617001235485, 0.0008789062267169356, -0.0032958984375, -0.005053710658103228, 0.0008789062267169356, 0.0002197265566792339, 0.00439453125, 0.001977538922801614, 0.0076904296875, 0.00527343712747097, 0.002197265625, 0.0028564452659338713, 0.0046142577193677425, 0.0017578124534338713, 0.0024169920943677425, 0.00439453125, -0.0017578124534338713, 0.0013183592818677425, 0.00527343712747097, 0.0032958984375, -0.003076171735301614, 0.002636718563735485, -0.001538085867650807, 0.003955077845603228, 0.0010986328125, 0.00527343712747097, -0.0035156249068677425, -0.003735351376235485, -0.002197265625, 0.0002197265566792339, -0.0004394531133584678, 0.0017578124534338713, -0.002636718563735485, -0.0010986328125, 0.0046142577193677425, 0.0035156249068677425, 0.0004394531133584678, -0.0032958984375, 0.0035156249068677425, -0.001977538922801614, -0.001977538922801614, 0.006152343470603228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0006591796409338713, 0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, 0.003955077845603228, -0.0002197265566792339, 0.0, 0.0041748047806322575, 0.003076171735301614, 0.0017578124534338713, 0.00527343712747097, 0.001538085867650807, 0.0041748047806322575, 0.001977538922801614, 0.001538085867650807, -0.0035156249068677425, 0.0017578124534338713, -0.003076171735301614, -0.002636718563735485, 0.0054931640625, -0.002636718563735485, 0.0024169920943677425, -0.0010986328125, 0.003955077845603228, 0.0006591796409338713, -0.0010986328125, 0.005932617001235485, 0.0008789062267169356, 0.0032958984375, 0.006152343470603228, -0.002636718563735485, 0.0035156249068677425, -0.0008789062267169356, -0.0004394531133584678, 0.0028564452659338713, -0.004833984188735485, -0.001538085867650807, 0.0, -0.0006591796409338713, 0.00637206993997097, 0.0010986328125, 0.0054931640625, 0.0035156249068677425, 0.0017578124534338713, 0.0006591796409338713, -0.0006591796409338713, -0.0041748047806322575, -0.0017578124534338713, 0.0002197265566792339, -0.0054931640625, -0.0032958984375, -0.011206054128706455, -0.010327148251235485, -0.01076660118997097, -0.02175292931497097, -0.02460937388241291, -0.02197265625, -0.0296630859375, -0.03229980543255806, -0.02900390513241291, -0.03383788838982582, -0.03603515401482582, -0.04328612983226776, -0.04240722581744194, -0.04372558370232582, -0.04526367038488388, -0.04833984375, -0.04130859300494194, -0.04877929389476776, -0.04240722581744194, -0.04086913913488388, -0.04548339545726776, -0.04328612983226776, -0.041748046875, -0.03977050632238388, -0.03317870944738388, -0.03691406175494194, -0.0252685546875, -0.0274658203125, -0.02263183519244194, -0.01669921912252903, -0.006152343470603228, -0.007910155691206455, 0.001538085867650807, 0.007250976283103228, 0.0186767578125, 0.01823730394244194, 0.02285156212747097, 0.03339843824505806, 0.03933105245232582, 0.04833984375, 0.06218261644244194, 0.06833495944738388, 0.06855468451976776, 0.07998047024011612, 0.0867919921875, 0.090087890625, 0.09909667819738388, 0.10964354872703552, 0.1142578125, 0.12041015177965164, 0.12678222358226776, 0.13491210341453552, 0.14523924887180328, 0.13864745199680328, 0.15183104574680328, 0.15249022841453552, 0.15556640923023224, 0.15117187798023224, 0.156005859375, 0.15622557699680328, 0.15556640923023224, 0.15117187798023224, 0.15073241293430328, 0.14699706435203552, 0.1527099609375, 0.14304198324680328, 0.14238281548023224, 0.13469238579273224, 0.12348632514476776, 0.12282714247703552, 0.11271972209215164, 0.10283202677965164, 0.09250488132238388, 0.08745116740465164, 0.07207030802965164, 0.06306152045726776, 0.052734375, 0.04086913913488388, 0.03361816331744194, 0.02329101413488388, 0.009228515438735485, -0.008129882626235485, -0.01933593675494194, -0.02768554538488388, -0.046142578125, -0.0615234375, -0.07272949069738388, -0.08986815810203552, -0.094482421875, -0.112060546875, -0.12568359076976776, -0.13425292074680328, -0.14655761420726776, -0.15798339247703552, -0.16874998807907104, -0.1878662109375, -0.19379882514476776, -0.20412597060203552, -0.21599119901657104, -0.22016601264476776, -0.226318359375, -0.23664550483226776, -0.23818358778953552, -0.23972167074680328, -0.25202634930610657, -0.24367675185203552, -0.25312498211860657, -0.2502685487270355, -0.24411620199680328, -0.25048828125, -0.24082030355930328, -0.23225097358226776, -0.22346191108226776, -0.21379393339157104, -0.21533203125, -0.19731444120407104, -0.18984374403953552, -0.17753905057907104, -0.16347655653953552, -0.14963378012180328, -0.13820800185203552, -0.11953124403953552, -0.10239257663488388, -0.09382323920726776, -0.0791015625, -0.05866698920726776, -0.0439453125, -0.02219238132238388, -0.01318359375, 0.014501952566206455, 0.02504882775247097, 0.04482421651482582, 0.06833495944738388, 0.08305663615465164, 0.098876953125, 0.11997070163488388, 0.13161620497703552, 0.15292967855930328, 0.16105957329273224, 0.19050292670726776, 0.20456542074680328, 0.20961913466453552, 0.2318115234375, 0.23774413764476776, 0.2605957090854645, 0.27421873807907104, 0.2792724668979645, 0.2858642637729645, 0.3001464903354645, 0.30827635526657104, 0.3087158203125, 0.31706541776657104, 0.32145994901657104, 0.3197021484375, 0.32475584745407104, 0.31684568524360657, 0.3150878846645355, 0.3109130859375, 0.3089355528354645, 0.2911376953125, 0.2869628965854645, 0.2724609375, 0.2667480409145355, 0.252685546875, 0.235107421875, 0.22170409560203552, 0.20566405355930328, 0.19533690810203552, 0.17292480170726776, 0.16062010824680328, 0.13535155355930328, 0.12216796725988388, 0.09821777045726776, 0.08107910305261612, 0.06174316257238388, 0.04482421651482582, 0.02504882775247097, 0.001977538922801614, -0.015600585378706455, -0.0428466796875, -0.05624999850988388, -0.08195800334215164, -0.10261230170726776, -0.1142578125, -0.13798828423023224, -0.15446777641773224, -0.17819823324680328, -0.19731444120407104, -0.21467284858226776, -0.23488768935203552, -0.25114744901657104, -0.25971677899360657, -0.2757568359375, -0.2931152284145355, -0.3065185546875, -0.314208984375, -0.32475584745407104, -0.3309082090854645, -0.34782713651657104, -0.35529783368110657, -0.35200193524360657, -0.35090330243110657, -0.35419920086860657, -0.3480468690395355, -0.3458496034145355, -0.34321287274360657, -0.32958984375, -0.3276123106479645, -0.31354978680610657, -0.29707029461860657, -0.2867431640625, -0.2645507752895355, -0.2524658143520355, -0.23269042372703552, -0.2186279296875, -0.20412597060203552, -0.17731933295726776, -0.16127929091453552, -0.1395263671875, -0.11777343600988388, -0.09624022990465164, -0.08327636867761612, -0.06020507588982582, -0.03823241963982582, -0.0142822265625, 0.007910155691206455, 0.03120117075741291, 0.04746093600988388, 0.06767577677965164, 0.08811035007238388, 0.11491698771715164, 0.13315428793430328, 0.15314941108226776, 0.182373046875, 0.19313964247703552, 0.21621093153953552, 0.23137205839157104, 0.2493896484375, 0.2647705078125, 0.2847656309604645, 0.29289549589157104, 0.31047362089157104, 0.3276123106479645, 0.3306884765625, 0.34321287274360657, 0.35859373211860657, 0.36738279461860657, 0.358154296875, 0.3680419921875, 0.37177732586860657, 0.3638671636581421, 0.36210936307907104, 0.3579345643520355, 0.3447509706020355, 0.34716796875, 0.3293701112270355, 0.3183837831020355, 0.3034423887729645, 0.28959959745407104, 0.2823486328125, 0.2594970762729645, 0.24147948622703552, 0.22565917670726776, 0.21049803495407104, 0.18654784560203552, 0.17380370199680328, 0.14370116591453552, 0.12788085639476776, 0.11271972209215164, 0.090087890625, 0.0703125, 0.046142578125, 0.02724609337747097, 0.003076171735301614, -0.011206054128706455, -0.03757324069738388, -0.05207519233226776, -0.08349609375, -0.10195311903953552, -0.11711425334215164, -0.13688965141773224, -0.15622557699680328, -0.17160643637180328, -0.19929198920726776, -0.21049803495407104, -0.23137205839157104, -0.24675291776657104, -0.2559814453125, -0.26872557401657104, -0.2933349609375, -0.3045410215854645, -0.3084960877895355, -0.3199218809604645, -0.3304687440395355, -0.33793944120407104, -0.3414550721645355, -0.33903807401657104, -0.3385986089706421, -0.33134764432907104, -0.33442381024360657, -0.3227783143520355, -0.31574705243110657, -0.3122314512729645, -0.29619139432907104, -0.2942138612270355, -0.2735595703125, -0.2579589784145355, -0.24960936605930328, -0.22895507514476776, -0.21730956435203552, -0.1944580078125, -0.18083494901657104, -0.16677245497703552, -0.142822265625, -0.12326660007238388, -0.10524901747703552, -0.08723144233226776, -0.07404784858226776, -0.04746093600988388, -0.0274658203125, -0.0142822265625, 0.005932617001235485, 0.03142089769244194, 0.0450439453125, 0.06218261644244194, 0.08371581882238388, 0.10480956733226776, 0.125244140625, 0.13535155355930328, 0.1527099609375, 0.1636962890625, 0.18654784560203552, 0.19775390625, 0.21027831733226776, 0.226318359375, 0.24104003608226776, 0.25092771649360657, 0.2537841796875, 0.2634521424770355, 0.27092283964157104, 0.2832275331020355, 0.2810302674770355, 0.287841796875, 0.2843261659145355, 0.2869628965854645, 0.28630369901657104, 0.28498533368110657, 0.28300780057907104, 0.27619627118110657, 0.2715820372104645, 0.2590576112270355, 0.24785155057907104, 0.23664550483226776, 0.22895507514476776, 0.21708983182907104, 0.2120361328125, 0.19775390625, 0.17951659858226776, 0.17270506918430328, 0.151611328125, 0.14084471762180328, 0.12326660007238388, 0.11008300632238388, 0.09184569865465164, 0.07756347209215164, 0.0626220703125, 0.04526367038488388, 0.02614746056497097, 0.00966796837747097, -0.002636718563735485, -0.01164550706744194, -0.02482910081744194, -0.04658202826976776, -0.063720703125, -0.07514648139476776, -0.08349609375, -0.103271484375, -0.11118163913488388, -0.12744140625, -0.13271483778953552, -0.142822265625, -0.15336914360523224, -0.15666504204273224, -0.16545410454273224, -0.17622070014476776, -0.18259276449680328, -0.18544921278953552, -0.19160155951976776, -0.1900634765625, -0.19973143935203552, -0.2021484375, -0.19643554091453552, -0.19313964247703552, -0.19929198920726776, -0.19028319418430328, -0.18281249701976776, -0.18017578125, -0.18061523139476776, -0.17050780355930328, -0.16633300483226776, -0.15644530951976776, -0.15205077826976776, -0.14216308295726776, -0.1351318359375, -0.12216796725988388, -0.11799316108226776, -0.10678710788488388, -0.09689941257238388, -0.08723144233226776, -0.07053222507238388, -0.0626220703125, -0.05339355394244194, -0.04130859300494194, -0.02944335900247097, -0.02219238132238388, -0.01845703087747097, -0.0004394531133584678, 0.002197265625, 0.01735839806497097, 0.02658691257238388, 0.0263671875, 0.03889160230755806, 0.050537109375, 0.0560302734375, 0.06108398362994194, 0.06547851115465164, 0.0692138671875, 0.0802001953125, 0.07888183742761612, 0.08195800334215164, 0.08525390177965164, 0.0933837890625, 0.09184569865465164, 0.09602050483226776, 0.09052734076976776, 0.09250488132238388, 0.09250488132238388, 0.09162597358226776, 0.09975585341453552, 0.09711913764476776, 0.08745116740465164, 0.0867919921875, 0.08327636867761612, 0.08261718600988388, 0.07382812350988388, 0.07053222507238388, 0.06943359225988388, 0.06987304240465164, 0.06657714396715164, 0.06284179538488388, 0.05581054463982582, 0.0472412109375, 0.04372558370232582, 0.0384521484375, 0.03361816331744194, 0.03647460788488388, 0.0274658203125, 0.02197265625, 0.0208740234375, 0.01801757700741291, 0.011425781063735485, 0.00966796837747097, 0.00966796837747097, 0.001977538922801614, 0.001977538922801614, 0.0046142577193677425, -0.001977538922801614, 0.0046142577193677425, 0.0024169920943677425, 0.003735351376235485, -0.0002197265566792339, 0.004833984188735485, 0.0032958984375, 0.004833984188735485, 0.007250976283103228, 0.0046142577193677425, 0.0017578124534338713, 0.003076171735301614, 0.0054931640625, 0.0054931640625, 0.005053710658103228, 0.0032958984375, 0.002197265625, 0.0002197265566792339, 0.001977538922801614, 0.0032958984375, 0.003076171735301614, -0.0004394531133584678, 0.0, 0.0002197265566792339, 0.0008789062267169356, 0.0017578124534338713, 0.0057128905318677425, 0.0008789062267169356, 0.001977538922801614, 0.0008789062267169356, 0.0010986328125, -0.0032958984375, 0.0035156249068677425, -0.0004394531133584678, 0.0, -0.0024169920943677425, -0.003076171735301614, -0.0035156249068677425, -0.0002197265566792339, -0.0024169920943677425, 0.0046142577193677425, 0.003735351376235485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0017578124534338713, 0.005053710658103228, 0.005053710658103228, -0.0028564452659338713, -0.0010986328125, -0.003076171735301614, 0.002197265625, -0.0008789062267169356, 0.0004394531133584678, 0.0008789062267169356, -0.001977538922801614, 0.0010986328125, 0.0032958984375, 0.003955077845603228, 0.003735351376235485, 0.0008789062267169356, 0.002197265625, 0.003076171735301614, 0.0046142577193677425, -0.002197265625, -0.0010986328125, 0.0032958984375, 0.001538085867650807, -0.0024169920943677425, 0.0008789062267169356, 0.0010986328125, 0.0002197265566792339, -0.0035156249068677425, 0.0017578124534338713, 0.00527343712747097, 0.002197265625, 0.0013183592818677425, -0.0010986328125, 0.00637206993997097, 0.00637206993997097, -0.0004394531133584678, -0.002636718563735485, 0.003955077845603228, 0.003955077845603228, -0.0002197265566792339, 0.0024169920943677425, -0.002197265625, -0.0004394531133584678, 0.0068115233443677425, 0.002636718563735485, 0.001538085867650807, -0.001538085867650807, 0.003735351376235485, 0.0004394531133584678, -0.00966796837747097, -0.009008788503706455, -0.009228515438735485, -0.009228515438735485, -0.01076660118997097, -0.02153320237994194, -0.02592773362994194, -0.028564453125, -0.02944335900247097, -0.03515625, -0.03449707105755806, -0.04042968526482582, -0.041748046875, -0.03867187350988388, -0.04833984375, -0.04570312425494194, -0.05009765550494194, -0.04812011495232582, -0.05031738057732582, -0.05471191182732582, -0.04855956882238388, -0.05537109076976776, -0.050537109375, -0.05405273288488388, -0.05031738057732582, -0.04855956882238388, -0.04548339545726776, -0.03647460788488388, -0.03208007663488388, -0.032958984375, -0.03208007663488388, -0.02680663950741291, -0.0230712890625, -0.0142822265625, -0.007910155691206455, 0.002197265625, 0.007031249813735485, 0.02197265625, 0.02680663950741291, 0.02768554538488388, 0.04086913913488388, 0.05229492112994194, 0.05405273288488388, 0.06789550930261612, 0.07207030802965164, 0.07844237983226776, 0.090087890625, 0.09909667819738388, 0.107666015625, 0.11711425334215164, 0.12590332329273224, 0.12678222358226776, 0.13798828423023224, 0.14260253310203552, 0.14963378012180328, 0.15578612685203552, 0.16171874105930328, 0.16677245497703552, 0.173583984375, 0.17204588651657104, 0.1746826171875, 0.17314451932907104, 0.1812744140625, 0.17863768339157104, 0.17622070014476776, 0.17753905057907104, 0.17709960043430328, 0.16677245497703552, 0.16127929091453552, 0.15446777641773224, 0.15578612685203552, 0.14787597954273224, 0.134033203125, 0.12744140625, 0.123046875, 0.10502929240465164, 0.09645995497703552, 0.08876952528953552, 0.07119140774011612, 0.06284179538488388, 0.04899902269244194, 0.03559570387005806, 0.02241210825741291, 0.003735351376235485, -0.0010986328125, -0.02197265625, -0.03559570387005806, -0.05207519233226776, -0.06240234151482582, -0.076904296875, -0.09931640326976776, -0.10349120944738388, -0.12062987685203552, -0.13688965141773224, -0.14787597954273224, -0.16237792372703552, -0.1845703125, -0.19050292670726776, -0.20478515326976776, -0.21796874701976776, -0.22807615995407104, -0.2340087890625, -0.25092771649360657, -0.25312498211860657, -0.2601562440395355, -0.2682861387729645, -0.2777343690395355, -0.2825683653354645, -0.2781738340854645, -0.2858642637729645, -0.2843261659145355, -0.2843261659145355, -0.27509763836860657, -0.2704834043979645, -0.26740720868110657, -0.2507080137729645, -0.24675291776657104, -0.230712890625, -0.22412109375, -0.21774901449680328, -0.19489745795726776, -0.18808592855930328, -0.16523437201976776, -0.15380859375, -0.1318359375, -0.12238769233226776, -0.10788574069738388, -0.08481445163488388, -0.06394042819738388, -0.04768066108226776, -0.02680663950741291, -0.007250976283103228, 0.0054931640625, 0.02834472618997097, 0.0472412109375, 0.06679687649011612, 0.09184569865465164, 0.10458984225988388, 0.12348632514476776, 0.14194335043430328, 0.16633300483226776, 0.18017578125, 0.20302733778953552, 0.22148436307907104, 0.23598632216453552, 0.25532224774360657, 0.26982420682907104, 0.2933349609375, 0.30322265625, 0.31706541776657104, 0.3210205137729645, 0.333984375, 0.3394775390625, 0.3590331971645355, 0.3550781011581421, 0.36188963055610657, 0.35529783368110657, 0.36320799589157104, 0.3638671636581421, 0.35222166776657104, 0.34672850370407104, 0.336181640625, 0.3320068418979645, 0.3199218809604645, 0.31376951932907104, 0.2911376953125, 0.28190916776657104, 0.2726806700229645, 0.25114744901657104, 0.228515625, 0.21511229872703552, 0.19511717557907104, 0.17424315214157104, 0.15754394233226776, 0.1351318359375, 0.11403807997703552, 0.09030761569738388, 0.07097167521715164, 0.05251464620232582, 0.0296630859375, 0.003076171735301614, -0.014721679501235485, -0.03713378682732582, -0.05844726413488388, -0.07866210490465164, -0.11074218153953552, -0.12568359076976776, -0.14787597954273224, -0.16633300483226776, -0.18962401151657104, -0.20742186903953552, -0.23269042372703552, -0.25224608182907104, -0.2671875059604645, -0.2876220643520355, -0.305419921875, -0.3197021484375, -0.333984375, -0.3495849370956421, -0.37199705839157104, -0.3810058534145355, -0.38671875, -0.38957518339157104, -0.3955078125, -0.3966064453125, -0.4067138433456421, -0.3957275152206421, -0.39374998211860657, -0.3875976502895355, -0.37639158964157104, -0.36430662870407104, -0.3526611328125, -0.32893064618110657, -0.3161865174770355, -0.3056396543979645, -0.29289549589157104, -0.26740720868110657, -0.24038085341453552, -0.22499999403953552, -0.20017088949680328, -0.1790771484375, -0.16523437201976776, -0.13447265326976776, -0.1153564453125, -0.09206542372703552, -0.06328124552965164, -0.041748046875, -0.0186767578125, 0.00747070275247097, 0.02944335900247097, 0.05009765550494194, 0.07712402194738388, 0.09975585341453552, 0.12172850966453552, 0.14545898139476776, 0.17336425185203552, 0.19072264432907104, 0.21511229872703552, 0.23378905653953552, 0.24873046576976776, 0.27180173993110657, 0.2933349609375, 0.30827635526657104, 0.3374999761581421, 0.3451904058456421, 0.3594726324081421, 0.37749022245407104, 0.3922119140625, 0.4007812440395355, 0.40803220868110657, 0.4185791015625, 0.41352537274360657, 0.41264647245407104, 0.4111083745956421, 0.4139648377895355, 0.40693357586860657, 0.39924314618110657, 0.3864990174770355, 0.36848142743110657, 0.3614501953125, 0.3473876714706421, 0.33442381024360657, 0.31596678495407104, 0.28718259930610657, 0.27751463651657104, 0.25334471464157104, 0.2340087890625, 0.21687011420726776, 0.19270019233226776, 0.16413573920726776, 0.14479979872703552, 0.12326660007238388, 0.10107421875, 0.07338867336511612, 0.05295410007238388, 0.02768554538488388, 0.010327148251235485, -0.015600585378706455, -0.04196777194738388, -0.06503906100988388, -0.08986815810203552, -0.1065673828125, -0.12590332329273224, -0.14875487983226776, -0.17072753608226776, -0.19753417372703552, -0.21247558295726776, -0.2318115234375, -0.2590576112270355, -0.27290037274360657, -0.28718259930610657, -0.30937498807907104, -0.3243164122104645, -0.3320068418979645, -0.3513427674770355, -0.36079099774360657, -0.3724365234375, -0.3799072206020355, -0.38232421875, -0.39374998211860657, -0.3821044862270355, -0.37968748807907104, -0.3779296875, -0.37199705839157104, -0.3671630620956421, -0.3561767339706421, -0.3469482362270355, -0.3293701112270355, -0.3172851502895355, -0.3023437559604645, -0.27729490399360657, -0.26520994305610657, -0.24345701932907104, -0.22917479276657104, -0.20061033964157104, -0.18215331435203552, -0.15798339247703552, -0.14084471762180328, -0.12546385824680328, -0.094482421875, -0.0802001953125, -0.05537109076976776, -0.0340576171875, -0.01779785193502903, 0.006591796875, 0.02614746056497097, 0.0494384765625, 0.076904296875, 0.08723144233226776, 0.11821288615465164, 0.13557128608226776, 0.156005859375, 0.1724853515625, 0.18720702826976776, 0.208740234375, 0.22456054389476776, 0.23796385526657104, 0.25092771649360657, 0.2647705078125, 0.2836669981479645, 0.292236328125, 0.3076171875, 0.3089355528354645, 0.3216796815395355, 0.3216796815395355, 0.32893064618110657, 0.3249755799770355, 0.3328857421875, 0.327392578125, 0.32893064618110657, 0.3166259825229645, 0.31245115399360657, 0.30717772245407104, 0.2913574278354645, 0.28388670086860657, 0.2792724668979645, 0.26323240995407104, 0.25004881620407104, 0.23312987387180328, 0.22126464545726776, 0.20478515326976776, 0.18918456137180328, 0.17644041776657104, 0.15424804389476776, 0.13688965141773224, 0.12062987685203552, 0.10722655802965164, 0.09030761569738388, 0.06943359225988388, 0.04768066108226776, 0.03383788838982582, 0.02241210825741291, -0.0004394531133584678, -0.013403319753706455, -0.03273925557732582, -0.05405273288488388, -0.06767577677965164, -0.08503417670726776, -0.09953612834215164, -0.10546875, -0.12766112387180328, -0.14370116591453552, -0.15205077826976776, -0.1593017578125, -0.173583984375, -0.18896484375, -0.19401854276657104, -0.20830076932907104, -0.20280760526657104, -0.22038573026657104, -0.22499999403953552, -0.22587889432907104, -0.22412109375, -0.22565917670726776, -0.22763670980930328, -0.22412109375, -0.2296142578125, -0.21906737983226776, -0.217529296875, -0.21379393339157104, -0.20654296875, -0.19907225668430328, -0.19138182699680328, -0.17885741591453552, -0.17226561903953552, -0.15952147543430328, -0.15095214545726776, -0.147216796875, -0.13579101860523224, -0.12436523288488388, -0.11052245646715164, -0.09184569865465164, -0.08986815810203552, -0.07734374701976776, -0.05866698920726776, -0.04680175706744194, -0.03515625, -0.028564453125, -0.01384277269244194, -0.0076904296875, 0.00747070275247097, 0.01076660118997097, 0.02922363206744194, 0.03317870944738388, 0.04218749701976776, 0.05471191182732582, 0.05800781026482582, 0.07229004055261612, 0.07316894084215164, 0.0758056640625, 0.08547362685203552, 0.10085448622703552, 0.09799804538488388, 0.10239257663488388, 0.1065673828125, 0.103271484375, 0.10898437350988388, 0.10546875, 0.11271972209215164, 0.11184081435203552, 0.10964354872703552, 0.10590820014476776, 0.10568847507238388, 0.10568847507238388, 0.09865722060203552, 0.09689941257238388, 0.0999755859375, 0.08547362685203552, 0.08876952528953552, 0.08547362685203552, 0.0791015625, 0.07294921576976776, 0.06613769382238388, 0.0626220703125, 0.0615234375, 0.04921874776482582, 0.04460449144244194, 0.03779296949505806, 0.03911132737994194, 0.02812499925494194, 0.02724609337747097, 0.024169921875, 0.0252685546875, 0.01889648474752903, 0.01625976525247097, 0.010986328125, 0.01076660118997097, 0.01054687425494194, 0.0002197265566792339, -0.0008789062267169356, 0.0057128905318677425, -0.003735351376235485, 0.0, 0.0017578124534338713, -0.0013183592818677425, 0.0017578124534338713, -0.002197265625, 0.0004394531133584678, 0.0, -0.001538085867650807, 0.0041748047806322575, 0.003955077845603228, 0.0046142577193677425, 0.0006591796409338713, -0.0004394531133584678, 0.005053710658103228, 0.0017578124534338713, -0.001977538922801614, 0.005053710658103228, 0.0, 0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0004394531133584678, 0.0024169920943677425, -0.0032958984375, -0.0010986328125, 0.003076171735301614, 0.00439453125, -0.0008789062267169356, 0.003735351376235485, 0.00439453125, -0.0028564452659338713, 0.0002197265566792339, -0.0010986328125, 0.001977538922801614, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.003735351376235485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0013183592818677425, 0.0002197265566792339, 0.0006591796409338713, 0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, 0.002636718563735485, 0.001538085867650807, -0.003076171735301614, 0.006591796875, 0.0068115233443677425, -0.002636718563735485, 0.0068115233443677425, -0.0017578124534338713, 0.0010986328125, -0.001977538922801614, -0.0017578124534338713, 0.0002197265566792339, 0.002197265625, -0.0024169920943677425, 0.002636718563735485, 0.00439453125, 0.003735351376235485, 0.0068115233443677425, 0.00747070275247097, 0.0017578124534338713, 0.0008789062267169356, 0.00439453125, 0.0032958984375, 0.001977538922801614, 0.0017578124534338713, -0.0032958984375, 0.001977538922801614, 0.0010986328125, 0.003735351376235485, -0.003955077845603228, -0.0010986328125, 0.0004394531133584678, 0.0, 0.0041748047806322575, 0.0035156249068677425, -0.00527343712747097, -0.0006591796409338713, 0.0002197265566792339, -0.002197265625, 0.0024169920943677425, -0.004833984188735485, -0.007910155691206455, -0.0057128905318677425, -0.010986328125, -0.0057128905318677425, -0.01318359375, -0.01911620981991291, -0.02351074106991291, -0.02548827975988388, -0.02395019493997097, -0.03449707105755806, -0.03449707105755806, -0.04196777194738388, -0.0384521484375, -0.0450439453125, -0.05141601338982582, -0.05295410007238388, -0.05317382514476776, -0.05515136569738388, -0.05427245795726776, -0.05778808519244194, -0.05844726413488388, -0.05888671800494194, -0.05844726413488388, -0.05866698920726776, -0.0538330078125, -0.05866698920726776, -0.05515136569738388, -0.05141601338982582, -0.04768066108226776, -0.04328612983226776, -0.0318603515625, -0.03493652120232582, -0.02351074106991291, -0.0186767578125, -0.01889648474752903, -0.0008789062267169356, -0.0017578124534338713, 0.005932617001235485, 0.0186767578125, 0.02944335900247097, 0.03361816331744194, 0.04965820163488388, 0.05559081956744194, 0.059326171875, 0.07668457180261612, 0.0791015625, 0.09470214694738388, 0.10393065959215164, 0.11359862983226776, 0.11469726264476776, 0.1307373046875, 0.13974608480930328, 0.14479979872703552, 0.15732420980930328, 0.15996094048023224, 0.16501463949680328, 0.17424315214157104, 0.17666015028953552, 0.18413084745407104, 0.1988525390625, 0.19401854276657104, 0.19423827528953552, 0.19643554091453552, 0.2010498046875, 0.20083007216453552, 0.19423827528953552, 0.19050292670726776, 0.19270019233226776, 0.19182127714157104, 0.18544921278953552, 0.18193358182907104, 0.16545410454273224, 0.1593017578125, 0.15424804389476776, 0.14458008110523224, 0.1318359375, 0.12590332329273224, 0.10700683295726776, 0.09470214694738388, 0.08349609375, 0.06833495944738388, 0.05537109076976776, 0.03669433668255806, 0.03054199181497097, 0.007031249813735485, -0.003735351376235485, -0.02504882775247097, -0.03999023512005806, -0.04921874776482582, -0.07404784858226776, -0.08767089247703552, -0.10634765028953552, -0.11337890475988388, -0.1373291015625, -0.15424804389476776, -0.1658935546875, -0.18391112983226776, -0.1900634765625, -0.21357421576976776, -0.22653807699680328, -0.24345701932907104, -0.25224608182907104, -0.2660888731479645, -0.27070310711860657, -0.2777343690395355, -0.2977294921875, -0.29619139432907104, -0.31157225370407104, -0.30585935711860657, -0.309814453125, -0.3175048828125, -0.31596678495407104, -0.309814453125, -0.29948729276657104, -0.29816892743110657, -0.29597166180610657, -0.28740233182907104, -0.2801513671875, -0.2590576112270355, -0.2551025450229645, -0.2373046875, -0.21994628012180328, -0.20017088949680328, -0.1856689453125, -0.17204588651657104, -0.15073241293430328, -0.13227538764476776, -0.11623534560203552, -0.09799804538488388, -0.0780029296875, -0.05866698920726776, -0.03801269456744194, -0.01713867112994194, 0.009228515438735485, 0.03054199181497097, 0.05581054463982582, 0.0780029296875, 0.09689941257238388, 0.11821288615465164, 0.13754881918430328, 0.15996094048023224, 0.18479003012180328, 0.20192870497703552, 0.21818846464157104, 0.24169921875, 0.25312498211860657, 0.2744384706020355, 0.296630859375, 0.3076171875, 0.3315673768520355, 0.3462890386581421, 0.35881346464157104, 0.36408689618110657, 0.3799072206020355, 0.3935302495956421, 0.3957275152206421, 0.404296875, 0.39836424589157104, 0.40253904461860657, 0.39265134930610657, 0.3924316167831421, 0.38232421875, 0.3812255859375, 0.3724365234375, 0.3473876714706421, 0.33903807401657104, 0.3306884765625, 0.3106933534145355, 0.2957519590854645, 0.2715820372104645, 0.2551025450229645, 0.23291015625, 0.21818846464157104, 0.19643554091453552, 0.17841796576976776, 0.14897461235523224, 0.13271483778953552, 0.10832519084215164, 0.07954101264476776, 0.05734863132238388, 0.03032226487994194, 0.01054687425494194, -0.012304686941206455, -0.04548339545726776, -0.06240234151482582, -0.08854980021715164, -0.10942382365465164, -0.13337402045726776, -0.16062010824680328, -0.18061523139476776, -0.21181640028953552, -0.226318359375, -0.2529052793979645, -0.27509763836860657, -0.29179686307907104, -0.31464841961860657, -0.32958984375, -0.3579345643520355, -0.3768310546875, -0.3810058534145355, -0.4018798768520355, -0.40913084149360657, -0.4185791015625, -0.43242186307907104, -0.441650390625, -0.4418700933456421, -0.43659666180610657, -0.4359374940395355, -0.4341796636581421, -0.4198974370956421, -0.41462400555610657, -0.40275877714157104, -0.388916015625, -0.36760252714157104, -0.35639646649360657, -0.3306884765625, -0.3175048828125, -0.28937986493110657, -0.265869140625, -0.252685546875, -0.217529296875, -0.19291990995407104, -0.17556151747703552, -0.14963378012180328, -0.12810058891773224, -0.10458984225988388, -0.07272949069738388, -0.05361327901482582, -0.0252685546875, -0.0035156249068677425, 0.03098144382238388, 0.05624999850988388, 0.08151855319738388, 0.10678710788488388, 0.12875975668430328, 0.15974120795726776, 0.18017578125, 0.20500487089157104, 0.23005370795726776, 0.25664061307907104, 0.27290037274360657, 0.29926756024360657, 0.32585448026657104, 0.3462890386581421, 0.3592529296875, 0.38518065214157104, 0.39726561307907104, 0.41264647245407104, 0.43022459745407104, 0.44208982586860657, 0.4451659917831421, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44384765625, 0.43659666180610657, 0.43132323026657104, 0.41594237089157104, 0.4056152105331421, 0.38737791776657104, 0.3656249940395355, 0.3436523377895355, 0.32563474774360657, 0.3062988221645355, 0.28168943524360657, 0.261474609375, 0.23291015625, 0.21665038168430328, 0.18303221464157104, 0.15798339247703552, 0.142822265625, 0.11469726264476776, 0.09162597358226776, 0.06855468451976776, 0.0428466796875, 0.01582031138241291, -0.01516113243997097, -0.03889160230755806, -0.06130370870232582, -0.08525390177965164, -0.11293944716453552, -0.13710936903953552, -0.1636962890625, -0.18940429389476776, -0.2142333984375, -0.23291015625, -0.2594970762729645, -0.2715820372104645, -0.2931152284145355, -0.3205810487270355, -0.3381591737270355, -0.35090330243110657, -0.36540526151657104, -0.3814452886581421, -0.4029785096645355, -0.41242673993110657, -0.4253906011581421, -0.4308837652206421, -0.43989256024360657, -0.4315429627895355, -0.432861328125, -0.4216552674770355, -0.4205566346645355, -0.4023193120956421, -0.39177244901657104, -0.3779296875, -0.36738279461860657, -0.3447509706020355, -0.3309082090854645, -0.30915525555610657, -0.292236328125, -0.26806640625, -0.24587401747703552, -0.22434081137180328, -0.2010498046875, -0.17885741591453552, -0.16435547173023224, -0.13359375298023224, -0.11403807997703552, -0.0867919921875, -0.05910644307732582, -0.04306640475988388, -0.0186767578125, 0.00966796837747097, 0.02548827975988388, 0.052734375, 0.07778320461511612, 0.10129394382238388, 0.12700195610523224, 0.14567871391773224, 0.16853027045726776, 0.18874511122703552, 0.20720213651657104, 0.22478026151657104, 0.2449951171875, 0.26301267743110657, 0.28278806805610657, 0.3019042909145355, 0.31574705243110657, 0.3262939453125, 0.33771970868110657, 0.35441893339157104, 0.3539794683456421, 0.36320799589157104, 0.3777099549770355, 0.37529295682907104, 0.3777099549770355, 0.37836912274360657, 0.369140625, 0.36101073026657104, 0.3506835699081421, 0.3482666015625, 0.33332517743110657, 0.3221191465854645, 0.31245115399360657, 0.2957519590854645, 0.2825683653354645, 0.263671875, 0.24741210043430328, 0.22719725966453552, 0.21401366591453552, 0.19687499105930328, 0.1768798828125, 0.15380859375, 0.14128418266773224, 0.112060546875, 0.0966796875, 0.07316894084215164, 0.0604248046875, 0.0384521484375, 0.02263183519244194, 0.0004394531133584678, -0.01669921912252903, -0.03383788838982582, -0.05954589694738388, -0.07998047024011612, -0.08635253459215164, -0.10371093451976776, -0.12106933444738388, -0.14150390028953552, -0.15117187798023224, -0.17138671875, -0.18610839545726776, -0.19775390625, -0.20588378608226776, -0.22236327826976776, -0.22697752714157104, -0.23291015625, -0.24038085341453552, -0.2518066465854645, -0.24697265028953552, -0.2562011778354645, -0.2634521424770355, -0.2634521424770355, -0.25444334745407104, -0.25554198026657104, -0.2507080137729645, -0.2427978515625, -0.23686522245407104, -0.23906248807907104, -0.23115234076976776, -0.213134765625, -0.20192870497703552, -0.1922607421875, -0.18413084745407104, -0.17446288466453552, -0.16457518935203552, -0.15073241293430328, -0.13886718451976776, -0.11909179389476776, -0.10986328125, -0.09931640326976776, -0.08657225966453552, -0.06767577677965164, -0.05141601338982582, -0.0428466796875, -0.0296630859375, -0.01955566368997097, -0.0013183592818677425, 0.01054687425494194, 0.01735839806497097, 0.03010253794491291, 0.04350585862994194, 0.05559081956744194, 0.059326171875, 0.0703125, 0.07316894084215164, 0.08701171725988388, 0.09645995497703552, 0.09645995497703552, 0.107666015625, 0.11667480319738388, 0.11887206882238388, 0.1197509765625, 0.1241455078125, 0.12260741740465164, 0.12282714247703552, 0.12238769233226776, 0.12612304091453552, 0.12172850966453552, 0.12546385824680328, 0.11623534560203552, 0.11557617038488388, 0.11601562052965164, 0.11184081435203552, 0.10173339396715164, 0.09953612834215164, 0.09909667819738388, 0.09184569865465164, 0.08525390177965164, 0.08173827826976776, 0.07932128757238388, 0.06987304240465164, 0.06613769382238388, 0.05756835639476776, 0.05690917745232582, 0.04570312425494194, 0.04350585862994194, 0.0362548828125, 0.03010253794491291, 0.02460937388241291, 0.02658691257238388, 0.01911620981991291, 0.014501952566206455, 0.005932617001235485, 0.007250976283103228, 0.01054687425494194, -0.0008789062267169356, 0.0032958984375, 0.002197265625, 0.0008789062267169356, -0.0008789062267169356, -0.0035156249068677425, 0.002197265625, 0.0, 0.0032958984375, 0.00439453125, 0.0008789062267169356, -0.003735351376235485, 0.00747070275247097, 0.0010986328125, 0.003735351376235485, 0.0010986328125, 0.0010986328125, 0.0, -0.001538085867650807, -0.002197265625, 0.0035156249068677425, 0.003735351376235485, 0.004833984188735485, 0.002636718563735485, -0.002197265625, 0.0035156249068677425, 0.0006591796409338713, -0.0013183592818677425, 0.0024169920943677425, 0.0041748047806322575, -0.0028564452659338713, 0.003735351376235485, 0.002636718563735485, 0.002636718563735485, -0.0054931640625, -0.004833984188735485, -0.0008789062267169356, 0.0024169920943677425, -0.0008789062267169356, 0.003076171735301614, -0.0017578124534338713, 0.0013183592818677425, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.05 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003076171735301614, 0.003955077845603228, 0.0068115233443677425, 0.003735351376235485, 0.00439453125, 0.0004394531133584678, 0.002636718563735485, 0.004833984188735485, 0.0032958984375, -0.0013183592818677425, 0.0057128905318677425, 0.005932617001235485, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, 0.0013183592818677425, -0.0002197265566792339, 0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.00527343712747097, 0.0, 0.00637206993997097, 0.003735351376235485, 0.0041748047806322575, 0.0046142577193677425, 0.003955077845603228, -0.002197265625, 0.0024169920943677425, 0.0004394531133584678, 0.0041748047806322575, 0.0010986328125, 0.0006591796409338713, -0.0002197265566792339, 0.006591796875, -0.003076171735301614, 0.001977538922801614, 0.0028564452659338713, 0.005932617001235485, 0.0057128905318677425, 0.002197265625, 0.006152343470603228, 0.005053710658103228, 0.0057128905318677425, 0.0008789062267169356, 0.006591796875, 0.002636718563735485, 0.0013183592818677425, -0.006152343470603228, -0.0017578124534338713, -0.01076660118997097, -0.01186523400247097, -0.013403319753706455, -0.02021484263241291, -0.02658691257238388, -0.0252685546875, -0.03383788838982582, -0.037353515625, -0.04218749701976776, -0.041748046875, -0.04899902269244194, -0.05427245795726776, -0.05339355394244194, -0.05756835639476776, -0.06350097805261612, -0.06108398362994194, -0.06503906100988388, -0.06350097805261612, -0.06723632663488388, -0.06130370870232582, -0.06547851115465164, -0.06306152045726776, -0.06196288764476776, -0.05844726413488388, -0.05778808519244194, -0.05668945237994194, -0.04768066108226776, -0.04306640475988388, -0.04130859300494194, -0.03581542894244194, -0.02614746056497097, -0.02614746056497097, -0.01779785193502903, -0.01164550706744194, 0.0028564452659338713, 0.014501952566206455, 0.015380859375, 0.02834472618997097, 0.03515625, 0.0494384765625, 0.06130370870232582, 0.06855468451976776, 0.07514648139476776, 0.0867919921875, 0.0999755859375, 0.10700683295726776, 0.12062987685203552, 0.13623046875, 0.13886718451976776, 0.1549072265625, 0.16501463949680328, 0.173583984375, 0.17709960043430328, 0.18325194716453552, 0.19094237685203552, 0.1966552734375, 0.20280760526657104, 0.20808105170726776, 0.21884764730930328, 0.21708983182907104, 0.22324217855930328, 0.22675780951976776, 0.2197265625, 0.21818846464157104, 0.21774901449680328, 0.2076416015625, 0.208740234375, 0.20017088949680328, 0.19072264432907104, 0.18896484375, 0.17819823324680328, 0.17446288466453552, 0.16347655653953552, 0.14150390028953552, 0.13974608480930328, 0.12260741740465164, 0.10480956733226776, 0.09733886271715164, 0.0758056640625, 0.06130370870232582, 0.04570312425494194, 0.03229980543255806, 0.0057128905318677425, -0.006152343470603228, -0.02263183519244194, -0.03911132737994194, -0.05405273288488388, -0.07470703125, -0.0911865234375, -0.10964354872703552, -0.125244140625, -0.14589843153953552, -0.15776367485523224, -0.182373046875, -0.19423827528953552, -0.21730956435203552, -0.22983397543430328, -0.24609375, -0.25642088055610657, -0.27290037274360657, -0.2858642637729645, -0.3012451231479645, -0.31201171875, -0.3251953125, -0.327392578125, -0.3326660096645355, -0.34343260526657104, -0.34321287274360657, -0.340576171875, -0.3381591737270355, -0.33991697430610657, -0.33552244305610657, -0.3249755799770355, -0.32343748211860657, -0.31486815214157104, -0.29399412870407104, -0.29047849774360657, -0.2735595703125, -0.25422361493110657, -0.2373046875, -0.23115234076976776, -0.20478515326976776, -0.19094237685203552, -0.17138671875, -0.14633788168430328, -0.13007812201976776, -0.10964354872703552, -0.08217773586511612, -0.06174316257238388, -0.03603515401482582, -0.01691894419491291, 0.008129882626235485, 0.03098144382238388, 0.05207519233226776, 0.07844237983226776, 0.10458984225988388, 0.11799316108226776, 0.14897461235523224, 0.16611327230930328, 0.1878662109375, 0.21796874701976776, 0.24016112089157104, 0.25883787870407104, 0.27619627118110657, 0.29838865995407104, 0.3218994140625, 0.3381591737270355, 0.3473876714706421, 0.3645263612270355, 0.38715818524360657, 0.39726561307907104, 0.41682127118110657, 0.42473143339157104, 0.4273681640625, 0.44099119305610657, 0.43549802899360657, 0.4370361268520355, 0.43022459745407104, 0.43022459745407104, 0.42780759930610657, 0.4097900390625, 0.40034177899360657, 0.3821044862270355, 0.3781493902206421, 0.3594726324081421, 0.33354490995407104, 0.31157225370407104, 0.30036619305610657, 0.2825683653354645, 0.25971677899360657, 0.23818358778953552, 0.21181640028953552, 0.19138182699680328, 0.17050780355930328, 0.14677734673023224, 0.11601562052965164, 0.09228515625, 0.06547851115465164, 0.04020996019244194, 0.01625976525247097, -0.014721679501235485, -0.03537597507238388, -0.05954589694738388, -0.08503417670726776, -0.10810546576976776, -0.14238281548023224, -0.15974120795726776, -0.19643554091453552, -0.22126464545726776, -0.24587401747703552, -0.2647705078125, -0.28520506620407104, -0.309814453125, -0.33222654461860657, -0.3570556640625, -0.3810058534145355, -0.39726561307907104, -0.41901853680610657, -0.4306640625, -0.4381347596645355, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.4484618902206421, -0.43549802899360657, -0.42341306805610657, -0.4078124761581421, -0.39177244901657104, -0.3539794683456421, -0.33684080839157104, -0.3106933534145355, -0.2902587950229645, -0.2691650390625, -0.24038085341453552, -0.22060546278953552, -0.18874511122703552, -0.16215820610523224, -0.13974608480930328, -0.10898437350988388, -0.08591308444738388, -0.06284179538488388, -0.03339843824505806, -0.00439453125, 0.02724609337747097, 0.05559081956744194, 0.08063964545726776, 0.10524901747703552, 0.13447265326976776, 0.16347655653953552, 0.18610839545726776, 0.21247558295726776, 0.24257811903953552, 0.26323240995407104, 0.2935546934604645, 0.3150878846645355, 0.34013670682907104, 0.36298826336860657, 0.38386228680610657, 0.397705078125, 0.4216552674770355, 0.4359374940395355, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.4427490234375, 0.43242186307907104, 0.41242673993110657, 0.397705078125, 0.3768310546875, 0.3460693359375, 0.32585448026657104, 0.30915525555610657, 0.27509763836860657, 0.25202634930610657, 0.228515625, 0.20258788764476776, 0.17775878310203552, 0.14963378012180328, 0.12436523288488388, 0.10239257663488388, 0.07294921576976776, 0.04570312425494194, 0.013403319753706455, -0.0120849609375, -0.04086913913488388, -0.06437987834215164, -0.08767089247703552, -0.11557617038488388, -0.14985351264476776, -0.169189453125, -0.19401854276657104, -0.22565917670726776, -0.24565428495407104, -0.2737793028354645, -0.2955322265625, -0.31201171875, -0.3438720703125, -0.3592529296875, -0.3781493902206421, -0.3955078125, -0.410888671875, -0.43022459745407104, -0.43571776151657104, -0.4493408203125, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44978025555610657, -0.4295654296875, -0.42121580243110657, -0.4053955078125, -0.37836912274360657, -0.3579345643520355, -0.3429931402206421, -0.32365721464157104, -0.2990478575229645, -0.2777343690395355, -0.24982909858226776, -0.22653807699680328, -0.19577635824680328, -0.17753905057907104, -0.1527099609375, -0.12041015177965164, -0.10239257663488388, -0.07294921576976776, -0.04965820163488388, -0.01911620981991291, 0.0041748047806322575, 0.03142089769244194, 0.05800781026482582, 0.08261718600988388, 0.10524901747703552, 0.13029785454273224, 0.15249022841453552, 0.17731933295726776, 0.2021484375, 0.23093260824680328, 0.24653320014476776, 0.2711425721645355, 0.28168943524360657, 0.2979492247104645, 0.32695311307907104, 0.33464354276657104, 0.35332030057907104, 0.37309569120407104, 0.3790283203125, 0.39177244901657104, 0.40056151151657104, 0.41374510526657104, 0.4122070074081421, 0.4155029058456421, 0.40825194120407104, 0.4097900390625, 0.4012206792831421, 0.38935545086860657, 0.3836425542831421, 0.3759521245956421, 0.3528808355331421, 0.34123533964157104, 0.32563474774360657, 0.3041015565395355, 0.29509276151657104, 0.2726806700229645, 0.25532224774360657, 0.23247069120407104, 0.2109375, 0.19907225668430328, 0.17556151747703552, 0.14875487983226776, 0.12941893935203552, 0.11162108927965164, 0.08217773586511612, 0.06394042819738388, 0.04218749701976776, 0.02219238132238388, -0.0032958984375, -0.02460937388241291, -0.03581542894244194, -0.05866698920726776, -0.08085937052965164, -0.09514159709215164, -0.116455078125, -0.13798828423023224, -0.15622557699680328, -0.17116698622703552, -0.19182127714157104, -0.20302733778953552, -0.21247558295726776, -0.23049315810203552, -0.23884277045726776, -0.24982909858226776, -0.2594970762729645, -0.2748779356479645, -0.2803710997104645, -0.28520506620407104, -0.2845458984375, -0.2836669981479645, -0.28718259930610657, -0.2931152284145355, -0.2823486328125, -0.28718259930610657, -0.2821289002895355, -0.2737793028354645, -0.263671875, -0.24609375, -0.23862303793430328, -0.230712890625, -0.21994628012180328, -0.20302733778953552, -0.1966552734375, -0.17775878310203552, -0.16853027045726776, -0.15336914360523224, -0.13051757216453552, -0.12458495795726776, -0.10393065959215164, -0.085693359375, -0.07229004055261612, -0.06108398362994194, -0.04965820163488388, -0.03273925557732582, -0.02219238132238388, -0.0057128905318677425, 0.008349609561264515, 0.01955566368997097, 0.03229980543255806, 0.04768066108226776, 0.05954589694738388, 0.07272949069738388, 0.08371581882238388, 0.09140624850988388, 0.0977783203125, 0.1043701171875, 0.11579589545726776, 0.11601562052965164, 0.12019042670726776, 0.13359375298023224, 0.13557128608226776, 0.13645018637180328, 0.13864745199680328, 0.14084471762180328, 0.13623046875, 0.1351318359375, 0.13666991889476776, 0.13425292074680328, 0.13864745199680328, 0.12678222358226776, 0.12832030653953552, 0.123046875, 0.120849609375, 0.11887206882238388, 0.10524901747703552, 0.10788574069738388, 0.09294433146715164, 0.0867919921875, 0.08107910305261612, 0.07558593899011612, 0.0692138671875, 0.0692138671875, 0.06328124552965164, 0.04965820163488388, 0.05141601338982582, 0.04218749701976776, 0.03779296949505806, 0.02592773362994194, 0.02285156212747097, 0.01801757700741291, 0.01889648474752903, 0.013403319753706455, 0.0054931640625, 0.003076171735301614, 0.003955077845603228, 0.0017578124534338713, 0.0041748047806322575, 0.003955077845603228, -0.0057128905318677425, -0.005932617001235485, -0.005053710658103228, 0.0006591796409338713, -0.001538085867650807, 0.007031249813735485, -0.0004394531133584678, 0.0032958984375, 0.005053710658103228, 0.0035156249068677425, 0.0035156249068677425, 0.004833984188735485, 0.0024169920943677425, -0.0028564452659338713, -0.0028564452659338713, 0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0035156249068677425, -0.0013183592818677425, -0.003076171735301614, 0.001977538922801614, 0.0010986328125, 0.0004394531133584678, 0.0035156249068677425, -0.0008789062267169356, -0.00527343712747097, 0.002636718563735485, -0.0010986328125, -0.003076171735301614, 0.0028564452659338713, -0.006152343470603228, -0.0028564452659338713, -0.0024169920943677425, 0.0013183592818677425, -0.002197265625, 0.003955077845603228, 0.0028564452659338713, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, 0.0054931640625, 0.003955077845603228, 0.00439453125, 0.0017578124534338713, 0.0, 0.0032958984375, 0.0028564452659338713, 0.0028564452659338713, 0.0002197265566792339, 0.0035156249068677425, 0.0024169920943677425, -0.0013183592818677425, 0.0057128905318677425, -0.002197265625, 0.003076171735301614, 0.0035156249068677425, 0.00439453125, -0.001538085867650807, 0.0068115233443677425, 0.003735351376235485, -0.003076171735301614, -0.001977538922801614, 0.004833984188735485, 0.0010986328125, 0.003076171735301614, 0.003735351376235485, -0.001977538922801614, 0.0004394531133584678, 0.0024169920943677425, -0.0017578124534338713, 0.003955077845603228, 0.0024169920943677425, 0.001538085867650807, 0.0004394531133584678, -0.001538085867650807, 0.0035156249068677425, 0.0054931640625, -0.0013183592818677425, 0.0076904296875, 0.005932617001235485, 0.002197265625, -0.002197265625, -0.0006591796409338713, 0.002636718563735485, 0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.003076171735301614, -0.0004394531133584678, 0.0035156249068677425, -0.0010986328125, -0.0010986328125, -0.003735351376235485, 0.002636718563735485, -0.0010986328125, 0.0010986328125, 0.002197265625, -0.002636718563735485, -0.00439453125, -0.002636718563735485, -0.0032958984375, 0.003955077845603228, 0.0017578124534338713, -0.0024169920943677425, -0.003735351376235485, 0.003735351376235485, 0.003076171735301614, 0.005053710658103228, 0.008129882626235485, 0.002197265625, 0.009448242373764515, 0.013403319753706455, 0.008349609561264515, 0.0142822265625, 0.01516113243997097, 0.015600585378706455, 0.01274413987994194, 0.0120849609375, 0.010327148251235485, 0.01186523400247097, 0.012524413876235485, 0.01735839806497097, 0.01164550706744194, 0.007031249813735485, 0.006152343470603228, 0.00856933556497097, 0.002197265625, 0.007250976283103228, -0.002197265625, 0.0006591796409338713, -0.004833984188735485, -0.005053710658103228, -0.004833984188735485, -0.0017578124534338713, -0.005932617001235485, -0.0120849609375, -0.010107421316206455, -0.01494140550494194, -0.012304686941206455, -0.01955566368997097, -0.014501952566206455, -0.01296386681497097, -0.01406249962747097, -0.01516113243997097, -0.02043456956744194, -0.009228515438735485, -0.010107421316206455, -0.0142822265625, -0.010986328125, -0.003955077845603228, -0.0076904296875, 0.0, 0.003076171735301614, 0.0032958984375, 0.009448242373764515, 0.010327148251235485, 0.01669921912252903, 0.01845703087747097, 0.0164794921875, 0.02482910081744194, 0.02241210825741291, 0.02395019493997097, 0.02614746056497097, 0.02900390513241291, 0.03471679612994194, 0.0296630859375, 0.02482910081744194, 0.02592773362994194, 0.02548827975988388, 0.02658691257238388, 0.01999511756002903, 0.01911620981991291, 0.01384277269244194, 0.008129882626235485, 0.0057128905318677425, 0.004833984188735485, 0.005932617001235485, 0.0010986328125, -0.001538085867650807, -0.008349609561264515, -0.007910155691206455, -0.01625976525247097, -0.024169921875, -0.02373046800494194, -0.02175292931497097, -0.03010253794491291, -0.02922363206744194, -0.02834472618997097, -0.03032226487994194, -0.02790527231991291, -0.03581542894244194, -0.02878417819738388, -0.03383788838982582, -0.0230712890625, -0.02109374850988388, -0.017578125, -0.01625976525247097, -0.01669921912252903, -0.004833984188735485, -0.003955077845603228, 0.005053710658103228, 0.004833984188735485, 0.01186523400247097, 0.01516113243997097, 0.02329101413488388, 0.02043456956744194, 0.03273925557732582, 0.03427734225988388, 0.03801269456744194, 0.04218749701976776, 0.03933105245232582, 0.04328612983226776, 0.0450439453125, 0.0472412109375, 0.03757324069738388, 0.04328612983226776, 0.04086913913488388, 0.037353515625, 0.02834472618997097, 0.02900390513241291, 0.01735839806497097, 0.02065429650247097, 0.015380859375, 0.01164550706744194, 0.0004394531133584678, -0.004833984188735485, -0.0054931640625, -0.011425781063735485, -0.01845703087747097, -0.0208740234375, -0.03076171875, -0.03427734225988388, -0.03889160230755806, -0.0439453125, -0.03581542894244194, -0.0384521484375, -0.0439453125, -0.04240722581744194, -0.03933105245232582, -0.0384521484375, -0.03889160230755806, -0.03823241963982582, -0.03142089769244194, -0.03032226487994194, -0.01933593675494194, -0.01911620981991291, -0.01406249962747097, -0.007250976283103228, 0.001977538922801614, 0.0098876953125, 0.00966796837747097, 0.02263183519244194, 0.02373046800494194, 0.03493652120232582, 0.03757324069738388, 0.03757324069738388, 0.04636230319738388, 0.04702148213982582, 0.05141601338982582, 0.05471191182732582, 0.04987792670726776, 0.0560302734375, 0.04812011495232582, 0.05471191182732582, 0.04812011495232582, 0.04812011495232582, 0.0340576171875, 0.03273925557732582, 0.02592773362994194, 0.02373046800494194, 0.01779785193502903, 0.009448242373764515, 0.003735351376235485, -0.0035156249068677425, -0.0098876953125, -0.02021484263241291, -0.02131347544491291, -0.0318603515625, -0.03647460788488388, -0.03515625, -0.03801269456744194, -0.050537109375, -0.04570312425494194, -0.04636230319738388, -0.05207519233226776, -0.04746093600988388, -0.05295410007238388, -0.04987792670726776, -0.04570312425494194, -0.04152831807732582, -0.03054199181497097, -0.02790527231991291, -0.02438964694738388, -0.01582031138241291, -0.009228515438735485, -0.008349609561264515, -0.0028564452659338713, 0.010986328125, 0.014721679501235485, 0.02438964694738388, 0.02285156212747097, 0.03208007663488388, 0.03581542894244194, 0.03757324069738388, 0.04658202826976776, 0.05229492112994194, 0.05471191182732582, 0.054931640625, 0.06086425483226776, 0.05800781026482582, 0.05009765550494194, 0.05515136569738388, 0.04658202826976776, 0.04108886793255806, 0.04350585862994194, 0.03471679612994194, 0.02570800669491291, 0.02592773362994194, 0.01823730394244194, 0.006152343470603228, -0.001538085867650807, -0.004833984188735485, -0.012524413876235485, -0.02241210825741291, -0.02263183519244194, -0.03229980543255806, -0.03911132737994194, -0.04108886793255806, -0.04548339545726776, -0.05097655951976776, -0.0472412109375, -0.05009765550494194, -0.052734375, -0.04921874776482582, -0.04921874776482582, -0.0516357421875, -0.04526367038488388, -0.041748046875, -0.03515625, -0.03317870944738388, -0.02922363206744194, -0.01999511756002903, -0.01516113243997097, -0.003076171735301614, -0.0010986328125, 0.009448242373764515, 0.010327148251235485, 0.01999511756002903, 0.03164062276482582, 0.03208007663488388, 0.03713378682732582, 0.04196777194738388, 0.04702148213982582, 0.05229492112994194, 0.04921874776482582, 0.05229492112994194, 0.05295410007238388, 0.05185546725988388, 0.05844726413488388, 0.052734375, 0.04526367038488388, 0.04240722581744194, 0.03933105245232582, 0.03251953050494194, 0.02900390513241291, 0.02241210825741291, 0.012304686941206455, 0.008129882626235485, 0.0032958984375, -0.0017578124534338713, -0.00637206993997097, -0.01801757700741291, -0.0208740234375, -0.02878417819738388, -0.02768554538488388, -0.04240722581744194, -0.03691406175494194, -0.04328612983226776, -0.04152831807732582, -0.05295410007238388, -0.04460449144244194, -0.05009765550494194, -0.04306640475988388, -0.03999023512005806, -0.03647460788488388, -0.03977050632238388, -0.03164062276482582, -0.02724609337747097, -0.02043456956744194, -0.015600585378706455, -0.006152343470603228, -0.005053710658103228, 0.0, 0.012304686941206455, 0.01494140550494194, 0.0142822265625, 0.02878417819738388, 0.0252685546875, 0.0384521484375, 0.04460449144244194, 0.04658202826976776, 0.04108886793255806, 0.04855956882238388, 0.04768066108226776, 0.04306640475988388, 0.04526367038488388, 0.050537109375, 0.04196777194738388, 0.04086913913488388, 0.04020996019244194, 0.03032226487994194, 0.02878417819738388, 0.02241210825741291, 0.01955566368997097, 0.01889648474752903, 0.01186523400247097, 0.00856933556497097, 0.0002197265566792339, -0.007031249813735485, -0.0087890625, -0.014721679501235485, -0.02373046800494194, -0.02373046800494194, -0.028564453125, -0.03471679612994194, -0.03823241963982582, -0.03713378682732582, -0.04086913913488388, -0.03823241963982582, -0.03801269456744194, -0.03801269456744194, -0.04020996019244194, -0.03361816331744194, -0.02900390513241291, -0.03010253794491291, -0.0186767578125, -0.019775390625, -0.01625976525247097, -0.009228515438735485, -0.008129882626235485, -0.001977538922801614, 0.010986328125, 0.0076904296875, 0.01889648474752903, 0.01933593675494194, 0.0274658203125, 0.0340576171875, 0.02614746056497097, 0.0362548828125, 0.0362548828125, 0.037353515625, 0.03251953050494194, 0.03603515401482582, 0.0340576171875, 0.03933105245232582, 0.03273925557732582, 0.03427734225988388, 0.02900390513241291, 0.02438964694738388, 0.02570800669491291, 0.014501952566206455, 0.011425781063735485, 0.01186523400247097, 0.0041748047806322575, 0.0068115233443677425, -0.00527343712747097, -0.00527343712747097, -0.01384277269244194, -0.01625976525247097, -0.01735839806497097, -0.02219238132238388, -0.02241210825741291, -0.02614746056497097, -0.02395019493997097, -0.02878417819738388, -0.02482910081744194, -0.02570800669491291, -0.02988281100988388, -0.02944335900247097, -0.02109374850988388, -0.02153320237994194, -0.024169921875, -0.015600585378706455, -0.019775390625, -0.01406249962747097, -0.004833984188735485, -0.0008789062267169356, -0.001538085867650807, 0.0004394531133584678, 0.0076904296875, 0.01318359375, 0.009448242373764515, 0.01296386681497097, 0.013403319753706455, 0.02131347544491291, 0.0263671875, 0.02373046800494194, 0.02570800669491291, 0.02592773362994194, 0.02460937388241291, 0.0274658203125, 0.01933593675494194, 0.02329101413488388, 0.02219238132238388, 0.02153320237994194, 0.019775390625, 0.012304686941206455, 0.015380859375, 0.010327148251235485, 0.013403319753706455, 0.009008788503706455, -0.0006591796409338713, 0.002197265625, -0.0008789062267169356, -0.0054931640625, -0.003955077845603228, -0.01076660118997097, -0.01164550706744194, -0.009228515438735485, -0.007250976283103228, -0.0098876953125, -0.01691894419491291, -0.0098876953125, -0.01691894419491291, -0.005932617001235485, -0.014721679501235485, -0.01318359375, -0.010107421316206455, -0.004833984188735485, -0.006152343470603228, -0.001538085867650807, -0.0046142577193677425, -0.0004394531133584678, -0.0068115233443677425, -0.002636718563735485, -0.001538085867650807, 0.0046142577193677425, 0.001538085867650807, 0.005932617001235485, 0.00747070275247097, 0.009008788503706455, 0.00747070275247097, 0.00966796837747097, 0.007910155691206455, 0.01186523400247097, 0.012304686941206455, 0.01054687425494194, 0.008349609561264515, 0.0098876953125, 0.010327148251235485, 0.005932617001235485, 0.006591796875, 0.008349609561264515, 0.0054931640625, 0.0032958984375, 0.006152343470603228, 0.0010986328125, 0.0032958984375, -0.0008789062267169356, 0.00439453125, 0.00439453125, 0.0057128905318677425, 0.0008789062267169356, 0.0032958984375, 0.0028564452659338713, -0.001977538922801614, 0.006152343470603228, 0.00527343712747097, 0.005932617001235485, 0.0017578124534338713, 0.00637206993997097, -0.003076171735301614, 0.005932617001235485, -0.0002197265566792339, 0.0032958984375, 0.0010986328125, 0.0017578124534338713, 0.002636718563735485, 0.00527343712747097, -0.002636718563735485, 0.0, 0.00527343712747097, -0.0004394531133584678, 0.0017578124534338713, 0.005053710658103228, -0.003076171735301614, 0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, 0.0046142577193677425, 0.0008789062267169356, 0.0004394531133584678, -0.0002197265566792339, 0.006152343470603228, 0.0017578124534338713, 0.0006591796409338713, 0.0028564452659338713, -0.0010986328125, -0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00439453125, 0.00439453125, 0.002197265625, -0.0013183592818677425, 0.0028564452659338713, 0.0013183592818677425, 0.001977538922801614, 0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.003076171735301614, 0.004833984188735485, 0.0035156249068677425, 0.0024169920943677425, -0.001977538922801614, 0.0035156249068677425, 0.0028564452659338713, 0.001538085867650807, 0.00527343712747097, 0.0008789062267169356, -0.0008789062267169356, 0.0028564452659338713, 0.003076171735301614, 0.00637206993997097, 0.00637206993997097, 0.001538085867650807, -0.0024169920943677425, 0.0032958984375, 0.003735351376235485, 0.001977538922801614, 0.00439453125, 0.001538085867650807, 0.0032958984375, 0.001538085867650807, 0.003955077845603228, -0.0041748047806322575, -0.0013183592818677425, 0.00439453125, 0.003076171735301614, 0.0, 0.0004394531133584678, 0.00439453125, -0.0024169920943677425, -0.0002197265566792339, 0.0017578124534338713, 0.0010986328125, 0.0024169920943677425, 0.001977538922801614, 0.0013183592818677425, 0.0032958984375, -0.0008789062267169356, 0.0004394531133584678, -0.007250976283103228, -0.0024169920943677425, -0.003735351376235485, -0.0024169920943677425, -0.00747070275247097, -0.007031249813735485, -0.0068115233443677425, -0.0046142577193677425, -0.005932617001235485, 0.0, 0.0004394531133584678, 0.003076171735301614, -0.002636718563735485, 0.005932617001235485, -0.0006591796409338713, 0.009008788503706455, 0.00527343712747097, 0.011425781063735485, 0.013403319753706455, 0.012524413876235485, 0.02043456956744194, 0.01933593675494194, 0.01735839806497097, 0.0208740234375, 0.02241210825741291, 0.0208740234375, 0.019775390625, 0.02175292931497097, 0.01889648474752903, 0.02373046800494194, 0.01999511756002903, 0.02197265625, 0.02065429650247097, 0.01164550706744194, 0.015600585378706455, 0.010327148251235485, 0.007910155691206455, 0.0002197265566792339, -0.0008789062267169356, -0.010986328125, -0.012524413876235485, -0.012304686941206455, -0.0164794921875, -0.01516113243997097, -0.03010253794491291, -0.0208740234375, -0.03208007663488388, -0.02878417819738388, -0.03515625, -0.03427734225988388, -0.03955078125, -0.03647460788488388, -0.03493652120232582, -0.0318603515625, -0.02922363206744194, -0.03120117075741291, -0.02724609337747097, -0.0230712890625, -0.02021484263241291, -0.01582031138241291, -0.009228515438735485, -0.0013183592818677425, 0.011206054128706455, 0.01186523400247097, 0.01845703087747097, 0.02768554538488388, 0.03383788838982582, 0.03713378682732582, 0.03537597507238388, 0.04482421651482582, 0.0494384765625, 0.04877929389476776, 0.05207519233226776, 0.05559081956744194, 0.04965820163488388, 0.05317382514476776, 0.05581054463982582, 0.05515136569738388, 0.04768066108226776, 0.0450439453125, 0.03911132737994194, 0.0340576171875, 0.02702636644244194, 0.013623046688735485, 0.01054687425494194, 0.0068115233443677425, -0.009008788503706455, -0.014721679501235485, -0.02043456956744194, -0.02988281100988388, -0.03449707105755806, -0.0406494140625, -0.05009765550494194, -0.052734375, -0.0604248046875, -0.0648193359375, -0.0604248046875, -0.06591796875, -0.0648193359375, -0.06416015326976776, -0.0648193359375, -0.06064452975988388, -0.05646972358226776, -0.0494384765625, -0.04218749701976776, -0.03229980543255806, -0.02373046800494194, -0.01604003831744194, -0.00527343712747097, -0.003076171735301614, 0.013623046688735485, 0.01625976525247097, 0.02570800669491291, 0.03801269456744194, 0.0494384765625, 0.05185546725988388, 0.06503906100988388, 0.06987304240465164, 0.07602538913488388, 0.07536620646715164, 0.08217773586511612, 0.08767089247703552, 0.0802001953125, 0.07866210490465164, 0.07426757365465164, 0.068115234375, 0.07185058295726776, 0.05668945237994194, 0.05251464620232582, 0.04130859300494194, 0.0340576171875, 0.0296630859375, 0.013403319753706455, 0.005932617001235485, -0.0057128905318677425, -0.015380859375, -0.0318603515625, -0.03999023512005806, -0.05515136569738388, -0.0615234375, -0.07185058295726776, -0.07119140774011612, -0.07624511420726776, -0.07976073771715164, -0.08525390177965164, -0.09316405653953552, -0.08503417670726776, -0.08767089247703552, -0.08635253459215164, -0.07338867336511612, -0.072509765625, -0.06416015326976776, -0.05800781026482582, -0.04350585862994194, -0.03581542894244194, -0.02395019493997097, -0.01494140550494194, 0.00637206993997097, 0.013403319753706455, 0.02285156212747097, 0.03120117075741291, 0.05339355394244194, 0.0604248046875, 0.07053222507238388, 0.081298828125, 0.08085937052965164, 0.0889892578125, 0.094482421875, 0.10195311903953552, 0.10305175185203552, 0.10107421875, 0.0966796875, 0.09206542372703552, 0.08811035007238388, 0.07668457180261612, 0.072509765625, 0.06064452975988388, 0.05185546725988388, 0.04592284932732582, 0.03010253794491291, 0.019775390625, -0.0004394531133584678, -0.013403319753706455, -0.01779785193502903, -0.03757324069738388, -0.04658202826976776, -0.05712890625, -0.06877440959215164, -0.08107910305261612, -0.08701171725988388, -0.08854980021715164, -0.09580077975988388, -0.09711913764476776, -0.094482421875, -0.1021728515625, -0.10151366889476776, -0.09865722060203552, -0.09426268935203552, -0.08151855319738388, -0.076904296875, -0.05976562201976776, -0.04438476264476776, -0.03757324069738388, -0.02504882775247097, -0.012524413876235485, 0.0041748047806322575, 0.012524413876235485, 0.02944335900247097, 0.03515625, 0.04921874776482582, 0.06635741889476776, 0.07844237983226776, 0.08635253459215164, 0.09492187201976776, 0.10063476115465164, 0.10612792521715164, 0.107666015625, 0.11337890475988388, 0.10393065959215164, 0.10283202677965164, 0.09865722060203552, 0.09843749552965164, 0.08283691108226776, 0.07866210490465164, 0.06459961086511612, 0.05998535081744194, 0.041748046875, 0.03032226487994194, 0.02043456956744194, -0.0004394531133584678, -0.0076904296875, -0.02197265625, -0.03933105245232582, -0.0516357421875, -0.06064452975988388, -0.07536620646715164, -0.08283691108226776, -0.0845947265625, -0.098876953125, -0.098876953125, -0.10700683295726776, -0.10458984225988388, -0.10415038466453552, -0.10261230170726776, -0.098876953125, -0.0933837890625, -0.08063964545726776, -0.07624511420726776, -0.05954589694738388, -0.05229492112994194, -0.03867187350988388, -0.02702636644244194, -0.00966796837747097, 0.004833984188735485, 0.01296386681497097, 0.03054199181497097, 0.03933105245232582, 0.05668945237994194, 0.06547851115465164, 0.07470703125, 0.081298828125, 0.08920898288488388, 0.09689941257238388, 0.10502929240465164, 0.11074218153953552, 0.10920409858226776, 0.10568847507238388, 0.10634765028953552, 0.0966796875, 0.09250488132238388, 0.0791015625, 0.0791015625, 0.06218261644244194, 0.05427245795726776, 0.04350585862994194, 0.02658691257238388, 0.0164794921875, 0.003955077845603228, -0.01076660118997097, -0.02482910081744194, -0.03010253794491291, -0.0494384765625, -0.05954589694738388, -0.06525878608226776, -0.07382812350988388, -0.08173827826976776, -0.09140624850988388, -0.09294433146715164, -0.0977783203125, -0.09689941257238388, -0.10129394382238388, -0.08964843302965164, -0.09030761569738388, -0.08085937052965164, -0.07954101264476776, -0.06767577677965164, -0.05646972358226776, -0.04702148213982582, -0.04086913913488388, -0.02482910081744194, -0.00966796837747097, 0.0006591796409338713, 0.01801757700741291, 0.02043456956744194, 0.03515625, 0.05207519233226776, 0.05471191182732582, 0.06547851115465164, 0.07822265475988388, 0.08525390177965164, 0.09030761569738388, 0.08833007514476776, 0.09711913764476776, 0.0933837890625, 0.09360351413488388, 0.09645995497703552, 0.08613280951976776, 0.08349609375, 0.07163085788488388, 0.06789550930261612, 0.05405273288488388, 0.04350585862994194, 0.04108886793255806, 0.02548827975988388, 0.01604003831744194, 0.0041748047806322575, -0.014721679501235485, -0.02131347544491291, -0.032958984375, -0.03757324069738388, -0.04812011495232582, -0.05910644307732582, -0.06899414211511612, -0.07602538913488388, -0.07558593899011612, -0.08107910305261612, -0.07756347209215164, -0.07778320461511612, -0.08085937052965164, -0.07514648139476776, -0.07316894084215164, -0.07426757365465164, -0.068115234375, -0.05844726413488388, -0.04350585862994194, -0.03537597507238388, -0.02878417819738388, -0.02131347544491291, -0.01054687425494194, 0.002636718563735485, 0.00527343712747097, 0.01801757700741291, 0.03032226487994194, 0.0362548828125, 0.04855956882238388, 0.0560302734375, 0.06284179538488388, 0.06218261644244194, 0.06745605170726776, 0.07624511420726776, 0.07932128757238388, 0.07712402194738388, 0.07536620646715164, 0.07009277492761612, 0.06723632663488388, 0.06064452975988388, 0.05339355394244194, 0.05317382514476776, 0.04460449144244194, 0.03757324069738388, 0.02241210825741291, 0.01494140550494194, 0.010986328125, 0.0024169920943677425, -0.00439453125, -0.007031249813735485, -0.0230712890625, -0.03339843824505806, -0.04108886793255806, -0.0439453125, -0.04526367038488388, -0.0538330078125, -0.0494384765625, -0.0582275390625, -0.05361327901482582, -0.05537109076976776, -0.05317382514476776, -0.054931640625, -0.05141601338982582, -0.0450439453125, -0.03977050632238388, -0.03647460788488388, -0.03559570387005806, -0.02373046800494194, -0.0164794921875, -0.01406249962747097, -0.0004394531133584678, 0.0, 0.010107421316206455, 0.0164794921875, 0.02153320237994194, 0.02548827975988388, 0.032958984375, 0.03559570387005806, 0.03801269456744194, 0.03867187350988388, 0.041748046875, 0.04108886793255806, 0.04350585862994194, 0.04262695088982582, 0.04636230319738388, 0.046142578125, 0.03669433668255806, 0.03867187350988388, 0.0340576171875, 0.03273925557732582, 0.028564453125, 0.02197265625, 0.01274413987994194, 0.010986328125, 0.004833984188735485, 0.0057128905318677425, -0.0041748047806322575, -0.0054931640625, -0.01186523400247097, -0.01384277269244194, -0.02021484263241291, -0.02395019493997097, -0.02504882775247097, -0.02329101413488388, -0.02570800669491291, -0.02395019493997097, -0.03164062276482582, -0.02768554538488388, -0.02768554538488388, -0.02658691257238388, -0.0186767578125, -0.02329101413488388, -0.0186767578125, -0.011206054128706455, -0.01713867112994194, -0.01054687425494194, -0.00856933556497097, -0.0013183592818677425, -0.0006591796409338713, 0.0, 0.00439453125, 0.012304686941206455, 0.0087890625, 0.01318359375, 0.015600585378706455, 0.01274413987994194, 0.01164550706744194, 0.01186523400247097, 0.01735839806497097, 0.01911620981991291, 0.0098876953125, 0.014501952566206455, 0.010327148251235485, 0.0068115233443677425, 0.00856933556497097, 0.0087890625, 0.0057128905318677425, 0.007031249813735485, 0.010327148251235485, 0.002197265625, 0.0057128905318677425, -0.0017578124534338713, 0.0046142577193677425, 0.0006591796409338713, -0.0006591796409338713, 0.0024169920943677425, 0.0028564452659338713, 0.003735351376235485, -0.0004394531133584678, 0.0013183592818677425, 0.006591796875, 0.0032958984375, 0.0046142577193677425, 0.00637206993997097, 0.005053710658103228, 0.0035156249068677425, 0.0, 0.00439453125, 0.0054931640625, -0.0006591796409338713, 0.0010986328125, 0.0008789062267169356, 0.005932617001235485, -0.003955077845603228, -0.0013183592818677425, 0.003955077845603228, 0.001977538922801614, 0.001538085867650807, -0.002197265625, 0.001977538922801614, -0.0004394531133584678, 0.0004394531133584678, 0.007031249813735485, 0.001538085867650807, 0.0004394531133584678, 0.00439453125, 0.00637206993997097, 0.00439453125, 0.0024169920943677425, 0.0004394531133584678, 0.0032958984375, 0.0057128905318677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00527343712747097, 0.001977538922801614, -0.002197265625, 0.0004394531133584678, 0.0, -0.0032958984375, -0.0002197265566792339, -0.0006591796409338713, -0.0024169920943677425, 0.0046142577193677425, 0.004833984188735485, 0.002197265625, 0.0041748047806322575, 0.0008789062267169356, 0.003076171735301614, 0.007031249813735485, 0.0017578124534338713, 0.0010986328125, 0.0004394531133584678, 0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, 0.004833984188735485, 0.0017578124534338713, 0.0, 0.004833984188735485, 0.00439453125, 0.002197265625, -0.0035156249068677425, -0.0008789062267169356, 0.002197265625, 0.0024169920943677425, -0.0013183592818677425, 0.00527343712747097, -0.001538085867650807, -0.001538085867650807, 0.0035156249068677425, 0.0, 0.0054931640625, -0.0002197265566792339, 0.001538085867650807, 0.0004394531133584678, 0.002197265625, 0.0006591796409338713, 0.007910155691206455, 0.0028564452659338713, 0.0032958984375, 0.003076171735301614, 0.0041748047806322575, -0.0046142577193677425, -0.0008789062267169356, 0.0006591796409338713, -0.009008788503706455, -0.0002197265566792339, -0.00527343712747097, -0.00856933556497097, -0.009008788503706455, -0.01186523400247097, -0.010986328125, -0.0057128905318677425, -0.00856933556497097, -0.0054931640625, -0.0024169920943677425, -0.0028564452659338713, -0.00439453125, 0.001977538922801614, 0.004833984188735485, 0.004833984188735485, 0.0035156249068677425, 0.012304686941206455, 0.01713867112994194, 0.02131347544491291, 0.02285156212747097, 0.02834472618997097, 0.0252685546875, 0.02658691257238388, 0.02944335900247097, 0.03317870944738388, 0.03559570387005806, 0.03779296949505806, 0.03164062276482582, 0.03383788838982582, 0.0384521484375, 0.03164062276482582, 0.02768554538488388, 0.0274658203125, 0.01845703087747097, 0.0142822265625, 0.008349609561264515, 0.002197265625, -0.0017578124534338713, -0.011206054128706455, -0.010986328125, -0.02109374850988388, -0.03032226487994194, -0.02878417819738388, -0.04262695088982582, -0.04658202826976776, -0.04680175706744194, -0.052734375, -0.05009765550494194, -0.05756835639476776, -0.05756835639476776, -0.05624999850988388, -0.05339355394244194, -0.05339355394244194, -0.04482421651482582, -0.03999023512005806, -0.04152831807732582, -0.03229980543255806, -0.02219238132238388, -0.009448242373764515, -0.0076904296875, -0.0002197265566792339, 0.0068115233443677425, 0.01999511756002903, 0.02263183519244194, 0.03779296949505806, 0.04438476264476776, 0.05559081956744194, 0.06240234151482582, 0.07207030802965164, 0.07602538913488388, 0.08151855319738388, 0.07712402194738388, 0.08767089247703552, 0.0867919921875, 0.08833007514476776, 0.081298828125, 0.076904296875, 0.06723632663488388, 0.063720703125, 0.05427245795726776, 0.04812011495232582, 0.03955078125, 0.02592773362994194, 0.01669921912252903, -0.0010986328125, -0.012304686941206455, -0.02329101413488388, -0.03647460788488388, -0.04482421651482582, -0.05668945237994194, -0.06108398362994194, -0.07272949069738388, -0.08371581882238388, -0.08635253459215164, -0.09250488132238388, -0.09492187201976776, -0.0977783203125, -0.10019531100988388, -0.10041503608226776, -0.0911865234375, -0.08833007514476776, -0.081298828125, -0.07426757365465164, -0.06130370870232582, -0.0538330078125, -0.04108886793255806, -0.0230712890625, -0.011425781063735485, 0.0032958984375, 0.01186523400247097, 0.02768554538488388, 0.03933105245232582, 0.05471191182732582, 0.07075195014476776, 0.085693359375, 0.08876952528953552, 0.09953612834215164, 0.11228027194738388, 0.11381835490465164, 0.11381835490465164, 0.11909179389476776, 0.11623534560203552, 0.11821288615465164, 0.11403807997703552, 0.10480956733226776, 0.09382323920726776, 0.0911865234375, 0.08195800334215164, 0.06789550930261612, 0.0538330078125, 0.03383788838982582, 0.01999511756002903, 0.0004394531133584678, -0.01384277269244194, -0.0296630859375, -0.03977050632238388, -0.05888671800494194, -0.07514648139476776, -0.0845947265625, -0.10041503608226776, -0.11249999701976776, -0.1197509765625, -0.12744140625, -0.12546385824680328, -0.12612304091453552, -0.13359375298023224, -0.12546385824680328, -0.12436523288488388, -0.1142578125, -0.10568847507238388, -0.09733886271715164, -0.08173827826976776, -0.06657714396715164, -0.05317382514476776, -0.03383788838982582, -0.017578125, 0.002197265625, 0.011206054128706455, 0.03383788838982582, 0.05559081956744194, 0.07207030802965164, 0.08283691108226776, 0.09865722060203552, 0.11843261122703552, 0.1219482421875, 0.13095702230930328, 0.14238281548023224, 0.14501953125, 0.1483154296875, 0.1483154296875, 0.14501953125, 0.134033203125, 0.1329345703125, 0.11777343600988388, 0.11030273139476776, 0.09096679091453552, 0.07954101264476776, 0.06525878608226776, 0.04460449144244194, 0.0186767578125, 0.007250976283103228, -0.01516113243997097, -0.03076171875, -0.05119628831744194, -0.07294921576976776, -0.0889892578125, -0.0999755859375, -0.11733397841453552, -0.12260741740465164, -0.1395263671875, -0.14414061605930328, -0.14897461235523224, -0.14809569716453552, -0.15292967855930328, -0.14238281548023224, -0.14479979872703552, -0.13051757216453552, -0.11865234375, -0.10480956733226776, -0.09514159709215164, -0.07294921576976776, -0.06394042819738388, -0.04372558370232582, -0.02570800669491291, -0.0010986328125, 0.02153320237994194, 0.04130859300494194, 0.06328124552965164, 0.07294921576976776, 0.09953612834215164, 0.112060546875, 0.12590332329273224, 0.13535155355930328, 0.14589843153953552, 0.15227051079273224, 0.15886230766773224, 0.1614990234375, 0.15864257514476776, 0.16083984076976776, 0.15336914360523224, 0.13557128608226776, 0.134033203125, 0.11711425334215164, 0.10041503608226776, 0.08635253459215164, 0.06591796875, 0.041748046875, 0.02658691257238388, 0.006152343470603228, -0.01735839806497097, -0.03515625, -0.05581054463982582, -0.07624511420726776, -0.09426268935203552, -0.10546875, -0.12546385824680328, -0.13645018637180328, -0.14436034858226776, -0.15227051079273224, -0.15183104574680328, -0.16391600668430328, -0.15227051079273224, -0.14985351264476776, -0.151611328125, -0.13864745199680328, -0.1263427734375, -0.1109619140625, -0.09382323920726776, -0.07426757365465164, -0.06174316257238388, -0.04306640475988388, -0.02263183519244194, 0.002636718563735485, 0.02263183519244194, 0.04328612983226776, 0.05954589694738388, 0.07646483927965164, 0.09382323920726776, 0.11008300632238388, 0.12260741740465164, 0.13820800185203552, 0.14304198324680328, 0.151611328125, 0.15996094048023224, 0.15380859375, 0.1593017578125, 0.14963378012180328, 0.1417236328125, 0.14194335043430328, 0.12458495795726776, 0.11249999701976776, 0.09953612834215164, 0.07778320461511612, 0.06459961086511612, 0.04108886793255806, 0.0208740234375, 0.002636718563735485, -0.013623046688735485, -0.0362548828125, -0.05537109076976776, -0.07097167521715164, -0.08547362685203552, -0.09865722060203552, -0.1197509765625, -0.12832030653953552, -0.13974608480930328, -0.1351318359375, -0.14809569716453552, -0.14919432997703552, -0.14326171576976776, -0.147216796875, -0.129638671875, -0.12656249105930328, -0.112060546875, -0.09711913764476776, -0.08547362685203552, -0.06877440959215164, -0.05361327901482582, -0.03977050632238388, -0.01713867112994194, -0.002636718563735485, 0.015380859375, 0.03889160230755806, 0.05361327901482582, 0.06635741889476776, 0.08811035007238388, 0.10173339396715164, 0.11074218153953552, 0.12722167372703552, 0.134033203125, 0.13095702230930328, 0.1417236328125, 0.142822265625, 0.14458008110523224, 0.13908691704273224, 0.12458495795726776, 0.11843261122703552, 0.10502929240465164, 0.09470214694738388, 0.09096679091453552, 0.07229004055261612, 0.05229492112994194, 0.03669433668255806, 0.02460937388241291, 0.0068115233443677425, -0.01494140550494194, -0.024169921875, -0.0406494140625, -0.06284179538488388, -0.07316894084215164, -0.08349609375, -0.10107421875, -0.10173339396715164, -0.11733397841453552, -0.12150878459215164, -0.12106933444738388, -0.12128905951976776, -0.11777343600988388, -0.11799316108226776, -0.10986328125, -0.10502929240465164, -0.09052734076976776, -0.08591308444738388, -0.07272949069738388, -0.05646972358226776, -0.041748046875, -0.02658691257238388, -0.014501952566206455, -0.0017578124534338713, 0.01625976525247097, 0.03142089769244194, 0.04548339545726776, 0.05668945237994194, 0.06723632663488388, 0.08107910305261612, 0.08349609375, 0.09931640326976776, 0.10239257663488388, 0.10942382365465164, 0.10700683295726776, 0.1087646484375, 0.1131591796875, 0.10920409858226776, 0.10261230170726776, 0.09360351413488388, 0.08986815810203552, 0.07646483927965164, 0.0604248046875, 0.05229492112994194, 0.0428466796875, 0.02680663950741291, 0.01494140550494194, 0.0008789062267169356, -0.012524413876235485, -0.01735839806497097, -0.02900390513241291, -0.04262695088982582, -0.05559081956744194, -0.05998535081744194, -0.07492675632238388, -0.07712402194738388, -0.08173827826976776, -0.08217773586511612, -0.0845947265625, -0.08393554389476776, -0.08349609375, -0.08217773586511612, -0.081298828125, -0.07492675632238388, -0.06459961086511612, -0.05910644307732582, -0.04965820163488388, -0.04196777194738388, -0.03273925557732582, -0.02197265625, -0.01274413987994194, 0.003076171735301614, 0.01691894419491291, 0.02153320237994194, 0.03208007663488388, 0.0384521484375, 0.04570312425494194, 0.05624999850988388, 0.054931640625, 0.06350097805261612, 0.06525878608226776, 0.06789550930261612, 0.06855468451976776, 0.07229004055261612, 0.06196288764476776, 0.06723632663488388, 0.06064452975988388, 0.05910644307732582, 0.05295410007238388, 0.04108886793255806, 0.04152831807732582, 0.02988281100988388, 0.02702636644244194, 0.012524413876235485, 0.01164550706744194, 0.001977538922801614, -0.0006591796409338713, -0.007250976283103228, -0.01384277269244194, -0.02570800669491291, -0.02790527231991291, -0.03361816331744194, -0.03537597507238388, -0.04130859300494194, -0.04306640475988388, -0.04460449144244194, -0.0428466796875, -0.04152831807732582, -0.0406494140625, -0.0384521484375, -0.03757324069738388, -0.02812499925494194, -0.03098144382238388, -0.02570800669491291, -0.0208740234375, -0.01186523400247097, -0.01054687425494194, -0.00966796837747097, -0.0024169920943677425, 0.0057128905318677425, 0.0054931640625, 0.00439453125, 0.01625976525247097, 0.013623046688735485, 0.01384277269244194, 0.01582031138241291, 0.02109374850988388, 0.01955566368997097, 0.02021484263241291, 0.01691894419491291, 0.0164794921875, 0.02043456956744194, 0.01318359375, 0.014721679501235485, 0.015600585378706455, 0.017578125, 0.010327148251235485, 0.011425781063735485, 0.010327148251235485, 0.008129882626235485, 0.005053710658103228, 0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, 0.00439453125, 0.0002197265566792339, -0.0032958984375, 0.0002197265566792339, -0.0024169920943677425, 0.0008789062267169356, -0.0008789062267169356, 0.0002197265566792339, 0.0010986328125, 0.0017578124534338713, 0.0028564452659338713, 0.008349609561264515, 0.0054931640625, 0.004833984188735485, 0.0010986328125, 0.0008789062267169356, 0.007031249813735485, -0.0017578124534338713, 0.002636718563735485, -0.0035156249068677425, 0.0041748047806322575, 0.0046142577193677425, -0.0013183592818677425, 0.006152343470603228, -0.0002197265566792339, 0.007031249813735485, 0.004833984188735485, 0.0028564452659338713, 0.003076171735301614, 0.003076171735301614, 0.002197265625, 0.0008789062267169356, 0.0013183592818677425, 0.0024169920943677425, -0.0004394531133584678, -0.001977538922801614, 0.002197265625, -0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, 0.0028564452659338713, 0.0028564452659338713, 0.0041748047806322575, -0.0024169920943677425, -0.0017578124534338713, 0.0, -0.0032958984375, 0.003735351376235485, 0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.004833984188735485, 0.0032958984375, 0.0041748047806322575, 0.0035156249068677425, -0.0035156249068677425, 0.001977538922801614, 0.003955077845603228, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0035156249068677425, -0.0006591796409338713, 0.004833984188735485, -0.0006591796409338713, 0.0004394531133584678, 0.0028564452659338713, 0.00527343712747097, 0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, 0.0, 0.0054931640625, 0.00439453125, 0.001538085867650807, -0.0006591796409338713, 0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, 0.003955077845603228, 0.0054931640625, 0.003076171735301614, 0.00439453125, 0.005053710658103228, 0.0013183592818677425, -0.003076171735301614, -0.0006591796409338713, -0.0046142577193677425, 0.0010986328125, -0.001977538922801614, -0.008129882626235485, -0.008349609561264515, -0.004833984188735485, -0.0054931640625, -0.008129882626235485, -0.01076660118997097, -0.00747070275247097, -0.01274413987994194, -0.009228515438735485, -0.01164550706744194, -0.0068115233443677425, -0.010986328125, -0.0024169920943677425, -0.0046142577193677425, 0.003735351376235485, 0.00637206993997097, 0.00527343712747097, 0.01494140550494194, 0.0186767578125, 0.01955566368997097, 0.02043456956744194, 0.03076171875, 0.03317870944738388, 0.03120117075741291, 0.04438476264476776, 0.04416503757238388, 0.04152831807732582, 0.04592284932732582, 0.05009765550494194, 0.04460449144244194, 0.04877929389476776, 0.04350585862994194, 0.03889160230755806, 0.03273925557732582, 0.028564453125, 0.0230712890625, 0.01823730394244194, 0.01625976525247097, 0.0068115233443677425, -0.0098876953125, -0.015600585378706455, -0.01999511756002903, -0.02724609337747097, -0.03955078125, -0.0439453125, -0.05515136569738388, -0.05405273288488388, -0.06635741889476776, -0.07097167521715164, -0.07668457180261612, -0.07185058295726776, -0.07866210490465164, -0.07163085788488388, -0.07602538913488388, -0.0648193359375, -0.06240234151482582, -0.06108398362994194, -0.05251464620232582, -0.0406494140625, -0.03098144382238388, -0.02065429650247097, -0.00856933556497097, 0.0, 0.009008788503706455, 0.0252685546875, 0.03999023512005806, 0.04636230319738388, 0.0648193359375, 0.06745605170726776, 0.07822265475988388, 0.087890625, 0.10019531100988388, 0.10063476115465164, 0.10986328125, 0.10898437350988388, 0.10810546576976776, 0.10590820014476776, 0.10480956733226776, 0.09536132216453552, 0.09404296427965164, 0.08393554389476776, 0.06987304240465164, 0.06437987834215164, 0.04855956882238388, 0.03603515401482582, 0.02219238132238388, 0.005932617001235485, -0.01494140550494194, -0.02790527231991291, -0.04152831807732582, -0.05910644307732582, -0.07646483927965164, -0.08525390177965164, -0.09843749552965164, -0.10305175185203552, -0.11887206882238388, -0.1285400390625, -0.13117675483226776, -0.12897948920726776, -0.13161620497703552, -0.12656249105930328, -0.13117675483226776, -0.11931151896715164, -0.11118163913488388, -0.09843749552965164, -0.07976073771715164, -0.06833495944738388, -0.05668945237994194, -0.03361816331744194, -0.01823730394244194, -0.0068115233443677425, 0.01669921912252903, 0.03317870944738388, 0.05998535081744194, 0.07712402194738388, 0.09360351413488388, 0.1021728515625, 0.12216796725988388, 0.13381347060203552, 0.14501953125, 0.14765624701976776, 0.1571044921875, 0.15556640923023224, 0.15776367485523224, 0.15952147543430328, 0.14545898139476776, 0.14787597954273224, 0.13623046875, 0.11953124403953552, 0.10085448622703552, 0.08525390177965164, 0.06833495944738388, 0.05185546725988388, 0.024169921875, 0.00439453125, -0.01164550706744194, -0.04020996019244194, -0.05537109076976776, -0.07492675632238388, -0.09843749552965164, -0.1175537109375, -0.13271483778953552, -0.14260253310203552, -0.15556640923023224, -0.16721190512180328, -0.16896972060203552, -0.17995604872703552, -0.18061523139476776, -0.1669921875, -0.16237792372703552, -0.15117187798023224, -0.14436034858226776, -0.1263427734375, -0.11249999701976776, -0.09294433146715164, -0.0714111328125, -0.04548339545726776, -0.024169921875, -0.0057128905318677425, 0.02812499925494194, 0.0494384765625, 0.06899414211511612, 0.09096679091453552, 0.11579589545726776, 0.12919922173023224, 0.1483154296875, 0.16281737387180328, 0.17490233480930328, 0.18698729574680328, 0.19357909262180328, 0.19270019233226776, 0.1900634765625, 0.18918456137180328, 0.17863768339157104, 0.17534178495407104, 0.16259765625, 0.14106445014476776, 0.12062987685203552, 0.09909667819738388, 0.08217773586511612, 0.05317382514476776, 0.02944335900247097, 0.005053710658103228, -0.01669921912252903, -0.0439453125, -0.06723632663488388, -0.08876952528953552, -0.10898437350988388, -0.12985838949680328, -0.14853514730930328, -0.17424315214157104, -0.1856689453125, -0.18698729574680328, -0.195556640625, -0.19863280653953552, -0.20061033964157104, -0.19775390625, -0.191162109375, -0.18017578125, -0.16501463949680328, -0.13996581733226776, -0.12941893935203552, -0.10019531100988388, -0.07756347209215164, -0.04899902269244194, -0.02504882775247097, -0.00439453125, 0.02790527231991291, 0.0494384765625, 0.07470703125, 0.1021728515625, 0.12106933444738388, 0.14238281548023224, 0.16611327230930328, 0.18259276449680328, 0.19379882514476776, 0.20456542074680328, 0.20852050185203552, 0.2164306640625, 0.20961913466453552, 0.2010498046875, 0.1966552734375, 0.18281249701976776, 0.17292480170726776, 0.15512694418430328, 0.12875975668430328, 0.10744628310203552, 0.07954101264476776, 0.0626220703125, 0.03054199181497097, 0.0024169920943677425, -0.01911620981991291, -0.04833984375, -0.06635741889476776, -0.09250488132238388, -0.11381835490465164, -0.13864745199680328, -0.15688475966453552, -0.16940917074680328, -0.19028319418430328, -0.19379882514476776, -0.20368652045726776, -0.2054443359375, -0.20346678793430328, -0.20456542074680328, -0.18874511122703552, -0.17731933295726776, -0.16083984076976776, -0.14018554985523224, -0.12392577528953552, -0.1043701171875, -0.07646483927965164, -0.05031738057732582, -0.0252685546875, 0.001977538922801614, 0.02570800669491291, 0.05427245795726776, 0.07514648139476776, 0.10393065959215164, 0.12546385824680328, 0.14501953125, 0.15842284262180328, 0.17314451932907104, 0.1900634765625, 0.20456542074680328, 0.20720213651657104, 0.20654296875, 0.20676268637180328, 0.19907225668430328, 0.18588866293430328, 0.17512206733226776, 0.16237792372703552, 0.14897461235523224, 0.12656249105930328, 0.1043701171875, 0.085693359375, 0.06086425483226776, 0.03515625, 0.0098876953125, -0.01955566368997097, -0.03889160230755806, -0.06767577677965164, -0.09294433146715164, -0.11733397841453552, -0.12678222358226776, -0.15007324516773224, -0.16259765625, -0.17072753608226776, -0.18369139730930328, -0.19270019233226776, -0.199951171875, -0.19138182699680328, -0.18940429389476776, -0.17863768339157104, -0.17314451932907104, -0.151611328125, -0.13776855170726776, -0.11953124403953552, -0.09294433146715164, -0.07448730617761612, -0.05119628831744194, -0.02351074106991291, 0.002636718563735485, 0.02131347544491291, 0.04899902269244194, 0.0703125, 0.09316405653953552, 0.11030273139476776, 0.12700195610523224, 0.14348144829273224, 0.15952147543430328, 0.17160643637180328, 0.17622070014476776, 0.18039549887180328, 0.18281249701976776, 0.18830566108226776, 0.1768798828125, 0.17006835341453552, 0.16303710639476776, 0.1461181640625, 0.12722167372703552, 0.10986328125, 0.09492187201976776, 0.06789550930261612, 0.04921874776482582, 0.02768554538488388, 0.00966796837747097, -0.0230712890625, -0.03999023512005806, -0.0582275390625, -0.08107910305261612, -0.09580077975988388, -0.11513671278953552, -0.12941893935203552, -0.14370116591453552, -0.15029296278953552, -0.15358886122703552, -0.16567382216453552, -0.160400390625, -0.16633300483226776, -0.151611328125, -0.1461181640625, -0.14238281548023224, -0.13051757216453552, -0.11293944716453552, -0.09184569865465164, -0.07602538913488388, -0.0626220703125, -0.04020996019244194, -0.0263671875, -0.0008789062267169356, 0.0186767578125, 0.03691406175494194, 0.05361327901482582, 0.0758056640625, 0.09184569865465164, 0.10458984225988388, 0.116455078125, 0.129638671875, 0.1417236328125, 0.14414061605930328, 0.1483154296875, 0.14809569716453552, 0.14897461235523224, 0.14216308295726776, 0.13161620497703552, 0.12392577528953552, 0.11337890475988388, 0.10283202677965164, 0.08833007514476776, 0.07338867336511612, 0.05449218675494194, 0.03999023512005806, 0.02285156212747097, 0.0041748047806322575, -0.015380859375, -0.03339843824505806, -0.04482421651482582, -0.06130370870232582, -0.07492675632238388, -0.08107910305261612, -0.09206542372703552, -0.09909667819738388, -0.11030273139476776, -0.116455078125, -0.11293944716453552, -0.1131591796875, -0.10722655802965164, -0.10458984225988388, -0.09909667819738388, -0.09865722060203552, -0.0845947265625, -0.07470703125, -0.06591796875, -0.05559081956744194, -0.03449707105755806, -0.02834472618997097, -0.01494140550494194, -0.0028564452659338713, 0.007250976283103228, 0.0263671875, 0.04086913913488388, 0.04790038987994194, 0.06284179538488388, 0.07185058295726776, 0.08151855319738388, 0.07888183742761612, 0.08876952528953552, 0.08876952528953552, 0.09272460639476776, 0.09228515625, 0.09030761569738388, 0.08635253459215164, 0.0845947265625, 0.07163085788488388, 0.06130370870232582, 0.05449218675494194, 0.05097655951976776, 0.04548339545726776, 0.03383788838982582, 0.02263183519244194, 0.00637206993997097, 0.003735351376235485, -0.001977538922801614, -0.01669921912252903, -0.02395019493997097, -0.03515625, -0.041748046875, -0.04899902269244194, -0.04855956882238388, -0.04680175706744194, -0.05866698920726776, -0.05317382514476776, -0.05778808519244194, -0.05339355394244194, -0.054931640625, -0.05295410007238388, -0.04416503757238388, -0.04877929389476776, -0.04020996019244194, -0.0340576171875, -0.02373046800494194, -0.01779785193502903, -0.02065429650247097, -0.006152343470603228, -0.0076904296875, 0.005053710658103228, 0.0054931640625, 0.012524413876235485, 0.01186523400247097, 0.01999511756002903, 0.0252685546875, 0.019775390625, 0.0208740234375, 0.02702636644244194, 0.02922363206744194, 0.024169921875, 0.02153320237994194, 0.02153320237994194, 0.02109374850988388, 0.02438964694738388, 0.01669921912252903, 0.01582031138241291, 0.009448242373764515, 0.01494140550494194, 0.010107421316206455, 0.0068115233443677425, 0.0008789062267169356, 0.0013183592818677425, 0.0041748047806322575, -0.003076171735301614, 0.0041748047806322575, 0.001538085867650807, 0.0, 0.001977538922801614, 0.0008789062267169356, 0.0017578124534338713, 0.006591796875, 0.0041748047806322575, 0.00637206993997097, 0.0017578124534338713, 0.006152343470603228, 0.004833984188735485, 0.00637206993997097, 0.0041748047806322575, 0.003955077845603228, 0.0035156249068677425, 0.007910155691206455, 0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, 0.0054931640625, 0.0004394531133584678, 0.004833984188735485, 0.0004394531133584678, -0.001977538922801614, 0.0, -0.0024169920943677425, -0.0032958984375, 0.0013183592818677425, 0.00439453125, -0.0006591796409338713, -0.0013183592818677425, 0.0013183592818677425, 0.001538085867650807, 0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.003076171735301614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0032958984375, 0.0013183592818677425, -0.0006591796409338713, 0.002636718563735485, 0.0006591796409338713, 0.004833984188735485, -0.0017578124534338713, 0.0, 0.0041748047806322575, 0.0024169920943677425, -0.0006591796409338713, 0.005053710658103228, -0.0004394531133584678, 0.002636718563735485, 0.0035156249068677425, 0.0041748047806322575, 0.0004394531133584678, 0.0046142577193677425, 0.0032958984375, 0.0006591796409338713, -0.0008789062267169356, 0.0057128905318677425, 0.004833984188735485, -0.0013183592818677425, 0.0, 0.0032958984375, -0.0004394531133584678, 0.0004394531133584678, 0.001538085867650807, -0.00439453125, 0.0054931640625, 0.004833984188735485, -0.0010986328125, 0.002197265625, -0.0032958984375, 0.0028564452659338713, 0.0, -0.003076171735301614, 0.0004394531133584678, 0.0008789062267169356, 0.003735351376235485, 0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, 0.004833984188735485, -0.0010986328125, 0.005053710658103228, -0.0002197265566792339, -0.00527343712747097, 0.0002197265566792339, -0.0035156249068677425, -0.006591796875, -0.007250976283103228, -0.01318359375, -0.01164550706744194, -0.00856933556497097, -0.01845703087747097, -0.01582031138241291, -0.02021484263241291, -0.01625976525247097, -0.01801757700741291, -0.0120849609375, -0.007031249813735485, -0.009448242373764515, 0.0017578124534338713, -0.0013183592818677425, 0.009448242373764515, 0.01054687425494194, 0.02153320237994194, 0.02395019493997097, 0.03010253794491291, 0.02834472618997097, 0.0384521484375, 0.04086913913488388, 0.05031738057732582, 0.05185546725988388, 0.04921874776482582, 0.05361327901482582, 0.05712890625, 0.05624999850988388, 0.06086425483226776, 0.05910644307732582, 0.05075683444738388, 0.05229492112994194, 0.03977050632238388, 0.03801269456744194, 0.02900390513241291, 0.02373046800494194, 0.01274413987994194, 0.00747070275247097, -0.0028564452659338713, -0.02021484263241291, -0.0296630859375, -0.04020996019244194, -0.04460449144244194, -0.05405273288488388, -0.06569824367761612, -0.07866210490465164, -0.07932128757238388, -0.085693359375, -0.09294433146715164, -0.0933837890625, -0.09843749552965164, -0.09645995497703552, -0.0955810546875, -0.08811035007238388, -0.085693359375, -0.07097167521715164, -0.06306152045726776, -0.05712890625, -0.03933105245232582, -0.03164062276482582, -0.014501952566206455, 0.0013183592818677425, 0.015600585378706455, 0.02834472618997097, 0.046142578125, 0.063720703125, 0.0703125, 0.08657225966453552, 0.10107421875, 0.10920409858226776, 0.11777343600988388, 0.12788085639476776, 0.12810058891773224, 0.138427734375, 0.13007812201976776, 0.12875975668430328, 0.13579101860523224, 0.12062987685203552, 0.10788574069738388, 0.098876953125, 0.09316405653953552, 0.0758056640625, 0.05405273288488388, 0.041748046875, 0.02043456956744194, 0.008349609561264515, -0.017578125, -0.03427734225988388, -0.05756835639476776, -0.06547851115465164, -0.08811035007238388, -0.10305175185203552, -0.11491698771715164, -0.13227538764476776, -0.14501953125, -0.156005859375, -0.158203125, -0.16545410454273224, -0.16018065810203552, -0.16193847358226776, -0.16105957329273224, -0.14699706435203552, -0.13381347060203552, -0.12128905951976776, -0.10107421875, -0.0889892578125, -0.0692138671875, -0.04899902269244194, -0.0208740234375, -0.0024169920943677425, 0.02329101413488388, 0.04262695088982582, 0.06855468451976776, 0.08833007514476776, 0.10964354872703552, 0.13315428793430328, 0.14853514730930328, 0.16743163764476776, 0.17138671875, 0.19072264432907104, 0.19050292670726776, 0.19511717557907104, 0.193359375, 0.19841307401657104, 0.18720702826976776, 0.177978515625, 0.16545410454273224, 0.14216308295726776, 0.12678222358226776, 0.10371093451976776, 0.085693359375, 0.05888671800494194, 0.03098144382238388, 0.008129882626235485, -0.01669921912252903, -0.04350585862994194, -0.072509765625, -0.08920898288488388, -0.11931151896715164, -0.13491210341453552, -0.16062010824680328, -0.17446288466453552, -0.19709472358226776, -0.2010498046875, -0.21687011420726776, -0.21291503310203552, -0.21906737983226776, -0.20676268637180328, -0.20478515326976776, -0.18808592855930328, -0.17885741591453552, -0.15556640923023224, -0.1417236328125, -0.11008300632238388, -0.08854980021715164, -0.05361327901482582, -0.03273925557732582, -0.005053710658103228, 0.02922363206744194, 0.05185546725988388, 0.08854980021715164, 0.11381835490465164, 0.134033203125, 0.15776367485523224, 0.17929686605930328, 0.20280760526657104, 0.21928709745407104, 0.22324217855930328, 0.2384033203125, 0.23972167074680328, 0.23554687201976776, 0.23378905653953552, 0.228515625, 0.20830076932907104, 0.18984374403953552, 0.16831053793430328, 0.1494140625, 0.12832030653953552, 0.09470214694738388, 0.06613769382238388, 0.03647460788488388, 0.01164550706744194, -0.02065429650247097, -0.04855956882238388, -0.076904296875, -0.10920409858226776, -0.13447265326976776, -0.16457518935203552, -0.18544921278953552, -0.20852050185203552, -0.228515625, -0.23356932401657104, -0.24543456733226776, -0.2449951171875, -0.24653320014476776, -0.23774413764476776, -0.22895507514476776, -0.22104491293430328, -0.20236815512180328, -0.1746826171875, -0.15205077826976776, -0.1219482421875, -0.09865722060203552, -0.06987304240465164, -0.03449707105755806, -0.0087890625, 0.0296630859375, 0.05800781026482582, 0.0845947265625, 0.12128905951976776, 0.1494140625, 0.1790771484375, 0.20280760526657104, 0.22038573026657104, 0.23554687201976776, 0.24565428495407104, 0.2559814453125, 0.25444334745407104, 0.2546630799770355, 0.2502685487270355, 0.24257811903953552, 0.2230224609375, 0.21005858480930328, 0.18720702826976776, 0.16127929091453552, 0.13051757216453552, 0.10393065959215164, 0.07536620646715164, 0.04152831807732582, 0.01494140550494194, -0.02065429650247097, -0.05317382514476776, -0.08415526896715164, -0.11030273139476776, -0.142822265625, -0.16391600668430328, -0.19599609076976776, -0.20895995199680328, -0.23115234076976776, -0.24851073324680328, -0.24785155057907104, -0.2546630799770355, -0.2590576112270355, -0.24873046576976776, -0.23664550483226776, -0.22214354574680328, -0.19533690810203552, -0.18259276449680328, -0.15688475966453552, -0.12612304091453552, -0.09843749552965164, -0.06196288764476776, -0.0340576171875, -0.001538085867650807, 0.03251953050494194, 0.06459961086511612, 0.09272460639476776, 0.12458495795726776, 0.14501953125, 0.1790771484375, 0.20280760526657104, 0.2208251953125, 0.23774413764476776, 0.24982909858226776, 0.25444334745407104, 0.26081541180610657, 0.25202634930610657, 0.2518066465854645, 0.23884277045726776, 0.21730956435203552, 0.2076416015625, 0.18017578125, 0.15886230766773224, 0.12612304091453552, 0.10239257663488388, 0.07119140774011612, 0.04218749701976776, 0.0098876953125, -0.02219238132238388, -0.05031738057732582, -0.08547362685203552, -0.11052245646715164, -0.13974608480930328, -0.15776367485523224, -0.18962401151657104, -0.2021484375, -0.21467284858226776, -0.2340087890625, -0.24345701932907104, -0.243896484375, -0.23884277045726776, -0.23159179091453552, -0.22434081137180328, -0.204345703125, -0.18874511122703552, -0.16523437201976776, -0.14018554985523224, -0.12282714247703552, -0.08986815810203552, -0.06240234151482582, -0.03339843824505806, 0.0002197265566792339, 0.02329101413488388, 0.05690917745232582, 0.081298828125, 0.11052245646715164, 0.13820800185203552, 0.158203125, 0.18061523139476776, 0.19731444120407104, 0.213134765625, 0.22434081137180328, 0.22456054389476776, 0.226318359375, 0.2252197265625, 0.22236327826976776, 0.21357421576976776, 0.199951171875, 0.17973631620407104, 0.15556640923023224, 0.13425292074680328, 0.10898437350988388, 0.08657225966453552, 0.06767577677965164, 0.03251953050494194, 0.002636718563735485, -0.02043456956744194, -0.04262695088982582, -0.06657714396715164, -0.09865722060203552, -0.12348632514476776, -0.1417236328125, -0.15556640923023224, -0.17226561903953552, -0.191162109375, -0.19204100966453552, -0.20061033964157104, -0.20742186903953552, -0.20588378608226776, -0.19687499105930328, -0.19050292670726776, -0.17731933295726776, -0.15314941108226776, -0.14238281548023224, -0.12128905951976776, -0.10019531100988388, -0.07119140774011612, -0.04482421651482582, -0.02768554538488388, 0.0028564452659338713, 0.024169921875, 0.04987792670726776, 0.06613769382238388, 0.09492187201976776, 0.10722655802965164, 0.1307373046875, 0.14655761420726776, 0.15468749403953552, 0.16435547173023224, 0.17446288466453552, 0.1812744140625, 0.1834716796875, 0.18105468153953552, 0.17094725370407104, 0.164794921875, 0.15205077826976776, 0.14040526747703552, 0.12502440810203552, 0.10546875, 0.08876952528953552, 0.06437987834215164, 0.05141601338982582, 0.02395019493997097, 0.003735351376235485, -0.015600585378706455, -0.03779296949505806, -0.05339355394244194, -0.06965331733226776, -0.08854980021715164, -0.10129394382238388, -0.11293944716453552, -0.12041015177965164, -0.13359375298023224, -0.138427734375, -0.14545898139476776, -0.14084471762180328, -0.14370116591453552, -0.13315428793430328, -0.13095702230930328, -0.120849609375, -0.10678710788488388, -0.098876953125, -0.07888183742761612, -0.06591796875, -0.05075683444738388, -0.02922363206744194, -0.01801757700741291, 0.0054931640625, 0.01582031138241291, 0.03911132737994194, 0.04965820163488388, 0.06657714396715164, 0.07536620646715164, 0.08833007514476776, 0.09909667819738388, 0.10261230170726776, 0.11008300632238388, 0.11469726264476776, 0.11074218153953552, 0.1142578125, 0.11228027194738388, 0.10458984225988388, 0.09580077975988388, 0.09492187201976776, 0.08613280951976776, 0.06789550930261612, 0.0604248046875, 0.05229492112994194, 0.03449707105755806, 0.0318603515625, 0.01054687425494194, -0.0010986328125, -0.0054931640625, -0.01911620981991291, -0.02680663950741291, -0.03779296949505806, -0.04372558370232582, -0.05778808519244194, -0.0626220703125, -0.06174316257238388, -0.0648193359375, -0.07053222507238388, -0.06613769382238388, -0.07229004055261612, -0.06328124552965164, -0.05778808519244194, -0.06020507588982582, -0.05141601338982582, -0.04482421651482582, -0.03779296949505806, -0.03164062276482582, -0.03010253794491291, -0.01691894419491291, -0.009228515438735485, -0.0046142577193677425, 0.003076171735301614, 0.007250976283103228, 0.01274413987994194, 0.02373046800494194, 0.01955566368997097, 0.02395019493997097, 0.02768554538488388, 0.03142089769244194, 0.03581542894244194, 0.03229980543255806, 0.03515625, 0.02922363206744194, 0.03471679612994194, 0.0318603515625, 0.02482910081744194, 0.028564453125, 0.01779785193502903, 0.017578125, 0.01999511756002903, 0.010107421316206455, 0.007910155691206455, 0.0087890625, 0.0041748047806322575, -0.0017578124534338713, -0.0004394531133584678, -0.0032958984375, 0.0002197265566792339, 0.0, 0.0035156249068677425, -0.0054931640625, -0.0032958984375, 0.0024169920943677425, 0.001977538922801614, 0.0057128905318677425, 0.0004394531133584678, 0.0035156249068677425, 0.0035156249068677425, 0.00527343712747097, 0.0068115233443677425, 0.006591796875, 0.0076904296875, 0.005932617001235485, 0.0008789062267169356, 0.0024169920943677425, 0.0013183592818677425, 0.006591796875, 0.002197265625, 0.0057128905318677425, 0.0017578124534338713, 0.001977538922801614, -0.003076171735301614, 0.0010986328125, 0.0024169920943677425, 0.002636718563735485, 0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, 0.001977538922801614, 0.001977538922801614, 0.002197265625, 0.004833984188735485, -0.003955077845603228, 0.00637206993997097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0032958984375, -0.0024169920943677425, -0.0024169920943677425, 0.00527343712747097, 0.00439453125, 0.0057128905318677425, 0.0017578124534338713, 0.0028564452659338713, 0.005932617001235485, 0.00747070275247097, 0.0008789062267169356, 0.004833984188735485, 0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, 0.002197265625, 0.0013183592818677425, 0.0010986328125, 0.0008789062267169356, -0.0013183592818677425, 0.0008789062267169356, 0.0054931640625, -0.001538085867650807, 0.003735351376235485, 0.006152343470603228, 0.0035156249068677425, 0.0006591796409338713, 0.002636718563735485, 0.0, -0.0013183592818677425, 0.003955077845603228, -0.003076171735301614, -0.0041748047806322575, 0.0054931640625, 0.0032958984375, 0.0008789062267169356, 0.0004394531133584678, 0.004833984188735485, -0.003735351376235485, -0.003076171735301614, -0.001977538922801614, -0.0002197265566792339, 0.006591796875, 0.003955077845603228, 0.003955077845603228, 0.0002197265566792339, 0.0035156249068677425, -0.0032958984375, -0.0046142577193677425, -0.0013183592818677425, -0.0076904296875, -0.0087890625, -0.00966796837747097, -0.009448242373764515, -0.01889648474752903, -0.017578125, -0.01713867112994194, -0.017578125, -0.0164794921875, -0.01823730394244194, -0.0164794921875, -0.009228515438735485, -0.00637206993997097, -0.0120849609375, -0.003735351376235485, 0.003735351376235485, 0.01054687425494194, 0.0142822265625, 0.0164794921875, 0.02021484263241291, 0.02878417819738388, 0.03537597507238388, 0.04548339545726776, 0.04658202826976776, 0.05427245795726776, 0.06108398362994194, 0.06218261644244194, 0.0703125, 0.07316894084215164, 0.06943359225988388, 0.06745605170726776, 0.06350097805261612, 0.06635741889476776, 0.05295410007238388, 0.04746093600988388, 0.04306640475988388, 0.03647460788488388, 0.0274658203125, 0.012524413876235485, 0.00856933556497097, -0.01384277269244194, -0.01779785193502903, -0.02768554538488388, -0.03977050632238388, -0.05712890625, -0.06394042819738388, -0.07382812350988388, -0.0867919921875, -0.09689941257238388, -0.09909667819738388, -0.10920409858226776, -0.11008300632238388, -0.11074218153953552, -0.11579589545726776, -0.11337890475988388, -0.10107421875, -0.09426268935203552, -0.08767089247703552, -0.07185058295726776, -0.06437987834215164, -0.054931640625, -0.03669433668255806, -0.019775390625, 0.0028564452659338713, 0.01713867112994194, 0.03010253794491291, 0.04855956882238388, 0.07009277492761612, 0.08481445163488388, 0.10041503608226776, 0.11821288615465164, 0.12897948920726776, 0.13996581733226776, 0.15073241293430328, 0.15996094048023224, 0.164794921875, 0.1636962890625, 0.15776367485523224, 0.15556640923023224, 0.14106445014476776, 0.13227538764476776, 0.11931151896715164, 0.1021728515625, 0.09426268935203552, 0.07075195014476776, 0.05559081956744194, 0.0318603515625, 0.010107421316206455, -0.01274413987994194, -0.0428466796875, -0.06306152045726776, -0.08151855319738388, -0.10744628310203552, -0.1285400390625, -0.14194335043430328, -0.16303710639476776, -0.17270506918430328, -0.191162109375, -0.19291990995407104, -0.20148925483226776, -0.19687499105930328, -0.19028319418430328, -0.186767578125, -0.173583984375, -0.16501463949680328, -0.13930663466453552, -0.12919922173023224, -0.1021728515625, -0.0791015625, -0.05251464620232582, -0.024169921875, -0.0008789062267169356, 0.02504882775247097, 0.04921874776482582, 0.07822265475988388, 0.10788574069738388, 0.134033203125, 0.15402831137180328, 0.17270506918430328, 0.19313964247703552, 0.2098388671875, 0.22675780951976776, 0.23225097358226776, 0.23488768935203552, 0.23488768935203552, 0.22785644233226776, 0.21796874701976776, 0.20698241889476776, 0.19423827528953552, 0.17314451932907104, 0.15402831137180328, 0.12260741740465164, 0.10041503608226776, 0.06569824367761612, 0.04306640475988388, 0.0076904296875, -0.02109374850988388, -0.052734375, -0.08415526896715164, -0.1043701171875, -0.13337402045726776, -0.16171874105930328, -0.19160155951976776, -0.21027831733226776, -0.23598632216453552, -0.24565428495407104, -0.2551025450229645, -0.2579589784145355, -0.2590576112270355, -0.25554198026657104, -0.23884277045726776, -0.2340087890625, -0.20830076932907104, -0.18215331435203552, -0.15974120795726776, -0.13227538764476776, -0.10041503608226776, -0.0703125, -0.03911132737994194, -0.0087890625, 0.02988281100988388, 0.05998535081744194, 0.0911865234375, 0.12766112387180328, 0.156005859375, 0.18259276449680328, 0.21621093153953552, 0.23642577230930328, 0.25642088055610657, 0.2689453065395355, 0.2843261659145355, 0.28959959745407104, 0.27949216961860657, 0.2781738340854645, 0.2634521424770355, 0.25114744901657104, 0.23093260824680328, 0.20258788764476776, 0.17841796576976776, 0.1439208984375, 0.11865234375, 0.07998047024011612, 0.05141601338982582, 0.01735839806497097, -0.0186767578125, -0.04965820163488388, -0.08723144233226776, -0.12041015177965164, -0.1593017578125, -0.1922607421875, -0.21489256620407104, -0.23928222060203552, -0.2579589784145355, -0.27531737089157104, -0.29069823026657104, -0.3012451231479645, -0.29377439618110657, -0.2909179627895355, -0.27421873807907104, -0.26081541180610657, -0.24038085341453552, -0.21137695014476776, -0.17644041776657104, -0.15314941108226776, -0.11799316108226776, -0.07888183742761612, -0.0450439453125, -0.001977538922801614, 0.03010253794491291, 0.0714111328125, 0.10393065959215164, 0.14326171576976776, 0.1724853515625, 0.20676268637180328, 0.228515625, 0.25883787870407104, 0.2726806700229645, 0.29729002714157104, 0.3021240234375, 0.31047362089157104, 0.31047362089157104, 0.30366209149360657, 0.2887206971645355, 0.2669677734375, 0.24104003608226776, 0.213134765625, 0.1856689453125, 0.15996094048023224, 0.12744140625, 0.08525390177965164, 0.05119628831744194, 0.01384277269244194, -0.01999511756002903, -0.05844726413488388, -0.09536132216453552, -0.13161620497703552, -0.1593017578125, -0.19599609076976776, -0.21840819716453552, -0.2535644471645355, -0.26520994305610657, -0.28740233182907104, -0.30498045682907104, -0.30827635526657104, -0.30585935711860657, -0.292236328125, -0.2803710997104645, -0.26301267743110657, -0.2471923828125, -0.21269530057907104, -0.18149413168430328, -0.15227051079273224, -0.1197509765625, -0.08283691108226776, -0.04482421651482582, -0.007910155691206455, 0.03449707105755806, 0.07119140774011612, 0.10019531100988388, 0.13710936903953552, 0.1702880859375, 0.20368652045726776, 0.23115234076976776, 0.25861814618110657, 0.270263671875, 0.2942138612270355, 0.301025390625, 0.30322265625, 0.301025390625, 0.29816892743110657, 0.27839353680610657, 0.26850584149360657, 0.24257811903953552, 0.21357421576976776, 0.18413084745407104, 0.15139159560203552, 0.11711425334215164, 0.08723144233226776, 0.046142578125, 0.01406249962747097, -0.0274658203125, -0.0604248046875, -0.09426268935203552, -0.12722167372703552, -0.15424804389476776, -0.18281249701976776, -0.20654296875, -0.24301756918430328, -0.2515869140625, -0.27070310711860657, -0.27861326932907104, -0.28564453125, -0.28190916776657104, -0.2788330018520355, -0.2627929747104645, -0.239501953125, -0.2197265625, -0.19643554091453552, -0.1669921875, -0.13710936903953552, -0.10546875, -0.07492675632238388, -0.03999023512005806, -0.0024169920943677425, 0.03493652120232582, 0.06503906100988388, 0.10173339396715164, 0.12897948920726776, 0.16215820610523224, 0.18896484375, 0.208740234375, 0.2318115234375, 0.2493896484375, 0.2649902403354645, 0.2682861387729645, 0.26960447430610657, 0.26433104276657104, 0.2583984434604645, 0.24960936605930328, 0.23642577230930328, 0.21467284858226776, 0.19072264432907104, 0.16325683891773224, 0.1351318359375, 0.10085448622703552, 0.0703125, 0.04328612983226776, 0.007910155691206455, -0.0230712890625, -0.05537109076976776, -0.085693359375, -0.10788574069738388, -0.14128418266773224, -0.16853027045726776, -0.18500976264476776, -0.2021484375, -0.22280272841453552, -0.23093260824680328, -0.24169921875, -0.24477538466453552, -0.24345701932907104, -0.23862303793430328, -0.2252197265625, -0.20786131918430328, -0.18522948026657104, -0.16127929091453552, -0.1351318359375, -0.11228027194738388, -0.08723144233226776, -0.05910644307732582, -0.02944335900247097, 0.001977538922801614, 0.02988281100988388, 0.054931640625, 0.08085937052965164, 0.11052245646715164, 0.129638671875, 0.15402831137180328, 0.173583984375, 0.19072264432907104, 0.20148925483226776, 0.20917968451976776, 0.21115721762180328, 0.21511229872703552, 0.20830076932907104, 0.204345703125, 0.19357909262180328, 0.17775878310203552, 0.16501463949680328, 0.1494140625, 0.12612304091453552, 0.10854491591453552, 0.07602538913488388, 0.05712890625, 0.02790527231991291, 0.0054931640625, -0.01406249962747097, -0.03801269456744194, -0.06547851115465164, -0.0889892578125, -0.10173339396715164, -0.12106933444738388, -0.14084471762180328, -0.151611328125, -0.15952147543430328, -0.16743163764476776, -0.1702880859375, -0.17160643637180328, -0.17050780355930328, -0.16940917074680328, -0.1593017578125, -0.14523924887180328, -0.12612304091453552, -0.11030273139476776, -0.09975585341453552, -0.08173827826976776, -0.05844726413488388, -0.03471679612994194, -0.019775390625, -0.0010986328125, 0.01625976525247097, 0.03669433668255806, 0.05668945237994194, 0.06877440959215164, 0.0911865234375, 0.10524901747703552, 0.10700683295726776, 0.12019042670726776, 0.12766112387180328, 0.13645018637180328, 0.13337402045726776, 0.13205565512180328, 0.12832030653953552, 0.12612304091453552, 0.11953124403953552, 0.107666015625, 0.10393065959215164, 0.09272460639476776, 0.07097167521715164, 0.06416015326976776, 0.0450439453125, 0.03471679612994194, 0.011206054128706455, -0.0010986328125, -0.014721679501235485, -0.0230712890625, -0.04042968526482582, -0.04416503757238388, -0.0538330078125, -0.06789550930261612, -0.07185058295726776, -0.072509765625, -0.076904296875, -0.08173827826976776, -0.08547362685203552, -0.07844237983226776, -0.08041992038488388, -0.07602538913488388, -0.06657714396715164, -0.06569824367761612, -0.05537109076976776, -0.04855956882238388, -0.04416503757238388, -0.02988281100988388, -0.0263671875, -0.01823730394244194, -0.001977538922801614, 0.007031249813735485, 0.006591796875, 0.01933593675494194, 0.01713867112994194, 0.03120117075741291, 0.02878417819738388, 0.03032226487994194, 0.041748046875, 0.041748046875, 0.04460449144244194, 0.03361816331744194, 0.04438476264476776, 0.032958984375, 0.03032226487994194, 0.03713378682732582, 0.03142089769244194, 0.02351074106991291, 0.0252685546875, 0.01955566368997097, 0.00856933556497097, 0.010327148251235485, 0.00747070275247097, 0.0068115233443677425, 0.0035156249068677425, 0.0024169920943677425, -0.00439453125, 0.0006591796409338713, 0.0041748047806322575, 0.002197265625, -0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.002197265625, 0.0057128905318677425, 0.0004394531133584678, 0.0057128905318677425, -0.0002197265566792339, 0.00637206993997097, 0.0076904296875, -0.0002197265566792339, 0.0017578124534338713, 0.0054931640625, 0.0057128905318677425, -0.0010986328125, -0.0006591796409338713, 0.003955077845603228, 0.006591796875, -0.0017578124534338713, 0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.003955077845603228, -0.0068115233443677425, 0.005053710658103228, -0.0028564452659338713, 0.001977538922801614, 0.003955077845603228, 0.004833984188735485, 0.0057128905318677425, -0.001538085867650807, 0.0032958984375, 0.0002197265566792339, -0.0006591796409338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.005932617001235485, 0.0046142577193677425, -0.0006591796409338713, 0.0024169920943677425, 0.002197265625, 0.0024169920943677425, -0.001977538922801614, 0.0004394531133584678, 0.001977538922801614, 0.0041748047806322575, 0.00747070275247097, 0.003955077845603228, 0.001977538922801614, 0.0041748047806322575, -0.0006591796409338713, 0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, 0.004833984188735485, 0.0017578124534338713, 0.003735351376235485, 0.007250976283103228, -0.0006591796409338713, 0.002197265625, -0.0008789062267169356, 0.00439453125, -0.0013183592818677425, -0.0002197265566792339, 0.0002197265566792339, 0.002197265625, 0.0054931640625, 0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, 0.002197265625, 0.0, 0.00439453125, 0.001538085867650807, 0.0024169920943677425, 0.0035156249068677425, 0.003955077845603228, -0.0004394531133584678, 0.005053710658103228, 0.002197265625, -0.003735351376235485, -0.0004394531133584678, 0.0054931640625, 0.002636718563735485, -0.0046142577193677425, -0.00439453125, -0.010327148251235485, -0.008349609561264515, -0.01691894419491291, -0.02175292931497097, -0.02241210825741291, -0.02438964694738388, -0.02548827975988388, -0.02109374850988388, -0.02263183519244194, -0.02592773362994194, -0.02109374850988388, -0.0087890625, -0.013623046688735485, -0.0057128905318677425, 0.0054931640625, 0.00439453125, 0.01604003831744194, 0.01955566368997097, 0.02614746056497097, 0.0340576171875, 0.041748046875, 0.05141601338982582, 0.05844726413488388, 0.06613769382238388, 0.07316894084215164, 0.0736083984375, 0.0791015625, 0.07602538913488388, 0.08063964545726776, 0.08481445163488388, 0.07558593899011612, 0.07668457180261612, 0.06635741889476776, 0.06064452975988388, 0.04921874776482582, 0.03867187350988388, 0.02614746056497097, 0.0208740234375, 0.00527343712747097, -0.010986328125, -0.02592773362994194, -0.03449707105755806, -0.05031738057732582, -0.0692138671875, -0.07932128757238388, -0.08876952528953552, -0.10371093451976776, -0.11491698771715164, -0.12260741740465164, -0.125244140625, -0.13029785454273224, -0.12744140625, -0.13425292074680328, -0.12282714247703552, -0.12326660007238388, -0.11074218153953552, -0.10700683295726776, -0.08767089247703552, -0.07163085788488388, -0.05690917745232582, -0.04262695088982582, -0.02285156212747097, 0.002197265625, 0.02219238132238388, 0.0362548828125, 0.06240234151482582, 0.08195800334215164, 0.103271484375, 0.11865234375, 0.14106445014476776, 0.1505126953125, 0.1702880859375, 0.17182616889476776, 0.17995604872703552, 0.18369139730930328, 0.1900634765625, 0.1790771484375, 0.18281249701976776, 0.16435547173023224, 0.15336914360523224, 0.14545898139476776, 0.12370605021715164, 0.1065673828125, 0.08041992038488388, 0.06306152045726776, 0.0340576171875, 0.007910155691206455, -0.01889648474752903, -0.04372558370232582, -0.0736083984375, -0.0955810546875, -0.12436523288488388, -0.14084471762180328, -0.1669921875, -0.18413084745407104, -0.19819335639476776, -0.2142333984375, -0.21950682997703552, -0.22785644233226776, -0.22236327826976776, -0.22543944418430328, -0.21928709745407104, -0.2010498046875, -0.19072264432907104, -0.1724853515625, -0.14589843153953552, -0.12150878459215164, -0.09382323920726776, -0.068115234375, -0.03669433668255806, -0.0068115233443677425, 0.03142089769244194, 0.05778808519244194, 0.0845947265625, 0.12282714247703552, 0.15029296278953552, 0.17226561903953552, 0.20610350370407104, 0.22214354574680328, 0.23774413764476776, 0.261474609375, 0.2678466737270355, 0.2649902403354645, 0.27290037274360657, 0.26103514432907104, 0.25664061307907104, 0.23774413764476776, 0.22126464545726776, 0.19489745795726776, 0.17116698622703552, 0.14875487983226776, 0.11667480319738388, 0.08525390177965164, 0.0450439453125, 0.01516113243997097, -0.02175292931497097, -0.05559081956744194, -0.09404296427965164, -0.12128905951976776, -0.16062010824680328, -0.186767578125, -0.21467284858226776, -0.23906248807907104, -0.2562011778354645, -0.274658203125, -0.2900390625, -0.2942138612270355, -0.3030029237270355, -0.28850096464157104, -0.28125, -0.26191404461860657, -0.24257811903953552, -0.20961913466453552, -0.18610839545726776, -0.156005859375, -0.11733397841453552, -0.08371581882238388, -0.0439453125, -0.00439453125, 0.02592773362994194, 0.0714111328125, 0.10546875, 0.14655761420726776, 0.18039549887180328, 0.21467284858226776, 0.23664550483226776, 0.2691650390625, 0.29289549589157104, 0.30695798993110657, 0.3265136778354645, 0.32805174589157104, 0.32585448026657104, 0.31596678495407104, 0.31157225370407104, 0.28740233182907104, 0.2645507752895355, 0.23664550483226776, 0.20610350370407104, 0.17292480170726776, 0.13557128608226776, 0.09755858778953552, 0.05581054463982582, 0.01406249962747097, -0.017578125, -0.06196288764476776, -0.09843749552965164, -0.14238281548023224, -0.17556151747703552, -0.21225585043430328, -0.24367675185203552, -0.26982420682907104, -0.29707029461860657, -0.3177246153354645, -0.3353027403354645, -0.3440917730331421, -0.3473876714706421, -0.32915037870407104, -0.3155273497104645, -0.29443359375, -0.26301267743110657, -0.24125975370407104, -0.20148925483226776, -0.16435547173023224, -0.13271483778953552, -0.08876952528953552, -0.05317382514476776, -0.010986328125, 0.03339843824505806, 0.07097167521715164, 0.1142578125, 0.15754394233226776, 0.19401854276657104, 0.23093260824680328, 0.2572998106479645, 0.29443359375, 0.314208984375, 0.33332517743110657, 0.3550781011581421, 0.35441893339157104, 0.3506835699081421, 0.35112303495407104, 0.32585448026657104, 0.3073974549770355, 0.2766357362270355, 0.25114744901657104, 0.21379393339157104, 0.18435057997703552, 0.13864745199680328, 0.09843749552965164, 0.06328124552965164, 0.01801757700741291, -0.01582031138241291, -0.0615234375, -0.10261230170726776, -0.14655761420726776, -0.17490233480930328, -0.21401366591453552, -0.24982909858226776, -0.28190916776657104, -0.3019042909145355, -0.33002927899360657, -0.33881834149360657, -0.3484863042831421, -0.3548583984375, -0.3359619081020355, -0.3188232481479645, -0.30607908964157104, -0.2724609375, -0.24104003608226776, -0.21159666776657104, -0.16940917074680328, -0.13754881918430328, -0.08811035007238388, -0.05471191182732582, -0.00966796837747097, 0.03229980543255806, 0.076904296875, 0.11667480319738388, 0.15952147543430328, 0.19050292670726776, 0.22390136122703552, 0.2601562440395355, 0.2867431640625, 0.31047362089157104, 0.3370605409145355, 0.3403564393520355, 0.349365234375, 0.34562987089157104, 0.34013670682907104, 0.32563474774360657, 0.3062988221645355, 0.27685546875, 0.24455565214157104, 0.20720213651657104, 0.17512206733226776, 0.1373291015625, 0.0999755859375, 0.0582275390625, 0.01911620981991291, -0.02241210825741291, -0.0670166015625, -0.10744628310203552, -0.14304198324680328, -0.17490233480930328, -0.20830076932907104, -0.24367675185203552, -0.2667480409145355, -0.2924560606479645, -0.3076171875, -0.32475584745407104, -0.32563474774360657, -0.3284912109375, -0.3172851502895355, -0.3012451231479645, -0.28190916776657104, -0.2603759765625, -0.22390136122703552, -0.19401854276657104, -0.1571044921875, -0.1197509765625, -0.0867919921875, -0.05097655951976776, -0.001977538922801614, 0.02900390513241291, 0.07624511420726776, 0.10986328125, 0.1417236328125, 0.1768798828125, 0.21445311605930328, 0.24235838651657104, 0.2682861387729645, 0.2920165956020355, 0.30322265625, 0.3175048828125, 0.31354978680610657, 0.31486815214157104, 0.30498045682907104, 0.28740233182907104, 0.2689453065395355, 0.248291015625, 0.21774901449680328, 0.18610839545726776, 0.15798339247703552, 0.11733397841453552, 0.08503417670726776, 0.05537109076976776, 0.015600585378706455, -0.01735839806497097, -0.05405273288488388, -0.094482421875, -0.12041015177965164, -0.15666504204273224, -0.18984374403953552, -0.21467284858226776, -0.23203124105930328, -0.25642088055610657, -0.26762694120407104, -0.2733398377895355, -0.27619627118110657, -0.2733398377895355, -0.2647705078125, -0.2535644471645355, -0.23994140326976776, -0.21621093153953552, -0.19160155951976776, -0.15754394233226776, -0.129638671875, -0.10415038466453552, -0.07382812350988388, -0.03229980543255806, -0.0002197265566792339, 0.02988281100988388, 0.06130370870232582, 0.08503417670726776, 0.11843261122703552, 0.14743651449680328, 0.1746826171875, 0.1988525390625, 0.21774901449680328, 0.23378905653953552, 0.24763183295726776, 0.24631346762180328, 0.24587401747703552, 0.24851073324680328, 0.2406005859375, 0.22456054389476776, 0.2109375, 0.19248045980930328, 0.16721190512180328, 0.15029296278953552, 0.11623534560203552, 0.08964843302965164, 0.06350097805261612, 0.03867187350988388, 0.00966796837747097, -0.01911620981991291, -0.04416503757238388, -0.072509765625, -0.094482421875, -0.125244140625, -0.14501953125, -0.16457518935203552, -0.1702880859375, -0.18171386420726776, -0.19028319418430328, -0.1944580078125, -0.20302733778953552, -0.19533690810203552, -0.19467772543430328, -0.17995604872703552, -0.16567382216453552, -0.15007324516773224, -0.12832030653953552, -0.11821288615465164, -0.08986815810203552, -0.06416015326976776, -0.04262695088982582, -0.01999511756002903, 0.0002197265566792339, 0.02065429650247097, 0.04152831807732582, 0.05976562201976776, 0.08503417670726776, 0.10305175185203552, 0.11711425334215164, 0.13007812201976776, 0.13776855170726776, 0.151611328125, 0.15754394233226776, 0.16215820610523224, 0.15798339247703552, 0.15314941108226776, 0.14304198324680328, 0.13864745199680328, 0.12766112387180328, 0.11953124403953552, 0.10195311903953552, 0.081298828125, 0.06547851115465164, 0.04855956882238388, 0.03955078125, 0.02109374850988388, 0.0024169920943677425, -0.01823730394244194, -0.032958984375, -0.04328612983226776, -0.05581054463982582, -0.06328124552965164, -0.07426757365465164, -0.08635253459215164, -0.08876952528953552, -0.0933837890625, -0.10305175185203552, -0.09733886271715164, -0.09624022990465164, -0.09294433146715164, -0.08833007514476776, -0.08613280951976776, -0.07866210490465164, -0.06833495944738388, -0.05976562201976776, -0.04833984375, -0.03449707105755806, -0.03339843824505806, -0.0186767578125, -0.01076660118997097, 0.0010986328125, 0.00637206993997097, 0.02109374850988388, 0.028564453125, 0.03471679612994194, 0.04108886793255806, 0.03801269456744194, 0.04768066108226776, 0.04438476264476776, 0.0406494140625, 0.04350585862994194, 0.04658202826976776, 0.03999023512005806, 0.04240722581744194, 0.03449707105755806, 0.02900390513241291, 0.03054199181497097, 0.0274658203125, 0.01669921912252903, 0.0142822265625, 0.014721679501235485, 0.0041748047806322575, 0.0098876953125, 0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0035156249068677425, -0.003735351376235485, 0.0041748047806322575, 0.0002197265566792339, 0.0, 0.0024169920943677425, 0.0, 0.0006591796409338713, 0.0028564452659338713, -0.002636718563735485, 0.008129882626235485, 0.001538085867650807, 0.002636718563735485, 0.0032958984375, -0.0017578124534338713, 0.002636718563735485, 0.0004394531133584678, 0.003076171735301614, 0.007910155691206455, 0.0010986328125, 0.003076171735301614, 0.005053710658103228, 0.0, 0.005932617001235485, 0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, 0.0004394531133584678, 0.005053710658103228, 0.002636718563735485, 0.0004394531133584678, -0.0008789062267169356, 0.0057128905318677425, -0.003076171735301614, 0.0013183592818677425, 0.006152343470603228, 0.004833984188735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.002636718563735485, 0.0008789062267169356, 0.0, 0.004833984188735485, 0.0008789062267169356, 0.005053710658103228, 0.0076904296875, 0.0032958984375, 0.006152343470603228, 0.0017578124534338713, 0.004833984188735485, 0.004833984188735485, 0.0032958984375, -0.0002197265566792339, 0.007250976283103228, -0.0028564452659338713, -0.0028564452659338713, -0.0032958984375, 0.001538085867650807, 0.0054931640625, 0.003076171735301614, 0.0054931640625, -0.002197265625, 0.004833984188735485, 0.00527343712747097, 0.0, 0.003735351376235485, 0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, 0.00637206993997097, 0.0035156249068677425, 0.003735351376235485, -0.0006591796409338713, 0.0024169920943677425, 0.00527343712747097, -0.0002197265566792339, 0.0002197265566792339, 0.0010986328125, 0.001538085867650807, 0.0035156249068677425, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, 0.0013183592818677425, 0.0057128905318677425, 0.002636718563735485, -0.0013183592818677425, -0.00747070275247097, -0.0087890625, -0.01691894419491291, -0.015380859375, -0.01625976525247097, -0.02548827975988388, -0.01823730394244194, -0.0274658203125, -0.02021484263241291, -0.0230712890625, -0.02658691257238388, -0.0186767578125, -0.02329101413488388, -0.01845703087747097, -0.006591796875, -0.005932617001235485, 0.0004394531133584678, 0.013623046688735485, 0.01801757700741291, 0.02197265625, 0.02988281100988388, 0.03977050632238388, 0.05339355394244194, 0.06108398362994194, 0.07053222507238388, 0.07119140774011612, 0.07712402194738388, 0.08811035007238388, 0.09140624850988388, 0.08701171725988388, 0.09536132216453552, 0.09162597358226776, 0.08283691108226776, 0.07954101264476776, 0.0780029296875, 0.06196288764476776, 0.06459961086511612, 0.04438476264476776, 0.03142089769244194, 0.02263183519244194, 0.0046142577193677425, -0.01164550706744194, -0.02241210825741291, -0.04680175706744194, -0.06196288764476776, -0.07448730617761612, -0.08811035007238388, -0.10854491591453552, -0.11491698771715164, -0.12985838949680328, -0.13491210341453552, -0.14589843153953552, -0.14853514730930328, -0.1461181640625, -0.15095214545726776, -0.147216796875, -0.13491210341453552, -0.1318359375, -0.11997070163488388, -0.10524901747703552, -0.0845947265625, -0.07097167521715164, -0.04482421651482582, -0.02197265625, -0.007910155691206455, 0.0252685546875, 0.04790038987994194, 0.07207030802965164, 0.09184569865465164, 0.1175537109375, 0.13359375298023224, 0.15029296278953552, 0.17424315214157104, 0.18632811307907104, 0.19775390625, 0.204345703125, 0.20939940214157104, 0.21071776747703552, 0.20610350370407104, 0.204345703125, 0.18874511122703552, 0.18391112983226776, 0.16215820610523224, 0.1439208984375, 0.11821288615465164, 0.09843749552965164, 0.06899414211511612, 0.04130859300494194, 0.009228515438735485, -0.01516113243997097, -0.05229492112994194, -0.07624511420726776, -0.10788574069738388, -0.12897948920726776, -0.16105957329273224, -0.186767578125, -0.208740234375, -0.22390136122703552, -0.2427978515625, -0.24851073324680328, -0.261474609375, -0.25993651151657104, -0.25883787870407104, -0.24960936605930328, -0.23642577230930328, -0.2109375, -0.18940429389476776, -0.16523437201976776, -0.13095702230930328, -0.11140136420726776, -0.07053222507238388, -0.03955078125, -0.00439453125, 0.0296630859375, 0.068115234375, 0.0999755859375, 0.13447265326976776, 0.16787108778953552, 0.19291990995407104, 0.22456054389476776, 0.25444334745407104, 0.2682861387729645, 0.28959959745407104, 0.30256345868110657, 0.3065185546875, 0.3117919862270355, 0.29707029461860657, 0.2900390625, 0.26630857586860657, 0.24433593451976776, 0.22587889432907104, 0.1966552734375, 0.16105957329273224, 0.12766112387180328, 0.09074706584215164, 0.05405273288488388, 0.01845703087747097, -0.02109374850988388, -0.06350097805261612, -0.0933837890625, -0.13491210341453552, -0.17314451932907104, -0.20895995199680328, -0.24082030355930328, -0.2616943418979645, -0.2867431640625, -0.30937498807907104, -0.32673338055610657, -0.333984375, -0.3416748046875, -0.33112791180610657, -0.31684568524360657, -0.2898193299770355, -0.2669677734375, -0.243896484375, -0.20720213651657104, -0.17204588651657104, -0.13601073622703552, -0.09404296427965164, -0.04636230319738388, -0.012524413876235485, 0.03339843824505806, 0.07646483927965164, 0.11733397841453552, 0.1593017578125, 0.19357909262180328, 0.23466795682907104, 0.26542967557907104, 0.3023437559604645, 0.3210205137729645, 0.3462890386581421, 0.3570556640625, 0.3660644292831421, 0.36848142743110657, 0.35529783368110657, 0.3480468690395355, 0.3240966796875, 0.296630859375, 0.2612548768520355, 0.22917479276657104, 0.19533690810203552, 0.1571044921875, 0.11052245646715164, 0.06767577677965164, 0.02438964694738388, -0.02021484263241291, -0.06437987834215164, -0.1109619140625, -0.14963378012180328, -0.19072264432907104, -0.23137205839157104, -0.263671875, -0.301025390625, -0.3348632752895355, -0.3572753667831421, -0.3733154237270355, -0.38518065214157104, -0.38496091961860657, -0.3667236268520355, -0.35771483182907104, -0.33332517743110657, -0.2964111268520355, -0.26411131024360657, -0.22917479276657104, -0.19182127714157104, -0.14963378012180328, -0.10349120944738388, -0.05800781026482582, -0.01494140550494194, 0.02944335900247097, 0.07756347209215164, 0.12722167372703552, 0.17072753608226776, 0.20917968451976776, 0.25444334745407104, 0.28828123211860657, 0.31486815214157104, 0.3447509706020355, 0.37177732586860657, 0.397705078125, 0.4067138433456421, 0.40034177899360657, 0.3821044862270355, 0.3658447265625, 0.3495849370956421, 0.3153076171875, 0.2755371034145355, 0.24191893637180328, 0.19929198920726776, 0.15996094048023224, 0.11667480319738388, 0.06899414211511612, 0.02460937388241291, -0.0164794921875, -0.06569824367761612, -0.11447753757238388, -0.16259765625, -0.19709472358226776, -0.2406005859375, -0.2823486328125, -0.3109130859375, -0.3440917730331421, -0.3711181581020355, -0.39287108182907104, -0.39924314618110657, -0.39814451336860657, -0.3891357183456421, -0.3711181581020355, -0.34541013836860657, -0.30805662274360657, -0.27641600370407104, -0.23203124105930328, -0.19511717557907104, -0.15358886122703552, -0.10063476115465164, -0.05690917745232582, -0.009448242373764515, 0.03339843824505806, 0.08371581882238388, 0.12392577528953552, 0.1724853515625, 0.2076416015625, 0.2513671815395355, 0.2911376953125, 0.32343748211860657, 0.3590331971645355, 0.3744140565395355, 0.39287108182907104, 0.3985839784145355, 0.3946288824081421, 0.3847411870956421, 0.36298826336860657, 0.340576171875, 0.31201171875, 0.2744384706020355, 0.23752440512180328, 0.1944580078125, 0.15908202528953552, 0.10854491591453552, 0.07272949069738388, 0.019775390625, -0.02021484263241291, -0.06569824367761612, -0.11271972209215164, -0.1505126953125, -0.19204100966453552, -0.2340087890625, -0.2689453065395355, -0.3001464903354645, -0.32695311307907104, -0.3506835699081421, -0.37617185711860657, -0.37727048993110657, -0.38188475370407104, -0.36650389432907104, -0.3414550721645355, -0.3210205137729645, -0.2953124940395355, -0.25664061307907104, -0.21928709745407104, -0.18391112983226776, -0.14238281548023224, -0.0933837890625, -0.04987792670726776, -0.01186523400247097, 0.03449707105755806, 0.07844237983226776, 0.11931151896715164, 0.16193847358226776, 0.20148925483226776, 0.23598632216453552, 0.27290037274360657, 0.2964111268520355, 0.32343748211860657, 0.34321287274360657, 0.3528808355331421, 0.35859373211860657, 0.35639646649360657, 0.35002440214157104, 0.32695311307907104, 0.3021240234375, 0.28300780057907104, 0.24982909858226776, 0.21159666776657104, 0.17709960043430328, 0.14216308295726776, 0.0977783203125, 0.05515136569738388, 0.013403319753706455, -0.0208740234375, -0.0626220703125, -0.10305175185203552, -0.14436034858226776, -0.17929686605930328, -0.20698241889476776, -0.24807128310203552, -0.2638916075229645, -0.29509276151657104, -0.30695798993110657, -0.3131103515625, -0.3240966796875, -0.32080078125, -0.3056396543979645, -0.2913574278354645, -0.2669677734375, -0.24587401747703552, -0.2186279296875, -0.18830566108226776, -0.15292967855930328, -0.1175537109375, -0.07514648139476776, -0.03691406175494194, -0.003076171735301614, 0.03449707105755806, 0.06987304240465164, 0.107666015625, 0.13623046875, 0.1658935546875, 0.19687499105930328, 0.22236327826976776, 0.2502685487270355, 0.26542967557907104, 0.27290037274360657, 0.2832275331020355, 0.28608396649360657, 0.2801513671875, 0.26762694120407104, 0.25883787870407104, 0.23356932401657104, 0.21928709745407104, 0.19182127714157104, 0.16413573920726776, 0.13754881918430328, 0.10832519084215164, 0.07866210490465164, 0.03955078125, 0.007031249813735485, -0.02109374850988388, -0.05339355394244194, -0.08173827826976776, -0.11008300632238388, -0.13579101860523224, -0.16062010824680328, -0.1878662109375, -0.19643554091453552, -0.21467284858226776, -0.22258299589157104, -0.22763670980930328, -0.2362060546875, -0.22478026151657104, -0.21928709745407104, -0.20698241889476776, -0.18654784560203552, -0.17094725370407104, -0.15578612685203552, -0.1241455078125, -0.10261230170726776, -0.08283691108226776, -0.04877929389476776, -0.02263183519244194, -0.0002197265566792339, 0.0252685546875, 0.05339355394244194, 0.07075195014476776, 0.09602050483226776, 0.11381835490465164, 0.13579101860523224, 0.14589843153953552, 0.15798339247703552, 0.169189453125, 0.18017578125, 0.17666015028953552, 0.18061523139476776, 0.18083494901657104, 0.16457518935203552, 0.15842284262180328, 0.14436034858226776, 0.12897948920726776, 0.11447753757238388, 0.09711913764476776, 0.0758056640625, 0.05559081956744194, 0.03713378682732582, 0.01713867112994194, 0.002197265625, -0.00856933556497097, -0.02922363206744194, -0.04899902269244194, -0.05998535081744194, -0.07536620646715164, -0.08811035007238388, -0.09975585341453552, -0.10173339396715164, -0.112060546875, -0.10942382365465164, -0.11293944716453552, -0.1087646484375, -0.10722655802965164, -0.10041503608226776, -0.09580077975988388, -0.087890625, -0.07822265475988388, -0.06174316257238388, -0.0582275390625, -0.04680175706744194, -0.03493652120232582, -0.01691894419491291, -0.011425781063735485, -0.0013183592818677425, 0.01691894419491291, 0.01845703087747097, 0.03142089769244194, 0.03515625, 0.03955078125, 0.04680175706744194, 0.04658202826976776, 0.052734375, 0.05427245795726776, 0.05009765550494194, 0.04790038987994194, 0.04877929389476776, 0.04855956882238388, 0.03977050632238388, 0.04218749701976776, 0.03032226487994194, 0.02460937388241291, 0.01911620981991291, 0.01604003831744194, 0.01911620981991291, 0.01274413987994194, 0.003735351376235485, 0.001977538922801614, 0.0017578124534338713, -0.001538085867650807, -0.00439453125, -0.003735351376235485, 0.0024169920943677425, -0.0013183592818677425, 0.0035156249068677425, 0.0057128905318677425, 0.0008789062267169356, 0.005053710658103228, 0.003735351376235485, -0.0006591796409338713, -0.0008789062267169356, 0.0017578124534338713, 0.009448242373764515, 0.0032958984375, 0.007031249813735485, 0.003735351376235485, 0.003076171735301614, 0.0028564452659338713, -0.003955077845603228, 0.0032958984375, 0.00439453125, 0.001977538922801614, 0.006152343470603228, -0.0004394531133584678, 0.00439453125, -0.0008789062267169356, 0.007031249813735485, 0.0004394531133584678, 0.002197265625, 0.0046142577193677425, -0.0002197265566792339, 0.0028564452659338713, 0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, 0.001977538922801614, -0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0008789062267169356, 0.006152343470603228, 0.00637206993997097, 0.00527343712747097, -0.001538085867650807, 0.0035156249068677425, -0.0032958984375, 0.001538085867650807, 0.001538085867650807, 0.003735351376235485, 0.0013183592818677425, -0.0017578124534338713, 0.004833984188735485, -0.002636718563735485, 0.0006591796409338713, 0.0017578124534338713, 0.0, -0.0010986328125, 0.0006591796409338713, 0.0057128905318677425, 0.002197265625, 0.0024169920943677425, -0.0010986328125, 0.0035156249068677425, 0.0017578124534338713, 0.0, 0.0032958984375, -0.001538085867650807, 0.002197265625, 0.0010986328125, -0.0008789062267169356, 0.0028564452659338713, 0.005053710658103228, 0.0004394531133584678, 0.002636718563735485, -0.0013183592818677425, 0.001977538922801614, 0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, 0.00439453125, 0.005053710658103228, 0.0004394531133584678, 0.0024169920943677425, 0.003735351376235485, 0.0035156249068677425, 0.0, -0.003076171735301614, 0.0006591796409338713, -0.0057128905318677425, -0.008129882626235485, -0.01076660118997097, -0.014501952566206455, -0.02351074106991291, -0.02900390513241291, -0.024169921875, -0.02592773362994194, -0.032958984375, -0.03251953050494194, -0.03032226487994194, -0.02922363206744194, -0.01955566368997097, -0.014721679501235485, -0.01625976525247097, -0.00439453125, 0.003955077845603228, 0.013623046688735485, 0.0208740234375, 0.02768554538488388, 0.03361816331744194, 0.04482421651482582, 0.05690917745232582, 0.07009277492761612, 0.07932128757238388, 0.07932128757238388, 0.08701171725988388, 0.09404296427965164, 0.09843749552965164, 0.09624022990465164, 0.10239257663488388, 0.09733886271715164, 0.10261230170726776, 0.0955810546875, 0.08217773586511612, 0.08327636867761612, 0.06394042819738388, 0.05515136569738388, 0.03757324069738388, 0.0230712890625, 0.006152343470603228, -0.00966796837747097, -0.03120117075741291, -0.04768066108226776, -0.07009277492761612, -0.08547362685203552, -0.10283202677965164, -0.1142578125, -0.13007812201976776, -0.14326171576976776, -0.15007324516773224, -0.16413573920726776, -0.17182616889476776, -0.17094725370407104, -0.17006835341453552, -0.16435547173023224, -0.14919432997703552, -0.14370116591453552, -0.13381347060203552, -0.11557617038488388, -0.09799804538488388, -0.07009277492761612, -0.05339355394244194, -0.02548827975988388, -0.0028564452659338713, 0.02373046800494194, 0.0516357421875, 0.0736083984375, 0.09733886271715164, 0.12546385824680328, 0.14919432997703552, 0.16831053793430328, 0.19357909262180328, 0.20676268637180328, 0.22038573026657104, 0.22939452528953552, 0.24125975370407104, 0.24104003608226776, 0.23444823920726776, 0.22895507514476776, 0.21445311605930328, 0.19973143935203552, 0.17863768339157104, 0.16303710639476776, 0.13095702230930328, 0.10283202677965164, 0.0714111328125, 0.04548339545726776, 0.012524413876235485, -0.01625976525247097, -0.04987792670726776, -0.08305663615465164, -0.11623534560203552, -0.14699706435203552, -0.17622070014476776, -0.20170897245407104, -0.22609862685203552, -0.248291015625, -0.2724609375, -0.2858642637729645, -0.28959959745407104, -0.28630369901657104, -0.2801513671875, -0.2678466737270355, -0.2535644471645355, -0.23444823920726776, -0.2142333984375, -0.17929686605930328, -0.15556640923023224, -0.10942382365465164, -0.07976073771715164, -0.05075683444738388, -0.0098876953125, 0.03229980543255806, 0.07448730617761612, 0.11052245646715164, 0.14348144829273224, 0.17841796576976776, 0.2142333984375, 0.24960936605930328, 0.27421873807907104, 0.29487302899360657, 0.3144287168979645, 0.33793944120407104, 0.3372802734375, 0.34233397245407104, 0.327392578125, 0.3144287168979645, 0.30498045682907104, 0.27641600370407104, 0.25092771649360657, 0.21445311605930328, 0.1834716796875, 0.13974608480930328, 0.103271484375, 0.06108398362994194, 0.02351074106991291, -0.024169921875, -0.0604248046875, -0.09931640326976776, -0.1417236328125, -0.1878662109375, -0.22324217855930328, -0.25444334745407104, -0.29377439618110657, -0.3232177793979645, -0.3438720703125, -0.3634277284145355, -0.3766113221645355, -0.3766113221645355, -0.3678222596645355, -0.34541013836860657, -0.3210205137729645, -0.3041015565395355, -0.2594970762729645, -0.23093260824680328, -0.19094237685203552, -0.1505126953125, -0.10415038466453552, -0.0626220703125, -0.009448242373764515, 0.03427734225988388, 0.08437499403953552, 0.1263427734375, 0.17402343451976776, 0.21225585043430328, 0.2502685487270355, 0.2968505918979645, 0.32783201336860657, 0.35639646649360657, 0.3856201171875, 0.40385740995407104, 0.41352537274360657, 0.4075927734375, 0.404296875, 0.3755126893520355, 0.3572753667831421, 0.3205810487270355, 0.29487302899360657, 0.2551025450229645, 0.2120361328125, 0.17446288466453552, 0.120849609375, 0.07844237983226776, 0.03164062276482582, -0.01911620981991291, -0.07097167521715164, -0.11271972209215164, -0.1658935546875, -0.20808105170726776, -0.25004881620407104, -0.29267576336860657, -0.33442381024360657, -0.36408689618110657, -0.3854003846645355, -0.41264647245407104, -0.42121580243110657, -0.42692869901657104, -0.41352537274360657, -0.3952880799770355, -0.36848142743110657, -0.33837890625, -0.3008056581020355, -0.24982909858226776, -0.20830076932907104, -0.16237792372703552, -0.11030273139476776, -0.0714111328125, -0.01713867112994194, 0.0318603515625, 0.08327636867761612, 0.12788085639476776, 0.18193358182907104, 0.22456054389476776, 0.2700439393520355, 0.3175048828125, 0.35441893339157104, 0.3908935487270355, 0.4185791015625, 0.43681639432907104, 0.44648435711860657, 0.4396728277206421, 0.43110349774360657, 0.4130859375, 0.3875976502895355, 0.34672850370407104, 0.3043212890625, 0.263671875, 0.228515625, 0.18413084745407104, 0.13271483778953552, 0.07954101264476776, 0.02768554538488388, -0.01889648474752903, -0.07207030802965164, -0.11865234375, -0.16853027045726776, -0.21115721762180328, -0.261474609375, -0.3034423887729645, -0.33662107586860657, -0.37397459149360657, -0.4053955078125, -0.4339599609375, -0.43791502714157104, -0.4471435546875, -0.4295654296875, -0.41462400555610657, -0.3788085877895355, -0.34453123807907104, -0.3008056581020355, -0.2583984434604645, -0.213134765625, -0.16325683891773224, -0.11953124403953552, -0.06767577677965164, -0.01779785193502903, 0.03251953050494194, 0.0867919921875, 0.13491210341453552, 0.18808592855930328, 0.23708495497703552, 0.27729490399360657, 0.32014158368110657, 0.3590331971645355, 0.3924316167831421, 0.4205566346645355, 0.43549802899360657, 0.4462646245956421, 0.44648435711860657, 0.42692869901657104, 0.40363767743110657, 0.3790283203125, 0.3506835699081421, 0.30607908964157104, 0.2656494081020355, 0.21687011420726776, 0.17556151747703552, 0.13227538764476776, 0.07207030802965164, 0.03229980543255806, -0.0263671875, -0.07316894084215164, -0.11865234375, -0.1724853515625, -0.213134765625, -0.2524658143520355, -0.2979492247104645, -0.3396972417831421, -0.36628416180610657, -0.3902343511581421, -0.4198974370956421, -0.4308837652206421, -0.42780759930610657, -0.41594237089157104, -0.38825681805610657, -0.35771483182907104, -0.32673338055610657, -0.2913574278354645, -0.24169921875, -0.20017088949680328, -0.15798339247703552, -0.10239257663488388, -0.0648193359375, -0.013623046688735485, 0.03669433668255806, 0.08195800334215164, 0.13249512016773224, 0.18171386420726776, 0.22697752714157104, 0.26960447430610657, 0.2968505918979645, 0.33903807401657104, 0.36408689618110657, 0.38188475370407104, 0.40803220868110657, 0.41044920682907104, 0.4097900390625, 0.39374998211860657, 0.37419432401657104, 0.34541013836860657, 0.3161865174770355, 0.27290037274360657, 0.239501953125, 0.19599609076976776, 0.158203125, 0.10744628310203552, 0.06877440959215164, 0.01823730394244194, -0.02329101413488388, -0.06943359225988388, -0.11162108927965164, -0.15073241293430328, -0.19841307401657104, -0.23444823920726776, -0.26850584149360657, -0.3023437559604645, -0.3240966796875, -0.3502441346645355, -0.3579345643520355, -0.3612304627895355, -0.3636474609375, -0.3506835699081421, -0.33024901151657104, -0.30322265625, -0.27641600370407104, -0.248291015625, -0.20456542074680328, -0.1746826171875, -0.12656249105930328, -0.08701171725988388, -0.04592284932732582, -0.0068115233443677425, 0.03471679612994194, 0.07866210490465164, 0.12238769233226776, 0.15996094048023224, 0.19270019233226776, 0.221923828125, 0.2524658143520355, 0.2814697325229645, 0.2935546934604645, 0.3166259825229645, 0.3194824159145355, 0.3306884765625, 0.32145994901657104, 0.30805662274360657, 0.29377439618110657, 0.27202147245407104, 0.2507080137729645, 0.21335448324680328, 0.1878662109375, 0.1494140625, 0.11359862983226776, 0.07844237983226776, 0.04877929389476776, 0.010107421316206455, -0.02768554538488388, -0.059326171875, -0.09470214694738388, -0.12282714247703552, -0.15688475966453552, -0.18632811307907104, -0.20126952230930328, -0.22785644233226776, -0.2471923828125, -0.2583984434604645, -0.2603759765625, -0.26520994305610657, -0.2559814453125, -0.24675291776657104, -0.230712890625, -0.21401366591453552, -0.19599609076976776, -0.17380370199680328, -0.14458008110523224, -0.11953124403953552, -0.08657225966453552, -0.0582275390625, -0.03098144382238388, 0.0032958984375, 0.02680663950741291, 0.06020507588982582, 0.08041992038488388, 0.11359862983226776, 0.1318359375, 0.14787597954273224, 0.17116698622703552, 0.1812744140625, 0.19775390625, 0.20808105170726776, 0.20390623807907104, 0.20148925483226776, 0.20654296875, 0.19291990995407104, 0.18654784560203552, 0.16347655653953552, 0.15402831137180328, 0.12788085639476776, 0.11162108927965164, 0.09536132216453552, 0.0692138671875, 0.04987792670726776, 0.0296630859375, 0.003735351376235485, -0.01516113243997097, -0.03911132737994194, -0.05185546725988388, -0.06943359225988388, -0.08371581882238388, -0.10063476115465164, -0.10744628310203552, -0.12019042670726776, -0.12150878459215164, -0.12810058891773224, -0.12458495795726776, -0.12744140625, -0.12612304091453552, -0.11887206882238388, -0.10612792521715164, -0.0966796875, -0.08854980021715164, -0.07734374701976776, -0.06284179538488388, -0.05251464620232582, -0.04196777194738388, -0.0263671875, -0.01186523400247097, 0.003955077845603228, 0.013623046688735485, 0.02109374850988388, 0.03054199181497097, 0.0439453125, 0.04702148213982582, 0.05537109076976776, 0.05515136569738388, 0.05800781026482582, 0.06328124552965164, 0.06350097805261612, 0.05800781026482582, 0.05581054463982582, 0.05471191182732582, 0.05251464620232582, 0.04262695088982582, 0.03449707105755806, 0.03208007663488388, 0.02482910081744194, 0.01604003831744194, 0.01186523400247097, 0.011206054128706455, 0.01054687425494194, -0.001538085867650807, 0.003735351376235485, -0.006152343470603228, -0.00439453125, -0.0024169920943677425, -0.0017578124534338713, 0.00527343712747097, 0.0057128905318677425, 0.007250976283103228, -0.0002197265566792339, 0.0008789062267169356, 0.00747070275247097, 0.003076171735301614, 0.0035156249068677425, 0.0057128905318677425, -0.0010986328125, -0.0004394531133584678, 0.003076171735301614, 0.0032958984375, 0.0046142577193677425, 0.0041748047806322575, 0.0054931640625, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, 0.006152343470603228, -0.0006591796409338713, 0.007031249813735485, 0.004833984188735485, -0.0004394531133584678, 0.0024169920943677425, -0.0013183592818677425, 0.0041748047806322575, 0.003076171735301614, 0.00439453125, 0.0006591796409338713, 0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.1 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00637206993997097, 0.007250976283103228, -0.0004394531133584678, 0.0002197265566792339, 0.0008789062267169356, 0.0046142577193677425, 0.007031249813735485, 0.0013183592818677425, 0.0054931640625, -0.0008789062267169356, 0.00439453125, -0.003955077845603228, 0.00439453125, 0.0035156249068677425, 0.0008789062267169356, 0.0041748047806322575, 0.003735351376235485, 0.003076171735301614, 0.0035156249068677425, 0.002636718563735485, 0.0002197265566792339, 0.0046142577193677425, 0.0028564452659338713, -0.0004394531133584678, 0.00637206993997097, -0.001538085867650807, 0.003735351376235485, 0.002636718563735485, 0.003735351376235485, 0.0028564452659338713, 0.004833984188735485, 0.003735351376235485, -0.0017578124534338713, 0.005932617001235485, 0.005053710658103228, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, 0.002197265625, 0.0006591796409338713, -0.001977538922801614, 0.002636718563735485, -0.003076171735301614, -0.0032958984375, -0.001538085867650807, 0.0057128905318677425, 0.00527343712747097, -0.003076171735301614, 0.0004394531133584678, -0.01186523400247097, -0.01164550706744194, -0.01911620981991291, -0.02197265625, -0.02373046800494194, -0.0252685546875, -0.02351074106991291, -0.03142089769244194, -0.02812499925494194, -0.02878417819738388, -0.02922363206744194, -0.02900390513241291, -0.02438964694738388, -0.01801757700741291, -0.013623046688735485, -0.010107421316206455, -0.002197265625, 0.007031249813735485, 0.0164794921875, 0.03251953050494194, 0.037353515625, 0.05185546725988388, 0.05998535081744194, 0.07514648139476776, 0.07954101264476776, 0.08701171725988388, 0.10019531100988388, 0.10854491591453552, 0.1142578125, 0.11733397841453552, 0.11579589545726776, 0.11623534560203552, 0.11052245646715164, 0.09821777045726776, 0.09580077975988388, 0.08942870795726776, 0.07163085788488388, 0.06196288764476776, 0.03977050632238388, 0.0230712890625, 0.001538085867650807, -0.015380859375, -0.03669433668255806, -0.05097655951976776, -0.07163085788488388, -0.09074706584215164, -0.10744628310203552, -0.134033203125, -0.1483154296875, -0.15996094048023224, -0.16765137016773224, -0.18017578125, -0.18061523139476776, -0.19028319418430328, -0.18720702826976776, -0.18369139730930328, -0.1768798828125, -0.16325683891773224, -0.140625, -0.12458495795726776, -0.10480956733226776, -0.08481445163488388, -0.05515136569738388, -0.028564453125, -0.005053710658103228, 0.02680663950741291, 0.05624999850988388, 0.07778320461511612, 0.1131591796875, 0.13776855170726776, 0.16765137016773224, 0.19072264432907104, 0.21467284858226776, 0.22763670980930328, 0.2449951171875, 0.2583984434604645, 0.26652830839157104, 0.2649902403354645, 0.2623535096645355, 0.2513671815395355, 0.24125975370407104, 0.2164306640625, 0.19775390625, 0.17336425185203552, 0.147216796875, 0.11184081435203552, 0.08305663615465164, 0.0472412109375, 0.01625976525247097, -0.01933593675494194, -0.05515136569738388, -0.08854980021715164, -0.12941893935203552, -0.15974120795726776, -0.19467772543430328, -0.22280272841453552, -0.2471923828125, -0.2781738340854645, -0.29377439618110657, -0.3073974549770355, -0.32255858182907104, -0.31376951932907104, -0.3078369200229645, -0.30278319120407104, -0.2832275331020355, -0.25532224774360657, -0.23422850668430328, -0.19929198920726776, -0.16545410454273224, -0.13381347060203552, -0.08833007514476776, -0.05251464620232582, -0.01054687425494194, 0.03054199181497097, 0.06679687649011612, 0.11469726264476776, 0.15402831137180328, 0.19291990995407104, 0.23422850668430328, 0.2601562440395355, 0.3008056581020355, 0.33134764432907104, 0.3526611328125, 0.35991209745407104, 0.37968748807907104, 0.3770507574081421, 0.3700195252895355, 0.3482666015625, 0.3309082090854645, 0.3008056581020355, 0.2693847715854645, 0.23686522245407104, 0.19753417372703552, 0.15842284262180328, 0.1153564453125, 0.06657714396715164, 0.02460937388241291, -0.01933593675494194, -0.063720703125, -0.10920409858226776, -0.15578612685203552, -0.19687499105930328, -0.2362060546875, -0.27839353680610657, -0.3128906190395355, -0.3438720703125, -0.3759521245956421, -0.39111328125, -0.4095703065395355, -0.4119873046875, -0.39924314618110657, -0.3880370855331421, -0.3592529296875, -0.3210205137729645, -0.2876220643520355, -0.24697265028953552, -0.20368652045726776, -0.15776367485523224, -0.11491698771715164, -0.06679687649011612, -0.0230712890625, 0.02900390513241291, 0.07624511420726776, 0.12678222358226776, 0.17490233480930328, 0.22499999403953552, 0.27641600370407104, 0.31926268339157104, 0.3504638671875, 0.38232421875, 0.41572263836860657, 0.44099119305610657, 0.4471435546875, 0.44780272245407104, 0.44121092557907104, 0.4155029058456421, 0.38957518339157104, 0.3513427674770355, 0.32124021649360657, 0.2770752012729645, 0.22719725966453552, 0.18149413168430328, 0.1329345703125, 0.08767089247703552, 0.03757324069738388, -0.01296386681497097, -0.068115234375, -0.1153564453125, -0.16193847358226776, -0.21445311605930328, -0.2656494081020355, -0.3019042909145355, -0.349365234375, -0.38847655057907104, -0.42231443524360657, -0.4418700933456421, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.4341796636581421, -0.3966064453125, -0.3603515625, -0.32585448026657104, -0.27729490399360657, -0.23247069120407104, -0.18149413168430328, -0.13161620497703552, -0.07822265475988388, -0.02724609337747097, 0.0340576171875, 0.08833007514476776, 0.13776855170726776, 0.19687499105930328, 0.24323730170726776, 0.2909179627895355, 0.3337646424770355, 0.38188475370407104, 0.4100097417831421, 0.44780272245407104, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.42011716961860657, 0.3722167909145355, 0.3337646424770355, 0.2931152284145355, 0.24104003608226776, 0.19643554091453552, 0.140625, 0.08876952528953552, 0.0340576171875, -0.02175292931497097, -0.07492675632238388, -0.1219482421875, -0.173583984375, -0.22170409560203552, -0.27729490399360657, -0.3197021484375, -0.3594726324081421, -0.40275877714157104, -0.4352782964706421, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44890135526657104, -0.41242673993110657, -0.3766113221645355, -0.3298095762729645, -0.27641600370407104, -0.23708495497703552, -0.1790771484375, -0.12875975668430328, -0.07185058295726776, -0.01713867112994194, 0.03229980543255806, 0.08723144233226776, 0.134033203125, 0.19467772543430328, 0.23994140326976776, 0.28959959745407104, 0.34013670682907104, 0.3825439214706421, 0.4194580018520355, 0.44230955839157104, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.4427490234375, 0.41374510526657104, 0.3726562261581421, 0.33684080839157104, 0.28190916776657104, 0.23554687201976776, 0.186767578125, 0.1439208984375, 0.08986815810203552, 0.03867187350988388, -0.014501952566206455, -0.07448730617761612, -0.1197509765625, -0.17995604872703552, -0.23005370795726776, -0.26806640625, -0.3131103515625, -0.3539794683456421, -0.3944091796875, -0.4227539002895355, -0.44780272245407104, -0.44999998807907104, -0.44999998807907104, -0.44450682401657104, -0.4275878667831421, -0.3996826112270355, -0.35441893339157104, -0.31486815214157104, -0.2700439393520355, -0.21884764730930328, -0.16940917074680328, -0.11843261122703552, -0.06196288764476776, -0.0186767578125, 0.04592284932732582, 0.08525390177965164, 0.1417236328125, 0.1922607421875, 0.24125975370407104, 0.28125, 0.32563474774360657, 0.3616698980331421, 0.3930908143520355, 0.4150634706020355, 0.44340819120407104, 0.4425292909145355, 0.44208982586860657, 0.428466796875, 0.4097900390625, 0.3748534917831421, 0.3364013731479645, 0.3041015565395355, 0.25861814618110657, 0.21401366591453552, 0.17424315214157104, 0.11865234375, 0.068115234375, 0.01801757700741291, -0.02812499925494194, -0.07272949069738388, -0.12546385824680328, -0.16457518935203552, -0.21621093153953552, -0.25048828125, -0.28959959745407104, -0.32365721464157104, -0.3513427674770355, -0.3737548589706421, -0.39814451336860657, -0.4007812440395355, -0.4023193120956421, -0.3902343511581421, -0.36848142743110657, -0.33442381024360657, -0.3100341856479645, -0.2649902403354645, -0.23093260824680328, -0.18281249701976776, -0.14501953125, -0.0999755859375, -0.04899902269244194, -0.004833984188735485, 0.04240722581744194, 0.08107910305261612, 0.1318359375, 0.17600096762180328, 0.20939940214157104, 0.24345701932907104, 0.27531737089157104, 0.3106933534145355, 0.33442381024360657, 0.3414550721645355, 0.3570556640625, 0.3579345643520355, 0.3612304627895355, 0.35002440214157104, 0.32695311307907104, 0.2955322265625, 0.27202147245407104, 0.24169921875, 0.20742186903953552, 0.16677245497703552, 0.12766112387180328, 0.08723144233226776, 0.05075683444738388, 0.01274413987994194, -0.0274658203125, -0.068115234375, -0.10261230170726776, -0.13688965141773224, -0.17226561903953552, -0.20456542074680328, -0.22917479276657104, -0.25312498211860657, -0.2682861387729645, -0.2876220643520355, -0.3012451231479645, -0.2953124940395355, -0.28740233182907104, -0.28190916776657104, -0.26411131024360657, -0.24631346762180328, -0.2197265625, -0.18742674589157104, -0.16523437201976776, -0.1307373046875, -0.10041503608226776, -0.06086425483226776, -0.0274658203125, -0.0002197265566792339, 0.03911132737994194, 0.06745605170726776, 0.09909667819738388, 0.12810058891773224, 0.14655761420726776, 0.17204588651657104, 0.19423827528953552, 0.21071776747703552, 0.2186279296875, 0.22390136122703552, 0.23488768935203552, 0.22609862685203552, 0.2230224609375, 0.21555174887180328, 0.19511717557907104, 0.18281249701976776, 0.16874998807907104, 0.14348144829273224, 0.123046875, 0.10151366889476776, 0.0758056640625, 0.05141601338982582, 0.02570800669491291, 0.0008789062267169356, -0.02263183519244194, -0.04658202826976776, -0.063720703125, -0.0823974609375, -0.09909667819738388, -0.10832519084215164, -0.12348632514476776, -0.13315428793430328, -0.14479979872703552, -0.14589843153953552, -0.14479979872703552, -0.14853514730930328, -0.14150390028953552, -0.13249512016773224, -0.11601562052965164, -0.11118163913488388, -0.09865722060203552, -0.08041992038488388, -0.0670166015625, -0.05888671800494194, -0.04306640475988388, -0.0263671875, -0.011206054128706455, -0.002197265625, 0.01845703087747097, 0.02373046800494194, 0.0406494140625, 0.04570312425494194, 0.05119628831744194, 0.06416015326976776, 0.06569824367761612, 0.06745605170726776, 0.07119140774011612, 0.06525878608226776, 0.06196288764476776, 0.05734863132238388, 0.05800781026482582, 0.04768066108226776, 0.04328612983226776, 0.04020996019244194, 0.03537597507238388, 0.0318603515625, 0.02197265625, 0.01999511756002903, 0.010327148251235485, 0.0068115233443677425, 0.001977538922801614, -0.005053710658103228, 0.0013183592818677425, -0.002197265625, 0.0, 0.0035156249068677425, 0.0017578124534338713, 0.003955077845603228, -0.0024169920943677425, 0.007250976283103228, -0.0004394531133584678, 0.00527343712747097, 0.008349609561264515, 0.0024169920943677425, 0.008349609561264515, 0.0028564452659338713, 0.008129882626235485, -0.0006591796409338713, 0.0024169920943677425, 0.001538085867650807, 0.0076904296875, 0.007910155691206455, 0.007250976283103228, 0.008129882626235485, 0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, 0.0087890625, 0.006591796875, 0.004833984188735485, -0.0008789062267169356, 0.00439453125, 0.005053710658103228, -0.0017578124534338713, -0.001977538922801614, 0.0057128905318677425, 0.0024169920943677425, 0.0006591796409338713, -0.00439453125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.001538085867650807, -0.0008789062267169356, 0.007910155691206455, 0.0008789062267169356, 0.0004394531133584678, 0.0, 0.003076171735301614, -0.003076171735301614, -0.0006591796409338713, 0.0008789062267169356, 0.003076171735301614, 0.004833984188735485, -0.0006591796409338713, 0.00527343712747097, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, 0.00527343712747097, 0.0010986328125, 0.001538085867650807, -0.003076171735301614, 0.002636718563735485, 0.002636718563735485, 0.0004394531133584678, -0.0008789062267169356, 0.001538085867650807, 0.00439453125, 0.006591796875, 0.001977538922801614, -0.002197265625, 0.0024169920943677425, -0.0006591796409338713, 0.005932617001235485, 0.0008789062267169356, 0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, 0.0035156249068677425, 0.003735351376235485, 0.00527343712747097, 0.005932617001235485, 0.0028564452659338713, 0.005932617001235485, 0.0010986328125, 0.003076171735301614, 0.006591796875, 0.005053710658103228, 0.0010986328125, 0.002636718563735485, -0.0006591796409338713, -0.003735351376235485, -0.005932617001235485, 0.0035156249068677425, 0.0, -0.003735351376235485, 0.0017578124534338713, -0.001538085867650807, 0.0010986328125, -0.0028564452659338713, 0.007031249813735485, 0.0006591796409338713, 0.0028564452659338713, 0.0076904296875, 0.01076660118997097, 0.011425781063735485, 0.0041748047806322575, 0.01296386681497097, 0.008129882626235485, 0.011425781063735485, 0.006591796875, 0.00637206993997097, 0.004833984188735485, 0.005053710658103228, 0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.0024169920943677425, -0.0087890625, -0.0017578124534338713, -0.01186523400247097, -0.00966796837747097, -0.00637206993997097, -0.01604003831744194, -0.00966796837747097, -0.014721679501235485, -0.004833984188735485, -0.00439453125, -0.00856933556497097, -0.001977538922801614, -0.0041748047806322575, 0.00439453125, 0.007250976283103228, 0.0098876953125, 0.00747070275247097, 0.01164550706744194, 0.0208740234375, 0.01823730394244194, 0.02021484263241291, 0.01779785193502903, 0.014501952566206455, 0.01823730394244194, 0.01933593675494194, 0.01274413987994194, 0.014501952566206455, 0.010107421316206455, 0.005053710658103228, -0.0028564452659338713, -0.0054931640625, -0.0032958984375, -0.01186523400247097, -0.01494140550494194, -0.015380859375, -0.01406249962747097, -0.01955566368997097, -0.02109374850988388, -0.02285156212747097, -0.01669921912252903, -0.02175292931497097, -0.01889648474752903, -0.012304686941206455, -0.006591796875, -0.0046142577193677425, 0.0006591796409338713, 0.012524413876235485, 0.0076904296875, 0.012524413876235485, 0.0263671875, 0.02702636644244194, 0.03032226487994194, 0.03054199181497097, 0.03208007663488388, 0.02702636644244194, 0.02438964694738388, 0.02570800669491291, 0.01999511756002903, 0.013623046688735485, 0.010986328125, 0.0028564452659338713, 0.0002197265566792339, -0.007250976283103228, -0.01274413987994194, -0.01186523400247097, -0.02175292931497097, -0.02504882775247097, -0.03076171875, -0.0318603515625, -0.03208007663488388, -0.03449707105755806, -0.02768554538488388, -0.03054199181497097, -0.01845703087747097, -0.01318359375, -0.01076660118997097, 0.0017578124534338713, 0.0076904296875, 0.01076660118997097, 0.01516113243997097, 0.02219238132238388, 0.0296630859375, 0.03779296949505806, 0.03757324069738388, 0.03581542894244194, 0.03691406175494194, 0.04262695088982582, 0.03757324069738388, 0.03120117075741291, 0.03054199181497097, 0.02065429650247097, 0.015600585378706455, 0.00747070275247097, 0.001977538922801614, -0.007910155691206455, -0.01582031138241291, -0.02438964694738388, -0.02680663950741291, -0.02922363206744194, -0.03339843824505806, -0.03713378682732582, -0.04086913913488388, -0.03691406175494194, -0.03361816331744194, -0.03076171875, -0.0230712890625, -0.02153320237994194, -0.01735839806497097, -0.011206054128706455, 0.0032958984375, 0.012304686941206455, 0.02153320237994194, 0.02988281100988388, 0.03317870944738388, 0.04482421651482582, 0.04592284932732582, 0.04658202826976776, 0.04855956882238388, 0.04833984375, 0.03977050632238388, 0.04262695088982582, 0.03801269456744194, 0.02395019493997097, 0.01911620981991291, 0.01406249962747097, 0.0013183592818677425, -0.008349609561264515, -0.01801757700741291, -0.02351074106991291, -0.03383788838982582, -0.04416503757238388, -0.04548339545726776, -0.04658202826976776, -0.04372558370232582, -0.04921874776482582, -0.04130859300494194, -0.03977050632238388, -0.028564453125, -0.02944335900247097, -0.014721679501235485, -0.002197265625, 0.00637206993997097, 0.009008788503706455, 0.02131347544491291, 0.03339843824505806, 0.04196777194738388, 0.0384521484375, 0.04855956882238388, 0.04636230319738388, 0.05427245795726776, 0.05185546725988388, 0.0450439453125, 0.03867187350988388, 0.03559570387005806, 0.03339843824505806, 0.02329101413488388, 0.0120849609375, -0.0002197265566792339, -0.011425781063735485, -0.01801757700741291, -0.02944335900247097, -0.03713378682732582, -0.04438476264476776, -0.04328612983226776, -0.04658202826976776, -0.04658202826976776, -0.052734375, -0.04658202826976776, -0.04152831807732582, -0.03515625, -0.02460937388241291, -0.0164794921875, -0.0098876953125, 0.0028564452659338713, 0.01713867112994194, 0.02702636644244194, 0.03449707105755806, 0.04240722581744194, 0.04921874776482582, 0.054931640625, 0.0538330078125, 0.05229492112994194, 0.05866698920726776, 0.05295410007238388, 0.0450439453125, 0.04372558370232582, 0.03273925557732582, 0.02043456956744194, 0.00856933556497097, -0.003735351376235485, -0.007910155691206455, -0.0208740234375, -0.03339843824505806, -0.03449707105755806, -0.04702148213982582, -0.04746093600988388, -0.05141601338982582, -0.05471191182732582, -0.05427245795726776, -0.05141601338982582, -0.04592284932732582, -0.03076171875, -0.0263671875, -0.01384277269244194, -0.0054931640625, 0.0032958984375, 0.010986328125, 0.0274658203125, 0.03361816331744194, 0.04680175706744194, 0.05097655951976776, 0.0516357421875, 0.05229492112994194, 0.0615234375, 0.05888671800494194, 0.05515136569738388, 0.04570312425494194, 0.04372558370232582, 0.02922363206744194, 0.02109374850988388, 0.008349609561264515, 0.0013183592818677425, -0.009228515438735485, -0.01933593675494194, -0.02944335900247097, -0.03559570387005806, -0.04262695088982582, -0.05075683444738388, -0.05361327901482582, -0.05339355394244194, -0.05207519233226776, -0.05559081956744194, -0.04416503757238388, -0.03515625, -0.02702636644244194, -0.01164550706744194, -0.0068115233443677425, 0.001538085867650807, 0.010986328125, 0.02263183519244194, 0.03164062276482582, 0.03955078125, 0.04877929389476776, 0.05009765550494194, 0.05339355394244194, 0.05251464620232582, 0.04833984375, 0.046142578125, 0.04790038987994194, 0.041748046875, 0.03515625, 0.0230712890625, 0.0098876953125, 0.0032958984375, -0.005053710658103228, -0.02153320237994194, -0.03317870944738388, -0.03933105245232582, -0.04328612983226776, -0.0439453125, -0.04790038987994194, -0.05185546725988388, -0.05405273288488388, -0.04636230319738388, -0.04460449144244194, -0.0296630859375, -0.02351074106991291, -0.01955566368997097, -0.005932617001235485, 0.0054931640625, 0.014501952566206455, 0.02438964694738388, 0.028564453125, 0.0428466796875, 0.046142578125, 0.05031738057732582, 0.0538330078125, 0.04855956882238388, 0.05537109076976776, 0.04702148213982582, 0.04548339545726776, 0.03361816331744194, 0.02944335900247097, 0.02021484263241291, 0.015380859375, 0.00637206993997097, -0.007031249813735485, -0.01823730394244194, -0.02900390513241291, -0.03383788838982582, -0.037353515625, -0.03999023512005806, -0.04746093600988388, -0.05009765550494194, -0.04438476264476776, -0.04438476264476776, -0.03229980543255806, -0.02900390513241291, -0.02021484263241291, -0.011206054128706455, -0.008129882626235485, 0.001538085867650807, 0.006591796875, 0.01999511756002903, 0.02834472618997097, 0.02878417819738388, 0.04306640475988388, 0.041748046875, 0.04526367038488388, 0.04460449144244194, 0.04416503757238388, 0.0450439453125, 0.03867187350988388, 0.03032226487994194, 0.01911620981991291, 0.015380859375, 0.0098876953125, -0.0002197265566792339, -0.011206054128706455, -0.02043456956744194, -0.02614746056497097, -0.02790527231991291, -0.03867187350988388, -0.03779296949505806, -0.03493652120232582, -0.03691406175494194, -0.03273925557732582, -0.03691406175494194, -0.02878417819738388, -0.0263671875, -0.019775390625, -0.01318359375, -0.0035156249068677425, 0.001977538922801614, 0.007910155691206455, 0.02219238132238388, 0.02241210825741291, 0.03164062276482582, 0.02878417819738388, 0.03867187350988388, 0.04020996019244194, 0.03581542894244194, 0.03164062276482582, 0.03339843824505806, 0.03361816331744194, 0.02175292931497097, 0.02351074106991291, 0.013623046688735485, 0.00439453125, 0.0002197265566792339, -0.010107421316206455, -0.00966796837747097, -0.01406249962747097, -0.02482910081744194, -0.02395019493997097, -0.028564453125, -0.02658691257238388, -0.02834472618997097, -0.02395019493997097, -0.02548827975988388, -0.02812499925494194, -0.013623046688735485, -0.01735839806497097, -0.011425781063735485, -0.003735351376235485, 0.0032958984375, 0.007910155691206455, 0.00856933556497097, 0.02285156212747097, 0.01999511756002903, 0.02658691257238388, 0.0274658203125, 0.02768554538488388, 0.02900390513241291, 0.02329101413488388, 0.0296630859375, 0.02131347544491291, 0.02131347544491291, 0.0142822265625, 0.015600585378706455, 0.00527343712747097, -0.001977538922801614, -0.0035156249068677425, -0.0087890625, -0.013403319753706455, -0.011206054128706455, -0.01823730394244194, -0.02263183519244194, -0.0186767578125, -0.02219238132238388, -0.02109374850988388, -0.01999511756002903, -0.01933593675494194, -0.01779785193502903, -0.01164550706744194, -0.0010986328125, 0.0, 0.006152343470603228, 0.00966796837747097, 0.00856933556497097, 0.010327148251235485, 0.01604003831744194, 0.01801757700741291, 0.02219238132238388, 0.02043456956744194, 0.01691894419491291, 0.01955566368997097, 0.01713867112994194, 0.01845703087747097, 0.006152343470603228, 0.010986328125, 0.0087890625, 0.001538085867650807, 0.007910155691206455, 0.003076171735301614, -0.003076171735301614, -0.00856933556497097, -0.0013183592818677425, -0.009008788503706455, -0.006591796875, -0.00966796837747097, -0.0041748047806322575, -0.010107421316206455, -0.008129882626235485, -0.00966796837747097, -0.007250976283103228, -0.0035156249068677425, -0.0054931640625, 0.002636718563735485, 0.00637206993997097, 0.0068115233443677425, 0.004833984188735485, 0.0041748047806322575, 0.010327148251235485, 0.001538085867650807, 0.0017578124534338713, 0.010986328125, 0.0041748047806322575, 0.007250976283103228, 0.009448242373764515, 0.009228515438735485, 0.00439453125, 0.001538085867650807, 0.002197265625, 0.004833984188735485, -0.001538085867650807, 0.003735351376235485, 0.0057128905318677425, 0.00439453125, -0.0008789062267169356, 0.00439453125, 0.005053710658103228, -0.0008789062267169356, 0.002197265625, 0.0032958984375, 0.001977538922801614, 0.003955077845603228, -0.0010986328125, 0.0032958984375, 0.005932617001235485, -0.001977538922801614, -0.0024169920943677425, 0.005932617001235485, 0.0076904296875, -0.0008789062267169356, -0.0032958984375, 0.002636718563735485, -0.0010986328125, 0.0, -0.001977538922801614, 0.0041748047806322575, 0.003076171735301614, -0.0024169920943677425, 0.006152343470603228, 0.0028564452659338713, 0.0028564452659338713, -0.0013183592818677425, 0.0004394531133584678, -0.002197265625, -0.002636718563735485, 0.001977538922801614, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003955077845603228, 0.002197265625, 0.0006591796409338713, 0.0004394531133584678, -0.0035156249068677425, 0.0008789062267169356, 0.0024169920943677425, 0.0008789062267169356, 0.0017578124534338713, 0.0054931640625, 0.0004394531133584678, 0.0013183592818677425, 0.003735351376235485, -0.0013183592818677425, -0.0006591796409338713, -0.0041748047806322575, 0.001977538922801614, 0.0035156249068677425, -0.0028564452659338713, 0.0046142577193677425, 0.002197265625, 0.005053710658103228, 0.002197265625, 0.003076171735301614, 0.004833984188735485, -0.0013183592818677425, 0.00527343712747097, 0.006152343470603228, 0.004833984188735485, -0.0013183592818677425, 0.00637206993997097, 0.003735351376235485, 0.0032958984375, 0.0, 0.00637206993997097, 0.0002197265566792339, 0.0041748047806322575, 0.003076171735301614, 0.002197265625, 0.0054931640625, 0.004833984188735485, 0.0006591796409338713, 0.0010986328125, 0.0035156249068677425, 0.00637206993997097, 0.003955077845603228, -0.0006591796409338713, 0.0054931640625, 0.0008789062267169356, 0.0057128905318677425, -0.003076171735301614, -0.0054931640625, -0.00527343712747097, 0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.003955077845603228, -0.0032958984375, 0.0024169920943677425, 0.0008789062267169356, 0.006152343470603228, 0.007910155691206455, 0.0054931640625, 0.015380859375, 0.013623046688735485, 0.00966796837747097, 0.0142822265625, 0.01186523400247097, 0.014721679501235485, 0.011425781063735485, 0.01186523400247097, 0.010986328125, 0.01406249962747097, 0.01406249962747097, 0.005932617001235485, 0.0041748047806322575, -0.002197265625, -0.0057128905318677425, -0.014721679501235485, -0.01296386681497097, -0.01713867112994194, -0.02329101413488388, -0.02834472618997097, -0.02504882775247097, -0.02900390513241291, -0.019775390625, -0.0230712890625, -0.01801757700741291, -0.0142822265625, -0.01054687425494194, -0.00439453125, 0.0010986328125, 0.01296386681497097, 0.01955566368997097, 0.01889648474752903, 0.02702636644244194, 0.03273925557732582, 0.03537597507238388, 0.03120117075741291, 0.03779296949505806, 0.03427734225988388, 0.03933105245232582, 0.0362548828125, 0.03142089769244194, 0.01889648474752903, 0.02065429650247097, 0.009228515438735485, 0.006152343470603228, -0.0068115233443677425, -0.01911620981991291, -0.02614746056497097, -0.0296630859375, -0.03493652120232582, -0.0362548828125, -0.0472412109375, -0.05031738057732582, -0.04877929389476776, -0.03999023512005806, -0.04086913913488388, -0.0318603515625, -0.02834472618997097, -0.01823730394244194, -0.00439453125, 0.001538085867650807, 0.013403319753706455, 0.0252685546875, 0.02944335900247097, 0.0450439453125, 0.04790038987994194, 0.0516357421875, 0.05559081956744194, 0.06020507588982582, 0.05251464620232582, 0.05361327901482582, 0.05229492112994194, 0.0384521484375, 0.03647460788488388, 0.01999511756002903, 0.013403319753706455, -0.003076171735301614, -0.01076660118997097, -0.01999511756002903, -0.03142089769244194, -0.0428466796875, -0.05515136569738388, -0.05778808519244194, -0.06064452975988388, -0.068115234375, -0.059326171875, -0.0604248046875, -0.05075683444738388, -0.050537109375, -0.0384521484375, -0.0263671875, -0.00966796837747097, 0.002636718563735485, 0.013623046688735485, 0.03647460788488388, 0.04790038987994194, 0.05581054463982582, 0.06635741889476776, 0.07404784858226776, 0.07404784858226776, 0.07734374701976776, 0.07229004055261612, 0.0758056640625, 0.06591796875, 0.05405273288488388, 0.0450439453125, 0.02988281100988388, 0.01955566368997097, 0.003076171735301614, -0.012524413876235485, -0.0318603515625, -0.04526367038488388, -0.05185546725988388, -0.06416015326976776, -0.07602538913488388, -0.08283691108226776, -0.07976073771715164, -0.07756347209215164, -0.07734374701976776, -0.07053222507238388, -0.05427245795726776, -0.04658202826976776, -0.02900390513241291, -0.01274413987994194, 0.0068115233443677425, 0.019775390625, 0.04196777194738388, 0.04812011495232582, 0.06394042819738388, 0.07536620646715164, 0.08854980021715164, 0.08833007514476776, 0.094482421875, 0.09733886271715164, 0.08723144233226776, 0.07382812350988388, 0.06877440959215164, 0.052734375, 0.03208007663488388, 0.0186767578125, 0.0008789062267169356, -0.02197265625, -0.0362548828125, -0.05581054463982582, -0.06679687649011612, -0.07668457180261612, -0.08305663615465164, -0.08876952528953552, -0.098876953125, -0.08920898288488388, -0.08876952528953552, -0.08107910305261612, -0.06591796875, -0.04833984375, -0.03801269456744194, -0.0120849609375, 0.009008788503706455, 0.02219238132238388, 0.03757324069738388, 0.06086425483226776, 0.07536620646715164, 0.08986815810203552, 0.09074706584215164, 0.10239257663488388, 0.1043701171875, 0.1043701171875, 0.0999755859375, 0.08635253459215164, 0.07119140774011612, 0.05646972358226776, 0.03779296949505806, 0.0186767578125, -0.003955077845603228, -0.02263183519244194, -0.03493652120232582, -0.05119628831744194, -0.0736083984375, -0.08723144233226776, -0.09074706584215164, -0.09931640326976776, -0.10239257663488388, -0.10480956733226776, -0.08876952528953552, -0.08195800334215164, -0.07470703125, -0.05295410007238388, -0.03098144382238388, -0.01999511756002903, 0.0006591796409338713, 0.02922363206744194, 0.04416503757238388, 0.06503906100988388, 0.07492675632238388, 0.08811035007238388, 0.098876953125, 0.10634765028953552, 0.1087646484375, 0.10151366889476776, 0.10480956733226776, 0.08876952528953552, 0.07514648139476776, 0.06108398362994194, 0.0439453125, 0.02460937388241291, -0.0008789062267169356, -0.02109374850988388, -0.03515625, -0.05998535081744194, -0.07404784858226776, -0.09140624850988388, -0.09799804538488388, -0.10107421875, -0.10964354872703552, -0.10393065959215164, -0.10261230170726776, -0.08393554389476776, -0.07646483927965164, -0.06130370870232582, -0.03823241963982582, -0.01735839806497097, 0.0057128905318677425, 0.02395019493997097, 0.04790038987994194, 0.06218261644244194, 0.0791015625, 0.09733886271715164, 0.10678710788488388, 0.11381835490465164, 0.10986328125, 0.11184081435203552, 0.10612792521715164, 0.09536132216453552, 0.07602538913488388, 0.05537109076976776, 0.0406494140625, 0.024169921875, -0.0008789062267169356, -0.01669921912252903, -0.0362548828125, -0.06130370870232582, -0.07756347209215164, -0.09206542372703552, -0.09645995497703552, -0.10173339396715164, -0.10920409858226776, -0.10151366889476776, -0.09228515625, -0.0845947265625, -0.07492675632238388, -0.05998535081744194, -0.03801269456744194, -0.01406249962747097, 0.0028564452659338713, 0.02592773362994194, 0.04548339545726776, 0.06108398362994194, 0.0791015625, 0.09030761569738388, 0.09733886271715164, 0.11140136420726776, 0.1043701171875, 0.10942382365465164, 0.0977783203125, 0.08767089247703552, 0.07976073771715164, 0.05690917745232582, 0.04526367038488388, 0.02109374850988388, 0.0024169920943677425, -0.017578125, -0.04020996019244194, -0.05646972358226776, -0.06965331733226776, -0.08349609375, -0.09492187201976776, -0.09645995497703552, -0.10041503608226776, -0.09382323920726776, -0.087890625, -0.08701171725988388, -0.06635741889476776, -0.05361327901482582, -0.03032226487994194, -0.012524413876235485, 0.010986328125, 0.01933593675494194, 0.04702148213982582, 0.06306152045726776, 0.07822265475988388, 0.08657225966453552, 0.09865722060203552, 0.09536132216453552, 0.10371093451976776, 0.09755858778953552, 0.09096679091453552, 0.07998047024011612, 0.07185058295726776, 0.05075683444738388, 0.03713378682732582, 0.0164794921875, -0.0032958984375, -0.01625976525247097, -0.03911132737994194, -0.052734375, -0.0604248046875, -0.07646483927965164, -0.08547362685203552, -0.0845947265625, -0.090087890625, -0.0889892578125, -0.08811035007238388, -0.07097167521715164, -0.06394042819738388, -0.04899902269244194, -0.02702636644244194, -0.01274413987994194, 0.003076171735301614, 0.019775390625, 0.04240722581744194, 0.050537109375, 0.06635741889476776, 0.07976073771715164, 0.08723144233226776, 0.08942870795726776, 0.08920898288488388, 0.08063964545726776, 0.08151855319738388, 0.06943359225988388, 0.06635741889476776, 0.04702148213982582, 0.0318603515625, 0.01384277269244194, 0.002197265625, -0.01296386681497097, -0.032958984375, -0.04460449144244194, -0.06064452975988388, -0.06437987834215164, -0.07558593899011612, -0.08063964545726776, -0.07646483927965164, -0.07646483927965164, -0.07207030802965164, -0.0604248046875, -0.0516357421875, -0.04306640475988388, -0.019775390625, -0.0142822265625, -0.001538085867650807, 0.02219238132238388, 0.03164062276482582, 0.04570312425494194, 0.05581054463982582, 0.06569824367761612, 0.06745605170726776, 0.07470703125, 0.07712402194738388, 0.06833495944738388, 0.06284179538488388, 0.059326171875, 0.052734375, 0.03647460788488388, 0.02570800669491291, 0.01318359375, -0.0013183592818677425, -0.012524413876235485, -0.02812499925494194, -0.03537597507238388, -0.04526367038488388, -0.05405273288488388, -0.05185546725988388, -0.06108398362994194, -0.05844726413488388, -0.0538330078125, -0.050537109375, -0.05009765550494194, -0.03647460788488388, -0.03251953050494194, -0.01516113243997097, -0.010327148251235485, 0.0004394531133584678, 0.01604003831744194, 0.02285156212747097, 0.03669433668255806, 0.04526367038488388, 0.04592284932732582, 0.04965820163488388, 0.04899902269244194, 0.05888671800494194, 0.05229492112994194, 0.052734375, 0.04658202826976776, 0.04108886793255806, 0.0340576171875, 0.019775390625, 0.007250976283103228, 0.0017578124534338713, -0.0087890625, -0.02219238132238388, -0.02351074106991291, -0.02680663950741291, -0.03757324069738388, -0.03537597507238388, -0.04218749701976776, -0.04020996019244194, -0.03603515401482582, -0.03713378682732582, -0.02680663950741291, -0.0230712890625, -0.01911620981991291, -0.007031249813735485, -0.00439453125, 0.003076171735301614, 0.013403319753706455, 0.01604003831744194, 0.02351074106991291, 0.03208007663488388, 0.03493652120232582, 0.03208007663488388, 0.03515625, 0.03889160230755806, 0.03076171875, 0.02790527231991291, 0.03054199181497097, 0.02702636644244194, 0.015380859375, 0.009008788503706455, 0.0068115233443677425, 0.00527343712747097, -0.005053710658103228, -0.00966796837747097, -0.01274413987994194, -0.01713867112994194, -0.015380859375, -0.02219238132238388, -0.014721679501235485, -0.01823730394244194, -0.019775390625, -0.0120849609375, -0.0120849609375, -0.0087890625, -0.0054931640625, -0.003955077845603228, 0.0006591796409338713, 0.004833984188735485, 0.0032958984375, 0.0017578124534338713, 0.01384277269244194, 0.00966796837747097, 0.01318359375, 0.013403319753706455, 0.01318359375, 0.009008788503706455, 0.0076904296875, 0.003955077845603228, 0.010327148251235485, 0.007250976283103228, 0.001977538922801614, 0.006152343470603228, 0.007250976283103228, 0.0035156249068677425, -0.0032958984375, 0.0041748047806322575, -0.001538085867650807, 0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, 0.00637206993997097, 0.0032958984375, 0.0054931640625, 0.0004394531133584678, 0.003076171735301614, 0.0054931640625, 0.002636718563735485, -0.002197265625, 0.002636718563735485, 0.003955077845603228, -0.0004394531133584678, 0.0010986328125, 0.0054931640625, 0.0, 0.005932617001235485, 0.0013183592818677425, 0.00637206993997097, 0.00439453125, -0.0006591796409338713, 0.0057128905318677425, 0.002197265625, 0.0, 0.007031249813735485, -0.0002197265566792339, -0.0024169920943677425, 0.00439453125, 0.0028564452659338713, 0.0057128905318677425, 0.0054931640625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.001977538922801614, 0.0002197265566792339, -0.0008789062267169356, 0.0004394531133584678, 0.003735351376235485, 0.003735351376235485, -0.0013183592818677425, 0.0035156249068677425, 0.0, 0.0028564452659338713, 0.0013183592818677425, 0.006591796875, 0.003955077845603228, -0.001538085867650807, 0.001538085867650807, 0.0013183592818677425, -0.0024169920943677425, 0.0054931640625, -0.0004394531133584678, 0.0004394531133584678, 0.0013183592818677425, -0.0008789062267169356, 0.006152343470603228, -0.0008789062267169356, 0.004833984188735485, 0.004833984188735485, 0.006152343470603228, 0.00527343712747097, 0.003955077845603228, 0.003955077845603228, 0.004833984188735485, 0.002197265625, 0.006591796875, 0.001977538922801614, -0.0008789062267169356, 0.0008789062267169356, 0.002636718563735485, 0.0035156249068677425, 0.00527343712747097, 0.005053710658103228, 0.00637206993997097, -0.0002197265566792339, 0.00439453125, -0.0041748047806322575, 0.00439453125, 0.0028564452659338713, 0.00439453125, 0.005053710658103228, 0.004833984188735485, 0.0002197265566792339, -0.006152343470603228, -0.00527343712747097, -0.001538085867650807, -0.003735351376235485, -0.003076171735301614, -0.0068115233443677425, -0.0032958984375, -0.007031249813735485, -0.0010986328125, 0.0008789062267169356, 0.009228515438735485, 0.010327148251235485, 0.007250976283103228, 0.01582031138241291, 0.014501952566206455, 0.01801757700741291, 0.02219238132238388, 0.02592773362994194, 0.02438964694738388, 0.02241210825741291, 0.01823730394244194, 0.01911620981991291, 0.012524413876235485, 0.01054687425494194, 0.0041748047806322575, 0.0028564452659338713, -0.0006591796409338713, -0.0142822265625, -0.01801757700741291, -0.02658691257238388, -0.03010253794491291, -0.03515625, -0.03801269456744194, -0.03669433668255806, -0.03537597507238388, -0.03361816331744194, -0.03559570387005806, -0.02900390513241291, -0.02373046800494194, -0.01296386681497097, -0.004833984188735485, 0.0008789062267169356, 0.012524413876235485, 0.02351074106991291, 0.03164062276482582, 0.04152831807732582, 0.04899902269244194, 0.05690917745232582, 0.05427245795726776, 0.05778808519244194, 0.054931640625, 0.059326171875, 0.05141601338982582, 0.04328612983226776, 0.03339843824505806, 0.02109374850988388, 0.01516113243997097, 0.001538085867650807, -0.01691894419491291, -0.02504882775247097, -0.03647460788488388, -0.04877929389476776, -0.05317382514476776, -0.0615234375, -0.06965331733226776, -0.06569824367761612, -0.07009277492761612, -0.06767577677965164, -0.05910644307732582, -0.04482421651482582, -0.04196777194738388, -0.02395019493997097, -0.008129882626235485, 0.01054687425494194, 0.01713867112994194, 0.03383788838982582, 0.05185546725988388, 0.06525878608226776, 0.06965331733226776, 0.08437499403953552, 0.087890625, 0.08525390177965164, 0.08635253459215164, 0.08327636867761612, 0.07448730617761612, 0.06525878608226776, 0.05295410007238388, 0.03933105245232582, 0.02153320237994194, -0.0024169920943677425, -0.02197265625, -0.03713378682732582, -0.05295410007238388, -0.06613769382238388, -0.0791015625, -0.08811035007238388, -0.09865722060203552, -0.094482421875, -0.10085448622703552, -0.09162597358226776, -0.07998047024011612, -0.06591796875, -0.05581054463982582, -0.03691406175494194, -0.012524413876235485, 0.005053710658103228, 0.02504882775247097, 0.04899902269244194, 0.0670166015625, 0.08635253459215164, 0.08876952528953552, 0.10722655802965164, 0.11030273139476776, 0.11601562052965164, 0.11909179389476776, 0.10744628310203552, 0.09580077975988388, 0.08063964545726776, 0.06767577677965164, 0.04460449144244194, 0.02021484263241291, -0.0032958984375, -0.02197265625, -0.04438476264476776, -0.06657714396715164, -0.08349609375, -0.10393065959215164, -0.10744628310203552, -0.11887206882238388, -0.12238769233226776, -0.11733397841453552, -0.11052245646715164, -0.09602050483226776, -0.08657225966453552, -0.06350097805261612, -0.03867187350988388, -0.01604003831744194, 0.003955077845603228, 0.03208007663488388, 0.04855956882238388, 0.07646483927965164, 0.09316405653953552, 0.11337890475988388, 0.13095702230930328, 0.13359375298023224, 0.13798828423023224, 0.13249512016773224, 0.12810058891773224, 0.11249999701976776, 0.09514159709215164, 0.07426757365465164, 0.05624999850988388, 0.028564453125, -0.003076171735301614, -0.03208007663488388, -0.04877929389476776, -0.07536620646715164, -0.1021728515625, -0.11579589545726776, -0.12941893935203552, -0.14326171576976776, -0.14436034858226776, -0.1439208984375, -0.1318359375, -0.11667480319738388, -0.09645995497703552, -0.07470703125, -0.04855956882238388, -0.02219238132238388, 0.003955077845603228, 0.0384521484375, 0.05712890625, 0.08283691108226776, 0.1065673828125, 0.12568359076976776, 0.1439208984375, 0.15512694418430328, 0.14919432997703552, 0.15007324516773224, 0.14150390028953552, 0.12062987685203552, 0.10942382365465164, 0.07954101264476776, 0.054931640625, 0.03251953050494194, -0.0006591796409338713, -0.02658691257238388, -0.06108398362994194, -0.0802001953125, -0.1065673828125, -0.12941893935203552, -0.14018554985523224, -0.1549072265625, -0.1549072265625, -0.14765624701976776, -0.1461181640625, -0.13051757216453552, -0.10415038466453552, -0.07668457180261612, -0.05405273288488388, -0.028564453125, 0.009448242373764515, 0.0318603515625, 0.06569824367761612, 0.087890625, 0.12062987685203552, 0.13381347060203552, 0.15205077826976776, 0.164794921875, 0.16765137016773224, 0.16391600668430328, 0.15292967855930328, 0.13623046875, 0.11271972209215164, 0.08767089247703552, 0.06350097805261612, 0.03603515401482582, 0.0024169920943677425, -0.028564453125, -0.05690917745232582, -0.08261718600988388, -0.1131591796875, -0.1318359375, -0.147216796875, -0.15864257514476776, -0.16127929091453552, -0.15446777641773224, -0.14809569716453552, -0.1307373046875, -0.11249999701976776, -0.08767089247703552, -0.05251464620232582, -0.03032226487994194, 0.0098876953125, 0.03361816331744194, 0.07075195014476776, 0.08964843302965164, 0.11403807997703552, 0.13908691704273224, 0.15402831137180328, 0.16721190512180328, 0.16853027045726776, 0.160400390625, 0.14765624701976776, 0.13776855170726776, 0.11381835490465164, 0.090087890625, 0.06020507588982582, 0.03076171875, -0.0028564452659338713, -0.03361816331744194, -0.06240234151482582, -0.09250488132238388, -0.11601562052965164, -0.13579101860523224, -0.1439208984375, -0.15380859375, -0.1549072265625, -0.15227051079273224, -0.14501953125, -0.12546385824680328, -0.10371093451976776, -0.08327636867761612, -0.05361327901482582, -0.0263671875, 0.00856933556497097, 0.037353515625, 0.06525878608226776, 0.09360351413488388, 0.11513671278953552, 0.13996581733226776, 0.14677734673023224, 0.16237792372703552, 0.16127929091453552, 0.15754394233226776, 0.14875487983226776, 0.13117675483226776, 0.10810546576976776, 0.08701171725988388, 0.05800781026482582, 0.028564453125, -0.0004394531133584678, -0.02658691257238388, -0.06130370870232582, -0.07932128757238388, -0.1065673828125, -0.12282714247703552, -0.13754881918430328, -0.14897461235523224, -0.15205077826976776, -0.14699706435203552, -0.13908691704273224, -0.12348632514476776, -0.10810546576976776, -0.08173827826976776, -0.05009765550494194, -0.02504882775247097, 0.0028564452659338713, 0.0384521484375, 0.06174316257238388, 0.08964843302965164, 0.11140136420726776, 0.12590332329273224, 0.14523924887180328, 0.14370116591453552, 0.151611328125, 0.14897461235523224, 0.13820800185203552, 0.12722167372703552, 0.1043701171875, 0.08063964545726776, 0.05361327901482582, 0.02614746056497097, 0.0006591796409338713, -0.02460937388241291, -0.05185546725988388, -0.0791015625, -0.09360351413488388, -0.123046875, -0.1285400390625, -0.13469238579273224, -0.13645018637180328, -0.13710936903953552, -0.12216796725988388, -0.10678710788488388, -0.087890625, -0.06789550930261612, -0.04768066108226776, -0.01801757700741291, 0.00527343712747097, 0.02768554538488388, 0.05888671800494194, 0.07646483927965164, 0.09624022990465164, 0.11623534560203552, 0.1219482421875, 0.12480468302965164, 0.1373291015625, 0.12941893935203552, 0.12370605021715164, 0.11052245646715164, 0.09404296427965164, 0.06943359225988388, 0.04746093600988388, 0.02570800669491291, 0.0024169920943677425, -0.0186767578125, -0.04350585862994194, -0.06394042819738388, -0.08305663615465164, -0.09755858778953552, -0.10920409858226776, -0.10986328125, -0.12041015177965164, -0.11689452826976776, -0.10239257663488388, -0.09602050483226776, -0.07470703125, -0.05910644307732582, -0.0362548828125, -0.02329101413488388, 0.002197265625, 0.02790527231991291, 0.04987792670726776, 0.06174316257238388, 0.08613280951976776, 0.08811035007238388, 0.10810546576976776, 0.10854491591453552, 0.10964354872703552, 0.10590820014476776, 0.09821777045726776, 0.08854980021715164, 0.07646483927965164, 0.05778808519244194, 0.04240722581744194, 0.01801757700741291, 0.0024169920943677425, -0.01801757700741291, -0.03713378682732582, -0.04965820163488388, -0.06416015326976776, -0.0791015625, -0.08833007514476776, -0.09140624850988388, -0.08745116740465164, -0.08767089247703552, -0.08503417670726776, -0.06987304240465164, -0.05624999850988388, -0.04877929389476776, -0.03076171875, -0.010107421316206455, 0.0010986328125, 0.017578125, 0.03449707105755806, 0.05097655951976776, 0.05800781026482582, 0.07404784858226776, 0.08107910305261612, 0.0802001953125, 0.08085937052965164, 0.076904296875, 0.07602538913488388, 0.06437987834215164, 0.052734375, 0.03933105245232582, 0.0318603515625, 0.011425781063735485, -0.002636718563735485, -0.015600585378706455, -0.02285156212747097, -0.04240722581744194, -0.04877929389476776, -0.04877929389476776, -0.05910644307732582, -0.0648193359375, -0.059326171875, -0.05559081956744194, -0.05888671800494194, -0.04921874776482582, -0.03933105245232582, -0.03054199181497097, -0.01713867112994194, -0.0076904296875, 0.0017578124534338713, 0.012524413876235485, 0.02109374850988388, 0.0274658203125, 0.03889160230755806, 0.04108886793255806, 0.050537109375, 0.05251464620232582, 0.04702148213982582, 0.046142578125, 0.04899902269244194, 0.04306640475988388, 0.03383788838982582, 0.02504882775247097, 0.01933593675494194, 0.0120849609375, -0.003076171735301614, -0.008349609561264515, -0.0120849609375, -0.01604003831744194, -0.01845703087747097, -0.02614746056497097, -0.03010253794491291, -0.02702636644244194, -0.03076171875, -0.02351074106991291, -0.02724609337747097, -0.0252685546875, -0.01604003831744194, -0.011206054128706455, -0.0076904296875, -0.0024169920943677425, -0.0032958984375, 0.0, 0.01296386681497097, 0.014501952566206455, 0.015600585378706455, 0.01801757700741291, 0.0208740234375, 0.01625976525247097, 0.009228515438735485, 0.010327148251235485, 0.01516113243997097, 0.01186523400247097, 0.007910155691206455, 0.0004394531133584678, 0.0024169920943677425, 0.0008789062267169356, -0.0006591796409338713, 0.0024169920943677425, -0.005053710658103228, -0.0004394531133584678, -0.003735351376235485, -0.0017578124534338713, 0.00439453125, 0.0035156249068677425, 0.004833984188735485, 0.001977538922801614, 0.007250976283103228, 0.001538085867650807, -0.0010986328125, -0.0004394531133584678, 0.0057128905318677425, -0.003955077845603228, 0.004833984188735485, 0.0041748047806322575, 0.005053710658103228, 0.0008789062267169356, -0.0028564452659338713, 0.002636718563735485, 0.003735351376235485, -0.0002197265566792339, 0.0041748047806322575, 0.001977538922801614, 0.0004394531133584678, 0.002197265625, 0.0035156249068677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, 0.002197265625, 0.0013183592818677425, 0.0046142577193677425, 0.00637206993997097, -0.0035156249068677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00527343712747097, 0.0046142577193677425, 0.004833984188735485, 0.006152343470603228, -0.001977538922801614, -0.001538085867650807, 0.002197265625, -0.0032958984375, 0.0046142577193677425, 0.006152343470603228, -0.0010986328125, -0.0006591796409338713, 0.005932617001235485, 0.0057128905318677425, 0.005053710658103228, 0.001538085867650807, 0.0006591796409338713, 0.0, -0.0035156249068677425, -0.0006591796409338713, 0.0057128905318677425, 0.005932617001235485, 0.0024169920943677425, 0.0010986328125, 0.0013183592818677425, 0.00637206993997097, 0.0017578124534338713, 0.0, 0.0002197265566792339, 0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, 0.003076171735301614, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, 0.0041748047806322575, 0.00527343712747097, 0.0032958984375, 0.003955077845603228, 0.001977538922801614, 0.001977538922801614, -0.003735351376235485, 0.0010986328125, -0.0028564452659338713, 0.0013183592818677425, 0.0057128905318677425, 0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.005932617001235485, -0.0098876953125, -0.00856933556497097, -0.00747070275247097, -0.0120849609375, -0.003076171735301614, -0.0035156249068677425, -0.00527343712747097, 0.001538085867650807, 0.003076171735301614, 0.01318359375, 0.01054687425494194, 0.02109374850988388, 0.02373046800494194, 0.0318603515625, 0.02395019493997097, 0.03317870944738388, 0.03603515401482582, 0.03010253794491291, 0.02812499925494194, 0.02548827975988388, 0.02395019493997097, 0.01582031138241291, 0.004833984188735485, 0.0035156249068677425, -0.0068115233443677425, -0.013623046688735485, -0.024169921875, -0.02614746056497097, -0.03933105245232582, -0.03779296949505806, -0.04833984375, -0.04812011495232582, -0.05185546725988388, -0.04636230319738388, -0.0472412109375, -0.03559570387005806, -0.02944335900247097, -0.02285156212747097, -0.0076904296875, -0.001538085867650807, 0.017578125, 0.02614746056497097, 0.0439453125, 0.04899902269244194, 0.05976562201976776, 0.07119140774011612, 0.07448730617761612, 0.07316894084215164, 0.07514648139476776, 0.07075195014476776, 0.06064452975988388, 0.06086425483226776, 0.03911132737994194, 0.02680663950741291, 0.019775390625, 0.001977538922801614, -0.0142822265625, -0.03427734225988388, -0.04372558370232582, -0.06196288764476776, -0.07646483927965164, -0.07866210490465164, -0.0889892578125, -0.09074706584215164, -0.08876952528953552, -0.08283691108226776, -0.07646483927965164, -0.06350097805261612, -0.04855956882238388, -0.03757324069738388, -0.01823730394244194, 0.007031249813735485, 0.03076171875, 0.04218749701976776, 0.06723632663488388, 0.08151855319738388, 0.0966796875, 0.10700683295726776, 0.11359862983226776, 0.11667480319738388, 0.11997070163488388, 0.1065673828125, 0.09755858778953552, 0.08525390177965164, 0.06899414211511612, 0.04328612983226776, 0.02175292931497097, -0.0032958984375, -0.02460937388241291, -0.04921874776482582, -0.072509765625, -0.08811035007238388, -0.10546875, -0.12326660007238388, -0.12436523288488388, -0.13359375298023224, -0.13359375298023224, -0.11843261122703552, -0.10810546576976776, -0.09316405653953552, -0.06877440959215164, -0.0428466796875, -0.02109374850988388, 0.007031249813735485, 0.032958984375, 0.06284179538488388, 0.081298828125, 0.10305175185203552, 0.13007812201976776, 0.14018554985523224, 0.15512694418430328, 0.15732420980930328, 0.14765624701976776, 0.13908691704273224, 0.13029785454273224, 0.10458984225988388, 0.08767089247703552, 0.05449218675494194, 0.02548827975988388, -0.0032958984375, -0.03537597507238388, -0.05581054463982582, -0.08305663615465164, -0.10942382365465164, -0.13447265326976776, -0.147216796875, -0.15622557699680328, -0.1669921875, -0.1614990234375, -0.15358886122703552, -0.12919922173023224, -0.1109619140625, -0.090087890625, -0.06130370870232582, -0.02241210825741291, 0.00747070275247097, 0.03757324069738388, 0.06789550930261612, 0.10568847507238388, 0.12656249105930328, 0.14523924887180328, 0.1702880859375, 0.17709960043430328, 0.18039549887180328, 0.173583984375, 0.16655273735523224, 0.1505126953125, 0.12722167372703552, 0.10041503608226776, 0.06899414211511612, 0.03076171875, 0.0006591796409338713, -0.03933105245232582, -0.07294921576976776, -0.10085448622703552, -0.125244140625, -0.15622557699680328, -0.16853027045726776, -0.1812744140625, -0.18632811307907104, -0.18479003012180328, -0.17753905057907104, -0.15314941108226776, -0.12436523288488388, -0.098876953125, -0.07053222507238388, -0.03164062276482582, 0.0041748047806322575, 0.0406494140625, 0.07668457180261612, 0.10986328125, 0.13996581733226776, 0.16874998807907104, 0.18479003012180328, 0.19973143935203552, 0.20192870497703552, 0.20061033964157104, 0.18698729574680328, 0.16853027045726776, 0.13535155355930328, 0.10810546576976776, 0.07822265475988388, 0.03889160230755806, 0.0004394531133584678, -0.03493652120232582, -0.07668457180261612, -0.10722655802965164, -0.14040526747703552, -0.16237792372703552, -0.18544921278953552, -0.19775390625, -0.204345703125, -0.19753417372703552, -0.18588866293430328, -0.16677245497703552, -0.14304198324680328, -0.11052245646715164, -0.06877440959215164, -0.03032226487994194, 0.007910155691206455, 0.0439453125, 0.08283691108226776, 0.12062987685203552, 0.14897461235523224, 0.17490233480930328, 0.19907225668430328, 0.21269530057907104, 0.21840819716453552, 0.21071776747703552, 0.19489745795726776, 0.17204588651657104, 0.14677734673023224, 0.11184081435203552, 0.08107910305261612, 0.03603515401482582, 0.003955077845603228, -0.04196777194738388, -0.07888183742761612, -0.10942382365465164, -0.15007324516773224, -0.17050780355930328, -0.18918456137180328, -0.20412597060203552, -0.21489256620407104, -0.21467284858226776, -0.19138182699680328, -0.17314451932907104, -0.14677734673023224, -0.10810546576976776, -0.076904296875, -0.03603515401482582, 0.0068115233443677425, 0.05119628831744194, 0.08283691108226776, 0.12282714247703552, 0.15622557699680328, 0.18149413168430328, 0.20566405355930328, 0.21115721762180328, 0.21445311605930328, 0.21049803495407104, 0.20368652045726776, 0.17380370199680328, 0.1494140625, 0.11403807997703552, 0.08107910305261612, 0.04130859300494194, -0.002636718563735485, -0.03471679612994194, -0.07888183742761612, -0.10942382365465164, -0.14853514730930328, -0.17380370199680328, -0.19775390625, -0.20280760526657104, -0.21357421576976776, -0.20170897245407104, -0.1878662109375, -0.1724853515625, -0.14084471762180328, -0.10678710788488388, -0.076904296875, -0.03229980543255806, 0.005932617001235485, 0.04987792670726776, 0.08041992038488388, 0.11909179389476776, 0.14897461235523224, 0.17402343451976776, 0.19357909262180328, 0.213134765625, 0.21774901449680328, 0.2120361328125, 0.19160155951976776, 0.17819823324680328, 0.14875487983226776, 0.11403807997703552, 0.07712402194738388, 0.04218749701976776, 0.003955077845603228, -0.03273925557732582, -0.07646483927965164, -0.10305175185203552, -0.14238281548023224, -0.16567382216453552, -0.1845703125, -0.19401854276657104, -0.19687499105930328, -0.19621580839157104, -0.18544921278953552, -0.1680908203125, -0.13908691704273224, -0.10129394382238388, -0.072509765625, -0.03339843824505806, 0.010327148251235485, 0.04240722581744194, 0.08107910305261612, 0.10898437350988388, 0.14743651449680328, 0.17094725370407104, 0.18061523139476776, 0.195556640625, 0.19313964247703552, 0.1966552734375, 0.1812744140625, 0.15666504204273224, 0.1307373046875, 0.10832519084215164, 0.07009277492761612, 0.0340576171875, 0.0054931640625, -0.03911132737994194, -0.07338867336511612, -0.10129394382238388, -0.12656249105930328, -0.15117187798023224, -0.16831053793430328, -0.17644041776657104, -0.1834716796875, -0.18259276449680328, -0.16083984076976776, -0.14348144829273224, -0.1241455078125, -0.09316405653953552, -0.06108398362994194, -0.02658691257238388, 0.002197265625, 0.03603515401482582, 0.07844237983226776, 0.10173339396715164, 0.12590332329273224, 0.14875487983226776, 0.15996094048023224, 0.16962890326976776, 0.17336425185203552, 0.1680908203125, 0.15798339247703552, 0.14633788168430328, 0.11887206882238388, 0.0911865234375, 0.06437987834215164, 0.02834472618997097, 0.001538085867650807, -0.03142089769244194, -0.05581054463982582, -0.09096679091453552, -0.11052245646715164, -0.13381347060203552, -0.142822265625, -0.15666504204273224, -0.15534667670726776, -0.14875487983226776, -0.13820800185203552, -0.1307373046875, -0.103271484375, -0.07976073771715164, -0.05581054463982582, -0.02153320237994194, 0.002636718563735485, 0.02922363206744194, 0.06020507588982582, 0.0889892578125, 0.1043701171875, 0.11887206882238388, 0.13557128608226776, 0.14106445014476776, 0.14523924887180328, 0.13798828423023224, 0.12678222358226776, 0.11623534560203552, 0.09184569865465164, 0.072509765625, 0.05756835639476776, 0.024169921875, -0.002197265625, -0.02438964694738388, -0.04768066108226776, -0.07404784858226776, -0.09228515625, -0.10107421875, -0.11513671278953552, -0.12370605021715164, -0.11777343600988388, -0.11623534560203552, -0.1109619140625, -0.0999755859375, -0.081298828125, -0.06437987834215164, -0.03647460788488388, -0.01669921912252903, 0.004833984188735485, 0.02351074106991291, 0.04108886793255806, 0.06350097805261612, 0.07998047024011612, 0.09624022990465164, 0.0999755859375, 0.107666015625, 0.10502929240465164, 0.10283202677965164, 0.09426268935203552, 0.090087890625, 0.072509765625, 0.05405273288488388, 0.03581542894244194, 0.02395019493997097, -0.0028564452659338713, -0.01845703087747097, -0.03273925557732582, -0.0472412109375, -0.05734863132238388, -0.07514648139476776, -0.07624511420726776, -0.087890625, -0.07932128757238388, -0.081298828125, -0.07119140774011612, -0.06657714396715164, -0.05581054463982582, -0.03713378682732582, -0.02395019493997097, -0.014501952566206455, 0.001977538922801614, 0.012524413876235485, 0.02658691257238388, 0.04240722581744194, 0.04877929389476776, 0.05690917745232582, 0.06525878608226776, 0.0692138671875, 0.06613769382238388, 0.06218261644244194, 0.05624999850988388, 0.04812011495232582, 0.03581542894244194, 0.03669433668255806, 0.01845703087747097, 0.01054687425494194, 0.006591796875, -0.01406249962747097, -0.01516113243997097, -0.028564453125, -0.02482910081744194, -0.03317870944738388, -0.04086913913488388, -0.03603515401482582, -0.03933105245232582, -0.03603515401482582, -0.02988281100988388, -0.02504882775247097, -0.02373046800494194, -0.012304686941206455, -0.01164550706744194, -0.0013183592818677425, -0.0010986328125, 0.01274413987994194, 0.013403319753706455, 0.017578125, 0.01933593675494194, 0.017578125, 0.02285156212747097, 0.02395019493997097, 0.0230712890625, 0.01691894419491291, 0.01384277269244194, 0.01296386681497097, 0.0057128905318677425, 0.0054931640625, 0.01076660118997097, 0.001538085867650807, 0.00527343712747097, 0.0068115233443677425, 0.006591796875, 0.0, -0.0008789062267169356, 0.0017578124534338713, 0.0017578124534338713, 0.0041748047806322575, 0.005053710658103228, 0.001977538922801614, 0.0, -0.001538085867650807, 0.00439453125, -0.0028564452659338713, 0.005932617001235485, 0.0028564452659338713, -0.001538085867650807, -0.002197265625, 0.003076171735301614, -0.0008789062267169356, 0.00637206993997097, 0.0057128905318677425, 0.0076904296875, 0.0010986328125, 0.0024169920943677425, 0.00439453125, 0.00439453125, 0.0002197265566792339, 0.003076171735301614, 0.00439453125, -0.0008789062267169356, 0.0017578124534338713, 0.0006591796409338713, 0.005053710658103228, -0.001538085867650807, -0.0002197265566792339, -0.003076171735301614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0013183592818677425, 0.0024169920943677425, 0.0, -0.0054931640625, -0.0017578124534338713, -0.0004394531133584678, 0.0024169920943677425, 0.0002197265566792339, -0.0004394531133584678, 0.0, 0.007910155691206455, 0.0010986328125, 0.0046142577193677425, 0.005932617001235485, 0.00637206993997097, 0.0002197265566792339, -0.0017578124534338713, 0.0028564452659338713, 0.0004394531133584678, 0.0013183592818677425, 0.001977538922801614, 0.0054931640625, -0.0041748047806322575, 0.003735351376235485, 0.0054931640625, 0.0008789062267169356, -0.0028564452659338713, 0.005932617001235485, 0.0010986328125, 0.0032958984375, -0.002636718563735485, -0.001977538922801614, 0.003076171735301614, -0.0035156249068677425, -0.0002197265566792339, 0.0004394531133584678, 0.001538085867650807, 0.001977538922801614, 0.0013183592818677425, 0.003076171735301614, 0.001538085867650807, 0.0004394531133584678, -0.0008789062267169356, 0.00439453125, 0.0032958984375, 0.005053710658103228, 0.0002197265566792339, 0.0035156249068677425, 0.0010986328125, -0.006152343470603228, -0.002636718563735485, -0.00637206993997097, -0.00439453125, -0.0017578124534338713, -0.0054931640625, -0.009448242373764515, -0.00747070275247097, -0.0017578124534338713, -0.0010986328125, 0.00747070275247097, 0.01054687425494194, 0.01186523400247097, 0.0186767578125, 0.02065429650247097, 0.03427734225988388, 0.03581542894244194, 0.0340576171875, 0.03999023512005806, 0.03669433668255806, 0.03757324069738388, 0.03823241963982582, 0.02878417819738388, 0.02658691257238388, 0.0230712890625, 0.007250976283103228, -0.003735351376235485, -0.007910155691206455, -0.02043456956744194, -0.03273925557732582, -0.0439453125, -0.0516357421875, -0.05910644307732582, -0.06350097805261612, -0.05976562201976776, -0.06525878608226776, -0.06240234151482582, -0.05097655951976776, -0.04570312425494194, -0.0362548828125, -0.0274658203125, -0.0076904296875, 0.0017578124534338713, 0.015380859375, 0.03867187350988388, 0.05141601338982582, 0.06218261644244194, 0.07272949069738388, 0.0867919921875, 0.08723144233226776, 0.0933837890625, 0.08745116740465164, 0.09316405653953552, 0.07822265475988388, 0.07229004055261612, 0.05712890625, 0.03889160230755806, 0.02460937388241291, -0.0004394531133584678, -0.01669921912252903, -0.03977050632238388, -0.0604248046875, -0.07602538913488388, -0.0911865234375, -0.10371093451976776, -0.11008300632238388, -0.11337890475988388, -0.11491698771715164, -0.10634765028953552, -0.10063476115465164, -0.08173827826976776, -0.06569824367761612, -0.04416503757238388, -0.01889648474752903, 0.005053710658103228, 0.02768554538488388, 0.05229492112994194, 0.07734374701976776, 0.10261230170726776, 0.1219482421875, 0.13205565512180328, 0.138427734375, 0.1439208984375, 0.1373291015625, 0.13776855170726776, 0.11931151896715164, 0.10085448622703552, 0.07866210490465164, 0.05690917745232582, 0.03010253794491291, 0.0008789062267169356, -0.03142089769244194, -0.06130370870232582, -0.085693359375, -0.10744628310203552, -0.12788085639476776, -0.1505126953125, -0.16171874105930328, -0.15886230766773224, -0.16545410454273224, -0.15227051079273224, -0.13381347060203552, -0.11601562052965164, -0.08811035007238388, -0.06130370870232582, -0.03164062276482582, 0.00966796837747097, 0.03889160230755806, 0.07053222507238388, 0.10019531100988388, 0.13359375298023224, 0.15556640923023224, 0.17094725370407104, 0.18544921278953552, 0.18742674589157104, 0.19072264432907104, 0.17006835341453552, 0.1571044921875, 0.13139648735523224, 0.0999755859375, 0.06767577677965164, 0.03537597507238388, 0.007031249813735485, -0.0340576171875, -0.07185058295726776, -0.10239257663488388, -0.13710936903953552, -0.16633300483226776, -0.18742674589157104, -0.19907225668430328, -0.1988525390625, -0.19643554091453552, -0.182373046875, -0.17490233480930328, -0.13535155355930328, -0.10854491591453552, -0.07294921576976776, -0.03317870944738388, 0.007910155691206455, 0.04416503757238388, 0.08876952528953552, 0.1241455078125, 0.16127929091453552, 0.18105468153953552, 0.20698241889476776, 0.21357421576976776, 0.22697752714157104, 0.22543944418430328, 0.20830076932907104, 0.18017578125, 0.1527099609375, 0.12436523288488388, 0.07976073771715164, 0.04196777194738388, -0.003076171735301614, -0.04328612983226776, -0.08591308444738388, -0.12458495795726776, -0.15996094048023224, -0.19248045980930328, -0.21379393339157104, -0.22917479276657104, -0.23159179091453552, -0.22807615995407104, -0.21621093153953552, -0.19379882514476776, -0.15688475966453552, -0.12810058891773224, -0.08107910305261612, -0.03691406175494194, 0.0054931640625, 0.05317382514476776, 0.09624022990465164, 0.13447265326976776, 0.17050780355930328, 0.20852050185203552, 0.22587889432907104, 0.24521483480930328, 0.24477538466453552, 0.24543456733226776, 0.22346191108226776, 0.2032470703125, 0.17731933295726776, 0.13271483778953552, 0.09360351413488388, 0.04548339545726776, 0.003076171735301614, -0.04680175706744194, -0.09272460639476776, -0.13051757216453552, -0.17512206733226776, -0.20478515326976776, -0.23269042372703552, -0.24895018339157104, -0.2572998106479645, -0.248291015625, -0.22983397543430328, -0.20280760526657104, -0.16743163764476776, -0.13710936903953552, -0.08635253459215164, -0.04306640475988388, 0.0054931640625, 0.05449218675494194, 0.10415038466453552, 0.14304198324680328, 0.18544921278953552, 0.22280272841453552, 0.24895018339157104, 0.2605957090854645, 0.2612548768520355, 0.2605957090854645, 0.24191893637180328, 0.21247558295726776, 0.18479003012180328, 0.13864745199680328, 0.09733886271715164, 0.04746093600988388, 0.006591796875, -0.04592284932732582, -0.09074706584215164, -0.13425292074680328, -0.17709960043430328, -0.20676268637180328, -0.24433593451976776, -0.2594970762729645, -0.2660888731479645, -0.2568603456020355, -0.24125975370407104, -0.20786131918430328, -0.17666015028953552, -0.13974608480930328, -0.09228515625, -0.041748046875, 0.0032958984375, 0.05954589694738388, 0.09953612834215164, 0.15007324516773224, 0.18435057997703552, 0.22280272841453552, 0.24807128310203552, 0.2667480409145355, 0.2704834043979645, 0.2667480409145355, 0.23906248807907104, 0.21335448324680328, 0.18479003012180328, 0.1483154296875, 0.09580077975988388, 0.05405273288488388, -0.0002197265566792339, -0.04526367038488388, -0.08920898288488388, -0.13776855170726776, -0.18149413168430328, -0.21137695014476776, -0.23598632216453552, -0.25422361493110657, -0.26103514432907104, -0.2562011778354645, -0.24543456733226776, -0.20808105170726776, -0.177978515625, -0.13974608480930328, -0.0966796875, -0.04152831807732582, 0.0010986328125, 0.05141601338982582, 0.10283202677965164, 0.13776855170726776, 0.18479003012180328, 0.21840819716453552, 0.2449951171875, 0.2623535096645355, 0.26081541180610657, 0.25664061307907104, 0.24301756918430328, 0.21533203125, 0.17929686605930328, 0.14238281548023224, 0.10107421875, 0.04746093600988388, 0.0002197265566792339, -0.04108886793255806, -0.09030761569738388, -0.13579101860523224, -0.164794921875, -0.2021484375, -0.23356932401657104, -0.24631346762180328, -0.25422361493110657, -0.24982909858226776, -0.22895507514476776, -0.20522460341453552, -0.1702880859375, -0.12502440810203552, -0.08920898288488388, -0.0384521484375, 0.008349609561264515, 0.05075683444738388, 0.09492187201976776, 0.13271483778953552, 0.17731933295726776, 0.19929198920726776, 0.22499999403953552, 0.23972167074680328, 0.24631346762180328, 0.23488768935203552, 0.22499999403953552, 0.19973143935203552, 0.16940917074680328, 0.12700195610523224, 0.08767089247703552, 0.04877929389476776, 0.00747070275247097, -0.0362548828125, -0.08327636867761612, -0.12436523288488388, -0.15534667670726776, -0.18896484375, -0.21335448324680328, -0.21928709745407104, -0.2296142578125, -0.22060546278953552, -0.20676268637180328, -0.1812744140625, -0.15073241293430328, -0.11601562052965164, -0.07602538913488388, -0.03933105245232582, 0.005053710658103228, 0.05119628831744194, 0.08349609375, 0.12019042670726776, 0.15622557699680328, 0.18654784560203552, 0.20676268637180328, 0.21115721762180328, 0.21665038168430328, 0.20786131918430328, 0.193359375, 0.16984862089157104, 0.14326171576976776, 0.11249999701976776, 0.08151855319738388, 0.041748046875, -0.0008789062267169356, -0.03273925557732582, -0.07382812350988388, -0.10744628310203552, -0.13864745199680328, -0.15952147543430328, -0.18017578125, -0.18808592855930328, -0.19270019233226776, -0.18918456137180328, -0.17006835341453552, -0.15578612685203552, -0.12788085639476776, -0.10063476115465164, -0.06437987834215164, -0.03361816331744194, 0.007250976283103228, 0.04196777194738388, 0.07866210490465164, 0.10810546576976776, 0.13425292074680328, 0.14853514730930328, 0.16501463949680328, 0.17666015028953552, 0.18149413168430328, 0.17863768339157104, 0.15754394233226776, 0.13996581733226776, 0.12436523288488388, 0.08767089247703552, 0.06196288764476776, 0.0296630859375, -0.0013183592818677425, -0.03427734225988388, -0.0626220703125, -0.08173827826976776, -0.10502929240465164, -0.12941893935203552, -0.142822265625, -0.14809569716453552, -0.15117187798023224, -0.14875487983226776, -0.13557128608226776, -0.11689452826976776, -0.09360351413488388, -0.0802001953125, -0.046142578125, -0.01911620981991291, 0.0068115233443677425, 0.03493652120232582, 0.05537109076976776, 0.076904296875, 0.10173339396715164, 0.11293944716453552, 0.12150878459215164, 0.13557128608226776, 0.13447265326976776, 0.1329345703125, 0.12172850966453552, 0.10415038466453552, 0.08723144233226776, 0.06503906100988388, 0.04790038987994194, 0.02395019493997097, -0.001538085867650807, -0.01999511756002903, -0.03867187350988388, -0.06240234151482582, -0.07514648139476776, -0.08723144233226776, -0.09360351413488388, -0.10744628310203552, -0.10129394382238388, -0.10151366889476776, -0.0955810546875, -0.07998047024011612, -0.06437987834215164, -0.05185546725988388, -0.03273925557732582, -0.01713867112994194, 0.0028564452659338713, 0.01669921912252903, 0.03471679612994194, 0.04702148213982582, 0.06569824367761612, 0.06877440959215164, 0.07338867336511612, 0.081298828125, 0.07932128757238388, 0.07712402194738388, 0.06965331733226776, 0.06613769382238388, 0.05097655951976776, 0.04152831807732582, 0.03010253794491291, 0.0087890625, 0.00439453125, -0.010107421316206455, -0.0252685546875, -0.03471679612994194, -0.03823241963982582, -0.0472412109375, -0.05251464620232582, -0.04921874776482582, -0.05251464620232582, -0.04680175706744194, -0.03669433668255806, -0.03164062276482582, -0.03032226487994194, -0.01889648474752903, -0.010986328125, -0.004833984188735485, -0.001538085867650807, 0.007910155691206455, 0.009228515438735485, 0.01691894419491291, 0.02219238132238388, 0.0252685546875, 0.02658691257238388, 0.02922363206744194, 0.02614746056497097, 0.017578125, 0.01625976525247097, 0.01625976525247097, 0.01186523400247097, 0.01054687425494194, 0.006152343470603228, 0.006152343470603228, 0.0008789062267169356, 0.002636718563735485, 0.0, -0.0046142577193677425, 0.0041748047806322575, 0.0046142577193677425, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0028564452659338713, 0.001977538922801614, -0.0024169920943677425, 0.0, -0.001977538922801614, 0.001538085867650807, -0.0035156249068677425, 0.0008789062267169356, 0.003735351376235485, -0.0002197265566792339, 0.002197265625, 0.005053710658103228, 0.00439453125, 0.005053710658103228, 0.005932617001235485, 0.003735351376235485, 0.0024169920943677425, 0.0076904296875, 0.002636718563735485, -0.0002197265566792339, 0.0017578124534338713, -0.001977538922801614, 0.00747070275247097, 0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, 0.0008789062267169356, 0.0032958984375 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003735351376235485, -0.0002197265566792339, 0.0024169920943677425, 0.005053710658103228, 0.0008789062267169356, 0.0032958984375, 0.0028564452659338713, -0.0006591796409338713, 0.0024169920943677425, 0.002197265625, -0.0004394531133584678, -0.0054931640625, 0.0013183592818677425, 0.0004394531133584678, 0.001977538922801614, 0.0004394531133584678, -0.002197265625, 0.0054931640625, 0.003076171735301614, 0.0013183592818677425, -0.0002197265566792339, -0.002636718563735485, -0.0010986328125, 0.003076171735301614, 0.003735351376235485, 0.0008789062267169356, 0.0010986328125, 0.0032958984375, 0.005932617001235485, 0.0028564452659338713, 0.0010986328125, 0.002197265625, -0.002636718563735485, 0.0035156249068677425, 0.004833984188735485, 0.0, -0.0004394531133584678, 0.005932617001235485, -0.002636718563735485, 0.0004394531133584678, 0.003076171735301614, 0.0046142577193677425, 0.0046142577193677425, -0.0024169920943677425, 0.0041748047806322575, 0.001977538922801614, -0.0017578124534338713, 0.0006591796409338713, 0.0010986328125, -0.005053710658103228, -0.0098876953125, -0.005053710658103228, -0.007031249813735485, -0.01406249962747097, -0.0087890625, -0.00856933556497097, -0.00966796837747097, -0.009448242373764515, -0.004833984188735485, -0.0002197265566792339, 0.013403319753706455, 0.01164550706744194, 0.01889648474752903, 0.02373046800494194, 0.03823241963982582, 0.04262695088982582, 0.03779296949505806, 0.04680175706744194, 0.05031738057732582, 0.04812011495232582, 0.03955078125, 0.0340576171875, 0.02680663950741291, 0.01889648474752903, 0.009448242373764515, 0.003735351376235485, -0.013623046688735485, -0.02504882775247097, -0.03603515401482582, -0.04877929389476776, -0.06240234151482582, -0.06679687649011612, -0.07646483927965164, -0.07207030802965164, -0.07229004055261612, -0.068115234375, -0.06899414211511612, -0.05207519233226776, -0.04306640475988388, -0.03164062276482582, -0.014721679501235485, 0.0032958984375, 0.02460937388241291, 0.04570312425494194, 0.06350097805261612, 0.0714111328125, 0.09294433146715164, 0.10195311903953552, 0.11228027194738388, 0.11579589545726776, 0.11337890475988388, 0.10305175185203552, 0.10019531100988388, 0.07822265475988388, 0.05910644307732582, 0.04636230319738388, 0.02109374850988388, 0.0028564452659338713, -0.02329101413488388, -0.04592284932732582, -0.076904296875, -0.0889892578125, -0.10700683295726776, -0.12106933444738388, -0.13381347060203552, -0.13557128608226776, -0.13776855170726776, -0.12832030653953552, -0.11711425334215164, -0.0999755859375, -0.08151855319738388, -0.04899902269244194, -0.02219238132238388, 0.00527343712747097, 0.03559570387005806, 0.07009277492761612, 0.09711913764476776, 0.1175537109375, 0.13930663466453552, 0.15996094048023224, 0.17116698622703552, 0.17336425185203552, 0.16940917074680328, 0.158203125, 0.14128418266773224, 0.123046875, 0.09382323920726776, 0.068115234375, 0.03867187350988388, -0.0046142577193677425, -0.03317870944738388, -0.07294921576976776, -0.09953612834215164, -0.12612304091453552, -0.15974120795726776, -0.17600096762180328, -0.19379882514476776, -0.195556640625, -0.19072264432907104, -0.18171386420726776, -0.15996094048023224, -0.13117675483226776, -0.10788574069738388, -0.06591796875, -0.03383788838982582, 0.0098876953125, 0.04812011495232582, 0.08173827826976776, 0.125244140625, 0.156005859375, 0.18808592855930328, 0.21137695014476776, 0.22675780951976776, 0.22016601264476776, 0.21884764730930328, 0.2109375, 0.18544921278953552, 0.160400390625, 0.129638671875, 0.08305663615465164, 0.03999023512005806, -0.0017578124534338713, -0.04372558370232582, -0.0802001953125, -0.123046875, -0.15688475966453552, -0.19863280653953552, -0.21818846464157104, -0.22939452528953552, -0.23752440512180328, -0.24104003608226776, -0.22104491293430328, -0.19621580839157104, -0.16523437201976776, -0.13117675483226776, -0.0845947265625, -0.04262695088982582, 0.0057128905318677425, 0.05097655951976776, 0.103271484375, 0.14501953125, 0.18391112983226776, 0.22148436307907104, 0.24191893637180328, 0.2583984434604645, 0.27092283964157104, 0.26411131024360657, 0.24543456733226776, 0.21906737983226776, 0.18698729574680328, 0.14897461235523224, 0.10195311903953552, 0.05295410007238388, 0.006591796875, -0.05207519233226776, -0.09624022990465164, -0.13688965141773224, -0.18874511122703552, -0.2186279296875, -0.2507080137729645, -0.26960447430610657, -0.2724609375, -0.27312010526657104, -0.2524658143520355, -0.22609862685203552, -0.18764647841453552, -0.14436034858226776, -0.09140624850988388, -0.04899902269244194, 0.0017578124534338713, 0.05668945237994194, 0.10568847507238388, 0.15534667670726776, 0.20192870497703552, 0.24257811903953552, 0.2647705078125, 0.29157713055610657, 0.2911376953125, 0.2880615293979645, 0.2722412049770355, 0.24609375, 0.19819335639476776, 0.164794921875, 0.11030273139476776, 0.06086425483226776, 0.00637206993997097, -0.05031738057732582, -0.10612792521715164, -0.15227051079273224, -0.19841307401657104, -0.24323730170726776, -0.27399900555610657, -0.2931152284145355, -0.30256345868110657, -0.2964111268520355, -0.274658203125, -0.24411620199680328, -0.19973143935203552, -0.15688475966453552, -0.1087646484375, -0.0516357421875, 0.006152343470603228, 0.06064452975988388, 0.1197509765625, 0.1614990234375, 0.20917968451976776, 0.25334471464157104, 0.2821289002895355, 0.3052001893520355, 0.31816405057907104, 0.30036619305610657, 0.2821289002895355, 0.25927734375, 0.21269530057907104, 0.17402343451976776, 0.11513671278953552, 0.06833495944738388, 0.008129882626235485, -0.05031738057732582, -0.10415038466453552, -0.15556640923023224, -0.20258788764476776, -0.24653320014476776, -0.2733398377895355, -0.2979492247104645, -0.3067382872104645, -0.3045410215854645, -0.28168943524360657, -0.2537841796875, -0.20742186903953552, -0.15842284262180328, -0.10612792521715164, -0.05712890625, 0.0024169920943677425, 0.06064452975988388, 0.11491698771715164, 0.16765137016773224, 0.21818846464157104, 0.2515869140625, 0.28959959745407104, 0.30827635526657104, 0.32080078125, 0.31201171875, 0.2889404296875, 0.2601562440395355, 0.21445311605930328, 0.164794921875, 0.1197509765625, 0.06635741889476776, 0.002197265625, -0.04746093600988388, -0.1021728515625, -0.15776367485523224, -0.204345703125, -0.25114744901657104, -0.2779541015625, -0.30168455839157104, -0.31025388836860657, -0.30322265625, -0.28410643339157104, -0.24895018339157104, -0.20302733778953552, -0.15908202528953552, -0.11337890475988388, -0.054931640625, 0.003955077845603228, 0.06218261644244194, 0.11162108927965164, 0.16347655653953552, 0.21027831733226776, 0.2559814453125, 0.2854247987270355, 0.30058592557907104, 0.3067382872104645, 0.30805662274360657, 0.28081053495407104, 0.2515869140625, 0.20961913466453552, 0.164794921875, 0.11118163913488388, 0.05361327901482582, 0.008129882626235485, -0.05009765550494194, -0.10195311903953552, -0.14787597954273224, -0.19973143935203552, -0.2373046875, -0.26433104276657104, -0.2898193299770355, -0.2931152284145355, -0.292236328125, -0.26960447430610657, -0.24191893637180328, -0.20170897245407104, -0.14875487983226776, -0.09689941257238388, -0.050537109375, 0.00637206993997097, 0.06064452975988388, 0.11074218153953552, 0.15688475966453552, 0.199951171875, 0.23796385526657104, 0.2715820372104645, 0.27949216961860657, 0.2898193299770355, 0.2869628965854645, 0.26411131024360657, 0.23488768935203552, 0.19204100966453552, 0.14875487983226776, 0.10173339396715164, 0.05559081956744194, 0.0004394531133584678, -0.04658202826976776, -0.094482421875, -0.14699706435203552, -0.18215331435203552, -0.21950682997703552, -0.24455565214157104, -0.2623535096645355, -0.27619627118110657, -0.2625732421875, -0.24235838651657104, -0.21928709745407104, -0.17709960043430328, -0.13886718451976776, -0.09184569865465164, -0.03999023512005806, 0.002197265625, 0.052734375, 0.10239257663488388, 0.1461181640625, 0.18588866293430328, 0.21621093153953552, 0.23708495497703552, 0.252685546875, 0.2634521424770355, 0.2502685487270355, 0.2340087890625, 0.20302733778953552, 0.17600096762180328, 0.13139648735523224, 0.09096679091453552, 0.04372558370232582, 0.003955077845603228, -0.04570312425494194, -0.08437499403953552, -0.12172850966453552, -0.1636962890625, -0.186767578125, -0.21796874701976776, -0.23378905653953552, -0.23005370795726776, -0.22675780951976776, -0.20588378608226776, -0.18325194716453552, -0.15249022841453552, -0.11821288615465164, -0.07822265475988388, -0.04020996019244194, 0.002636718563735485, 0.04812011495232582, 0.08437499403953552, 0.12678222358226776, 0.15292967855930328, 0.18435057997703552, 0.20390623807907104, 0.21071776747703552, 0.21357421576976776, 0.20808105170726776, 0.19621580839157104, 0.16962890326976776, 0.14018554985523224, 0.10458984225988388, 0.07888183742761612, 0.037353515625, -0.0008789062267169356, -0.03647460788488388, -0.07207030802965164, -0.10678710788488388, -0.13007812201976776, -0.15029296278953552, -0.16765137016773224, -0.18435057997703552, -0.18874511122703552, -0.17380370199680328, -0.160400390625, -0.14919432997703552, -0.12062987685203552, -0.09096679091453552, -0.06328124552965164, -0.02922363206744194, 0.002636718563735485, 0.03273925557732582, 0.06657714396715164, 0.09536132216453552, 0.11557617038488388, 0.13776855170726776, 0.15446777641773224, 0.1614990234375, 0.15534667670726776, 0.14897461235523224, 0.13798828423023224, 0.12590332329273224, 0.1021728515625, 0.07646483927965164, 0.05537109076976776, 0.02482910081744194, 0.006152343470603228, -0.0230712890625, -0.04921874776482582, -0.07272949069738388, -0.09426268935203552, -0.107666015625, -0.11887206882238388, -0.12062987685203552, -0.12722167372703552, -0.11799316108226776, -0.10722655802965164, -0.09294433146715164, -0.08393554389476776, -0.0626220703125, -0.03911132737994194, -0.02153320237994194, 0.007031249813735485, 0.0263671875, 0.04240722581744194, 0.06196288764476776, 0.07822265475988388, 0.08305663615465164, 0.08657225966453552, 0.09404296427965164, 0.10019531100988388, 0.087890625, 0.08503417670726776, 0.06767577677965164, 0.05844726413488388, 0.04372558370232582, 0.03251953050494194, 0.01911620981991291, -0.005053710658103228, -0.012304686941206455, -0.02900390513241291, -0.03581542894244194, -0.04812011495232582, -0.05624999850988388, -0.05537109076976776, -0.06218261644244194, -0.05734863132238388, -0.0582275390625, -0.04526367038488388, -0.04548339545726776, -0.03757324069738388, -0.02175292931497097, -0.01691894419491291, -0.0076904296875, -0.0006591796409338713, 0.01296386681497097, 0.014501952566206455, 0.01713867112994194, 0.03229980543255806, 0.02724609337747097, 0.02900390513241291, 0.0296630859375, 0.02592773362994194, 0.0230712890625, 0.01691894419491291, 0.015600585378706455, 0.01582031138241291, 0.01582031138241291, 0.01164550706744194, 0.00527343712747097, 0.003735351376235485, 0.001977538922801614, 0.0041748047806322575, -0.0008789062267169356, 0.0013183592818677425, -0.0035156249068677425, 0.002197265625, 0.0008789062267169356, -0.003076171735301614, -0.002636718563735485, -0.0017578124534338713, 0.0035156249068677425, 0.0008789062267169356, -0.0035156249068677425, 0.0008789062267169356, 0.0013183592818677425, 0.0, -0.0028564452659338713, 0.00439453125, -0.0010986328125, 0.0008789062267169356, 0.0013183592818677425, 0.007250976283103228, 0.0017578124534338713, 0.005053710658103228, 0.005932617001235485, 0.003955077845603228, -0.0028564452659338713, -0.0002197265566792339, 0.0006591796409338713, 0.0028564452659338713, 0.00439453125, 0.0002197265566792339, -0.0024169920943677425, -0.002197265625, 0.0013183592818677425, 0.0068115233443677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0046142577193677425, 0.0006591796409338713, 0.006152343470603228, 0.001538085867650807, 0.0, 0.0006591796409338713, 0.001538085867650807, 0.0024169920943677425, 0.0010986328125, 0.00527343712747097, -0.0024169920943677425, -0.0013183592818677425, 0.002197265625, 0.00747070275247097, -0.0010986328125, 0.004833984188735485, 0.0008789062267169356, 0.007250976283103228, 0.0017578124534338713, -0.0010986328125, 0.005053710658103228, 0.006152343470603228, 0.0013183592818677425, 0.003955077845603228, 0.002197265625, 0.005053710658103228, 0.0057128905318677425, -0.001538085867650807, 0.00527343712747097, 0.00439453125, 0.002197265625, 0.0035156249068677425, 0.00637206993997097, 0.002197265625, 0.00527343712747097, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, 0.0, 0.002636718563735485, 0.0032958984375, 0.00527343712747097, -0.0004394531133584678, 0.005053710658103228, 0.003955077845603228, 0.007250976283103228, -0.0017578124534338713, 0.001977538922801614, 0.001977538922801614, -0.0010986328125, -0.007031249813735485, -0.005932617001235485, -0.01582031138241291, -0.008129882626235485, -0.014721679501235485, -0.01186523400247097, -0.009448242373764515, -0.007031249813735485, -0.002197265625, 0.00637206993997097, 0.0087890625, 0.012524413876235485, 0.0263671875, 0.03142089769244194, 0.03933105245232582, 0.04855956882238388, 0.04548339545726776, 0.05317382514476776, 0.05251464620232582, 0.04965820163488388, 0.0494384765625, 0.03823241963982582, 0.03581542894244194, 0.028564453125, 0.010107421316206455, 0.0032958984375, -0.0164794921875, -0.02570800669491291, -0.04592284932732582, -0.05537109076976776, -0.06635741889476776, -0.07558593899011612, -0.08657225966453552, -0.087890625, -0.09162597358226776, -0.08635253459215164, -0.07646483927965164, -0.06569824367761612, -0.05207519233226776, -0.03559570387005806, -0.013403319753706455, 0.0017578124534338713, 0.02285156212747097, 0.0472412109375, 0.0692138671875, 0.08657225966453552, 0.10458984225988388, 0.11821288615465164, 0.12436523288488388, 0.12656249105930328, 0.13359375298023224, 0.1197509765625, 0.10722655802965164, 0.09624022990465164, 0.0758056640625, 0.04965820163488388, 0.02131347544491291, 0.001538085867650807, -0.0318603515625, -0.05515136569738388, -0.08305663615465164, -0.11140136420726776, -0.13315428793430328, -0.142822265625, -0.15424804389476776, -0.1571044921875, -0.16523437201976776, -0.15776367485523224, -0.13469238579273224, -0.11513671278953552, -0.08854980021715164, -0.05778808519244194, -0.02614746056497097, 0.00439453125, 0.04240722581744194, 0.08085937052965164, 0.10590820014476776, 0.1373291015625, 0.16787108778953552, 0.18303221464157104, 0.20061033964157104, 0.20039062201976776, 0.20170897245407104, 0.18281249701976776, 0.16325683891773224, 0.14128418266773224, 0.11711425334215164, 0.08195800334215164, 0.04350585862994194, 0.002197265625, -0.041748046875, -0.08195800334215164, -0.123046875, -0.15380859375, -0.182373046875, -0.2109375, -0.2252197265625, -0.23291015625, -0.21950682997703552, -0.21159666776657104, -0.18435057997703552, -0.15446777641773224, -0.12106933444738388, -0.08151855319738388, -0.0406494140625, 0.0041748047806322575, 0.05207519233226776, 0.09316405653953552, 0.134033203125, 0.17424315214157104, 0.21269530057907104, 0.24082030355930328, 0.24851073324680328, 0.25993651151657104, 0.24960936605930328, 0.23972167074680328, 0.21950682997703552, 0.18171386420726776, 0.1373291015625, 0.10041503608226776, 0.05119628831744194, 0.006591796875, -0.04855956882238388, -0.09162597358226776, -0.14414061605930328, -0.17951659858226776, -0.21489256620407104, -0.25334471464157104, -0.27092283964157104, -0.2766357362270355, -0.2757568359375, -0.2579589784145355, -0.23269042372703552, -0.19182127714157104, -0.15292967855930328, -0.098876953125, -0.04460449144244194, 0.0035156249068677425, 0.06240234151482582, 0.10854491591453552, 0.164794921875, 0.20742186903953552, 0.24345701932907104, 0.279052734375, 0.2997070252895355, 0.3095947206020355, 0.3008056581020355, 0.2843261659145355, 0.25092771649360657, 0.20808105170726776, 0.17138671875, 0.11865234375, 0.05756835639476776, 0.006591796875, -0.04855956882238388, -0.10085448622703552, -0.15402831137180328, -0.21049803495407104, -0.24521483480930328, -0.29179686307907104, -0.3153076171875, -0.31816405057907104, -0.3109130859375, -0.28937986493110657, -0.25642088055610657, -0.2142333984375, -0.16831053793430328, -0.11337890475988388, -0.05690917745232582, 0.003955077845603228, 0.0670166015625, 0.12282714247703552, 0.18105468153953552, 0.22675780951976776, 0.2711425721645355, 0.30937498807907104, 0.3262939453125, 0.3418945074081421, 0.33332517743110657, 0.3076171875, 0.2781738340854645, 0.23422850668430328, 0.18808592855930328, 0.12502440810203552, 0.07097167521715164, 0.005932617001235485, -0.05141601338982582, -0.10788574069738388, -0.16501463949680328, -0.22060546278953552, -0.2724609375, -0.30498045682907104, -0.3309082090854645, -0.3392578065395355, -0.34211423993110657, -0.31926268339157104, -0.2825683653354645, -0.23027342557907104, -0.18500976264476776, -0.12128905951976776, -0.05581054463982582, -0.0013183592818677425, 0.06965331733226776, 0.1197509765625, 0.19072264432907104, 0.24257811903953552, 0.28190916776657104, 0.32893064618110657, 0.3550781011581421, 0.3601318299770355, 0.3513427674770355, 0.3216796815395355, 0.29069823026657104, 0.24411620199680328, 0.19050292670726776, 0.13139648735523224, 0.07163085788488388, 0.007031249813735485, -0.0516357421875, -0.1142578125, -0.177978515625, -0.22675780951976776, -0.28081053495407104, -0.31376951932907104, -0.344970703125, -0.35859373211860657, -0.3568359315395355, -0.32475584745407104, -0.2865234315395355, -0.23818358778953552, -0.18281249701976776, -0.12458495795726776, -0.06503906100988388, 0.005053710658103228, 0.07075195014476776, 0.1285400390625, 0.18479003012180328, 0.23972167074680328, 0.2935546934604645, 0.3240966796875, 0.35551756620407104, 0.3722167909145355, 0.3590331971645355, 0.3331054747104645, 0.2979492247104645, 0.25224608182907104, 0.19973143935203552, 0.13469238579273224, 0.07097167521715164, 0.01384277269244194, -0.05734863132238388, -0.11777343600988388, -0.17292480170726776, -0.22917479276657104, -0.2777343690395355, -0.32343748211860657, -0.3447509706020355, -0.362548828125, -0.3546386659145355, -0.3205810487270355, -0.28718259930610657, -0.2362060546875, -0.18610839545726776, -0.12106933444738388, -0.06130370870232582, 0.0004394531133584678, 0.0626220703125, 0.12678222358226776, 0.18984374403953552, 0.24521483480930328, 0.2909179627895355, 0.32343748211860657, 0.34760740399360657, 0.36188963055610657, 0.3539794683456421, 0.3271728456020355, 0.2825683653354645, 0.24543456733226776, 0.18610839545726776, 0.12897948920726776, 0.06899414211511612, 0.01164550706744194, -0.05646972358226776, -0.10986328125, -0.16765137016773224, -0.2252197265625, -0.2759765684604645, -0.30607908964157104, -0.33002927899360657, -0.34211423993110657, -0.33244627714157104, -0.31574705243110657, -0.2755371034145355, -0.23005370795726776, -0.17666015028953552, -0.11777343600988388, -0.05229492112994194, 0.0028564452659338713, 0.0648193359375, 0.11865234375, 0.177978515625, 0.22456054389476776, 0.270263671875, 0.309814453125, 0.3262939453125, 0.3396972417831421, 0.3197021484375, 0.2997070252895355, 0.2671875059604645, 0.23137205839157104, 0.17753905057907104, 0.12392577528953552, 0.06855468451976776, 0.001538085867650807, -0.05141601338982582, -0.11228027194738388, -0.16083984076976776, -0.21181640028953552, -0.25532224774360657, -0.2902587950229645, -0.30366209149360657, -0.30937498807907104, -0.3045410215854645, -0.27861326932907104, -0.24697265028953552, -0.20566405355930328, -0.1571044921875, -0.10788574069738388, -0.046142578125, 0.007031249813735485, 0.05449218675494194, 0.11228027194738388, 0.16281737387180328, 0.208740234375, 0.2513671815395355, 0.28059080243110657, 0.28828123211860657, 0.2955322265625, 0.2968505918979645, 0.26872557401657104, 0.24191893637180328, 0.2021484375, 0.15336914360523224, 0.103271484375, 0.05361327901482582, 0.0041748047806322575, -0.0439453125, -0.09294433146715164, -0.13886718451976776, -0.18742674589157104, -0.22390136122703552, -0.24367675185203552, -0.26806640625, -0.2726806700229645, -0.2581787109375, -0.24104003608226776, -0.21357421576976776, -0.17995604872703552, -0.13930663466453552, -0.09316405653953552, -0.0439453125, 0.00966796837747097, 0.05427245795726776, 0.10041503608226776, 0.14106445014476776, 0.18281249701976776, 0.20654296875, 0.228515625, 0.2427978515625, 0.2493896484375, 0.24345701932907104, 0.22104491293430328, 0.19489745795726776, 0.16567382216453552, 0.12722167372703552, 0.08964843302965164, 0.03955078125, -0.0013183592818677425, -0.03757324069738388, -0.0802001953125, -0.1241455078125, -0.15314941108226776, -0.18083494901657104, -0.19841307401657104, -0.21577148139476776, -0.21555174887180328, -0.21005858480930328, -0.19204100966453552, -0.16611327230930328, -0.13908691704273224, -0.1109619140625, -0.06877440959215164, -0.03317870944738388, 0.0002197265566792339, 0.04438476264476776, 0.07888183742761612, 0.10722655802965164, 0.134033203125, 0.16259765625, 0.17402343451976776, 0.182373046875, 0.18522948026657104, 0.17929686605930328, 0.16435547173023224, 0.142822265625, 0.12216796725988388, 0.09184569865465164, 0.05712890625, 0.03757324069738388, -0.002636718563735485, -0.02812499925494194, -0.054931640625, -0.08745116740465164, -0.10832519084215164, -0.12897948920726776, -0.13645018637180328, -0.14589843153953552, -0.14875487983226776, -0.13645018637180328, -0.12656249105930328, -0.11140136420726776, -0.09316405653953552, -0.07448730617761612, -0.04921874776482582, -0.02658691257238388, 0.0028564452659338713, 0.03208007663488388, 0.04768066108226776, 0.07229004055261612, 0.08261718600988388, 0.10371093451976776, 0.11228027194738388, 0.11052245646715164, 0.107666015625, 0.11249999701976776, 0.10283202677965164, 0.08085937052965164, 0.07294921576976776, 0.05537109076976776, 0.03164062276482582, 0.01735839806497097, -0.0013183592818677425, -0.017578125, -0.028564453125, -0.03977050632238388, -0.05207519233226776, -0.05778808519244194, -0.07207030802965164, -0.07163085788488388, -0.0648193359375, -0.06789550930261612, -0.05471191182732582, -0.04899902269244194, -0.04372558370232582, -0.02944335900247097, -0.02109374850988388, -0.0057128905318677425, 0.003076171735301614, 0.011425781063735485, 0.01516113243997097, 0.02197265625, 0.02922363206744194, 0.03713378682732582, 0.0362548828125, 0.03339843824505806, 0.02790527231991291, 0.0252685546875, 0.0263671875, 0.01669921912252903, 0.01691894419491291, 0.01669921912252903, 0.0046142577193677425, 0.00856933556497097, 0.004833984188735485, 0.0041748047806322575, -0.0010986328125, -0.003076171735301614, -0.0004394531133584678, 0.003955077845603228, 0.0041748047806322575, -0.0010986328125, 0.0032958984375, -0.00439453125, -0.001977538922801614, -0.0008789062267169356, -0.0028564452659338713, 0.003735351376235485, 0.0028564452659338713, 0.003076171735301614, -0.0010986328125, -0.0024169920943677425, 0.0017578124534338713, 0.0008789062267169356, 0.0008789062267169356, -0.0013183592818677425, 0.0024169920943677425, -0.0010986328125, 0.005932617001235485, -0.0010986328125, 0.00527343712747097, 0.0035156249068677425, 0.00527343712747097, 0.009008788503706455, 0.003955077845603228, 0.003076171735301614, 0.002636718563735485, 0.003955077845603228, 0.007031249813735485, 0.004833984188735485, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0004394531133584678, 0.001538085867650807, 0.0024169920943677425, -0.002197265625, 0.0, 0.001538085867650807, 0.0006591796409338713, 0.0008789062267169356, -0.0013183592818677425, 0.0057128905318677425, 0.003955077845603228, -0.003076171735301614, 0.0, 0.001977538922801614, 0.0008789062267169356, 0.0006591796409338713, 0.0057128905318677425, -0.0010986328125, 0.001977538922801614, -0.003735351376235485, 0.0024169920943677425, -0.0017578124534338713, 0.003955077845603228, 0.0041748047806322575, -0.003076171735301614, 0.005053710658103228, -0.0008789062267169356, 0.0035156249068677425, 0.0041748047806322575, 0.0046142577193677425, -0.001538085867650807, 0.005053710658103228, 0.003735351376235485, -0.001538085867650807, 0.00439453125, 0.0006591796409338713, -0.0032958984375, 0.007031249813735485, 0.0010986328125, 0.0002197265566792339, 0.001977538922801614, 0.003735351376235485, -0.0006591796409338713, 0.005053710658103228, 0.0002197265566792339, 0.005932617001235485, 0.001538085867650807, -0.0054931640625, -0.001977538922801614, 0.0002197265566792339, -0.0098876953125, -0.010986328125, -0.010327148251235485, -0.01669921912252903, -0.019775390625, -0.01582031138241291, -0.01406249962747097, -0.010986328125, 0.0, 0.003955077845603228, 0.007250976283103228, 0.01779785193502903, 0.028564453125, 0.03691406175494194, 0.04196777194738388, 0.05646972358226776, 0.05624999850988388, 0.06525878608226776, 0.06328124552965164, 0.05910644307732582, 0.05690917745232582, 0.04768066108226776, 0.03537597507238388, 0.03339843824505806, 0.01691894419491291, 0.0004394531133584678, -0.01296386681497097, -0.03273925557732582, -0.04680175706744194, -0.06547851115465164, -0.07404784858226776, -0.09140624850988388, -0.09294433146715164, -0.098876953125, -0.10612792521715164, -0.0966796875, -0.08349609375, -0.07404784858226776, -0.05581054463982582, -0.03889160230755806, -0.019775390625, 0.00527343712747097, 0.03142089769244194, 0.05141601338982582, 0.07888183742761612, 0.10019531100988388, 0.11447753757238388, 0.13601073622703552, 0.13974608480930328, 0.14501953125, 0.14985351264476776, 0.13974608480930328, 0.13139648735523224, 0.1131591796875, 0.08811035007238388, 0.06306152045726776, 0.028564453125, 0.0024169920943677425, -0.02812499925494194, -0.0648193359375, -0.09580077975988388, -0.12062987685203552, -0.1439208984375, -0.16435547173023224, -0.17775878310203552, -0.18808592855930328, -0.17841796576976776, -0.17226561903953552, -0.15666504204273224, -0.1285400390625, -0.10019531100988388, -0.07097167521715164, -0.03251953050494194, 0.0013183592818677425, 0.04812011495232582, 0.08217773586511612, 0.12019042670726776, 0.15073241293430328, 0.18764647841453552, 0.20917968451976776, 0.22609862685203552, 0.22763670980930328, 0.22258299589157104, 0.21379393339157104, 0.18544921278953552, 0.164794921875, 0.12832030653953552, 0.08591308444738388, 0.04833984375, 0.0035156249068677425, -0.0384521484375, -0.08745116740465164, -0.13095702230930328, -0.17006835341453552, -0.19929198920726776, -0.22785644233226776, -0.24916991591453552, -0.2616943418979645, -0.2546630799770355, -0.2384033203125, -0.20917968451976776, -0.18215331435203552, -0.14128418266773224, -0.09689941257238388, -0.04790038987994194, 0.007910155691206455, 0.0615234375, 0.107666015625, 0.15205077826976776, 0.19929198920726776, 0.2406005859375, 0.2691650390625, 0.2900390625, 0.2898193299770355, 0.29377439618110657, 0.26630857586860657, 0.23906248807907104, 0.2076416015625, 0.16171874105930328, 0.11777343600988388, 0.06240234151482582, 0.006591796875, -0.04746093600988388, -0.10195311903953552, -0.15205077826976776, -0.1988525390625, -0.24631346762180328, -0.2825683653354645, -0.3111328184604645, -0.3128906190395355, -0.3128906190395355, -0.2832275331020355, -0.2601562440395355, -0.21357421576976776, -0.1702880859375, -0.1131591796875, -0.05031738057732582, 0.0068115233443677425, 0.06613769382238388, 0.12656249105930328, 0.18303221464157104, 0.22543944418430328, 0.2722412049770355, 0.3095947206020355, 0.33837890625, 0.34716796875, 0.3427734375, 0.31135252118110657, 0.2788330018520355, 0.23664550483226776, 0.18544921278953552, 0.13095702230930328, 0.07207030802965164, 0.010107421316206455, -0.0538330078125, -0.11711425334215164, -0.17204588651657104, -0.22565917670726776, -0.27399900555610657, -0.3150878846645355, -0.3535400331020355, -0.36430662870407104, -0.3524414002895355, -0.33442381024360657, -0.2876220643520355, -0.23862303793430328, -0.18742674589157104, -0.12348632514476776, -0.06437987834215164, 0.005932617001235485, 0.06943359225988388, 0.1351318359375, 0.19423827528953552, 0.24982909858226776, 0.3001464903354645, 0.3458496034145355, 0.3726562261581421, 0.3847411870956421, 0.37529295682907104, 0.34870603680610657, 0.3084960877895355, 0.2612548768520355, 0.20478515326976776, 0.14216308295726776, 0.0780029296875, 0.00856933556497097, -0.05119628831744194, -0.12238769233226776, -0.18193358182907104, -0.24016112089157104, -0.30058592557907104, -0.34453123807907104, -0.37749022245407104, -0.39506834745407104, -0.3858398199081421, -0.3513427674770355, -0.31135252118110657, -0.25861814618110657, -0.2021484375, -0.13776855170726776, -0.06503906100988388, -0.0002197265566792339, 0.07119140774011612, 0.13820800185203552, 0.20720213651657104, 0.26433104276657104, 0.31464841961860657, 0.35881346464157104, 0.3913329839706421, 0.4119873046875, 0.40385740995407104, 0.3700195252895355, 0.322998046875, 0.2759765684604645, 0.2197265625, 0.15095214545726776, 0.07976073771715164, 0.01076660118997097, -0.05844726413488388, -0.11953124403953552, -0.19357909262180328, -0.2471923828125, -0.3100341856479645, -0.35002440214157104, -0.3886962831020355, -0.4062744081020355, -0.3944091796875, -0.3667236268520355, -0.32893064618110657, -0.2682861387729645, -0.20632323622703552, -0.13996581733226776, -0.07844237983226776, 0.003955077845603228, 0.07119140774011612, 0.13623046875, 0.2142333984375, 0.2647705078125, 0.327392578125, 0.37639158964157104, 0.39946287870407104, 0.41572263836860657, 0.4023193120956421, 0.3812255859375, 0.3328857421875, 0.27751463651657104, 0.21621093153953552, 0.15446777641773224, 0.08305663615465164, 0.01186523400247097, -0.0582275390625, -0.12106933444738388, -0.19423827528953552, -0.2601562440395355, -0.3065185546875, -0.35969236493110657, -0.38935545086860657, -0.4023193120956421, -0.3988037109375, -0.3689208924770355, -0.32805174589157104, -0.2638916075229645, -0.21027831733226776, -0.13710936903953552, -0.06613769382238388, 0.003955077845603228, 0.0780029296875, 0.13974608480930328, 0.21533203125, 0.2737793028354645, 0.32915037870407104, 0.3658447265625, 0.4018798768520355, 0.4144042730331421, 0.4053955078125, 0.3656249940395355, 0.3315673768520355, 0.270263671875, 0.20939940214157104, 0.14589843153953552, 0.0802001953125, 0.01296386681497097, -0.05559081956744194, -0.12897948920726776, -0.1900634765625, -0.24982909858226776, -0.3030029237270355, -0.3425537049770355, -0.3821044862270355, -0.3974853456020355, -0.3799072206020355, -0.3546386659145355, -0.30607908964157104, -0.2568603456020355, -0.19621580839157104, -0.12985838949680328, -0.06437987834215164, -0.0002197265566792339, 0.07294921576976776, 0.14128418266773224, 0.19819335639476776, 0.26213377714157104, 0.3067382872104645, 0.3460693359375, 0.37353515625, 0.3825439214706421, 0.3790283203125, 0.3502441346645355, 0.30256345868110657, 0.2502685487270355, 0.20083007216453552, 0.13645018637180328, 0.07976073771715164, 0.0054931640625, -0.05251464620232582, -0.11909179389476776, -0.1746826171875, -0.23312987387180328, -0.2836669981479645, -0.32585448026657104, -0.35639646649360657, -0.36320799589157104, -0.3460693359375, -0.3205810487270355, -0.28850096464157104, -0.23906248807907104, -0.18632811307907104, -0.11689452826976776, -0.06174316257238388, 0.002636718563735485, 0.06723632663488388, 0.13425292074680328, 0.191162109375, 0.23422850668430328, 0.2836669981479645, 0.31816405057907104, 0.3353027403354645, 0.3392578065395355, 0.33002927899360657, 0.31354978680610657, 0.2669677734375, 0.22983397543430328, 0.17556151747703552, 0.12041015177965164, 0.06613769382238388, 0.006152343470603228, -0.04921874776482582, -0.1065673828125, -0.16457518935203552, -0.21137695014476776, -0.25224608182907104, -0.2902587950229645, -0.3008056581020355, -0.31201171875, -0.30805662274360657, -0.2748779356479645, -0.2427978515625, -0.19841307401657104, -0.15402831137180328, -0.103271484375, -0.0516357421875, 0.010986328125, 0.05537109076976776, 0.11491698771715164, 0.16721190512180328, 0.19907225668430328, 0.24169921875, 0.26762694120407104, 0.2845458984375, 0.2847656309604645, 0.2737793028354645, 0.25224608182907104, 0.22412109375, 0.18522948026657104, 0.1417236328125, 0.10195311903953552, 0.05009765550494194, 0.005053710658103228, -0.04658202826976776, -0.09030761569738388, -0.1318359375, -0.17138671875, -0.20742186903953552, -0.23532713949680328, -0.24653320014476776, -0.24257811903953552, -0.24038085341453552, -0.226318359375, -0.1966552734375, -0.16127929091453552, -0.11997070163488388, -0.08107910305261612, -0.03713378682732582, 0.0041748047806322575, 0.04526367038488388, 0.08854980021715164, 0.1318359375, 0.16215820610523224, 0.18720702826976776, 0.20017088949680328, 0.21665038168430328, 0.21665038168430328, 0.20566405355930328, 0.1922607421875, 0.16281737387180328, 0.14216308295726776, 0.11052245646715164, 0.0736083984375, 0.03999023512005806, -0.001977538922801614, -0.03471679612994194, -0.06350097805261612, -0.09624022990465164, -0.12656249105930328, -0.14238281548023224, -0.16062010824680328, -0.16787108778953552, -0.16896972060203552, -0.16171874105930328, -0.15007324516773224, -0.13227538764476776, -0.107666015625, -0.07756347209215164, -0.05559081956744194, -0.02021484263241291, 0.003735351376235485, 0.03603515401482582, 0.05515136569738388, 0.07734374701976776, 0.1043701171875, 0.11557617038488388, 0.12370605021715164, 0.13535155355930328, 0.1307373046875, 0.12106933444738388, 0.11711425334215164, 0.10239257663488388, 0.08305663615465164, 0.06306152045726776, 0.04460449144244194, 0.024169921875, -0.0035156249068677425, -0.01691894419491291, -0.03867187350988388, -0.05317382514476776, -0.063720703125, -0.0736083984375, -0.07866210490465164, -0.08063964545726776, -0.08305663615465164, -0.07514648139476776, -0.07075195014476776, -0.05910644307732582, -0.04702148213982582, -0.03251953050494194, -0.0186767578125, -0.006591796875, 0.007031249813735485, 0.0098876953125, 0.02263183519244194, 0.02570800669491291, 0.03142089769244194, 0.03669433668255806, 0.0406494140625, 0.03977050632238388, 0.04108886793255806, 0.03603515401482582, 0.03208007663488388, 0.02153320237994194, 0.02197265625, 0.0142822265625, 0.01076660118997097, 0.004833984188735485, -0.0017578124534338713, -0.0028564452659338713, 0.004833984188735485, 0.005053710658103228, 0.0010986328125, 0.0010986328125, -0.005053710658103228, 0.003955077845603228, -0.003955077845603228, -0.0046142577193677425, 0.003735351376235485, -0.0028564452659338713, 0.0024169920943677425, 0.003076171735301614, 0.0028564452659338713, 0.0008789062267169356, 0.004833984188735485, 0.005053710658103228, -0.0006591796409338713, -0.0004394531133584678, -0.0008789062267169356, 0.00439453125, -0.0028564452659338713, 0.008129882626235485, 0.0032958984375, 0.003955077845603228, 0.007031249813735485, 0.006591796875, 0.00856933556497097, 0.003955077845603228, -0.0006591796409338713, -0.0017578124534338713, 0.0046142577193677425, 0.0054931640625, 0.005932617001235485, -0.0002197265566792339, -0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0054931640625, 0.001538085867650807, -0.0010986328125, 0.0, 0.0002197265566792339, -0.0006591796409338713, 0.00439453125, -0.0024169920943677425, 0.002197265625, 0.007910155691206455, -0.002197265625, -0.001538085867650807, 0.0008789062267169356, 0.00439453125, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0006591796409338713, -0.003955077845603228, -0.0013183592818677425, 0.003955077845603228, 0.0028564452659338713, 0.003955077845603228, 0.0006591796409338713, 0.005053710658103228, -0.002636718563735485, -0.0017578124534338713, 0.006152343470603228, 0.002197265625, -0.003076171735301614, 0.0024169920943677425, -0.0032958984375, 0.0010986328125, -0.0032958984375, 0.006152343470603228, 0.0004394531133584678, -0.0010986328125, 0.0041748047806322575, 0.003735351376235485, 0.008349609561264515, 0.0017578124534338713, 0.003076171735301614, -0.0008789062267169356, 0.0035156249068677425, -0.0008789062267169356, 0.0004394531133584678, -0.003735351376235485, -0.01076660118997097, -0.013403319753706455, -0.01494140550494194, -0.01911620981991291, -0.01955566368997097, -0.0164794921875, -0.02175292931497097, -0.01296386681497097, -0.010107421316206455, -0.0087890625, 0.006591796875, 0.009448242373764515, 0.02153320237994194, 0.03251953050494194, 0.04196777194738388, 0.04658202826976776, 0.0626220703125, 0.06569824367761612, 0.06240234151482582, 0.0670166015625, 0.063720703125, 0.059326171875, 0.05976562201976776, 0.0406494140625, 0.03010253794491291, 0.01955566368997097, -0.00637206993997097, -0.01933593675494194, -0.04328612983226776, -0.0560302734375, -0.07382812350988388, -0.08767089247703552, -0.09733886271715164, -0.10744628310203552, -0.10964354872703552, -0.11228027194738388, -0.10854491591453552, -0.09624022990465164, -0.08854980021715164, -0.06306152045726776, -0.04240722581744194, -0.0186767578125, 0.009228515438735485, 0.037353515625, 0.06240234151482582, 0.08415526896715164, 0.10942382365465164, 0.13776855170726776, 0.14787597954273224, 0.15798339247703552, 0.16215820610523224, 0.16062010824680328, 0.15314941108226776, 0.13864745199680328, 0.12480468302965164, 0.09360351413488388, 0.06525878608226776, 0.037353515625, 0.003955077845603228, -0.03251953050494194, -0.07448730617761612, -0.10173339396715164, -0.13315428793430328, -0.16501463949680328, -0.18654784560203552, -0.20061033964157104, -0.2098388671875, -0.20258788764476776, -0.19643554091453552, -0.17182616889476776, -0.14084471762180328, -0.10942382365465164, -0.07932128757238388, -0.03757324069738388, 0.0054931640625, 0.052734375, 0.09206542372703552, 0.13666991889476776, 0.169189453125, 0.20786131918430328, 0.22587889432907104, 0.2513671815395355, 0.248291015625, 0.25554198026657104, 0.23664550483226776, 0.2120361328125, 0.18105468153953552, 0.14436034858226776, 0.10041503608226776, 0.05427245795726776, 0.007250976283103228, -0.04636230319738388, -0.10085448622703552, -0.14194335043430328, -0.18369139730930328, -0.22434081137180328, -0.25751951336860657, -0.2803710997104645, -0.287841796875, -0.2825683653354645, -0.2647705078125, -0.243896484375, -0.20258788764476776, -0.15578612685203552, -0.10261230170726776, -0.04877929389476776, 0.009228515438735485, 0.05734863132238388, 0.11491698771715164, 0.17380370199680328, 0.21774901449680328, 0.2557617127895355, 0.2933349609375, 0.3122314512729645, 0.32695311307907104, 0.31904295086860657, 0.3043212890625, 0.2647705078125, 0.22434081137180328, 0.18083494901657104, 0.120849609375, 0.06745605170726776, 0.009228515438735485, -0.04987792670726776, -0.10788574069738388, -0.17160643637180328, -0.21730956435203552, -0.26982420682907104, -0.30607908964157104, -0.33552244305610657, -0.34562987089157104, -0.3451904058456421, -0.3260742127895355, -0.2814697325229645, -0.24367675185203552, -0.18720702826976776, -0.12260741740465164, -0.06657714396715164, -0.0008789062267169356, 0.06503906100988388, 0.12897948920726776, 0.19577635824680328, 0.24895018339157104, 0.29707029461860657, 0.3469482362270355, 0.3766113221645355, 0.3886962831020355, 0.3704589605331421, 0.34672850370407104, 0.3084960877895355, 0.270263671875, 0.20368652045726776, 0.14919432997703552, 0.07932128757238388, 0.01625976525247097, -0.05097655951976776, -0.12041015177965164, -0.18435057997703552, -0.24301756918430328, -0.3073974549770355, -0.3491455018520355, -0.3864990174770355, -0.3966064453125, -0.3924316167831421, -0.369140625, -0.3194824159145355, -0.26960447430610657, -0.21027831733226776, -0.13930663466453552, -0.07294921576976776, -0.0032958984375, 0.07009277492761612, 0.13930663466453552, 0.20961913466453552, 0.27092283964157104, 0.32783201336860657, 0.37617185711860657, 0.4095703065395355, 0.4183593690395355, 0.42033690214157104, 0.38386228680610657, 0.3407958745956421, 0.2924560606479645, 0.21950682997703552, 0.1549072265625, 0.08217773586511612, 0.0164794921875, -0.0516357421875, -0.13359375298023224, -0.19313964247703552, -0.2645507752895355, -0.3218994140625, -0.37419432401657104, -0.41374510526657104, -0.42626953125, -0.42121580243110657, -0.3955078125, -0.3436523377895355, -0.2887206971645355, -0.22126464545726776, -0.15292967855930328, -0.07866210490465164, -0.007031249813735485, 0.07053222507238388, 0.14216308295726776, 0.2252197265625, 0.29047849774360657, 0.3504638671875, 0.397705078125, 0.4363769292831421, 0.44978025555610657, 0.4440673589706421, 0.40275877714157104, 0.3594726324081421, 0.2990478575229645, 0.239501953125, 0.17204588651657104, 0.09821777045726776, 0.0186767578125, -0.05910644307732582, -0.12875975668430328, -0.20654296875, -0.2722412049770355, -0.3381591737270355, -0.3880370855331421, -0.43220213055610657, -0.44428709149360657, -0.43549802899360657, -0.40385740995407104, -0.35771483182907104, -0.29267576336860657, -0.22543944418430328, -0.15402831137180328, -0.08063964545726776, 0.0035156249068677425, 0.07822265475988388, 0.14523924887180328, 0.22236327826976776, 0.29487302899360657, 0.3546386659145355, 0.404296875, 0.4482421875, 0.44978025555610657, 0.44450682401657104, 0.41682127118110657, 0.37177732586860657, 0.3078369200229645, 0.24016112089157104, 0.16501463949680328, 0.090087890625, 0.02438964694738388, -0.05734863132238388, -0.13359375298023224, -0.20720213651657104, -0.2737793028354645, -0.3353027403354645, -0.39506834745407104, -0.432861328125, -0.4484618902206421, -0.4405517578125, -0.41242673993110657, -0.35661619901657104, -0.29443359375, -0.22434081137180328, -0.14985351264476776, -0.07866210490465164, -0.007910155691206455, 0.06745605170726776, 0.15622557699680328, 0.228515625, 0.29619139432907104, 0.35595703125, 0.4001220464706421, 0.43901365995407104, 0.44978025555610657, 0.4462646245956421, 0.41242673993110657, 0.35881346464157104, 0.29816892743110657, 0.23994140326976776, 0.1669921875, 0.09536132216453552, 0.01296386681497097, -0.05559081956744194, -0.13315428793430328, -0.20961913466453552, -0.27509763836860657, -0.32475584745407104, -0.3858398199081421, -0.4155029058456421, -0.4308837652206421, -0.4339599609375, -0.38847655057907104, -0.3513427674770355, -0.28278806805610657, -0.2142333984375, -0.1461181640625, -0.07734374701976776, -0.0004394531133584678, 0.07954101264476776, 0.14194335043430328, 0.21555174887180328, 0.28828123211860657, 0.3372802734375, 0.38825681805610657, 0.4194580018520355, 0.42890623211860657, 0.4198974370956421, 0.37946775555610657, 0.3374999761581421, 0.2777343690395355, 0.21994628012180328, 0.15073241293430328, 0.07998047024011612, 0.0164794921875, -0.06240234151482582, -0.12436523288488388, -0.1988525390625, -0.25642088055610657, -0.31245115399360657, -0.3627685308456421, -0.3919921815395355, -0.40583494305610657, -0.40253904461860657, -0.36210936307907104, -0.31684568524360657, -0.26652830839157104, -0.20588378608226776, -0.13227538764476776, -0.06899414211511612, -0.0013183592818677425, 0.07097167521715164, 0.13820800185203552, 0.20500487089157104, 0.2625732421875, 0.3087158203125, 0.3535400331020355, 0.37836912274360657, 0.38671875, 0.3834228515625, 0.3515625, 0.2975097596645355, 0.2524658143520355, 0.19797362387180328, 0.13337402045726776, 0.07009277492761612, 0.003955077845603228, -0.0582275390625, -0.12348632514476776, -0.1834716796875, -0.23247069120407104, -0.2759765684604645, -0.32036131620407104, -0.34892576932907104, -0.3515625, -0.3407958745956421, -0.314208984375, -0.2814697325229645, -0.23356932401657104, -0.17929686605930328, -0.11557617038488388, -0.054931640625, 0.0054931640625, 0.063720703125, 0.12326660007238388, 0.186767578125, 0.22719725966453552, 0.2726806700229645, 0.30476072430610657, 0.3240966796875, 0.3216796815395355, 0.31135252118110657, 0.2942138612270355, 0.25664061307907104, 0.21137695014476776, 0.15886230766773224, 0.11447753757238388, 0.06064452975988388, 0.0, -0.05075683444738388, -0.10612792521715164, -0.15314941108226776, -0.19929198920726776, -0.23576658964157104, -0.26103514432907104, -0.27399900555610657, -0.2801513671875, -0.26542967557907104, -0.25004881620407104, -0.21906737983226776, -0.18193358182907104, -0.13666991889476776, -0.09536132216453552, -0.04152831807732582, 0.007250976283103228, 0.054931640625, 0.10744628310203552, 0.14084471762180328, 0.17973631620407104, 0.21357421576976776, 0.22763670980930328, 0.24235838651657104, 0.23862303793430328, 0.23291015625, 0.21225585043430328, 0.18830566108226776, 0.160400390625, 0.11821288615465164, 0.07558593899011612, 0.03713378682732582, -0.003955077845603228, -0.03559570387005806, -0.08151855319738388, -0.10788574069738388, -0.13996581733226776, -0.16523437201976776, -0.17666015028953552, -0.19182127714157104, -0.18852537870407104, -0.17951659858226776, -0.17094725370407104, -0.14809569716453552, -0.12260741740465164, -0.087890625, -0.05954589694738388, -0.02834472618997097, 0.007250976283103228, 0.03867187350988388, 0.06416015326976776, 0.08811035007238388, 0.11293944716453552, 0.1307373046875, 0.14238281548023224, 0.15073241293430328, 0.14260253310203552, 0.1373291015625, 0.12897948920726776, 0.11777343600988388, 0.09514159709215164, 0.06987304240465164, 0.04592284932732582, 0.02768554538488388, 0.0028564452659338713, -0.02460937388241291, -0.04020996019244194, -0.06547851115465164, -0.0703125, -0.07976073771715164, -0.09030761569738388, -0.08986815810203552, -0.0911865234375, -0.0823974609375, -0.07624511420726776, -0.07009277492761612, -0.05031738057732582, -0.04152831807732582, -0.0296630859375, -0.008129882626235485, 0.0054931640625, 0.009008788503706455, 0.02460937388241291, 0.0362548828125, 0.04086913913488388, 0.04526367038488388, 0.0516357421875, 0.0406494140625, 0.04086913913488388, 0.03581542894244194, 0.03669433668255806, 0.03054199181497097, 0.01933593675494194, 0.014501952566206455, 0.013623046688735485, 0.007910155691206455, 0.0028564452659338713, -0.0008789062267169356, 0.001538085867650807, 0.001538085867650807, -0.0032958984375, 0.0013183592818677425, 0.001538085867650807, 0.0004394531133584678, 0.001538085867650807, 0.0017578124534338713, -0.0024169920943677425, -0.00527343712747097, 0.003735351376235485, -0.004833984188735485, 0.001538085867650807, 0.0024169920943677425, 0.003735351376235485, -0.003735351376235485, -0.0013183592818677425, 0.003955077845603228, 0.001977538922801614, 0.0035156249068677425, 0.0068115233443677425, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, 0.006591796875, -0.0002197265566792339, 0.0008789062267169356, -0.001977538922801614, 0.0017578124534338713, 0.002197265625, -0.0008789062267169356, 0.002636718563735485, -0.0008789062267169356, 0.00439453125, 0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.15 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, 0.00637206993997097, -0.0024169920943677425, 0.0013183592818677425, 0.005932617001235485, 0.004833984188735485, 0.0010986328125, 0.005053710658103228, 0.003735351376235485, 0.00527343712747097, -0.0010986328125, 0.002636718563735485, 0.0, -0.0010986328125, 0.0010986328125, 0.0017578124534338713, -0.002197265625, 0.0032958984375, -0.001977538922801614, 0.0006591796409338713, -0.0008789062267169356, 0.00439453125, 0.0054931640625, 0.0041748047806322575, 0.0046142577193677425, 0.0002197265566792339, 0.0010986328125, -0.0010986328125, -0.0008789062267169356, 0.00637206993997097, 0.005053710658103228, 0.0041748047806322575, 0.0024169920943677425, -0.0006591796409338713, 0.005053710658103228, -0.0006591796409338713, -0.0013183592818677425, 0.004833984188735485, 0.0008789062267169356, 0.0006591796409338713, 0.0046142577193677425, 0.00439453125, -0.0010986328125, 0.0010986328125, 0.0010986328125, 0.0046142577193677425, -0.0013183592818677425, 0.0032958984375, -0.007250976283103228, -0.005053710658103228, -0.0120849609375, -0.01604003831744194, -0.02285156212747097, -0.01933593675494194, -0.01801757700741291, -0.01669921912252903, -0.01604003831744194, -0.0057128905318677425, -0.0017578124534338713, 0.0008789062267169356, 0.01054687425494194, 0.0208740234375, 0.03493652120232582, 0.04899902269244194, 0.05712890625, 0.068115234375, 0.0670166015625, 0.07207030802965164, 0.07866210490465164, 0.07558593899011612, 0.06416015326976776, 0.06108398362994194, 0.04855956882238388, 0.03208007663488388, 0.01494140550494194, -0.003076171735301614, -0.02504882775247097, -0.04130859300494194, -0.06437987834215164, -0.08085937052965164, -0.09624022990465164, -0.10744628310203552, -0.12348632514476776, -0.12766112387180328, -0.12919922173023224, -0.11887206882238388, -0.10920409858226776, -0.09404296427965164, -0.07492675632238388, -0.04877929389476776, -0.02351074106991291, 0.007250976283103228, 0.03999023512005806, 0.07163085788488388, 0.09799804538488388, 0.12392577528953552, 0.14963378012180328, 0.1614990234375, 0.17841796576976776, 0.18544921278953552, 0.18522948026657104, 0.16896972060203552, 0.15380859375, 0.13337402045726776, 0.10524901747703552, 0.07558593899011612, 0.03515625, -0.0017578124534338713, -0.04262695088982582, -0.08371581882238388, -0.11689452826976776, -0.1483154296875, -0.18544921278953552, -0.20786131918430328, -0.22038573026657104, -0.22609862685203552, -0.22038573026657104, -0.20852050185203552, -0.1966552734375, -0.16611327230930328, -0.12348632514476776, -0.0867919921875, -0.03867187350988388, 0.006591796875, 0.05229492112994194, 0.10063476115465164, 0.14260253310203552, 0.18940429389476776, 0.21994628012180328, 0.2551025450229645, 0.27861326932907104, 0.28168943524360657, 0.2814697325229645, 0.25883787870407104, 0.23532713949680328, 0.19401854276657104, 0.15578612685203552, 0.10502929240465164, 0.0582275390625, 0.0013183592818677425, -0.04482421651482582, -0.10393065959215164, -0.1614990234375, -0.20061033964157104, -0.24191893637180328, -0.28608396649360657, -0.3052001893520355, -0.3177246153354645, -0.3150878846645355, -0.2913574278354645, -0.2627929747104645, -0.22126464545726776, -0.16391600668430328, -0.11623534560203552, -0.054931640625, -0.0008789062267169356, 0.06525878608226776, 0.129638671875, 0.17951659858226776, 0.23466795682907104, 0.28125, 0.3218994140625, 0.34343260526657104, 0.35112303495407104, 0.35551756620407104, 0.3315673768520355, 0.28630369901657104, 0.24807128310203552, 0.1966552734375, 0.14018554985523224, 0.07382812350988388, 0.00966796837747097, -0.05471191182732582, -0.12172850966453552, -0.18435057997703552, -0.23862303793430328, -0.2957519590854645, -0.33771970868110657, -0.36540526151657104, -0.3812255859375, -0.37529295682907104, -0.35002440214157104, -0.3128906190395355, -0.2568603456020355, -0.20148925483226776, -0.134033203125, -0.07075195014476776, 0.0035156249068677425, 0.06679687649011612, 0.140625, 0.20808105170726776, 0.274658203125, 0.32585448026657104, 0.3715575933456421, 0.4095703065395355, 0.4242919683456421, 0.4205566346645355, 0.38056638836860657, 0.33684080839157104, 0.2836669981479645, 0.2252197265625, 0.16062010824680328, 0.09206542372703552, 0.0186767578125, -0.05405273288488388, -0.13029785454273224, -0.19489745795726776, -0.2660888731479645, -0.33024901151657104, -0.369140625, -0.4172607362270355, -0.4361572265625, -0.4238525331020355, -0.39814451336860657, -0.34541013836860657, -0.2975097596645355, -0.22873534262180328, -0.15974120795726776, -0.0867919921875, -0.0032958984375, 0.07932128757238388, 0.14963378012180328, 0.2230224609375, 0.296630859375, 0.35881346464157104, 0.41242673993110657, 0.4418700933456421, 0.44978025555610657, 0.44978025555610657, 0.424072265625, 0.3803466558456421, 0.31135252118110657, 0.2518066465854645, 0.17490233480930328, 0.103271484375, 0.01933593675494194, -0.06020507588982582, -0.13601073622703552, -0.20478515326976776, -0.2770752012729645, -0.34013670682907104, -0.4075927734375, -0.4451659917831421, -0.44999998807907104, -0.44999998807907104, -0.4315429627895355, -0.3768310546875, -0.31574705243110657, -0.24433593451976776, -0.16721190512180328, -0.09294433146715164, -0.0057128905318677425, 0.07470703125, 0.15446777641773224, 0.22895507514476776, 0.30476072430610657, 0.37397459149360657, 0.4286864995956421, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44428709149360657, 0.39616698026657104, 0.33354490995407104, 0.26301267743110657, 0.18544921278953552, 0.1043701171875, 0.02043456956744194, -0.0582275390625, -0.13798828423023224, -0.21467284858226776, -0.28388670086860657, -0.3515625, -0.4155029058456421, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.446044921875, -0.3847411870956421, -0.31926268339157104, -0.25532224774360657, -0.17270506918430328, -0.08503417670726776, -0.011425781063735485, 0.07756347209215164, 0.15886230766773224, 0.24016112089157104, 0.3133300840854645, 0.375732421875, 0.43132323026657104, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.39265134930610657, 0.3315673768520355, 0.25642088055610657, 0.1812744140625, 0.10898437350988388, 0.02504882775247097, -0.0560302734375, -0.1307373046875, -0.21247558295726776, -0.29443359375, -0.3605712652206421, -0.40869140625, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.44011229276657104, -0.3858398199081421, -0.3218994140625, -0.24213866889476776, -0.1746826171875, -0.09052734076976776, -0.007250976283103228, 0.07163085788488388, 0.151611328125, 0.239501953125, 0.3128906190395355, 0.3790283203125, 0.4370361268520355, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.43659666180610657, 0.393310546875, 0.3232177793979645, 0.2546630799770355, 0.17622070014476776, 0.10019531100988388, 0.01779785193502903, -0.05471191182732582, -0.134033203125, -0.2164306640625, -0.2869628965854645, -0.3535400331020355, -0.4018798768520355, -0.44999998807907104, -0.44999998807907104, -0.44999998807907104, -0.4286864995956421, -0.3737548589706421, -0.3144287168979645, -0.23818358778953552, -0.158203125, -0.08613280951976776, -0.004833984188735485, 0.07338867336511612, 0.156005859375, 0.23203124105930328, 0.3076171875, 0.3693603277206421, 0.41044920682907104, 0.44890135526657104, 0.44978025555610657, 0.44978025555610657, 0.4242919683456421, 0.3748534917831421, 0.30717772245407104, 0.23906248807907104, 0.1658935546875, 0.090087890625, 0.01691894419491291, -0.05866698920726776, -0.13271483778953552, -0.2120361328125, -0.2722412049770355, -0.3392578065395355, -0.3858398199081421, -0.4231933355331421, -0.4447265565395355, -0.4396728277206421, -0.39726561307907104, -0.3418945074081421, -0.2867431640625, -0.21840819716453552, -0.14875487983226776, -0.07294921576976776, 0.0008789062267169356, 0.07404784858226776, 0.15380859375, 0.22214354574680328, 0.2781738340854645, 0.33244627714157104, 0.38671875, 0.4163818359375, 0.4306640625, 0.4198974370956421, 0.38847655057907104, 0.3306884765625, 0.2832275331020355, 0.213134765625, 0.14501953125, 0.08217773586511612, 0.0164794921875, -0.06240234151482582, -0.12480468302965164, -0.19270019233226776, -0.2493896484375, -0.30278319120407104, -0.35551756620407104, -0.388916015625, -0.3875976502895355, -0.38408201932907104, -0.34870603680610657, -0.2977294921875, -0.25312498211860657, -0.191162109375, -0.12875975668430328, -0.05976562201976776, 0.003076171735301614, 0.06855468451976776, 0.13820800185203552, 0.19907225668430328, 0.25224608182907104, 0.3034423887729645, 0.333984375, 0.3524414002895355, 0.3603515625, 0.34870603680610657, 0.31706541776657104, 0.28410643339157104, 0.22983397543430328, 0.1790771484375, 0.1219482421875, 0.068115234375, 0.00527343712747097, -0.0604248046875, -0.11359862983226776, -0.16567382216453552, -0.21291503310203552, -0.2603759765625, -0.29179686307907104, -0.31706541776657104, -0.3197021484375, -0.30058592557907104, -0.2744384706020355, -0.24082030355930328, -0.20083007216453552, -0.14743651449680328, -0.0977783203125, -0.04592284932732582, 0.006591796875, 0.0615234375, 0.10920409858226776, 0.15864257514476776, 0.1944580078125, 0.23466795682907104, 0.2627929747104645, 0.26960447430610657, 0.27092283964157104, 0.2559814453125, 0.24301756918430328, 0.21291503310203552, 0.17380370199680328, 0.13095702230930328, 0.09536132216453552, 0.04218749701976776, -0.002636718563735485, -0.041748046875, -0.08833007514476776, -0.12875975668430328, -0.16435547173023224, -0.18303221464157104, -0.20698241889476776, -0.21445311605930328, -0.21137695014476776, -0.2120361328125, -0.19094237685203552, -0.16765137016773224, -0.13491210341453552, -0.10502929240465164, -0.06745605170726776, -0.03164062276482582, 0.0057128905318677425, 0.04086913913488388, 0.0758056640625, 0.10678710788488388, 0.12568359076976776, 0.14348144829273224, 0.15996094048023224, 0.16083984076976776, 0.16105957329273224, 0.16083984076976776, 0.14150390028953552, 0.123046875, 0.103271484375, 0.08283691108226776, 0.0560302734375, 0.02702636644244194, -0.001538085867650807, -0.02219238132238388, -0.04965820163488388, -0.06877440959215164, -0.08591308444738388, -0.09228515625, -0.09843749552965164, -0.10700683295726776, -0.09909667819738388, -0.09426268935203552, -0.08305663615465164, -0.07734374701976776, -0.0615234375, -0.04086913913488388, -0.0263671875, -0.01186523400247097, 0.0041748047806322575, 0.01955566368997097, 0.02988281100988388, 0.03757324069738388, 0.04042968526482582, 0.04636230319738388, 0.05624999850988388, 0.05515136569738388, 0.04526367038488388, 0.0439453125, 0.03493652120232582, 0.03076171875, 0.02065429650247097, 0.01494140550494194, 0.015380859375, 0.002636718563735485, 0.003735351376235485, -0.002197265625, 0.0013183592818677425, -0.0017578124534338713, 0.0, 0.0046142577193677425, -0.0017578124534338713, 0.0, -0.007910155691206455, 0.0006591796409338713, 0.003955077845603228, -0.001538085867650807, -0.0024169920943677425, 0.003735351376235485, 0.004833984188735485, -0.0002197265566792339, 0.006152343470603228, 0.001977538922801614, 0.004833984188735485, 0.0028564452659338713, -0.0028564452659338713, 0.0054931640625, 0.00747070275247097, 0.007031249813735485, 0.007250976283103228, 0.0076904296875, 0.0013183592818677425, 0.00856933556497097, 0.0013183592818677425, 0.005932617001235485, 0.00527343712747097, 0.003955077845603228, 0.0002197265566792339, 0.003076171735301614, 0.00637206993997097, 0.003735351376235485, 0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0041748047806322575, 0.0008789062267169356, -0.001538085867650807, 0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, 0.0076904296875, 0.0032958984375, 0.00439453125, 0.0, -0.001977538922801614, 0.0057128905318677425, 0.0013183592818677425, 0.005053710658103228, 0.0002197265566792339, 0.0057128905318677425, -0.002636718563735485, 0.0002197265566792339, 0.001538085867650807, 0.0046142577193677425, 0.0032958984375, 0.00527343712747097, -0.0028564452659338713, 0.00637206993997097, 0.002197265625, 0.0004394531133584678, 0.00439453125, 0.00439453125, -0.0017578124534338713, 0.00439453125, 0.002636718563735485, 0.0057128905318677425, 0.0032958984375, 0.003955077845603228, -0.0010986328125, 0.0013183592818677425, 0.0057128905318677425, 0.007250976283103228, 0.002636718563735485, 0.0, 0.002197265625, 0.006591796875, -0.0032958984375, 0.0004394531133584678, -0.0017578124534338713, 0.0035156249068677425, -0.0006591796409338713, 0.0008789062267169356, -0.001538085867650807, 0.0046142577193677425, 0.002636718563735485, 0.0008789062267169356, 0.004833984188735485, 0.003955077845603228, -0.0046142577193677425, 0.0, -0.0004394531133584678, 0.0028564452659338713, 0.00856933556497097, 0.0054931640625, 0.002636718563735485, 0.010107421316206455, 0.0087890625, 0.0028564452659338713, 0.007031249813735485, 0.010107421316206455, -0.0002197265566792339, 0.006152343470603228, 0.0046142577193677425, -0.00439453125, 0.0, -0.0032958984375, -0.0041748047806322575, -0.00439453125, -0.0120849609375, -0.006591796875, -0.0041748047806322575, -0.0054931640625, -0.005053710658103228, -0.001977538922801614, 0.001538085867650807, 0.00747070275247097, 0.0041748047806322575, 0.009228515438735485, 0.01516113243997097, 0.0142822265625, 0.015380859375, 0.01801757700741291, 0.01691894419491291, 0.0142822265625, 0.007031249813735485, 0.004833984188735485, 0.0004394531133584678, 0.0, -0.011425781063735485, -0.013403319753706455, -0.012304686941206455, -0.012304686941206455, -0.019775390625, -0.01164550706744194, -0.009228515438735485, -0.012524413876235485, -0.0057128905318677425, -0.0041748047806322575, -0.0002197265566792339, 0.010107421316206455, 0.0098876953125, 0.01999511756002903, 0.017578125, 0.02065429650247097, 0.01955566368997097, 0.02548827975988388, 0.02548827975988388, 0.02043456956744194, 0.009228515438735485, 0.0046142577193677425, -0.001538085867650807, -0.00856933556497097, -0.01318359375, -0.01274413987994194, -0.01406249962747097, -0.02197265625, -0.02329101413488388, -0.02131347544491291, -0.01691894419491291, -0.01889648474752903, -0.01318359375, -0.006152343470603228, -0.0008789062267169356, 0.0076904296875, 0.01494140550494194, 0.019775390625, 0.02504882775247097, 0.02944335900247097, 0.03164062276482582, 0.03010253794491291, 0.02548827975988388, 0.02373046800494194, 0.01999511756002903, 0.0068115233443677425, -0.002636718563735485, -0.010107421316206455, -0.01384277269244194, -0.01669921912252903, -0.02922363206744194, -0.03427734225988388, -0.02922363206744194, -0.02592773362994194, -0.0263671875, -0.02351074106991291, -0.01384277269244194, -0.00439453125, 0.0035156249068677425, 0.01406249962747097, 0.02065429650247097, 0.02658691257238388, 0.02834472618997097, 0.03449707105755806, 0.03603515401482582, 0.0362548828125, 0.02944335900247097, 0.02263183519244194, 0.02153320237994194, 0.0046142577193677425, -0.00527343712747097, -0.01318359375, -0.02460937388241291, -0.02460937388241291, -0.03537597507238388, -0.03559570387005806, -0.03603515401482582, -0.03054199181497097, -0.02834472618997097, -0.02724609337747097, -0.01691894419491291, -0.00439453125, 0.0017578124534338713, 0.01274413987994194, 0.02614746056497097, 0.02944335900247097, 0.04108886793255806, 0.04680175706744194, 0.04262695088982582, 0.0384521484375, 0.03581542894244194, 0.032958984375, 0.02263183519244194, 0.00747070275247097, -0.00439453125, -0.01494140550494194, -0.02351074106991291, -0.0340576171875, -0.03691406175494194, -0.03779296949505806, -0.04042968526482582, -0.04086913913488388, -0.03537597507238388, -0.02285156212747097, -0.02153320237994194, -0.00966796837747097, 0.009448242373764515, 0.013403319753706455, 0.03098144382238388, 0.03911132737994194, 0.04306640475988388, 0.041748046875, 0.04372558370232582, 0.046142578125, 0.04438476264476776, 0.03273925557732582, 0.01735839806497097, 0.0076904296875, -0.0032958984375, -0.01318359375, -0.02944335900247097, -0.03383788838982582, -0.04042968526482582, -0.04768066108226776, -0.04746093600988388, -0.04086913913488388, -0.03757324069738388, -0.02768554538488388, -0.02438964694738388, -0.011206054128706455, 0.0032958984375, 0.01823730394244194, 0.03273925557732582, 0.03977050632238388, 0.0450439453125, 0.04702148213982582, 0.05581054463982582, 0.0450439453125, 0.0428466796875, 0.03471679612994194, 0.02570800669491291, 0.0087890625, -0.00439453125, -0.01296386681497097, -0.02482910081744194, -0.032958984375, -0.04306640475988388, -0.04460449144244194, -0.04702148213982582, -0.0472412109375, -0.03713378682732582, -0.02724609337747097, -0.015380859375, -0.007031249813735485, 0.0087890625, 0.0230712890625, 0.02680663950741291, 0.03713378682732582, 0.0472412109375, 0.04877929389476776, 0.05449218675494194, 0.05097655951976776, 0.04086913913488388, 0.03317870944738388, 0.02790527231991291, 0.01186523400247097, -0.007250976283103228, -0.014501952566206455, -0.02790527231991291, -0.03493652120232582, -0.04833984375, -0.046142578125, -0.04899902269244194, -0.05251464620232582, -0.03713378682732582, -0.02724609337747097, -0.02153320237994194, -0.0120849609375, 0.0032958984375, 0.01779785193502903, 0.03098144382238388, 0.04240722581744194, 0.04636230319738388, 0.05207519233226776, 0.05295410007238388, 0.054931640625, 0.04108886793255806, 0.03493652120232582, 0.0252685546875, 0.009448242373764515, -0.00747070275247097, -0.01582031138241291, -0.02614746056497097, -0.04042968526482582, -0.04086913913488388, -0.05229492112994194, -0.05361327901482582, -0.04921874776482582, -0.03889160230755806, -0.02790527231991291, -0.01779785193502903, -0.0076904296875, 0.003955077845603228, 0.01604003831744194, 0.03669433668255806, 0.03889160230755806, 0.05339355394244194, 0.05559081956744194, 0.04702148213982582, 0.05427245795726776, 0.04372558370232582, 0.03867187350988388, 0.0274658203125, 0.0120849609375, -0.00527343712747097, -0.01823730394244194, -0.02944335900247097, -0.041748046875, -0.04812011495232582, -0.0516357421875, -0.05031738057732582, -0.04702148213982582, -0.03999023512005806, -0.02768554538488388, -0.01845703087747097, -0.008129882626235485, 0.002197265625, 0.01604003831744194, 0.03449707105755806, 0.0340576171875, 0.04526367038488388, 0.05185546725988388, 0.04877929389476776, 0.0494384765625, 0.04130859300494194, 0.03691406175494194, 0.02241210825741291, 0.010986328125, 0.0028564452659338713, -0.01186523400247097, -0.0296630859375, -0.04020996019244194, -0.04306640475988388, -0.04372558370232582, -0.04636230319738388, -0.04592284932732582, -0.04328612983226776, -0.03471679612994194, -0.0186767578125, -0.010107421316206455, 0.001977538922801614, 0.01845703087747097, 0.0296630859375, 0.04306640475988388, 0.04746093600988388, 0.05097655951976776, 0.04833984375, 0.04526367038488388, 0.03955078125, 0.03032226487994194, 0.02592773362994194, 0.0057128905318677425, 0.003735351376235485, -0.0164794921875, -0.0263671875, -0.03208007663488388, -0.03933105245232582, -0.04262695088982582, -0.04482421651482582, -0.037353515625, -0.03361816331744194, -0.02263183519244194, -0.01889648474752903, -0.00856933556497097, 0.0098876953125, 0.01999511756002903, 0.02329101413488388, 0.041748046875, 0.04240722581744194, 0.04196777194738388, 0.04482421651482582, 0.04020996019244194, 0.03515625, 0.03449707105755806, 0.02285156212747097, 0.005932617001235485, 0.0024169920943677425, -0.0120849609375, -0.02614746056497097, -0.03383788838982582, -0.03471679612994194, -0.04042968526482582, -0.037353515625, -0.03361816331744194, -0.03427734225988388, -0.02658691257238388, -0.014501952566206455, -0.010107421316206455, 0.004833984188735485, 0.01384277269244194, 0.02351074106991291, 0.03757324069738388, 0.03273925557732582, 0.041748046875, 0.04042968526482582, 0.03515625, 0.03076171875, 0.02329101413488388, 0.02021484263241291, 0.005053710658103228, -0.0032958984375, -0.01604003831744194, -0.013403319753706455, -0.02351074106991291, -0.03120117075741291, -0.03383788838982582, -0.03647460788488388, -0.02878417819738388, -0.02482910081744194, -0.02263183519244194, -0.01274413987994194, -0.006152343470603228, 0.0002197265566792339, 0.011425781063735485, 0.01604003831744194, 0.03164062276482582, 0.03383788838982582, 0.03449707105755806, 0.03691406175494194, 0.03164062276482582, 0.02988281100988388, 0.02065429650247097, 0.014501952566206455, 0.010327148251235485, 0.0002197265566792339, -0.0120849609375, -0.01801757700741291, -0.02373046800494194, -0.01999511756002903, -0.02702636644244194, -0.02680663950741291, -0.02702636644244194, -0.02109374850988388, -0.01494140550494194, -0.012304686941206455, -0.0041748047806322575, 0.00747070275247097, 0.007250976283103228, 0.01779785193502903, 0.01955566368997097, 0.02922363206744194, 0.03032226487994194, 0.02241210825741291, 0.02812499925494194, 0.0230712890625, 0.01384277269244194, 0.009228515438735485, 0.00747070275247097, -0.003076171735301614, -0.0076904296875, -0.0087890625, -0.01823730394244194, -0.01823730394244194, -0.0230712890625, -0.0164794921875, -0.02109374850988388, -0.0186767578125, -0.01604003831744194, -0.0098876953125, -0.007031249813735485, 0.00527343712747097, 0.0120849609375, 0.011425781063735485, 0.01999511756002903, 0.01582031138241291, 0.02109374850988388, 0.0186767578125, 0.012304686941206455, 0.01691894419491291, 0.01494140550494194, 0.011206054128706455, 0.0013183592818677425, -0.0032958984375, -0.003076171735301614, -0.0054931640625, -0.0041748047806322575, -0.01406249962747097, -0.01384277269244194, -0.006152343470603228, -0.010986328125, -0.0098876953125, -0.010986328125, -0.005053710658103228, -0.005053710658103228, -0.0008789062267169356, 0.0076904296875, 0.011206054128706455, 0.01186523400247097, 0.01582031138241291, 0.01691894419491291, 0.01494140550494194, 0.005932617001235485, 0.008129882626235485, 0.007250976283103228, 0.0087890625, 0.0041748047806322575, -0.0024169920943677425, -0.0054931640625, -0.00856933556497097, -0.0087890625, -0.0017578124534338713, -0.0041748047806322575, -0.0024169920943677425, -0.007250976283103228, 0.0010986328125, 0.001538085867650807, -0.006152343470603228, 0.002636718563735485, 0.0057128905318677425, 0.0076904296875, 0.006152343470603228, 0.0057128905318677425, 0.001977538922801614, 0.006591796875, 0.0024169920943677425, 0.0076904296875, 0.005932617001235485, 0.0004394531133584678, 0.007031249813735485, 0.0004394531133584678, -0.001538085867650807, 0.0054931640625, 0.0046142577193677425, 0.001538085867650807, 0.0035156249068677425, 0.004833984188735485, 0.0006591796409338713, -0.0010986328125, -0.002636718563735485, 0.0024169920943677425, 0.0006591796409338713, 0.002197265625, 0.00439453125, -0.001977538922801614, 0.002636718563735485, 0.001977538922801614, -0.0002197265566792339, 0.008129882626235485, -0.001538085867650807, 0.0046142577193677425, -0.002636718563735485, 0.0076904296875, -0.0017578124534338713, 0.002197265625, 0.0017578124534338713, 0.003735351376235485, 0.0068115233443677425, 0.005932617001235485, 0.0002197265566792339, -0.0008789062267169356, 0.0046142577193677425, 0.001538085867650807, 0.0028564452659338713, 0.003735351376235485, 0.0013183592818677425, 0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, 0.006591796875, 0.0008789062267169356, 0.00439453125, 0.0035156249068677425, 0.0004394531133584678, -0.0013183592818677425, -0.0032958984375, 0.002636718563735485, 0.00439453125, 0.0032958984375, 0.006591796875, 0.003076171735301614, 0.00747070275247097, 0.001538085867650807, 0.0054931640625, 0.001538085867650807, 0.00527343712747097, -0.0013183592818677425, 0.003735351376235485, -0.0006591796409338713, 0.003735351376235485, 0.003076171735301614, 0.007250976283103228, 0.0076904296875, -0.0008789062267169356, -0.0017578124534338713, 0.001538085867650807, 0.00439453125, 0.0046142577193677425, 0.002197265625, 0.003955077845603228, 0.0, 0.0024169920943677425, -0.0028564452659338713, 0.003076171735301614, 0.0017578124534338713, -0.0004394531133584678, 0.0028564452659338713, 0.0010986328125, 0.007250976283103228, 0.0032958984375, -0.0013183592818677425, 0.0032958984375, 0.00439453125, -0.002197265625, 0.0006591796409338713, -0.0017578124534338713, -0.003076171735301614, -0.0008789062267169356, -0.0010986328125, -0.0041748047806322575, -0.005932617001235485, 0.0004394531133584678, -0.003076171735301614, -0.003955077845603228, 0.002197265625, 0.0068115233443677425, 0.010986328125, 0.011206054128706455, 0.009448242373764515, 0.005932617001235485, 0.0120849609375, 0.013403319753706455, 0.011425781063735485, 0.013623046688735485, 0.010107421316206455, 0.001538085867650807, -0.002636718563735485, -0.00637206993997097, -0.01318359375, -0.01582031138241291, -0.01318359375, -0.01625976525247097, -0.014721679501235485, -0.01582031138241291, -0.011425781063735485, -0.014501952566206455, -0.00439453125, -0.005932617001235485, 0.00527343712747097, 0.0120849609375, 0.01625976525247097, 0.02460937388241291, 0.02702636644244194, 0.02790527231991291, 0.02988281100988388, 0.0230712890625, 0.0208740234375, 0.02570800669491291, 0.01516113243997097, 0.00856933556497097, -0.001538085867650807, -0.0054931640625, -0.02065429650247097, -0.02351074106991291, -0.0340576171875, -0.03449707105755806, -0.0384521484375, -0.02900390513241291, -0.02263183519244194, -0.0263671875, -0.01076660118997097, 0.0006591796409338713, 0.009008788503706455, 0.01604003831744194, 0.02351074106991291, 0.028564453125, 0.04020996019244194, 0.03977050632238388, 0.0472412109375, 0.04438476264476776, 0.041748046875, 0.03273925557732582, 0.02373046800494194, 0.012304686941206455, -0.0054931640625, -0.0142822265625, -0.02175292931497097, -0.03691406175494194, -0.04372558370232582, -0.04855956882238388, -0.04987792670726776, -0.04548339545726776, -0.04460449144244194, -0.0296630859375, -0.01823730394244194, -0.0046142577193677425, 0.008129882626235485, 0.019775390625, 0.03471679612994194, 0.04262695088982582, 0.05207519233226776, 0.05954589694738388, 0.05910644307732582, 0.05910644307732582, 0.046142578125, 0.03713378682732582, 0.02702636644244194, 0.015600585378706455, -0.0076904296875, -0.02109374850988388, -0.03076171875, -0.04833984375, -0.05031738057732582, -0.06196288764476776, -0.06394042819738388, -0.05756835639476776, -0.04768066108226776, -0.03823241963982582, -0.02241210825741291, -0.013623046688735485, 0.01164550706744194, 0.02263183519244194, 0.03823241963982582, 0.05449218675494194, 0.06679687649011612, 0.06547851115465164, 0.0714111328125, 0.07119140774011612, 0.05668945237994194, 0.04899902269244194, 0.032958984375, 0.01625976525247097, 0.0002197265566792339, -0.02438964694738388, -0.03581542894244194, -0.05449218675494194, -0.06350097805261612, -0.07009277492761612, -0.07316894084215164, -0.0703125, -0.05976562201976776, -0.04855956882238388, -0.03317870944738388, -0.0087890625, 0.01186523400247097, 0.02658691257238388, 0.04592284932732582, 0.05954589694738388, 0.0780029296875, 0.08811035007238388, 0.08151855319738388, 0.0823974609375, 0.06503906100988388, 0.05976562201976776, 0.0362548828125, 0.01296386681497097, 0.0008789062267169356, -0.02592773362994194, -0.04548339545726776, -0.06218261644244194, -0.076904296875, -0.08437499403953552, -0.08964843302965164, -0.076904296875, -0.07272949069738388, -0.05866698920726776, -0.03361816331744194, -0.009228515438735485, 0.013623046688735485, 0.03229980543255806, 0.05009765550494194, 0.0703125, 0.08876952528953552, 0.09140624850988388, 0.0977783203125, 0.0933837890625, 0.07624511420726776, 0.05888671800494194, 0.03889160230755806, 0.01735839806497097, -0.005053710658103228, -0.03251953050494194, -0.04702148213982582, -0.07207030802965164, -0.08613280951976776, -0.09404296427965164, -0.08964843302965164, -0.08723144233226776, -0.07558593899011612, -0.05690917745232582, -0.03977050632238388, -0.009448242373764515, 0.01054687425494194, 0.03911132737994194, 0.05537109076976776, 0.0736083984375, 0.08964843302965164, 0.09799804538488388, 0.10151366889476776, 0.094482421875, 0.07976073771715164, 0.06723632663488388, 0.04702148213982582, 0.02351074106991291, -0.007910155691206455, -0.03251953050494194, -0.05668945237994194, -0.07536620646715164, -0.08942870795726776, -0.09514159709215164, -0.09492187201976776, -0.090087890625, -0.07668457180261612, -0.06086425483226776, -0.04680175706744194, -0.01274413987994194, 0.010107421316206455, 0.04240722581744194, 0.05976562201976776, 0.07734374701976776, 0.09184569865465164, 0.10173339396715164, 0.10085448622703552, 0.09975585341453552, 0.08876952528953552, 0.06174316257238388, 0.04965820163488388, 0.017578125, -0.002197265625, -0.02812499925494194, -0.05361327901482582, -0.07470703125, -0.08635253459215164, -0.098876953125, -0.10568847507238388, -0.09865722060203552, -0.08195800334215164, -0.06108398362994194, -0.04548339545726776, -0.013623046688735485, 0.009008788503706455, 0.03559570387005806, 0.06613769382238388, 0.07756347209215164, 0.0933837890625, 0.10283202677965164, 0.10590820014476776, 0.10524901747703552, 0.08261718600988388, 0.07053222507238388, 0.0439453125, 0.02153320237994194, -0.0035156249068677425, -0.03427734225988388, -0.05690917745232582, -0.07998047024011612, -0.0889892578125, -0.10063476115465164, -0.1043701171875, -0.09316405653953552, -0.08107910305261612, -0.06657714396715164, -0.0428466796875, -0.01076660118997097, 0.011425781063735485, 0.03999023512005806, 0.05998535081744194, 0.08723144233226776, 0.09492187201976776, 0.10305175185203552, 0.10722655802965164, 0.1043701171875, 0.08481445163488388, 0.07075195014476776, 0.04438476264476776, 0.02197265625, -0.0024169920943677425, -0.03493652120232582, -0.05734863132238388, -0.0780029296875, -0.09184569865465164, -0.10283202677965164, -0.10371093451976776, -0.0977783203125, -0.07866210490465164, -0.06196288764476776, -0.04350585862994194, -0.01516113243997097, 0.013623046688735485, 0.03427734225988388, 0.05646972358226776, 0.07998047024011612, 0.09074706584215164, 0.09799804538488388, 0.0977783203125, 0.09536132216453552, 0.08437499403953552, 0.06503906100988388, 0.04306640475988388, 0.02438964694738388, -0.003735351376235485, -0.03581542894244194, -0.05756835639476776, -0.07426757365465164, -0.085693359375, -0.09843749552965164, -0.10063476115465164, -0.09404296427965164, -0.0802001953125, -0.06284179538488388, -0.03779296949505806, -0.0120849609375, 0.007250976283103228, 0.03691406175494194, 0.05624999850988388, 0.07404784858226776, 0.09096679091453552, 0.10173339396715164, 0.10041503608226776, 0.09228515625, 0.07756347209215164, 0.06416015326976776, 0.0450439453125, 0.01713867112994194, -0.0057128905318677425, -0.024169921875, -0.05339355394244194, -0.06613769382238388, -0.08613280951976776, -0.08371581882238388, -0.08701171725988388, -0.085693359375, -0.07229004055261612, -0.05449218675494194, -0.03603515401482582, -0.010327148251235485, 0.00966796837747097, 0.03164062276482582, 0.05009765550494194, 0.06591796875, 0.0791015625, 0.09294433146715164, 0.09096679091453552, 0.08151855319738388, 0.07778320461511612, 0.05646972358226776, 0.0340576171875, 0.017578125, -0.0098876953125, -0.02285156212747097, -0.04306640475988388, -0.06284179538488388, -0.07009277492761612, -0.08195800334215164, -0.07822265475988388, -0.07602538913488388, -0.06525878608226776, -0.04833984375, -0.03515625, -0.0164794921875, 0.01076660118997097, 0.0318603515625, 0.04570312425494194, 0.0626220703125, 0.0703125, 0.07734374701976776, 0.08063964545726776, 0.07470703125, 0.05910644307732582, 0.04833984375, 0.02988281100988388, 0.01735839806497097, 0.0002197265566792339, -0.02702636644244194, -0.0439453125, -0.05471191182732582, -0.06240234151482582, -0.06525878608226776, -0.06987304240465164, -0.06789550930261612, -0.059326171875, -0.04086913913488388, -0.03229980543255806, -0.00856933556497097, 0.008129882626235485, 0.02351074106991291, 0.04460449144244194, 0.05185546725988388, 0.06306152045726776, 0.06987304240465164, 0.0692138671875, 0.06306152045726776, 0.0582275390625, 0.041748046875, 0.0274658203125, 0.012524413876235485, -0.002197265625, -0.01823730394244194, -0.03032226487994194, -0.04350585862994194, -0.04680175706744194, -0.06064452975988388, -0.05449218675494194, -0.05361327901482582, -0.03977050632238388, -0.03493652120232582, -0.02197265625, -0.011206054128706455, 0.010986328125, 0.017578125, 0.0318603515625, 0.04350585862994194, 0.04702148213982582, 0.05515136569738388, 0.05537109076976776, 0.05207519233226776, 0.04196777194738388, 0.03339843824505806, 0.01845703087747097, 0.012304686941206455, 0.0, -0.01845703087747097, -0.02878417819738388, -0.0296630859375, -0.03449707105755806, -0.0406494140625, -0.04526367038488388, -0.041748046875, -0.03691406175494194, -0.03010253794491291, -0.01999511756002903, -0.00439453125, 0.009228515438735485, 0.01076660118997097, 0.024169921875, 0.03471679612994194, 0.03933105245232582, 0.03999023512005806, 0.03427734225988388, 0.0340576171875, 0.03493652120232582, 0.02878417819738388, 0.01516113243997097, 0.006152343470603228, -0.006152343470603228, -0.013403319753706455, -0.01669921912252903, -0.02504882775247097, -0.0230712890625, -0.02592773362994194, -0.02460937388241291, -0.0263671875, -0.02482910081744194, -0.01318359375, -0.0120849609375, -0.003735351376235485, 0.0041748047806322575, 0.0164794921875, 0.01406249962747097, 0.01933593675494194, 0.02373046800494194, 0.02351074106991291, 0.02680663950741291, 0.0208740234375, 0.024169921875, 0.01735839806497097, 0.013623046688735485, 0.007910155691206455, 0.004833984188735485, 0.0006591796409338713, -0.00439453125, -0.01076660118997097, -0.006591796875, -0.009448242373764515, -0.01186523400247097, -0.010107421316206455, -0.0046142577193677425, -0.0046142577193677425, 0.0002197265566792339, 0.003076171735301614, -0.0002197265566792339, 0.001538085867650807, 0.008129882626235485, 0.003076171735301614, 0.00637206993997097, 0.009448242373764515, 0.0035156249068677425, 0.01054687425494194, -0.0006591796409338713, 0.001538085867650807, 0.0054931640625, 0.00637206993997097, 0.00527343712747097, 0.0024169920943677425, 0.003955077845603228, 0.0046142577193677425, -0.0017578124534338713, -0.0010986328125, 0.0076904296875, 0.002197265625, 0.0013183592818677425, 0.0004394531133584678, 0.0035156249068677425, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, 0.002636718563735485, -0.003076171735301614, 0.0041748047806322575, 0.0035156249068677425, -0.001538085867650807, 0.0017578124534338713, 0.002636718563735485, 0.0032958984375, 0.003735351376235485, -0.002197265625, -0.0010986328125, 0.0004394531133584678, 0.003955077845603228, 0.001977538922801614, 0.0017578124534338713, -0.0035156249068677425, 0.0010986328125, 0.0, -0.001538085867650807, -0.001538085867650807, 0.002197265625, 0.00527343712747097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, 0.004833984188735485, 0.003076171735301614, 0.001538085867650807, 0.001538085867650807, 0.0046142577193677425, 0.00527343712747097, 0.006152343470603228, 0.004833984188735485, 0.0002197265566792339, -0.002197265625, 0.002636718563735485, 0.0024169920943677425, 0.006591796875, 0.005932617001235485, -0.002636718563735485, -0.001538085867650807, 0.003955077845603228, 0.001538085867650807, 0.005053710658103228, 0.00637206993997097, -0.003735351376235485, -0.0017578124534338713, 0.0002197265566792339, 0.0017578124534338713, 0.0054931640625, 0.0013183592818677425, -0.002197265625, -0.0002197265566792339, 0.004833984188735485, 0.006152343470603228, 0.006152343470603228, 0.0008789062267169356, 0.0008789062267169356, 0.006591796875, -0.0008789062267169356, -0.0006591796409338713, 0.00637206993997097, 0.0046142577193677425, 0.0068115233443677425, -0.0035156249068677425, 0.002636718563735485, -0.0010986328125, -0.0004394531133584678, 0.0002197265566792339, 0.0017578124534338713, -0.0041748047806322575, 0.002197265625, 0.0002197265566792339, -0.0068115233443677425, -0.0041748047806322575, 0.0008789062267169356, 0.0024169920943677425, 0.0, 0.0013183592818677425, 0.005053710658103228, 0.00439453125, 0.009008788503706455, 0.014501952566206455, 0.01955566368997097, 0.0208740234375, 0.01625976525247097, 0.01691894419491291, 0.02197265625, 0.010107421316206455, 0.009008788503706455, 0.003955077845603228, -0.008129882626235485, -0.01384277269244194, -0.02153320237994194, -0.01999511756002903, -0.03142089769244194, -0.02680663950741291, -0.02592773362994194, -0.02812499925494194, -0.01911620981991291, -0.01691894419491291, -0.0013183592818677425, 0.003955077845603228, 0.0120849609375, 0.02285156212747097, 0.02922363206744194, 0.04196777194738388, 0.03867187350988388, 0.0450439453125, 0.03977050632238388, 0.0362548828125, 0.03273925557732582, 0.02504882775247097, 0.01296386681497097, -0.00527343712747097, -0.013403319753706455, -0.02812499925494194, -0.03229980543255806, -0.04658202826976776, -0.0516357421875, -0.05471191182732582, -0.05075683444738388, -0.04240722581744194, -0.03647460788488388, -0.02021484263241291, -0.01274413987994194, 0.008349609561264515, 0.02460937388241291, 0.03889160230755806, 0.05229492112994194, 0.06306152045726776, 0.06877440959215164, 0.06503906100988388, 0.068115234375, 0.05449218675494194, 0.04416503757238388, 0.03229980543255806, 0.01669921912252903, -0.0032958984375, -0.02109374850988388, -0.03911132737994194, -0.05317382514476776, -0.06767577677965164, -0.06877440959215164, -0.06899414211511612, -0.07624511420726776, -0.05734863132238388, -0.04921874776482582, -0.03054199181497097, -0.006591796875, 0.009228515438735485, 0.02834472618997097, 0.0494384765625, 0.06899414211511612, 0.07404784858226776, 0.08393554389476776, 0.0933837890625, 0.08173827826976776, 0.0758056640625, 0.05844726413488388, 0.03559570387005806, 0.017578125, -0.007031249813735485, -0.02438964694738388, -0.05449218675494194, -0.07229004055261612, -0.0867919921875, -0.09360351413488388, -0.0977783203125, -0.09030761569738388, -0.07668457180261612, -0.05712890625, -0.03911132737994194, -0.01494140550494194, 0.01318359375, 0.03933105245232582, 0.05888671800494194, 0.07778320461511612, 0.09250488132238388, 0.10964354872703552, 0.10788574069738388, 0.103271484375, 0.0933837890625, 0.07316894084215164, 0.04833984375, 0.02109374850988388, -0.0041748047806322575, -0.03669433668255806, -0.05800781026482582, -0.07844237983226776, -0.10129394382238388, -0.11359862983226776, -0.10612792521715164, -0.10832519084215164, -0.08920898288488388, -0.0736083984375, -0.04702148213982582, -0.01582031138241291, 0.009228515438735485, 0.03933105245232582, 0.07119140774011612, 0.09514159709215164, 0.11469726264476776, 0.12260741740465164, 0.12172850966453552, 0.12062987685203552, 0.10415038466453552, 0.08283691108226776, 0.06020507588982582, 0.01933593675494194, -0.005053710658103228, -0.03471679612994194, -0.06877440959215164, -0.09272460639476776, -0.10898437350988388, -0.12458495795726776, -0.129638671875, -0.12062987685203552, -0.11030273139476776, -0.08327636867761612, -0.04921874776482582, -0.02351074106991291, 0.01691894419491291, 0.04746093600988388, 0.08085937052965164, 0.10502929240465164, 0.12480468302965164, 0.13798828423023224, 0.1417236328125, 0.13645018637180328, 0.1109619140625, 0.09492187201976776, 0.06306152045726776, 0.03120117075741291, -0.01274413987994194, -0.03823241963982582, -0.07514648139476776, -0.10261230170726776, -0.1241455078125, -0.13820800185203552, -0.140625, -0.12788085639476776, -0.11997070163488388, -0.09074706584215164, -0.06350097805261612, -0.0186767578125, 0.01582031138241291, 0.05207519233226776, 0.08767089247703552, 0.11118163913488388, 0.13820800185203552, 0.14414061605930328, 0.14853514730930328, 0.14370116591453552, 0.12678222358226776, 0.09426268935203552, 0.06855468451976776, 0.02614746056497097, -0.01076660118997097, -0.05141601338982582, -0.07976073771715164, -0.10722655802965164, -0.12832030653953552, -0.13974608480930328, -0.14436034858226776, -0.13337402045726776, -0.11667480319738388, -0.09272460639476776, -0.05954589694738388, -0.02219238132238388, 0.01274413987994194, 0.05229492112994194, 0.08986815810203552, 0.11557617038488388, 0.13754881918430328, 0.15073241293430328, 0.160400390625, 0.14501953125, 0.12941893935203552, 0.10063476115465164, 0.0714111328125, 0.03427734225988388, -0.011206054128706455, -0.04899902269244194, -0.085693359375, -0.11403807997703552, -0.1329345703125, -0.15468749403953552, -0.15314941108226776, -0.147216796875, -0.12612304091453552, -0.1021728515625, -0.06547851115465164, -0.02285156212747097, 0.01054687425494194, 0.054931640625, 0.09184569865465164, 0.12326660007238388, 0.14677734673023224, 0.156005859375, 0.15732420980930328, 0.14589843153953552, 0.13029785454273224, 0.1065673828125, 0.06943359225988388, 0.03317870944738388, -0.011206054128706455, -0.04702148213982582, -0.08217773586511612, -0.116455078125, -0.13623046875, -0.14655761420726776, -0.15688475966453552, -0.14018554985523224, -0.12370605021715164, -0.0911865234375, -0.06657714396715164, -0.02592773362994194, 0.011206054128706455, 0.05844726413488388, 0.08635253459215164, 0.12106933444738388, 0.13908691704273224, 0.1549072265625, 0.15886230766773224, 0.14436034858226776, 0.13117675483226776, 0.10173339396715164, 0.06657714396715164, 0.02768554538488388, -0.00747070275247097, -0.05207519233226776, -0.08745116740465164, -0.10854491591453552, -0.1373291015625, -0.14985351264476776, -0.1505126953125, -0.13886718451976776, -0.12656249105930328, -0.09865722060203552, -0.06306152045726776, -0.02241210825741291, 0.01384277269244194, 0.05075683444738388, 0.08854980021715164, 0.11799316108226776, 0.13666991889476776, 0.15183104574680328, 0.15029296278953552, 0.14348144829273224, 0.12019042670726776, 0.10151366889476776, 0.07075195014476776, 0.0274658203125, -0.0057128905318677425, -0.0472412109375, -0.07712402194738388, -0.10173339396715164, -0.134033203125, -0.1395263671875, -0.1395263671875, -0.13249512016773224, -0.12106933444738388, -0.08854980021715164, -0.06394042819738388, -0.02153320237994194, 0.0120849609375, 0.05207519233226776, 0.08173827826976776, 0.11271972209215164, 0.1318359375, 0.14040526747703552, 0.14326171576976776, 0.13645018637180328, 0.11513671278953552, 0.09206542372703552, 0.06350097805261612, 0.02395019493997097, -0.00747070275247097, -0.04416503757238388, -0.07954101264476776, -0.10261230170726776, -0.12106933444738388, -0.13161620497703552, -0.13051757216453552, -0.12172850966453552, -0.11140136420726776, -0.087890625, -0.05581054463982582, -0.01845703087747097, 0.01164550706744194, 0.04702148213982582, 0.07272949069738388, 0.10810546576976776, 0.116455078125, 0.12919922173023224, 0.13249512016773224, 0.12458495795726776, 0.10854491591453552, 0.08767089247703552, 0.05888671800494194, 0.03010253794491291, -0.009448242373764515, -0.04130859300494194, -0.06569824367761612, -0.09272460639476776, -0.11359862983226776, -0.11513671278953552, -0.1197509765625, -0.11821288615465164, -0.10085448622703552, -0.0758056640625, -0.04592284932732582, -0.01911620981991291, 0.013403319753706455, 0.04130859300494194, 0.07163085788488388, 0.08942870795726776, 0.1043701171875, 0.11711425334215164, 0.1175537109375, 0.11074218153953552, 0.10019531100988388, 0.0802001953125, 0.0516357421875, 0.01779785193502903, -0.007250976283103228, -0.03361816331744194, -0.06196288764476776, -0.08525390177965164, -0.09909667819738388, -0.10722655802965164, -0.10920409858226776, -0.09184569865465164, -0.08041992038488388, -0.06767577677965164, -0.04196777194738388, -0.009448242373764515, 0.011425781063735485, 0.037353515625, 0.05888671800494194, 0.08371581882238388, 0.09755858778953552, 0.0977783203125, 0.10107421875, 0.09689941257238388, 0.08195800334215164, 0.06437987834215164, 0.0428466796875, 0.015380859375, -0.010327148251235485, -0.03361816331744194, -0.05229492112994194, -0.06459961086511612, -0.07470703125, -0.08481445163488388, -0.08613280951976776, -0.08107910305261612, -0.07075195014476776, -0.05515136569738388, -0.03581542894244194, -0.015380859375, 0.0087890625, 0.02944335900247097, 0.04855956882238388, 0.0604248046875, 0.07119140774011612, 0.081298828125, 0.07734374701976776, 0.0714111328125, 0.06767577677965164, 0.05207519233226776, 0.03383788838982582, 0.01823730394244194, -0.005053710658103228, -0.02548827975988388, -0.04328612983226776, -0.04658202826976776, -0.0648193359375, -0.06745605170726776, -0.06613769382238388, -0.06086425483226776, -0.050537109375, -0.04240722581744194, -0.02702636644244194, -0.01164550706744194, 0.00439453125, 0.02197265625, 0.03889160230755806, 0.04768066108226776, 0.05361327901482582, 0.05690917745232582, 0.05449218675494194, 0.05339355394244194, 0.04042968526482582, 0.03713378682732582, 0.02285156212747097, 0.013403319753706455, -0.0010986328125, -0.0186767578125, -0.02285156212747097, -0.02812499925494194, -0.04152831807732582, -0.04306640475988388, -0.03911132737994194, -0.04020996019244194, -0.03691406175494194, -0.02614746056497097, -0.011425781063735485, -0.003955077845603228, 0.0024169920943677425, 0.0142822265625, 0.019775390625, 0.0263671875, 0.02944335900247097, 0.04020996019244194, 0.03076171875, 0.03251953050494194, 0.02395019493997097, 0.02065429650247097, 0.01318359375, 0.0046142577193677425, 0.002197265625, -0.00637206993997097, -0.0164794921875, -0.014721679501235485, -0.01318359375, -0.01164550706744194, -0.01691894419491291, -0.01889648474752903, -0.01274413987994194, -0.005932617001235485, -0.0057128905318677425, 0.0024169920943677425, -0.002197265625, 0.003955077845603228, 0.007250976283103228, 0.00747070275247097, 0.0076904296875, 0.0142822265625, 0.01186523400247097, 0.012304686941206455, 0.00527343712747097, -0.0004394531133584678, 0.0057128905318677425, 0.001538085867650807, -0.003076171735301614, 0.002197265625, -0.0004394531133584678, -0.001977538922801614, 0.0046142577193677425, 0.00439453125, 0.0004394531133584678, 0.007031249813735485, 0.0057128905318677425, 0.0028564452659338713, 0.0057128905318677425, -0.0004394531133584678, 0.0017578124534338713, 0.0002197265566792339, -0.002636718563735485, 0.0024169920943677425, 0.002636718563735485, 0.0017578124534338713, -0.0041748047806322575, -0.0004394531133584678, -0.0002197265566792339, 0.006152343470603228, 0.0013183592818677425, 0.001538085867650807, 0.0, 0.002636718563735485, -0.0008789062267169356, 0.0068115233443677425, 0.0035156249068677425, 0.003955077845603228, 0.0028564452659338713, 0.0057128905318677425, 0.0046142577193677425, 0.0035156249068677425, 0.004833984188735485, 0.00439453125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, 0.007910155691206455, 0.004833984188735485, 0.0004394531133584678, 0.005053710658103228, 0.00439453125, 0.001538085867650807, -0.0046142577193677425, -0.0002197265566792339, -0.0002197265566792339, 0.0041748047806322575, 0.0057128905318677425, 0.004833984188735485, -0.002636718563735485, -0.0010986328125, 0.0008789062267169356, 0.004833984188735485, -0.0008789062267169356, 0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, 0.00527343712747097, -0.001538085867650807, 0.0041748047806322575, -0.001977538922801614, 0.0035156249068677425, 0.0006591796409338713, -0.0028564452659338713, 0.0057128905318677425, 0.0017578124534338713, -0.0010986328125, 0.0068115233443677425, 0.0, -0.0010986328125, -0.0035156249068677425, 0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, 0.002636718563735485, -0.0004394531133584678, 0.007910155691206455, -0.0008789062267169356, 0.00527343712747097, 0.007250976283103228, 0.0068115233443677425, 0.002197265625, 0.003076171735301614, 0.00527343712747097, 0.0, -0.002636718563735485, -0.0002197265566792339, -0.0013183592818677425, -0.006152343470603228, 0.0004394531133584678, -0.00637206993997097, 0.003735351376235485, 0.0002197265566792339, 0.0098876953125, 0.009008788503706455, 0.01625976525247097, 0.02197265625, 0.02285156212747097, 0.02197265625, 0.02812499925494194, 0.02460937388241291, 0.0164794921875, 0.01779785193502903, 0.010327148251235485, 0.002636718563735485, -0.00856933556497097, -0.012524413876235485, -0.02724609337747097, -0.02944335900247097, -0.03537597507238388, -0.03581542894244194, -0.03647460788488388, -0.03076171875, -0.02790527231991291, -0.01999511756002903, -0.0010986328125, 0.0017578124534338713, 0.01625976525247097, 0.032958984375, 0.04262695088982582, 0.04570312425494194, 0.05031738057732582, 0.05756835639476776, 0.054931640625, 0.05207519233226776, 0.04438476264476776, 0.02768554538488388, 0.010107421316206455, -0.0017578124534338713, -0.0142822265625, -0.03779296949505806, -0.04548339545726776, -0.05778808519244194, -0.0703125, -0.06416015326976776, -0.06855468451976776, -0.0582275390625, -0.04548339545726776, -0.02878417819738388, -0.01384277269244194, 0.010107421316206455, 0.0296630859375, 0.05207519233226776, 0.06569824367761612, 0.07185058295726776, 0.09162597358226776, 0.08327636867761612, 0.08876952528953552, 0.07778320461511612, 0.05866698920726776, 0.04130859300494194, 0.02065429650247097, -0.0002197265566792339, -0.02812499925494194, -0.05229492112994194, -0.07272949069738388, -0.08591308444738388, -0.09580077975988388, -0.09711913764476776, -0.0966796875, -0.08041992038488388, -0.06130370870232582, -0.0406494140625, -0.01384277269244194, 0.01494140550494194, 0.03537597507238388, 0.06745605170726776, 0.08481445163488388, 0.10393065959215164, 0.11074218153953552, 0.11733397841453552, 0.10964354872703552, 0.09624022990465164, 0.07646483927965164, 0.05756835639476776, 0.02658691257238388, -0.006152343470603228, -0.03955078125, -0.06394042819738388, -0.08701171725988388, -0.11469726264476776, -0.12392577528953552, -0.12810058891773224, -0.11997070163488388, -0.10107421875, -0.08283691108226776, -0.05778808519244194, -0.02021484263241291, 0.017578125, 0.04438476264476776, 0.07822265475988388, 0.10305175185203552, 0.12502440810203552, 0.13337402045726776, 0.140625, 0.13666991889476776, 0.123046875, 0.09052734076976776, 0.06196288764476776, 0.03032226487994194, -0.00527343712747097, -0.04636230319738388, -0.08261718600988388, -0.10986328125, -0.13425292074680328, -0.14875487983226776, -0.15139159560203552, -0.14501953125, -0.12502440810203552, -0.09624022990465164, -0.05844726413488388, -0.02241210825741291, 0.01384277269244194, 0.05888671800494194, 0.08876952528953552, 0.12744140625, 0.14589843153953552, 0.15952147543430328, 0.16083984076976776, 0.15908202528953552, 0.13535155355930328, 0.11140136420726776, 0.07009277492761612, 0.03559570387005806, -0.00527343712747097, -0.05361327901482582, -0.09382323920726776, -0.11931151896715164, -0.156005859375, -0.16347655653953552, -0.1724853515625, -0.1636962890625, -0.14128418266773224, -0.10722655802965164, -0.06767577677965164, -0.02680663950741291, 0.0164794921875, 0.05866698920726776, 0.10371093451976776, 0.13776855170726776, 0.16501463949680328, 0.17534178495407104, 0.17753905057907104, 0.16677245497703552, 0.15534667670726776, 0.1153564453125, 0.07888183742761612, 0.03339843824505806, -0.0076904296875, -0.05537109076976776, -0.10239257663488388, -0.13491210341453552, -0.16611327230930328, -0.17951659858226776, -0.19028319418430328, -0.17072753608226776, -0.15446777641773224, -0.12216796725988388, -0.07426757365465164, -0.03251953050494194, 0.02065429650247097, 0.06833495944738388, 0.10810546576976776, 0.1439208984375, 0.17929686605930328, 0.195556640625, 0.19753417372703552, 0.18171386420726776, 0.16457518935203552, 0.12985838949680328, 0.08613280951976776, 0.03779296949505806, -0.01384277269244194, -0.05756835639476776, -0.10239257663488388, -0.142822265625, -0.17006835341453552, -0.18764647841453552, -0.19775390625, -0.18874511122703552, -0.15952147543430328, -0.1241455078125, -0.07734374701976776, -0.03076171875, 0.02285156212747097, 0.06855468451976776, 0.11799316108226776, 0.15358886122703552, 0.18654784560203552, 0.19907225668430328, 0.20830076932907104, 0.19094237685203552, 0.17204588651657104, 0.13007812201976776, 0.0867919921875, 0.04020996019244194, -0.01054687425494194, -0.0615234375, -0.112060546875, -0.14326171576976776, -0.17446288466453552, -0.19731444120407104, -0.2021484375, -0.18852537870407104, -0.16853027045726776, -0.1285400390625, -0.08371581882238388, -0.03757324069738388, 0.013403319753706455, 0.06767577677965164, 0.112060546875, 0.1571044921875, 0.18720702826976776, 0.20478515326976776, 0.21247558295726776, 0.19160155951976776, 0.17094725370407104, 0.13754881918430328, 0.08525390177965164, 0.0362548828125, -0.011206054128706455, -0.06218261644244194, -0.11162108927965164, -0.15358886122703552, -0.18105468153953552, -0.199951171875, -0.20280760526657104, -0.19511717557907104, -0.16435547173023224, -0.12678222358226776, -0.08635253459215164, -0.03449707105755806, 0.01582031138241291, 0.07075195014476776, 0.11711425334215164, 0.15622557699680328, 0.18654784560203552, 0.20280760526657104, 0.21291503310203552, 0.19357909262180328, 0.17402343451976776, 0.134033203125, 0.09030761569738388, 0.03537597507238388, -0.011425781063735485, -0.0582275390625, -0.10458984225988388, -0.14809569716453552, -0.18171386420726776, -0.20126952230930328, -0.19863280653953552, -0.1900634765625, -0.169189453125, -0.11997070163488388, -0.0845947265625, -0.03361816331744194, 0.02021484263241291, 0.06679687649011612, 0.10920409858226776, 0.15183104574680328, 0.1878662109375, 0.19643554091453552, 0.19621580839157104, 0.19182127714157104, 0.16721190512180328, 0.125244140625, 0.08854980021715164, 0.03977050632238388, -0.013403319753706455, -0.05888671800494194, -0.10612792521715164, -0.14304198324680328, -0.17072753608226776, -0.18984374403953552, -0.19533690810203552, -0.18435057997703552, -0.15534667670726776, -0.116455078125, -0.081298828125, -0.03142089769244194, 0.02043456956744194, 0.06437987834215164, 0.11052245646715164, 0.14194335043430328, 0.17072753608226776, 0.19072264432907104, 0.19138182699680328, 0.17841796576976776, 0.15468749403953552, 0.12041015177965164, 0.0823974609375, 0.03383788838982582, -0.01076660118997097, -0.06086425483226776, -0.09470214694738388, -0.13688965141773224, -0.16501463949680328, -0.173583984375, -0.17534178495407104, -0.17270506918430328, -0.14655761420726776, -0.11359862983226776, -0.07844237983226776, -0.02548827975988388, 0.01604003831744194, 0.05581054463982582, 0.10415038466453552, 0.13974608480930328, 0.16347655653953552, 0.17490233480930328, 0.17644041776657104, 0.16303710639476776, 0.14194335043430328, 0.112060546875, 0.07163085788488388, 0.03273925557732582, -0.0068115233443677425, -0.05141601338982582, -0.087890625, -0.12436523288488388, -0.147216796875, -0.16413573920726776, -0.16655273735523224, -0.15380859375, -0.13601073622703552, -0.09931640326976776, -0.06437987834215164, -0.02482910081744194, 0.01582031138241291, 0.054931640625, 0.0933837890625, 0.12062987685203552, 0.142822265625, 0.15314941108226776, 0.15402831137180328, 0.14765624701976776, 0.12590332329273224, 0.1021728515625, 0.06108398362994194, 0.03229980543255806, -0.01076660118997097, -0.04987792670726776, -0.08217773586511612, -0.10458984225988388, -0.12568359076976776, -0.13491210341453552, -0.14106445014476776, -0.1351318359375, -0.107666015625, -0.0867919921875, -0.05427245795726776, -0.01999511756002903, 0.014501952566206455, 0.04855956882238388, 0.07646483927965164, 0.10568847507238388, 0.120849609375, 0.1285400390625, 0.13491210341453552, 0.1285400390625, 0.11271972209215164, 0.08767089247703552, 0.0560302734375, 0.02329101413488388, -0.009448242373764515, -0.04130859300494194, -0.06569824367761612, -0.08701171725988388, -0.10393065959215164, -0.11557617038488388, -0.11821288615465164, -0.103271484375, -0.090087890625, -0.07097167521715164, -0.04548339545726776, -0.01889648474752903, 0.011206054128706455, 0.03603515401482582, 0.06350097805261612, 0.08217773586511612, 0.09975585341453552, 0.10700683295726776, 0.09931640326976776, 0.10239257663488388, 0.08920898288488388, 0.06284179538488388, 0.03955078125, 0.0186767578125, -0.00747070275247097, -0.024169921875, -0.04987792670726776, -0.06943359225988388, -0.08437499403953552, -0.0911865234375, -0.08613280951976776, -0.08591308444738388, -0.06899414211511612, -0.04877929389476776, -0.03339843824505806, -0.013403319753706455, 0.014501952566206455, 0.03098144382238388, 0.05141601338982582, 0.06020507588982582, 0.07448730617761612, 0.07229004055261612, 0.07668457180261612, 0.06833495944738388, 0.06525878608226776, 0.04899902269244194, 0.03120117075741291, 0.01713867112994194, -0.007031249813735485, -0.02065429650247097, -0.03229980543255806, -0.0406494140625, -0.05339355394244194, -0.0604248046875, -0.05668945237994194, -0.04877929389476776, -0.0450439453125, -0.03559570387005806, -0.01955566368997097, -0.01186523400247097, 0.0024169920943677425, 0.01823730394244194, 0.03427734225988388, 0.03493652120232582, 0.0428466796875, 0.05031738057732582, 0.04680175706744194, 0.04196777194738388, 0.03273925557732582, 0.02922363206744194, 0.01384277269244194, 0.006152343470603228, -0.0006591796409338713, -0.009228515438735485, -0.01625976525247097, -0.019775390625, -0.02219238132238388, -0.02900390513241291, -0.0252685546875, -0.019775390625, -0.01713867112994194, -0.01516113243997097, -0.0076904296875, -0.0041748047806322575, 0.009228515438735485, 0.011425781063735485, 0.01582031138241291, 0.00966796837747097, 0.017578125, 0.01604003831744194, 0.011425781063735485, 0.008129882626235485, 0.009448242373764515, 0.00527343712747097, 0.008349609561264515, 0.001538085867650807, 0.002636718563735485, -0.0004394531133584678, 0.0035156249068677425, 0.0010986328125, 0.0032958984375, 0.0076904296875, 0.003076171735301614, 0.0024169920943677425, 0.002197265625, 0.005932617001235485, -0.0028564452659338713, 0.001538085867650807, 0.00439453125, 0.0068115233443677425, 0.0004394531133584678, -0.0017578124534338713, 0.001977538922801614, 0.0028564452659338713, -0.00439453125, 0.0, 0.002197265625, -0.002197265625, 0.0028564452659338713, 0.007031249813735485, 0.0002197265566792339, 0.00439453125, 0.0054931640625, 0.003735351376235485, 0.0004394531133584678, -0.0008789062267169356, -0.0028564452659338713, 0.002636718563735485, 0.0010986328125, -0.001538085867650807, 0.0068115233443677425, -0.0041748047806322575 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0010986328125, 0.0, -0.0004394531133584678, -0.0002197265566792339, 0.0032958984375, -0.0017578124534338713, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, 0.006152343470603228, 0.006152343470603228, 0.00439453125, 0.006152343470603228, 0.002197265625, -0.0008789062267169356, 0.0002197265566792339, -0.002636718563735485, 0.001538085867650807, 0.005932617001235485, -0.0008789062267169356, -0.0032958984375, -0.0024169920943677425, 0.002197265625, 0.006152343470603228, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, 0.0024169920943677425, 0.007031249813735485, -0.0008789062267169356, 0.0035156249068677425, 0.001977538922801614, 0.003076171735301614, 0.00747070275247097, -0.0032958984375, 0.005053710658103228, 0.0013183592818677425, -0.0013183592818677425, 0.00527343712747097, 0.0, -0.0035156249068677425, 0.002636718563735485, 0.001538085867650807, 0.0006591796409338713, 0.0028564452659338713, 0.0013183592818677425, 0.0002197265566792339, 0.003076171735301614, -0.0035156249068677425, -0.0002197265566792339, -0.0054931640625, -0.0068115233443677425, -0.007910155691206455, -0.009008788503706455, -0.006591796875, 0.0002197265566792339, 0.0076904296875, 0.01186523400247097, 0.01494140550494194, 0.02131347544491291, 0.01955566368997097, 0.02768554538488388, 0.02504882775247097, 0.03229980543255806, 0.0318603515625, 0.02241210825741291, 0.01933593675494194, 0.005053710658103228, -0.002197265625, -0.009228515438735485, -0.02043456956744194, -0.02900390513241291, -0.03977050632238388, -0.03999023512005806, -0.04812011495232582, -0.04042968526482582, -0.04108886793255806, -0.03120117075741291, -0.0208740234375, -0.0068115233443677425, 0.0068115233443677425, 0.02724609337747097, 0.03229980543255806, 0.05251464620232582, 0.06525878608226776, 0.07097167521715164, 0.07163085788488388, 0.07229004055261612, 0.06328124552965164, 0.04921874776482582, 0.03581542894244194, 0.015600585378706455, -0.0046142577193677425, -0.02658691257238388, -0.05031738057732582, -0.05866698920726776, -0.07668457180261612, -0.0845947265625, -0.08854980021715164, -0.08283691108226776, -0.06767577677965164, -0.06284179538488388, -0.03471679612994194, -0.0120849609375, 0.014721679501235485, 0.037353515625, 0.05866698920726776, 0.07646483927965164, 0.09624022990465164, 0.10964354872703552, 0.1131591796875, 0.10524901747703552, 0.09580077975988388, 0.06789550930261612, 0.05361327901482582, 0.02241210825741291, -0.003955077845603228, -0.03229980543255806, -0.06328124552965164, -0.08942870795726776, -0.1043701171875, -0.11843261122703552, -0.123046875, -0.12019042670726776, -0.10107421875, -0.08261718600988388, -0.052734375, -0.02197265625, 0.009008788503706455, 0.04987792670726776, 0.07932128757238388, 0.10305175185203552, 0.12282714247703552, 0.14326171576976776, 0.14150390028953552, 0.13886718451976776, 0.12260741740465164, 0.09316405653953552, 0.05976562201976776, 0.0340576171875, -0.010107421316206455, -0.04240722581744194, -0.08305663615465164, -0.1175537109375, -0.14018554985523224, -0.15644530951976776, -0.15974120795726776, -0.14589843153953552, -0.12810058891773224, -0.1043701171875, -0.06503906100988388, -0.0230712890625, 0.015600585378706455, 0.05251464620232582, 0.09602050483226776, 0.13315428793430328, 0.16062010824680328, 0.17072753608226776, 0.17819823324680328, 0.16413573920726776, 0.14655761420726776, 0.11140136420726776, 0.07558593899011612, 0.03361816331744194, -0.01164550706744194, -0.05624999850988388, -0.09645995497703552, -0.13469238579273224, -0.16633300483226776, -0.1856689453125, -0.191162109375, -0.17534178495407104, -0.15183104574680328, -0.12392577528953552, -0.07646483927965164, -0.03471679612994194, 0.01735839806497097, 0.06767577677965164, 0.10920409858226776, 0.14963378012180328, 0.18544921278953552, 0.19643554091453552, 0.1988525390625, 0.19423827528953552, 0.16940917074680328, 0.13337402045726776, 0.09096679091453552, 0.04042968526482582, -0.015380859375, -0.06174316257238388, -0.1087646484375, -0.15336914360523224, -0.18017578125, -0.20961913466453552, -0.2076416015625, -0.19907225668430328, -0.16962890326976776, -0.13557128608226776, -0.08525390177965164, -0.03493652120232582, 0.01582031138241291, 0.07888183742761612, 0.12436523288488388, 0.1658935546875, 0.19973143935203552, 0.2252197265625, 0.230712890625, 0.2120361328125, 0.18874511122703552, 0.14523924887180328, 0.1021728515625, 0.0450439453125, -0.012524413876235485, -0.06723632663488388, -0.11799316108226776, -0.16193847358226776, -0.19907225668430328, -0.21994628012180328, -0.22917479276657104, -0.21577148139476776, -0.1922607421875, -0.1505126953125, -0.09030761569738388, -0.03603515401482582, 0.0142822265625, 0.07382812350988388, 0.12678222358226776, 0.17622070014476776, 0.21049803495407104, 0.23686522245407104, 0.2384033203125, 0.22170409560203552, 0.2032470703125, 0.15974120795726776, 0.10458984225988388, 0.0494384765625, -0.00966796837747097, -0.07075195014476776, -0.12678222358226776, -0.17885741591453552, -0.21577148139476776, -0.23994140326976776, -0.24345701932907104, -0.22653807699680328, -0.19423827528953552, -0.15336914360523224, -0.10568847507238388, -0.04482421651482582, 0.02109374850988388, 0.07844237983226776, 0.13864745199680328, 0.18281249701976776, 0.22346191108226776, 0.24345701932907104, 0.24741210043430328, 0.23686522245407104, 0.20478515326976776, 0.16347655653953552, 0.11118163913488388, 0.04372558370232582, -0.007910155691206455, -0.06877440959215164, -0.13051757216453552, -0.17578125, -0.2197265625, -0.24807128310203552, -0.24807128310203552, -0.23906248807907104, -0.20500487089157104, -0.1571044921875, -0.10107421875, -0.046142578125, 0.0186767578125, 0.08415526896715164, 0.14018554985523224, 0.19511717557907104, 0.22939452528953552, 0.2507080137729645, 0.2535644471645355, 0.24367675185203552, 0.2142333984375, 0.16501463949680328, 0.11491698771715164, 0.04899902269244194, -0.01054687425494194, -0.07404784858226776, -0.13337402045726776, -0.18500976264476776, -0.2208251953125, -0.2515869140625, -0.2513671815395355, -0.24455565214157104, -0.20610350370407104, -0.15776367485523224, -0.09975585341453552, -0.04130859300494194, 0.01823730394244194, 0.08833007514476776, 0.13754881918430328, 0.19072264432907104, 0.23027342557907104, 0.24763183295726776, 0.2546630799770355, 0.243896484375, 0.21511229872703552, 0.16391600668430328, 0.11293944716453552, 0.04372558370232582, -0.00747070275247097, -0.07844237983226776, -0.13425292074680328, -0.17600096762180328, -0.21708983182907104, -0.24038085341453552, -0.24631346762180328, -0.23334960639476776, -0.19929198920726776, -0.1593017578125, -0.10371093451976776, -0.04042968526482582, 0.02241210825741291, 0.07734374701976776, 0.13469238579273224, 0.18479003012180328, 0.22280272841453552, 0.24697265028953552, 0.2493896484375, 0.22917479276657104, 0.20742186903953552, 0.15468749403953552, 0.10415038466453552, 0.04855956882238388, -0.01054687425494194, -0.07207030802965164, -0.12370605021715164, -0.17204588651657104, -0.20610350370407104, -0.23291015625, -0.23708495497703552, -0.22346191108226776, -0.19270019233226776, -0.14633788168430328, -0.10019531100988388, -0.041748046875, 0.01669921912252903, 0.07932128757238388, 0.12941893935203552, 0.18083494901657104, 0.20961913466453552, 0.22939452528953552, 0.23642577230930328, 0.21928709745407104, 0.19467772543430328, 0.14743651449680328, 0.10415038466453552, 0.041748046875, -0.01516113243997097, -0.06394042819738388, -0.12370605021715164, -0.169189453125, -0.19379882514476776, -0.21665038168430328, -0.22565917670726776, -0.20961913466453552, -0.17819823324680328, -0.14018554985523224, -0.09382323920726776, -0.03977050632238388, 0.015380859375, 0.076904296875, 0.1197509765625, 0.16237792372703552, 0.19313964247703552, 0.21533203125, 0.22060546278953552, 0.20083007216453552, 0.17709960043430328, 0.13381347060203552, 0.08591308444738388, 0.04218749701976776, -0.01076660118997097, -0.05800781026482582, -0.11359862983226776, -0.15029296278953552, -0.18325194716453552, -0.19907225668430328, -0.20346678793430328, -0.18720702826976776, -0.1636962890625, -0.13007812201976776, -0.08547362685203552, -0.03537597507238388, 0.01735839806497097, 0.0692138671875, 0.116455078125, 0.14545898139476776, 0.17226561903953552, 0.19094237685203552, 0.1922607421875, 0.18325194716453552, 0.15402831137180328, 0.11931151896715164, 0.07778320461511612, 0.03647460788488388, -0.012524413876235485, -0.05646972358226776, -0.09602050483226776, -0.13469238579273224, -0.15556640923023224, -0.1702880859375, -0.1768798828125, -0.16765137016773224, -0.1461181640625, -0.112060546875, -0.06613769382238388, -0.03032226487994194, 0.01691894419491291, 0.05581054463982582, 0.0966796875, 0.13161620497703552, 0.15007324516773224, 0.15842284262180328, 0.16325683891773224, 0.15402831137180328, 0.12810058891773224, 0.10107421875, 0.06767577677965164, 0.02790527231991291, -0.00966796837747097, -0.04548339545726776, -0.08063964545726776, -0.1109619140625, -0.13161620497703552, -0.14304198324680328, -0.14787597954273224, -0.13315428793430328, -0.12128905951976776, -0.08920898288488388, -0.054931640625, -0.02373046800494194, 0.010327148251235485, 0.05075683444738388, 0.08063964545726776, 0.10129394382238388, 0.12062987685203552, 0.1307373046875, 0.12766112387180328, 0.12700195610523224, 0.11140136420726776, 0.08041992038488388, 0.05668945237994194, 0.024169921875, -0.008349609561264515, -0.04020996019244194, -0.06635741889476776, -0.0845947265625, -0.09711913764476776, -0.10480956733226776, -0.10480956733226776, -0.10063476115465164, -0.08635253459215164, -0.06833495944738388, -0.04438476264476776, -0.01625976525247097, 0.011206054128706455, 0.03581542894244194, 0.05800781026482582, 0.076904296875, 0.08591308444738388, 0.09360351413488388, 0.09580077975988388, 0.09360351413488388, 0.07822265475988388, 0.06196288764476776, 0.0340576171875, 0.013403319753706455, -0.001538085867650807, -0.02680663950741291, -0.04108886793255806, -0.05471191182732582, -0.06657714396715164, -0.07624511420726776, -0.07053222507238388, -0.06855468451976776, -0.05361327901482582, -0.04548339545726776, -0.03120117075741291, -0.01494140550494194, 0.011425781063735485, 0.02438964694738388, 0.0362548828125, 0.0472412109375, 0.05097655951976776, 0.06020507588982582, 0.0516357421875, 0.05756835639476776, 0.03867187350988388, 0.028564453125, 0.01801757700741291, 0.0164794921875, 0.0013183592818677425, -0.010986328125, -0.02021484263241291, -0.02768554538488388, -0.02878417819738388, -0.03515625, -0.03142089769244194, -0.02922363206744194, -0.02351074106991291, -0.019775390625, -0.00966796837747097, 0.0002197265566792339, 0.0032958984375, 0.006152343470603228, 0.015600585378706455, 0.01054687425494194, 0.01076660118997097, 0.01999511756002903, 0.01296386681497097, 0.01296386681497097, 0.00637206993997097, 0.0076904296875, 0.00439453125, 0.0008789062267169356, 0.00527343712747097, -0.0013183592818677425, 0.00439453125, -0.003076171735301614, -0.0017578124534338713, 0.00439453125, -0.001977538922801614, 0.007250976283103228, -0.0010986328125, 0.0041748047806322575, -0.0002197265566792339, 0.003955077845603228, 0.00527343712747097, 0.0035156249068677425, 0.004833984188735485, -0.0002197265566792339, 0.002636718563735485, -0.0004394531133584678, 0.00527343712747097, -0.0010986328125, 0.0004394531133584678, 0.001538085867650807, 0.0035156249068677425, 0.0, 0.00527343712747097, 0.003955077845603228, 0.007031249813735485, 0.005053710658103228, -0.0008789062267169356, 0.0076904296875, 0.005932617001235485, -0.0010986328125, 0.005053710658103228, 0.002197265625, -0.002197265625, 0.004833984188735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.004833984188735485, 0.005932617001235485, 0.0041748047806322575, 0.0054931640625, 0.0046142577193677425, 0.00747070275247097, 0.0046142577193677425, 0.002197265625, 0.0032958984375, 0.0028564452659338713, 0.0054931640625, 0.0054931640625, 0.004833984188735485, 0.003955077845603228, -0.0032958984375, 0.00439453125, 0.0028564452659338713, 0.0028564452659338713, 0.0013183592818677425, -0.0028564452659338713, 0.0028564452659338713, -0.0013183592818677425, 0.002636718563735485, -0.003955077845603228, 0.006591796875, -0.001538085867650807, -0.0010986328125, 0.006591796875, 0.0024169920943677425, 0.0032958984375, 0.007250976283103228, 0.003076171735301614, 0.006152343470603228, 0.0008789062267169356, 0.0057128905318677425, -0.0010986328125, 0.00527343712747097, -0.0004394531133584678, 0.002197265625, 0.003735351376235485, 0.002636718563735485, 0.001977538922801614, 0.0041748047806322575, 0.005932617001235485, -0.0002197265566792339, 0.006591796875, -0.0035156249068677425, 0.001538085867650807, 0.0024169920943677425, -0.007910155691206455, -0.005932617001235485, -0.007250976283103228, -0.0046142577193677425, -0.002636718563735485, -0.0098876953125, -0.0041748047806322575, 0.0010986328125, 0.01164550706744194, 0.017578125, 0.02504882775247097, 0.02702636644244194, 0.03120117075741291, 0.03164062276482582, 0.03647460788488388, 0.03120117075741291, 0.02285156212747097, 0.02329101413488388, 0.013623046688735485, -0.0046142577193677425, -0.01164550706744194, -0.03032226487994194, -0.03911132737994194, -0.04921874776482582, -0.05712890625, -0.05954589694738388, -0.05185546725988388, -0.04790038987994194, -0.03955078125, -0.02834472618997097, -0.007250976283103228, 0.008129882626235485, 0.02175292931497097, 0.04833984375, 0.06130370870232582, 0.072509765625, 0.08173827826976776, 0.08723144233226776, 0.07976073771715164, 0.0736083984375, 0.0560302734375, 0.04086913913488388, 0.01999511756002903, -0.0010986328125, -0.02702636644244194, -0.05800781026482582, -0.07053222507238388, -0.09184569865465164, -0.0966796875, -0.10700683295726776, -0.10041503608226776, -0.08920898288488388, -0.06789550930261612, -0.04636230319738388, -0.01691894419491291, 0.009008788503706455, 0.03955078125, 0.06503906100988388, 0.0977783203125, 0.11887206882238388, 0.12678222358226776, 0.13139648735523224, 0.12172850966453552, 0.11118163913488388, 0.09250488132238388, 0.05954589694738388, 0.02724609337747097, -0.010107421316206455, -0.04086913913488388, -0.0802001953125, -0.10788574069738388, -0.13029785454273224, -0.14523924887180328, -0.14633788168430328, -0.13623046875, -0.12744140625, -0.09404296427965164, -0.063720703125, -0.02790527231991291, 0.012304686941206455, 0.05317382514476776, 0.0955810546875, 0.13271483778953552, 0.15798339247703552, 0.17204588651657104, 0.17775878310203552, 0.16435547173023224, 0.14458008110523224, 0.11469726264476776, 0.07668457180261612, 0.03559570387005806, -0.006152343470603228, -0.05888671800494194, -0.09975585341453552, -0.1351318359375, -0.16831053793430328, -0.18017578125, -0.18413084745407104, -0.17336425185203552, -0.15380859375, -0.11821288615465164, -0.07756347209215164, -0.03669433668255806, 0.0142822265625, 0.06833495944738388, 0.11140136420726776, 0.15908202528953552, 0.18742674589157104, 0.20258788764476776, 0.20742186903953552, 0.19973143935203552, 0.1746826171875, 0.13930663466453552, 0.09382323920726776, 0.03823241963982582, -0.01076660118997097, -0.06679687649011612, -0.112060546875, -0.156005859375, -0.19929198920726776, -0.21621093153953552, -0.22456054389476776, -0.20895995199680328, -0.18105468153953552, -0.1461181640625, -0.09206542372703552, -0.03867187350988388, 0.01933593675494194, 0.08085937052965164, 0.12678222358226776, 0.173583984375, 0.21533203125, 0.23598632216453552, 0.2427978515625, 0.2274169921875, 0.20126952230930328, 0.15227051079273224, 0.10349120944738388, 0.04460449144244194, -0.010107421316206455, -0.07097167521715164, -0.12458495795726776, -0.18215331435203552, -0.22368162870407104, -0.24235838651657104, -0.2548828125, -0.2373046875, -0.204345703125, -0.15974120795726776, -0.10854491591453552, -0.04416503757238388, 0.02460937388241291, 0.08327636867761612, 0.14216308295726776, 0.19731444120407104, 0.23554687201976776, 0.26740720868110657, 0.2645507752895355, 0.2559814453125, 0.2197265625, 0.17380370199680328, 0.11140136420726776, 0.05317382514476776, -0.01582031138241291, -0.0736083984375, -0.14018554985523224, -0.195556640625, -0.23862303793430328, -0.2682861387729645, -0.265869140625, -0.25883787870407104, -0.21687011420726776, -0.17050780355930328, -0.10942382365465164, -0.04306640475988388, 0.01735839806497097, 0.09272460639476776, 0.15249022841453552, 0.21071776747703552, 0.25927734375, 0.2825683653354645, 0.2825683653354645, 0.26433104276657104, 0.23159179091453552, 0.17819823324680328, 0.12590332329273224, 0.0604248046875, -0.0164794921875, -0.07888183742761612, -0.14436034858226776, -0.20061033964157104, -0.2551025450229645, -0.2810302674770355, -0.29267576336860657, -0.27861326932907104, -0.23466795682907104, -0.17863768339157104, -0.11931151896715164, -0.04636230319738388, 0.02219238132238388, 0.09733886271715164, 0.15534667670726776, 0.21950682997703552, 0.26323240995407104, 0.2920165956020355, 0.30278319120407104, 0.2799316346645355, 0.24433593451976776, 0.1900634765625, 0.12722167372703552, 0.05778808519244194, -0.014501952566206455, -0.08371581882238388, -0.14875487983226776, -0.21027831733226776, -0.2594970762729645, -0.2931152284145355, -0.3012451231479645, -0.28498533368110657, -0.24323730170726776, -0.19050292670726776, -0.120849609375, -0.04965820163488388, 0.02768554538488388, 0.09624022990465164, 0.16545410454273224, 0.22434081137180328, 0.26520994305610657, 0.3012451231479645, 0.3076171875, 0.28300780057907104, 0.24477538466453552, 0.1900634765625, 0.12700195610523224, 0.0626220703125, -0.010327148251235485, -0.081298828125, -0.14765624701976776, -0.20961913466453552, -0.26520994305610657, -0.29487302899360657, -0.301025390625, -0.27971190214157104, -0.23928222060203552, -0.19028319418430328, -0.12480468302965164, -0.05668945237994194, 0.01801757700741291, 0.0977783203125, 0.15974120795726776, 0.22478026151657104, 0.2667480409145355, 0.296630859375, 0.3056396543979645, 0.28630369901657104, 0.24477538466453552, 0.1966552734375, 0.12480468302965164, 0.06086425483226776, -0.01494140550494194, -0.07932128757238388, -0.1494140625, -0.20895995199680328, -0.25334471464157104, -0.2876220643520355, -0.2913574278354645, -0.27949216961860657, -0.23906248807907104, -0.186767578125, -0.116455078125, -0.0538330078125, 0.0142822265625, 0.0933837890625, 0.1571044921875, 0.21994628012180328, 0.26191404461860657, 0.2889404296875, 0.2891601622104645, 0.27971190214157104, 0.23576658964157104, 0.18874511122703552, 0.12612304091453552, 0.0560302734375, -0.014501952566206455, -0.07932128757238388, -0.1505126953125, -0.20632323622703552, -0.243896484375, -0.28190916776657104, -0.2788330018520355, -0.2713623046875, -0.22807615995407104, -0.17600096762180328, -0.11513671278953552, -0.04482421651482582, 0.0252685546875, 0.09294433146715164, 0.15249022841453552, 0.20588378608226776, 0.2535644471645355, 0.2779541015625, 0.27619627118110657, 0.26872557401657104, 0.22983397543430328, 0.1812744140625, 0.1153564453125, 0.05229492112994194, -0.0120849609375, -0.07404784858226776, -0.14238281548023224, -0.18500976264476776, -0.23686522245407104, -0.25664061307907104, -0.2603759765625, -0.2471923828125, -0.21906737983226776, -0.16413573920726776, -0.1087646484375, -0.04460449144244194, 0.02153320237994194, 0.08613280951976776, 0.14084471762180328, 0.1878662109375, 0.22653807699680328, 0.2493896484375, 0.2548828125, 0.24345701932907104, 0.20588378608226776, 0.1636962890625, 0.11249999701976776, 0.050537109375, -0.01318359375, -0.07097167521715164, -0.12546385824680328, -0.17753905057907104, -0.21621093153953552, -0.23906248807907104, -0.23862303793430328, -0.22543944418430328, -0.19533690810203552, -0.15139159560203552, -0.09074706584215164, -0.04108886793255806, 0.02131347544491291, 0.07207030802965164, 0.13315428793430328, 0.17336425185203552, 0.2054443359375, 0.23049315810203552, 0.22873534262180328, 0.21467284858226776, 0.18632811307907104, 0.14128418266773224, 0.09228515625, 0.04350585862994194, -0.014721679501235485, -0.06591796875, -0.11118163913488388, -0.16193847358226776, -0.18808592855930328, -0.21005858480930328, -0.20566405355930328, -0.20017088949680328, -0.16787108778953552, -0.12546385824680328, -0.0802001953125, -0.03229980543255806, 0.015600585378706455, 0.07097167521715164, 0.11469726264476776, 0.1483154296875, 0.17863768339157104, 0.19621580839157104, 0.1900634765625, 0.18500976264476776, 0.1593017578125, 0.125244140625, 0.08371581882238388, 0.0384521484375, -0.006591796875, -0.05515136569738388, -0.09689941257238388, -0.13315428793430328, -0.16259765625, -0.1680908203125, -0.1724853515625, -0.15974120795726776, -0.14150390028953552, -0.11052245646715164, -0.07426757365465164, -0.03164062276482582, 0.015380859375, 0.05537109076976776, 0.09514159709215164, 0.12326660007238388, 0.14743651449680328, 0.15886230766773224, 0.15776367485523224, 0.14216308295726776, 0.12238769233226776, 0.09975585341453552, 0.06723632663488388, 0.0263671875, -0.011206054128706455, -0.0450439453125, -0.08151855319738388, -0.10239257663488388, -0.11733397841453552, -0.12700195610523224, -0.1329345703125, -0.123046875, -0.10195311903953552, -0.0791015625, -0.05690917745232582, -0.02373046800494194, 0.0098876953125, 0.04108886793255806, 0.07272949069738388, 0.09162597358226776, 0.10678710788488388, 0.11403807997703552, 0.1065673828125, 0.10612792521715164, 0.0845947265625, 0.07229004055261612, 0.04812011495232582, 0.01911620981991291, -0.002636718563735485, -0.03273925557732582, -0.0494384765625, -0.06855468451976776, -0.08591308444738388, -0.08701171725988388, -0.08591308444738388, -0.0823974609375, -0.06899414211511612, -0.05097655951976776, -0.03515625, -0.01164550706744194, 0.01054687425494194, 0.024169921875, 0.04570312425494194, 0.05185546725988388, 0.05976562201976776, 0.06394042819738388, 0.06987304240465164, 0.06503906100988388, 0.05251464620232582, 0.03713378682732582, 0.02285156212747097, 0.01318359375, -0.008129882626235485, -0.019775390625, -0.02658691257238388, -0.03537597507238388, -0.03361816331744194, -0.03559570387005806, -0.0362548828125, -0.03559570387005806, -0.03054199181497097, -0.015380859375, -0.01274413987994194, -0.005932617001235485, 0.0004394531133584678, 0.005053710658103228, 0.011206054128706455, 0.01604003831744194, 0.01801757700741291, 0.02131347544491291, 0.013403319753706455, 0.01691894419491291, 0.01274413987994194, 0.0024169920943677425, 0.0028564452659338713, 0.0068115233443677425, -0.0004394531133584678, 0.005932617001235485, 0.0002197265566792339, 0.0008789062267169356, 0.0068115233443677425, 0.003735351376235485, 0.001977538922801614, 0.0046142577193677425, 0.00527343712747097, 0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.00439453125, -0.0013183592818677425, -0.0032958984375, 0.003076171735301614, 0.0004394531133584678, 0.0006591796409338713, 0.0041748047806322575, 0.001538085867650807, 0.005053710658103228, -0.003076171735301614, -0.00439453125, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, 0.002197265625, 0.001538085867650807, -0.0008789062267169356, 0.00527343712747097, -0.001977538922801614, 0.0035156249068677425, 0.0054931640625, -0.002636718563735485, 0.003076171735301614, 0.0017578124534338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.001977538922801614, 0.0068115233443677425, 0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, 0.0004394531133584678, -0.002197265625, 0.0024169920943677425, 0.003955077845603228, 0.0004394531133584678, 0.001977538922801614, -0.0008789062267169356, 0.00527343712747097, -0.003955077845603228, -0.0032958984375, 0.0041748047806322575, 0.0008789062267169356, 0.0013183592818677425, 0.0013183592818677425, 0.0010986328125, -0.0010986328125, 0.0006591796409338713, 0.0008789062267169356, 0.002197265625, 0.0068115233443677425, 0.0028564452659338713, 0.005932617001235485, 0.0006591796409338713, 0.0032958984375, 0.0010986328125, 0.003955077845603228, -0.0010986328125, 0.00637206993997097, 0.006152343470603228, 0.0008789062267169356, 0.0046142577193677425, 0.0006591796409338713, 0.003955077845603228, 0.0010986328125, 0.0013183592818677425, 0.001538085867650807, 0.001977538922801614, 0.0028564452659338713, 0.0028564452659338713, -0.0028564452659338713, 0.006591796875, -0.0024169920943677425, -0.0032958984375, -0.00439453125, -0.0098876953125, -0.00966796837747097, -0.0057128905318677425, -0.009228515438735485, -0.01406249962747097, -0.010986328125, -0.001977538922801614, 0.003955077845603228, 0.0068115233443677425, 0.0186767578125, 0.02197265625, 0.02812499925494194, 0.04042968526482582, 0.03647460788488388, 0.0406494140625, 0.0362548828125, 0.03581542894244194, 0.02592773362994194, 0.01691894419491291, -0.001538085867650807, -0.017578125, -0.0318603515625, -0.04548339545726776, -0.05559081956744194, -0.0615234375, -0.07009277492761612, -0.06679687649011612, -0.05559081956744194, -0.04570312425494194, -0.03317870944738388, -0.010107421316206455, 0.012304686941206455, 0.0296630859375, 0.04987792670726776, 0.06745605170726776, 0.08349609375, 0.09360351413488388, 0.0955810546875, 0.09755858778953552, 0.08503417670726776, 0.06877440959215164, 0.04702148213982582, 0.02482910081744194, -0.0057128905318677425, -0.0318603515625, -0.06437987834215164, -0.08195800334215164, -0.10942382365465164, -0.11909179389476776, -0.12656249105930328, -0.11403807997703552, -0.10788574069738388, -0.0780029296875, -0.05185546725988388, -0.01955566368997097, 0.013623046688735485, 0.050537109375, 0.0867919921875, 0.11162108927965164, 0.13051757216453552, 0.14677734673023224, 0.14655761420726776, 0.14501953125, 0.12941893935203552, 0.10239257663488388, 0.06833495944738388, 0.0263671875, -0.0087890625, -0.05361327901482582, -0.08811035007238388, -0.12041015177965164, -0.15249022841453552, -0.16896972060203552, -0.17644041776657104, -0.16281737387180328, -0.14633788168430328, -0.11337890475988388, -0.07976073771715164, -0.02592773362994194, 0.01999511756002903, 0.06767577677965164, 0.10283202677965164, 0.151611328125, 0.17863768339157104, 0.19138182699680328, 0.1988525390625, 0.18830566108226776, 0.16435547173023224, 0.13623046875, 0.09206542372703552, 0.04086913913488388, -0.009008788503706455, -0.06591796875, -0.10722655802965164, -0.158203125, -0.19401854276657104, -0.21269530057907104, -0.21818846464157104, -0.21049803495407104, -0.17753905057907104, -0.1395263671875, -0.09316405653953552, -0.04262695088982582, 0.01955566368997097, 0.0758056640625, 0.12502440810203552, 0.18061523139476776, 0.21994628012180328, 0.23576658964157104, 0.24257811903953552, 0.22917479276657104, 0.20039062201976776, 0.15666504204273224, 0.10415038466453552, 0.05339355394244194, -0.01604003831744194, -0.07338867336511612, -0.12700195610523224, -0.18171386420726776, -0.22478026151657104, -0.2537841796875, -0.25312498211860657, -0.24104003608226776, -0.21599119901657104, -0.16281737387180328, -0.11381835490465164, -0.04702148213982582, 0.02482910081744194, 0.08942870795726776, 0.14677734673023224, 0.20236815512180328, 0.24587401747703552, 0.27202147245407104, 0.27421873807907104, 0.2625732421875, 0.22873534262180328, 0.17973631620407104, 0.11997070163488388, 0.05471191182732582, -0.01274413987994194, -0.08349609375, -0.14985351264476776, -0.20017088949680328, -0.24807128310203552, -0.27949216961860657, -0.2865234315395355, -0.27290037274360657, -0.23774413764476776, -0.18654784560203552, -0.11997070163488388, -0.050537109375, 0.02504882775247097, 0.09492187201976776, 0.16193847358226776, 0.21928709745407104, 0.274658203125, 0.29399412870407104, 0.31376951932907104, 0.29377439618110657, 0.25202634930610657, 0.19929198920726776, 0.13007812201976776, 0.06416015326976776, -0.01186523400247097, -0.08745116740465164, -0.15578612685203552, -0.21708983182907104, -0.2759765684604645, -0.3065185546875, -0.31201171875, -0.29926756024360657, -0.2537841796875, -0.20017088949680328, -0.1285400390625, -0.05229492112994194, 0.02109374850988388, 0.09733886271715164, 0.17512206733226776, 0.23269042372703552, 0.2847656309604645, 0.32080078125, 0.3315673768520355, 0.30585935711860657, 0.2691650390625, 0.20961913466453552, 0.138427734375, 0.06547851115465164, -0.01604003831744194, -0.09140624850988388, -0.15798339247703552, -0.22543944418430328, -0.27685546875, -0.31706541776657104, -0.3265136778354645, -0.31267088651657104, -0.27399900555610657, -0.20917968451976776, -0.138427734375, -0.05581054463982582, 0.0263671875, 0.10371093451976776, 0.17666015028953552, 0.24169921875, 0.3008056581020355, 0.33222654461860657, 0.3451904058456421, 0.32673338055610657, 0.2801513671875, 0.2208251953125, 0.14589843153953552, 0.06723632663488388, -0.017578125, -0.09426268935203552, -0.16413573920726776, -0.23203124105930328, -0.2955322265625, -0.32563474774360657, -0.3484863042831421, -0.3221191465854645, -0.2733398377895355, -0.213134765625, -0.13688965141773224, -0.06196288764476776, 0.0274658203125, 0.10261230170726776, 0.17973631620407104, 0.25422361493110657, 0.30827635526657104, 0.3370605409145355, 0.3482666015625, 0.3331054747104645, 0.2814697325229645, 0.217529296875, 0.1505126953125, 0.06965331733226776, -0.01054687425494194, -0.09404296427965164, -0.17160643637180328, -0.23972167074680328, -0.30146482586860657, -0.3364013731479645, -0.340576171875, -0.32255858182907104, -0.274658203125, -0.21730956435203552, -0.13820800185203552, -0.05581054463982582, 0.02153320237994194, 0.10129394382238388, 0.18303221464157104, 0.2507080137729645, 0.31201171875, 0.344970703125, 0.3480468690395355, 0.32343748211860657, 0.2843261659145355, 0.2230224609375, 0.15336914360523224, 0.072509765625, -0.010986328125, -0.085693359375, -0.1658935546875, -0.24235838651657104, -0.2913574278354645, -0.32958984375, -0.34233397245407104, -0.3183837831020355, -0.2777343690395355, -0.21818846464157104, -0.14238281548023224, -0.05712890625, 0.02482910081744194, 0.10458984225988388, 0.17731933295726776, 0.24367675185203552, 0.30388182401657104, 0.33332517743110657, 0.33552244305610657, 0.3166259825229645, 0.2689453065395355, 0.21467284858226776, 0.14128418266773224, 0.07207030802965164, -0.01582031138241291, -0.08920898288488388, -0.16896972060203552, -0.22543944418430328, -0.2781738340854645, -0.3150878846645355, -0.3251953125, -0.3084960877895355, -0.2601562440395355, -0.20170897245407104, -0.13864745199680328, -0.05031738057732582, 0.02395019493997097, 0.10393065959215164, 0.17863768339157104, 0.23994140326976776, 0.2847656309604645, 0.32255858182907104, 0.32805174589157104, 0.30168455839157104, 0.2623535096645355, 0.2076416015625, 0.1318359375, 0.0648193359375, -0.00966796837747097, -0.08305663615465164, -0.1571044921875, -0.22038573026657104, -0.2722412049770355, -0.3021240234375, -0.3131103515625, -0.2946533262729645, -0.2471923828125, -0.18742674589157104, -0.1219482421875, -0.05009765550494194, 0.02351074106991291, 0.09975585341453552, 0.1636962890625, 0.22038573026657104, 0.26323240995407104, 0.296630859375, 0.2990478575229645, 0.2814697325229645, 0.23796385526657104, 0.1845703125, 0.12348632514476776, 0.05471191182732582, -0.01494140550494194, -0.0791015625, -0.14743651449680328, -0.2032470703125, -0.2471923828125, -0.2722412049770355, -0.2814697325229645, -0.265869140625, -0.2252197265625, -0.173583984375, -0.1153564453125, -0.04240722581744194, 0.02131347544491291, 0.085693359375, 0.15512694418430328, 0.20148925483226776, 0.24257811903953552, 0.2649902403354645, 0.270263671875, 0.24675291776657104, 0.21335448324680328, 0.17006835341453552, 0.112060546875, 0.04899902269244194, -0.01384277269244194, -0.07272949069738388, -0.13315428793430328, -0.18391112983226776, -0.21489256620407104, -0.23444823920726776, -0.2384033203125, -0.22390136122703552, -0.19929198920726776, -0.15468749403953552, -0.10129394382238388, -0.0428466796875, 0.01999511756002903, 0.0802001953125, 0.12919922173023224, 0.17424315214157104, 0.20939940214157104, 0.2318115234375, 0.2296142578125, 0.21818846464157104, 0.18479003012180328, 0.1439208984375, 0.09272460639476776, 0.04262695088982582, -0.010986328125, -0.06130370870232582, -0.1087646484375, -0.1549072265625, -0.18479003012180328, -0.19863280653953552, -0.20522460341453552, -0.19291990995407104, -0.16259765625, -0.12744140625, -0.08041992038488388, -0.03010253794491291, 0.014501952566206455, 0.063720703125, 0.10722655802965164, 0.14567871391773224, 0.17094725370407104, 0.18193358182907104, 0.17863768339157104, 0.17138671875, 0.14216308295726776, 0.11469726264476776, 0.07338867336511612, 0.03208007663488388, -0.01164550706744194, -0.05097655951976776, -0.08525390177965164, -0.12238769233226776, -0.14567871391773224, -0.15183104574680328, -0.15644530951976776, -0.14743651449680328, -0.125244140625, -0.0933837890625, -0.06306152045726776, -0.01889648474752903, 0.009228515438735485, 0.04658202826976776, 0.08107910305261612, 0.10986328125, 0.125244140625, 0.13535155355930328, 0.13271483778953552, 0.12216796725988388, 0.11030273139476776, 0.07998047024011612, 0.05031738057732582, 0.02219238132238388, -0.0046142577193677425, -0.03449707105755806, -0.06459961086511612, -0.08503417670726776, -0.09184569865465164, -0.10195311903953552, -0.10502929240465164, -0.09228515625, -0.08151855319738388, -0.06240234151482582, -0.03955078125, -0.01625976525247097, 0.003735351376235485, 0.03142089769244194, 0.04768066108226776, 0.06591796875, 0.07602538913488388, 0.07646483927965164, 0.07866210490465164, 0.07536620646715164, 0.0582275390625, 0.04658202826976776, 0.02548827975988388, 0.01779785193502903, 0.0002197265566792339, -0.019775390625, -0.02570800669491291, -0.03559570387005806, -0.03911132737994194, -0.04416503757238388, -0.04130859300494194, -0.0428466796875, -0.028564453125, -0.02658691257238388, -0.013403319753706455, -0.002636718563735485, 0.008349609561264515, 0.01164550706744194, 0.01999511756002903, 0.02131347544491291, 0.0186767578125, 0.0230712890625, 0.01955566368997097, 0.012304686941206455, 0.013623046688735485, 0.0120849609375, 0.0013183592818677425, 0.00747070275247097, 0.003735351376235485, -0.0013183592818677425, -0.0008789062267169356, 0.0008789062267169356, 0.001538085867650807, 0.004833984188735485, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, 0.0041748047806322575, 0.006152343470603228, 0.006152343470603228, 0.003955077845603228, -0.0004394531133584678, 0.00439453125, 0.0035156249068677425, -0.00439453125, 0.0035156249068677425, 0.0004394531133584678, 0.003076171735301614, 0.002636718563735485, 0.00527343712747097, -0.001977538922801614, 0.0028564452659338713, 0.00527343712747097, -0.0041748047806322575, 0.00527343712747097, 0.0010986328125, 0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, 0.0004394531133584678, 0.0035156249068677425, 0.008349609561264515, 0.00637206993997097, 0.0 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, 0.0054931640625, -0.0006591796409338713, 0.0024169920943677425, -0.0028564452659338713, 0.0028564452659338713, 0.005053710658103228, 0.0002197265566792339, 0.006591796875, 0.0, 0.0032958984375, -0.003076171735301614, 0.0008789062267169356, 0.001538085867650807, 0.0041748047806322575, 0.002636718563735485, -0.0035156249068677425, 0.00527343712747097, -0.003955077845603228, 0.002197265625, 0.00527343712747097, 0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, 0.002197265625, 0.003955077845603228, 0.0006591796409338713, -0.0032958984375, -0.0010986328125, 0.00439453125, 0.007910155691206455, 0.0041748047806322575, 0.0024169920943677425, 0.002636718563735485, 0.00637206993997097, -0.0008789062267169356, 0.0004394531133584678, 0.0068115233443677425, -0.001977538922801614, 0.0068115233443677425, 0.005932617001235485, -0.0010986328125, 0.0017578124534338713, -0.002636718563735485, 0.005053710658103228, 0.002636718563735485, -0.002636718563735485, -0.005053710658103228, -0.00439453125, -0.0024169920943677425, -0.008129882626235485, -0.0087890625, -0.012524413876235485, -0.012524413876235485, -0.0098876953125, -0.003955077845603228, 0.006591796875, 0.01713867112994194, 0.02460937388241291, 0.03208007663488388, 0.0340576171875, 0.04482421651482582, 0.04306640475988388, 0.0428466796875, 0.04592284932732582, 0.037353515625, 0.02614746056497097, 0.014721679501235485, -0.0024169920943677425, -0.02395019493997097, -0.04042968526482582, -0.050537109375, -0.06064452975988388, -0.07053222507238388, -0.07382812350988388, -0.07097167521715164, -0.068115234375, -0.05471191182732582, -0.04042968526482582, -0.013623046688735485, 0.00856933556497097, 0.03383788838982582, 0.05734863132238388, 0.07712402194738388, 0.0999755859375, 0.10898437350988388, 0.10788574069738388, 0.1087646484375, 0.09624022990465164, 0.08261718600988388, 0.05756835639476776, 0.02724609337747097, -0.00966796837747097, -0.04240722581744194, -0.07053222507238388, -0.09909667819738388, -0.12041015177965164, -0.13007812201976776, -0.13425292074680328, -0.13227538764476776, -0.11184081435203552, -0.09096679091453552, -0.05888671800494194, -0.02680663950741291, 0.01274413987994194, 0.054931640625, 0.09382323920726776, 0.12766112387180328, 0.1505126953125, 0.16962890326976776, 0.17336425185203552, 0.16215820610523224, 0.14809569716453552, 0.11249999701976776, 0.08217773586511612, 0.03493652120232582, -0.01384277269244194, -0.05998535081744194, -0.10634765028953552, -0.13974608480930328, -0.16655273735523224, -0.1944580078125, -0.19182127714157104, -0.18588866293430328, -0.16171874105930328, -0.1241455078125, -0.08613280951976776, -0.03669433668255806, 0.02263183519244194, 0.06987304240465164, 0.11953124403953552, 0.16325683891773224, 0.20368652045726776, 0.217529296875, 0.22499999403953552, 0.21467284858226776, 0.19050292670726776, 0.14897461235523224, 0.10590820014476776, 0.04855956882238388, -0.0098876953125, -0.07426757365465164, -0.12392577528953552, -0.17138671875, -0.21489256620407104, -0.2427978515625, -0.24345701932907104, -0.23093260824680328, -0.20720213651657104, -0.16501463949680328, -0.11118163913488388, -0.04812011495232582, 0.02768554538488388, 0.08107910305261612, 0.15029296278953552, 0.1988525390625, 0.24235838651657104, 0.2704834043979645, 0.2713623046875, 0.2627929747104645, 0.22983397543430328, 0.17556151747703552, 0.11799316108226776, 0.05097655951976776, -0.01406249962747097, -0.07976073771715164, -0.14787597954273224, -0.19621580839157104, -0.25224608182907104, -0.2755371034145355, -0.2869628965854645, -0.2711425721645355, -0.23598632216453552, -0.1845703125, -0.12458495795726776, -0.0494384765625, 0.02241210825741291, 0.098876953125, 0.16677245497703552, 0.2252197265625, 0.2755371034145355, 0.3045410215854645, 0.3111328184604645, 0.30168455839157104, 0.252685546875, 0.20522460341453552, 0.14018554985523224, 0.05844726413488388, -0.010986328125, -0.08811035007238388, -0.1571044921875, -0.22214354574680328, -0.2821289002895355, -0.32014158368110657, -0.32958984375, -0.30695798993110657, -0.26520994305610657, -0.20895995199680328, -0.13337402045726776, -0.06196288764476776, 0.0208740234375, 0.103271484375, 0.18017578125, 0.24125975370407104, 0.3001464903354645, 0.3407958745956421, 0.3462890386581421, 0.3287109434604645, 0.27971190214157104, 0.22104491293430328, 0.151611328125, 0.06899414211511612, -0.011206054128706455, -0.09865722060203552, -0.16611327230930328, -0.23708495497703552, -0.3062988221645355, -0.34233397245407104, -0.35419920086860657, -0.33244627714157104, -0.28718259930610657, -0.22499999403953552, -0.15073241293430328, -0.06591796875, 0.02504882775247097, 0.10524901747703552, 0.1856689453125, 0.2638916075229645, 0.3218994140625, 0.36738279461860657, 0.37353515625, 0.3440917730331421, 0.2999267578125, 0.2384033203125, 0.15468749403953552, 0.07976073771715164, -0.010107421316206455, -0.09909667819738388, -0.17578125, -0.2557617127895355, -0.309814453125, -0.3592529296875, -0.37749022245407104, -0.35112303495407104, -0.3052001893520355, -0.23796385526657104, -0.15336914360523224, -0.07163085788488388, 0.02614746056497097, 0.1131591796875, 0.19731444120407104, 0.26960447430610657, 0.34101560711860657, 0.37397459149360657, 0.39067381620407104, 0.3634277284145355, 0.31245115399360657, 0.24785155057907104, 0.16347655653953552, 0.07558593899011612, -0.01076660118997097, -0.094482421875, -0.18918456137180328, -0.2634521424770355, -0.3216796815395355, -0.3737548589706421, -0.3935302495956421, -0.3660644292831421, -0.3062988221645355, -0.23906248807907104, -0.15798339247703552, -0.06459961086511612, 0.01911620981991291, 0.11008300632238388, 0.19797362387180328, 0.28168943524360657, 0.3484863042831421, 0.3847411870956421, 0.4040771424770355, 0.36650389432907104, 0.3139892518520355, 0.2427978515625, 0.16413573920726776, 0.07756347209215164, -0.00527343712747097, -0.10283202677965164, -0.18325194716453552, -0.2623535096645355, -0.3282714784145355, -0.37309569120407104, -0.3988037109375, -0.36188963055610657, -0.31904295086860657, -0.23884277045726776, -0.158203125, -0.06635741889476776, 0.02241210825741291, 0.11557617038488388, 0.20368652045726776, 0.28498533368110657, 0.3394775390625, 0.37968748807907104, 0.4012206792831421, 0.366943359375, 0.3199218809604645, 0.24895018339157104, 0.16413573920726776, 0.07756347209215164, -0.01318359375, -0.0999755859375, -0.18764647841453552, -0.2649902403354645, -0.3232177793979645, -0.371337890625, -0.39287108182907104, -0.36430662870407104, -0.31047362089157104, -0.23576658964157104, -0.15732420980930328, -0.06767577677965164, 0.02197265625, 0.11865234375, 0.20302733778953552, 0.27180173993110657, 0.34321287274360657, 0.3744140565395355, 0.3955078125, 0.36188963055610657, 0.3087158203125, 0.23884277045726776, 0.16457518935203552, 0.07756347209215164, -0.008129882626235485, -0.09294433146715164, -0.1790771484375, -0.2581787109375, -0.3150878846645355, -0.35969236493110657, -0.37067869305610657, -0.34892576932907104, -0.2931152284145355, -0.22829589247703552, -0.15095214545726776, -0.06437987834215164, 0.02592773362994194, 0.10700683295726776, 0.19687499105930328, 0.263671875, 0.3287109434604645, 0.36320799589157104, 0.3770507574081421, 0.3504638671875, 0.30036619305610657, 0.22763670980930328, 0.15534667670726776, 0.07646483927965164, -0.0076904296875, -0.094482421875, -0.173583984375, -0.24367675185203552, -0.30058592557907104, -0.34650877118110657, -0.3535400331020355, -0.32958984375, -0.283447265625, -0.2208251953125, -0.1373291015625, -0.0604248046875, 0.01999511756002903, 0.1087646484375, 0.1834716796875, 0.24345701932907104, 0.30498045682907104, 0.33552244305610657, 0.34013670682907104, 0.3251953125, 0.27421873807907104, 0.21269530057907104, 0.14238281548023224, 0.06789550930261612, -0.01669921912252903, -0.08920898288488388, -0.16215820610523224, -0.22609862685203552, -0.27641600370407104, -0.31684568524360657, -0.32673338055610657, -0.29948729276657104, -0.2493896484375, -0.1922607421875, -0.12480468302965164, -0.04987792670726776, 0.02065429650247097, 0.098876953125, 0.16567382216453552, 0.23334960639476776, 0.2781738340854645, 0.29838865995407104, 0.30695798993110657, 0.2801513671875, 0.25004881620407104, 0.19599609076976776, 0.12590332329273224, 0.05229492112994194, -0.012304686941206455, -0.08151855319738388, -0.15139159560203552, -0.20588378608226776, -0.2427978515625, -0.2801513671875, -0.2843261659145355, -0.26433104276657104, -0.22126464545726776, -0.16940917074680328, -0.11337890475988388, -0.04328612983226776, 0.02592773362994194, 0.08876952528953552, 0.14501953125, 0.19687499105930328, 0.23774413764476776, 0.2579589784145355, 0.2612548768520355, 0.24543456733226776, 0.20808105170726776, 0.16655273735523224, 0.10546875, 0.04921874776482582, -0.011425781063735485, -0.06789550930261612, -0.13161620497703552, -0.16896972060203552, -0.20939940214157104, -0.226318359375, -0.23378905653953552, -0.2186279296875, -0.18764647841453552, -0.13776855170726776, -0.09250488132238388, -0.03471679612994194, 0.02043456956744194, 0.07646483927965164, 0.12172850966453552, 0.16457518935203552, 0.18764647841453552, 0.21071776747703552, 0.20895995199680328, 0.19357909262180328, 0.17226561903953552, 0.1318359375, 0.08481445163488388, 0.03537597507238388, -0.01406249962747097, -0.05976562201976776, -0.10195311903953552, -0.138427734375, -0.16391600668430328, -0.18193358182907104, -0.18281249701976776, -0.17204588651657104, -0.13996581733226776, -0.10832519084215164, -0.06635741889476776, -0.02197265625, 0.01516113243997097, 0.06086425483226776, 0.09492187201976776, 0.12678222358226776, 0.14633788168430328, 0.15139159560203552, 0.15095214545726776, 0.14348144829273224, 0.12612304091453552, 0.09711913764476776, 0.0604248046875, 0.02263183519244194, -0.006591796875, -0.04262695088982582, -0.07229004055261612, -0.08964843302965164, -0.11293944716453552, -0.12326660007238388, -0.11118163913488388, -0.10393065959215164, -0.08964843302965164, -0.06635741889476776, -0.04086913913488388, -0.01801757700741291, 0.0076904296875, 0.03449707105755806, 0.05888671800494194, 0.0780029296875, 0.08261718600988388, 0.08986815810203552, 0.09250488132238388, 0.07712402194738388, 0.06437987834215164, 0.05075683444738388, 0.03471679612994194, 0.0120849609375, -0.0041748047806322575, -0.0263671875, -0.03471679612994194, -0.04196777194738388, -0.05317382514476776, -0.05075683444738388, -0.05251464620232582, -0.04482421651482582, -0.0362548828125, -0.03142089769244194, -0.01318359375, 0.0008789062267169356, 0.0028564452659338713, 0.00966796837747097, 0.0230712890625, 0.01889648474752903, 0.02504882775247097, 0.0230712890625, 0.02570800669491291, 0.01669921912252903, 0.009448242373764515, 0.00637206993997097, 0.006591796875, 0.0013183592818677425, 0.0068115233443677425, 0.0032958984375, -0.0008789062267169356, 0.00637206993997097, 0.0041748047806322575, -0.0010986328125, -0.0008789062267169356, 0.00527343712747097, 0.0010986328125, 0.0054931640625, 0.0002197265566792339, -0.0006591796409338713, 0.0046142577193677425, 0.0041748047806322575, -0.0008789062267169356, -0.0010986328125, 0.0035156249068677425, -0.0006591796409338713, -0.003076171735301614, -0.005053710658103228, -0.0006591796409338713, 0.00439453125, -0.003735351376235485, 0.0002197265566792339, 0.0017578124534338713, 0.005053710658103228, -0.0004394531133584678, 0.0006591796409338713, 0.0024169920943677425, 0.006152343470603228, 0.0006591796409338713, -0.0008789062267169356, 0.004833984188735485, 0.0028564452659338713, 0.004833984188735485, -0.001977538922801614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.002197265625, -0.001538085867650807, 0.006152343470603228, 0.0004394531133584678, 0.0004394531133584678, 0.0054931640625, 0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, 0.008129882626235485, 0.0013183592818677425, 0.001977538922801614, -0.0004394531133584678, 0.0035156249068677425, 0.002197265625, 0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0002197265566792339, 0.0004394531133584678, 0.00439453125, 0.0006591796409338713, 0.006152343470603228, 0.0010986328125, -0.0028564452659338713, 0.008349609561264515, 0.0046142577193677425, -0.0013183592818677425, 0.003955077845603228, 0.002197265625, -0.0017578124534338713, 0.0013183592818677425, 0.0024169920943677425, -0.0006591796409338713, 0.0, 0.001977538922801614, 0.0054931640625, 0.005053710658103228, -0.0024169920943677425, 0.001538085867650807, 0.001538085867650807, -0.0004394531133584678, 0.001538085867650807, 0.0002197265566792339, -0.0024169920943677425, 0.005053710658103228, 0.00439453125, -0.001977538922801614, -0.007910155691206455, -0.0142822265625, -0.010327148251235485, -0.015600585378706455, -0.0164794921875, -0.010327148251235485, -0.0032958984375, 0.004833984188735485, 0.01494140550494194, 0.02263183519244194, 0.03229980543255806, 0.04086913913488388, 0.04855956882238388, 0.04877929389476776, 0.05361327901482582, 0.04526367038488388, 0.04262695088982582, 0.03471679612994194, 0.010327148251235485, 0.0013183592818677425, -0.02482910081744194, -0.03933105245232582, -0.059326171875, -0.07207030802965164, -0.08525390177965164, -0.08195800334215164, -0.07976073771715164, -0.0736083984375, -0.05778808519244194, -0.03691406175494194, -0.01582031138241291, 0.010986328125, 0.03999023512005806, 0.06679687649011612, 0.09140624850988388, 0.11228027194738388, 0.11865234375, 0.12985838949680328, 0.1241455078125, 0.10920409858226776, 0.08657225966453552, 0.06394042819738388, 0.03054199181497097, -0.0068115233443677425, -0.0494384765625, -0.07448730617761612, -0.11030273139476776, -0.13579101860523224, -0.15424804389476776, -0.15798339247703552, -0.1505126953125, -0.13007812201976776, -0.10085448622703552, -0.06679687649011612, -0.03076171875, 0.015380859375, 0.063720703125, 0.10722655802965164, 0.13930663466453552, 0.16633300483226776, 0.1856689453125, 0.1966552734375, 0.1812744140625, 0.15974120795726776, 0.12502440810203552, 0.08635253459215164, 0.04350585862994194, -0.014501952566206455, -0.05976562201976776, -0.11799316108226776, -0.15292967855930328, -0.1900634765625, -0.21621093153953552, -0.22609862685203552, -0.20698241889476776, -0.17841796576976776, -0.14458008110523224, -0.09184569865465164, -0.03493652120232582, 0.014721679501235485, 0.07734374701976776, 0.13425292074680328, 0.18435057997703552, 0.22368162870407104, 0.24587401747703552, 0.25334471464157104, 0.24565428495407104, 0.20961913466453552, 0.16940917074680328, 0.11469726264476776, 0.0538330078125, -0.01164550706744194, -0.0802001953125, -0.13798828423023224, -0.19291990995407104, -0.24367675185203552, -0.26982420682907104, -0.27839353680610657, -0.263671875, -0.22697752714157104, -0.17402343451976776, -0.11337890475988388, -0.04877929389476776, 0.02021484263241291, 0.094482421875, 0.15886230766773224, 0.21291503310203552, 0.2645507752895355, 0.2931152284145355, 0.30607908964157104, 0.29619139432907104, 0.25664061307907104, 0.19973143935203552, 0.13271483778953552, 0.06416015326976776, -0.0120849609375, -0.08767089247703552, -0.16303710639476776, -0.22873534262180328, -0.2715820372104645, -0.31640625, -0.33024901151657104, -0.30498045682907104, -0.263671875, -0.204345703125, -0.14018554985523224, -0.05427245795726776, 0.01911620981991291, 0.10634765028953552, 0.18413084745407104, 0.24367675185203552, 0.2997070252895355, 0.34343260526657104, 0.35002440214157104, 0.33134764432907104, 0.28059080243110657, 0.22324217855930328, 0.14963378012180328, 0.07009277492761612, -0.007250976283103228, -0.0933837890625, -0.17160643637180328, -0.24104003608226776, -0.3012451231479645, -0.3506835699081421, -0.36079099774360657, -0.34321287274360657, -0.2933349609375, -0.23225097358226776, -0.15007324516773224, -0.0736083984375, 0.02482910081744194, 0.10458984225988388, 0.18962401151657104, 0.27290037274360657, 0.3320068418979645, 0.3790283203125, 0.39155271649360657, 0.36650389432907104, 0.3073974549770355, 0.24565428495407104, 0.16896972060203552, 0.08503417670726776, -0.006152343470603228, -0.0966796875, -0.17753905057907104, -0.2583984434604645, -0.3309082090854645, -0.369140625, -0.3856201171875, -0.3704589605331421, -0.3188232481479645, -0.24367675185203552, -0.160400390625, -0.06833495944738388, 0.02021484263241291, 0.11909179389476776, 0.19929198920726776, 0.28125, 0.3524414002895355, 0.4001220464706421, 0.4155029058456421, 0.388916015625, 0.3385986089706421, 0.2572998106479645, 0.17644041776657104, 0.08701171725988388, -0.005932617001235485, -0.10283202677965164, -0.18918456137180328, -0.2744384706020355, -0.3438720703125, -0.393310546875, -0.41044920682907104, -0.3902343511581421, -0.33112791180610657, -0.2594970762729645, -0.16501463949680328, -0.072509765625, 0.02482910081744194, 0.11799316108226776, 0.21511229872703552, 0.298828125, 0.3711181581020355, 0.4172607362270355, 0.43901365995407104, 0.4089111089706421, 0.3407958745956421, 0.2671875059604645, 0.18852537870407104, 0.090087890625, -0.00527343712747097, -0.09931640326976776, -0.19973143935203552, -0.27861326932907104, -0.35969236493110657, -0.41022947430610657, -0.4341796636581421, -0.40715330839157104, -0.3407958745956421, -0.2605957090854645, -0.16874998807907104, -0.07514648139476776, 0.02658691257238388, 0.11843261122703552, 0.22346191108226776, 0.29816892743110657, 0.37946775555610657, 0.42451170086860657, 0.44428709149360657, 0.4095703065395355, 0.3504638671875, 0.27685546875, 0.18588866293430328, 0.09074706584215164, -0.010327148251235485, -0.10349120944738388, -0.20083007216453552, -0.2909179627895355, -0.35859373211860657, -0.41748046875, -0.4396728277206421, -0.4067138433456421, -0.3502441346645355, -0.2645507752895355, -0.17622070014476776, -0.07866210490465164, 0.02548827975988388, 0.12260741740465164, 0.21665038168430328, 0.30476072430610657, 0.3779296875, 0.4275878667831421, 0.44340819120407104, 0.4128662049770355, 0.3557372987270355, 0.28059080243110657, 0.18742674589157104, 0.09140624850988388, -0.009008788503706455, -0.1043701171875, -0.20632323622703552, -0.2843261659145355, -0.35859373211860657, -0.410888671875, -0.42626953125, -0.4018798768520355, -0.34892576932907104, -0.26630857586860657, -0.17424315214157104, -0.07602538913488388, 0.02153320237994194, 0.11865234375, 0.21467284858226776, 0.29838865995407104, 0.3711181581020355, 0.4207763671875, 0.4381347596645355, 0.40385740995407104, 0.3429931402206421, 0.26872557401657104, 0.18193358182907104, 0.09316405653953552, -0.012524413876235485, -0.10700683295726776, -0.19841307401657104, -0.2748779356479645, -0.35419920086860657, -0.3996826112270355, -0.42451170086860657, -0.3957275152206421, -0.33662107586860657, -0.24916991591453552, -0.16984862089157104, -0.07207030802965164, 0.028564453125, 0.12370605021715164, 0.21401366591453552, 0.28937986493110657, 0.36408689618110657, 0.4040771424770355, 0.4139648377895355, 0.3812255859375, 0.3350830078125, 0.2537841796875, 0.17182616889476776, 0.081298828125, -0.01406249962747097, -0.09975585341453552, -0.19489745795726776, -0.2700439393520355, -0.3320068418979645, -0.388916015625, -0.4034179449081421, -0.37749022245407104, -0.3095947206020355, -0.24104003608226776, -0.16018065810203552, -0.06328124552965164, 0.02285156212747097, 0.11733397841453552, 0.20236815512180328, 0.279052734375, 0.3394775390625, 0.37617185711860657, 0.3854003846645355, 0.3612304627895355, 0.30322265625, 0.24082030355930328, 0.1614990234375, 0.07558593899011612, -0.013403319753706455, -0.09536132216453552, -0.18391112983226776, -0.25224608182907104, -0.3117919862270355, -0.35881346464157104, -0.36474609375, -0.33464354276657104, -0.2889404296875, -0.221923828125, -0.14655761420726776, -0.06130370870232582, 0.02395019493997097, 0.10700683295726776, 0.19072264432907104, 0.2627929747104645, 0.3131103515625, 0.344970703125, 0.3451904058456421, 0.32475584745407104, 0.2779541015625, 0.2109375, 0.13864745199680328, 0.06328124552965164, -0.01889648474752903, -0.09074706584215164, -0.16281737387180328, -0.23225097358226776, -0.28388670086860657, -0.31464841961860657, -0.3153076171875, -0.29267576336860657, -0.25334471464157104, -0.18764647841453552, -0.12041015177965164, -0.05361327901482582, 0.01999511756002903, 0.09602050483226776, 0.1702880859375, 0.22499999403953552, 0.2713623046875, 0.2898193299770355, 0.2957519590854645, 0.2781738340854645, 0.23115234076976776, 0.18830566108226776, 0.11711425334215164, 0.05339355394244194, -0.01823730394244194, -0.07998047024011612, -0.140625, -0.19072264432907104, -0.23488768935203552, -0.2562011778354645, -0.2689453065395355, -0.24213866889476776, -0.21071776747703552, -0.15512694418430328, -0.09733886271715164, -0.03691406175494194, 0.02153320237994194, 0.087890625, 0.13666991889476776, 0.18984374403953552, 0.21730956435203552, 0.23774413764476776, 0.23422850668430328, 0.22148436307907104, 0.1944580078125, 0.15117187798023224, 0.10173339396715164, 0.03669433668255806, -0.00966796837747097, -0.06459961086511612, -0.11865234375, -0.1571044921875, -0.1834716796875, -0.20654296875, -0.19841307401657104, -0.18984374403953552, -0.164794921875, -0.11909179389476776, -0.07734374701976776, -0.02548827975988388, 0.02219238132238388, 0.0615234375, 0.10107421875, 0.13469238579273224, 0.15996094048023224, 0.17534178495407104, 0.16962890326976776, 0.16215820610523224, 0.13710936903953552, 0.10964354872703552, 0.06525878608226776, 0.03449707105755806, -0.0087890625, -0.041748046875, -0.08305663615465164, -0.10261230170726776, -0.12392577528953552, -0.13139648735523224, -0.13447265326976776, -0.12150878459215164, -0.1043701171875, -0.07602538913488388, -0.04987792670726776, -0.02351074106991291, 0.01604003831744194, 0.03889160230755806, 0.06613769382238388, 0.087890625, 0.09909667819738388, 0.10085448622703552, 0.10195311903953552, 0.09250488132238388, 0.081298828125, 0.05866698920726776, 0.0406494140625, 0.01911620981991291, -0.0054931640625, -0.02219238132238388, -0.03823241963982582, -0.04658202826976776, -0.059326171875, -0.05734863132238388, -0.05515136569738388, -0.05207519233226776, -0.04372558370232582, -0.02988281100988388, -0.01999511756002903, -0.001538085867650807, 0.0024169920943677425, 0.01318359375, 0.02504882775247097, 0.0263671875, 0.02614746056497097, 0.03076171875, 0.0274658203125, 0.01604003831744194, 0.01164550706744194, 0.0142822265625, 0.01164550706744194, 0.0068115233443677425, -0.0006591796409338713, -0.0017578124534338713, 0.0, 0.00637206993997097, 0.003955077845603228, 0.00747070275247097, 0.006152343470603228, 0.0028564452659338713, 0.003735351376235485, 0.0035156249068677425, 0.0028564452659338713, 0.004833984188735485, 0.005053710658103228, -0.001538085867650807, 0.003955077845603228, 0.0046142577193677425, 0.001977538922801614, -0.0041748047806322575, -0.003076171735301614, 0.0028564452659338713, 0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, 0.0004394531133584678, 0.0024169920943677425, 0.0013183592818677425, 0.0041748047806322575, 0.0010986328125, 0.009008788503706455, -0.0002197265566792339, 0.0041748047806322575, 0.0004394531133584678, 0.0057128905318677425, -0.0004394531133584678, 0.0008789062267169356, -0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.2 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0035156249068677425, -0.0017578124534338713, 0.001977538922801614, 0.0, -0.0010986328125, 0.0002197265566792339, 0.0024169920943677425, 0.0032958984375, 0.003076171735301614, -0.0013183592818677425, 0.0, -0.0004394531133584678, 0.0010986328125, 0.003076171735301614, -0.0004394531133584678, 0.0002197265566792339, -0.002636718563735485, -0.0004394531133584678, 0.0046142577193677425, 0.00747070275247097, -0.0028564452659338713, -0.0017578124534338713, 0.00439453125, 0.0017578124534338713, -0.0035156249068677425, 0.0017578124534338713, 0.0008789062267169356, -0.0008789062267169356, 0.0010986328125, -0.0002197265566792339, -0.001977538922801614, 0.001977538922801614, -0.00439453125, 0.0, -0.0024169920943677425, -0.0002197265566792339, 0.00637206993997097, 0.0008789062267169356, -0.0002197265566792339, 0.007031249813735485, 0.0013183592818677425, 0.001977538922801614, -0.003076171735301614, 0.0013183592818677425, -0.0035156249068677425, 0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0068115233443677425, -0.006591796875, -0.0076904296875, -0.01625976525247097, -0.014501952566206455, -0.017578125, -0.008129882626235485, -0.001538085867650807, 0.001538085867650807, 0.017578125, 0.02922363206744194, 0.03999023512005806, 0.04680175706744194, 0.05581054463982582, 0.054931640625, 0.05471191182732582, 0.04746093600988388, 0.04526367038488388, 0.02570800669491291, 0.01779785193502903, -0.00527343712747097, -0.02812499925494194, -0.04196777194738388, -0.06394042819738388, -0.07514648139476776, -0.08481445163488388, -0.09162597358226776, -0.09382323920726776, -0.08635253459215164, -0.06613769382238388, -0.04658202826976776, -0.01779785193502903, 0.007031249813735485, 0.04372558370232582, 0.06855468451976776, 0.09953612834215164, 0.12238769233226776, 0.13271483778953552, 0.140625, 0.13447265326976776, 0.12128905951976776, 0.09250488132238388, 0.0626220703125, 0.03076171875, -0.009448242373764515, -0.054931640625, -0.08591308444738388, -0.120849609375, -0.14765624701976776, -0.16501463949680328, -0.1680908203125, -0.16874998807907104, -0.14809569716453552, -0.11667480319738388, -0.07316894084215164, -0.03142089769244194, 0.01494140550494194, 0.06569824367761612, 0.1153564453125, 0.15622557699680328, 0.18479003012180328, 0.21115721762180328, 0.21555174887180328, 0.2010498046875, 0.17951659858226776, 0.14106445014476776, 0.09799804538488388, 0.04350585862994194, -0.01054687425494194, -0.07185058295726776, -0.12678222358226776, -0.16853027045726776, -0.21621093153953552, -0.24125975370407104, -0.2406005859375, -0.2362060546875, -0.20676268637180328, -0.15622557699680328, -0.10085448622703552, -0.04790038987994194, 0.02548827975988388, 0.08964843302965164, 0.14348144829273224, 0.20039062201976776, 0.24191893637180328, 0.2691650390625, 0.28520506620407104, 0.26213377714157104, 0.23137205839157104, 0.18215331435203552, 0.11909179389476776, 0.05405273288488388, -0.015600585378706455, -0.08327636867761612, -0.15227051079273224, -0.21467284858226776, -0.26411131024360657, -0.2876220643520355, -0.30036619305610657, -0.287841796875, -0.2546630799770355, -0.19489745795726776, -0.12612304091453552, -0.05756835639476776, 0.01582031138241291, 0.09602050483226776, 0.17380370199680328, 0.24367675185203552, 0.2955322265625, 0.33024901151657104, 0.3315673768520355, 0.32036131620407104, 0.2733398377895355, 0.21401366591453552, 0.14545898139476776, 0.07053222507238388, -0.01582031138241291, -0.0889892578125, -0.16984862089157104, -0.2406005859375, -0.2968505918979645, -0.3394775390625, -0.35969236493110657, -0.33662107586860657, -0.2924560606479645, -0.22170409560203552, -0.14545898139476776, -0.06196288764476776, 0.01691894419491291, 0.11293944716453552, 0.191162109375, 0.2667480409145355, 0.3240966796875, 0.3779296875, 0.3792480230331421, 0.3603515625, 0.30937498807907104, 0.24477538466453552, 0.1658935546875, 0.08349609375, -0.01186523400247097, -0.10019531100988388, -0.18391112983226776, -0.265869140625, -0.3350830078125, -0.3790283203125, -0.4001220464706421, -0.3770507574081421, -0.31596678495407104, -0.25444334745407104, -0.16721190512180328, -0.07185058295726776, 0.0142822265625, 0.12041015177965164, 0.20742186903953552, 0.29267576336860657, 0.36474609375, 0.4089111089706421, 0.42670896649360657, 0.39616698026657104, 0.3407958745956421, 0.270263671875, 0.17556151747703552, 0.08876952528953552, -0.003735351376235485, -0.10305175185203552, -0.19357909262180328, -0.2801513671875, -0.3502441346645355, -0.4029785096645355, -0.43505859375, -0.41242673993110657, -0.34123533964157104, -0.2726806700229645, -0.17644041776657104, -0.07844237983226776, 0.02197265625, 0.11953124403953552, 0.21555174887180328, 0.31135252118110657, 0.3803466558456421, 0.4348388612270355, 0.44868162274360657, 0.42253416776657104, 0.36474609375, 0.2779541015625, 0.18874511122703552, 0.09711913764476776, -0.002636718563735485, -0.10612792521715164, -0.20061033964157104, -0.29619139432907104, -0.37639158964157104, -0.4304443299770355, -0.44999998807907104, -0.4275878667831421, -0.35881346464157104, -0.28081053495407104, -0.18720702826976776, -0.08305663615465164, 0.0263671875, 0.12436523288488388, 0.22104491293430328, 0.31047362089157104, 0.402099609375, 0.4495605230331421, 0.44978025555610657, 0.4374755620956421, 0.36979979276657104, 0.29597166180610657, 0.20061033964157104, 0.09360351413488388, -0.0002197265566792339, -0.10986328125, -0.20588378608226776, -0.2955322265625, -0.3843017518520355, -0.44121092557907104, -0.44999998807907104, -0.44670408964157104, -0.37353515625, -0.2913574278354645, -0.18808592855930328, -0.08217773586511612, 0.01801757700741291, 0.13315428793430328, 0.22873534262180328, 0.3172851502895355, 0.4031982421875, 0.44978025555610657, 0.44978025555610657, 0.4491210877895355, 0.3834228515625, 0.2986083924770355, 0.20061033964157104, 0.10415038466453552, -0.009008788503706455, -0.10502929240465164, -0.21071776747703552, -0.30168455839157104, -0.3825439214706421, -0.4429687261581421, -0.44999998807907104, -0.4436279237270355, -0.3733154237270355, -0.29157713055610657, -0.19028319418430328, -0.0845947265625, 0.01669921912252903, 0.12436523288488388, 0.23247069120407104, 0.3251953125, 0.41132810711860657, 0.44978025555610657, 0.44978025555610657, 0.44890135526657104, 0.38825681805610657, 0.30036619305610657, 0.20522460341453552, 0.1043701171875, -0.007031249813735485, -0.1142578125, -0.21335448324680328, -0.29816892743110657, -0.39265134930610657, -0.44230955839157104, -0.44999998807907104, -0.44340819120407104, -0.380126953125, -0.2821289002895355, -0.191162109375, -0.0867919921875, 0.024169921875, 0.13205565512180328, 0.22983397543430328, 0.3276123106479645, 0.4007812440395355, 0.4493408203125, 0.44978025555610657, 0.4374755620956421, 0.3810058534145355, 0.2933349609375, 0.20039062201976776, 0.09206542372703552, -0.01164550706744194, -0.10920409858226776, -0.20917968451976776, -0.2957519590854645, -0.37836912274360657, -0.43571776151657104, -0.44999998807907104, -0.43110349774360657, -0.36474609375, -0.2733398377895355, -0.18852537870407104, -0.07514648139476776, 0.02131347544491291, 0.12590332329273224, 0.22499999403953552, 0.3199218809604645, 0.39265134930610657, 0.43791502714157104, 0.44978025555610657, 0.4216552674770355, 0.36320799589157104, 0.27312010526657104, 0.1900634765625, 0.08723144233226776, -0.0057128905318677425, -0.10568847507238388, -0.20852050185203552, -0.2865234315395355, -0.3667236268520355, -0.41748046875, -0.437255859375, -0.4141845703125, -0.35112303495407104, -0.2627929747104645, -0.17446288466453552, -0.07119140774011612, 0.03076171875, 0.12985838949680328, 0.21599119901657104, 0.3021240234375, 0.37199705839157104, 0.415283203125, 0.42626953125, 0.4010009765625, 0.33442381024360657, 0.25664061307907104, 0.17731933295726776, 0.087890625, -0.01735839806497097, -0.1109619140625, -0.19094237685203552, -0.2759765684604645, -0.3438720703125, -0.39484861493110657, -0.40803220868110657, -0.3759521245956421, -0.3199218809604645, -0.24125975370407104, -0.15512694418430328, -0.06306152045726776, 0.02482910081744194, 0.11403807997703552, 0.20456542074680328, 0.2814697325229645, 0.34672850370407104, 0.38276365399360657, 0.39396971464157104, 0.3568359315395355, 0.30058592557907104, 0.23906248807907104, 0.156005859375, 0.07272949069738388, -0.015600585378706455, -0.09931640326976776, -0.18500976264476776, -0.24895018339157104, -0.30915525555610657, -0.34782713651657104, -0.3548583984375, -0.3331054747104645, -0.2845458984375, -0.21269530057907104, -0.140625, -0.05251464620232582, 0.02351074106991291, 0.10634765028953552, 0.18039549887180328, 0.2515869140625, 0.3008056581020355, 0.3320068418979645, 0.3353027403354645, 0.30827635526657104, 0.2601562440395355, 0.20258788764476776, 0.13864745199680328, 0.06306152045726776, -0.015600585378706455, -0.08635253459215164, -0.15864257514476776, -0.22126464545726776, -0.2669677734375, -0.2977294921875, -0.2964111268520355, -0.274658203125, -0.23708495497703552, -0.18391112983226776, -0.12062987685203552, -0.04108886793255806, 0.02900390513241291, 0.09470214694738388, 0.16105957329273224, 0.20742186903953552, 0.25202634930610657, 0.265869140625, 0.27092283964157104, 0.2471923828125, 0.21687011420726776, 0.1658935546875, 0.10415038466453552, 0.04350585862994194, -0.012524413876235485, -0.07712402194738388, -0.12458495795726776, -0.17380370199680328, -0.21115721762180328, -0.23159179091453552, -0.22785644233226776, -0.21599119901657104, -0.17336425185203552, -0.13754881918430328, -0.08261718600988388, -0.03054199181497097, 0.02285156212747097, 0.0780029296875, 0.11931151896715164, 0.151611328125, 0.18500976264476776, 0.19907225668430328, 0.193359375, 0.17863768339157104, 0.1483154296875, 0.1142578125, 0.07229004055261612, 0.02900390513241291, -0.012304686941206455, -0.0538330078125, -0.08833007514476776, -0.12128905951976776, -0.1439208984375, -0.14897461235523224, -0.14809569716453552, -0.13601073622703552, -0.11118163913488388, -0.08371581882238388, -0.05185546725988388, -0.02109374850988388, 0.019775390625, 0.04768066108226776, 0.07756347209215164, 0.09360351413488388, 0.11381835490465164, 0.11953124403953552, 0.11931151896715164, 0.10415038466453552, 0.08964843302965164, 0.063720703125, 0.04658202826976776, 0.0142822265625, -0.003076171735301614, -0.02900390513241291, -0.03999023512005806, -0.06108398362994194, -0.0626220703125, -0.07163085788488388, -0.06525878608226776, -0.06174316257238388, -0.04790038987994194, -0.03559570387005806, -0.01823730394244194, -0.002636718563735485, 0.0041748047806322575, 0.01494140550494194, 0.02219238132238388, 0.03471679612994194, 0.03383788838982582, 0.03229980543255806, 0.02351074106991291, 0.02790527231991291, 0.013403319753706455, 0.009448242373764515, 0.003955077845603228, 0.0002197265566792339, -0.0010986328125, 0.005053710658103228, 0.00637206993997097, 0.003735351376235485, 0.007250976283103228, 0.0028564452659338713, 0.003955077845603228, 0.003735351376235485, 0.0004394531133584678, -0.0010986328125, 0.0032958984375, 0.0008789062267169356, 0.00747070275247097, 0.0028564452659338713, 0.0006591796409338713, 0.0017578124534338713, 0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, 0.0032958984375, -0.001538085867650807, 0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, 0.0054931640625, 0.0010986328125, 0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, 0.005932617001235485, 0.001538085867650807, 0.002636718563735485, 0.001977538922801614, 0.003076171735301614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.0032958984375, 0.0, 0.0013183592818677425, 0.002636718563735485, 0.003735351376235485, 0.003735351376235485, 0.00637206993997097, -0.0008789062267169356, -0.0028564452659338713, 0.003735351376235485, -0.0035156249068677425, -0.0024169920943677425, 0.0024169920943677425, 0.0024169920943677425, 0.0008789062267169356, 0.0057128905318677425, 0.003076171735301614, 0.00637206993997097, 0.0032958984375, 0.004833984188735485, 0.00439453125, 0.0041748047806322575, -0.0006591796409338713, 0.0054931640625, 0.00439453125, 0.0046142577193677425, -0.003735351376235485, 0.001538085867650807, 0.005932617001235485, 0.0035156249068677425, 0.00527343712747097, -0.0004394531133584678, -0.001977538922801614, 0.005932617001235485, -0.0032958984375, 0.0028564452659338713, 0.003076171735301614, 0.0024169920943677425, 0.0004394531133584678, -0.001538085867650807, 0.00439453125, 0.0010986328125, 0.0013183592818677425, 0.0024169920943677425, 0.0046142577193677425, -0.0010986328125, -0.0010986328125, -0.00527343712747097, -0.0010986328125, -0.0010986328125, 0.0046142577193677425, 0.0035156249068677425, 0.0, 0.005932617001235485, 0.0035156249068677425, 0.0024169920943677425, 0.00439453125, 0.010327148251235485, 0.0032958984375, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0032958984375, -0.0087890625, -0.0087890625, -0.0076904296875, -0.009448242373764515, -0.0054931640625, -0.0004394531133584678, 0.0017578124534338713, 0.008349609561264515, 0.012304686941206455, 0.01076660118997097, 0.007250976283103228, 0.012304686941206455, 0.011206054128706455, 0.014721679501235485, 0.011206054128706455, 0.001538085867650807, -0.00439453125, -0.0098876953125, -0.006591796875, -0.00856933556497097, -0.011206054128706455, -0.01164550706744194, -0.01296386681497097, -0.0041748047806322575, 0.0017578124534338713, -0.0008789062267169356, 0.00527343712747097, 0.010107421316206455, 0.014721679501235485, 0.02351074106991291, 0.0164794921875, 0.01911620981991291, 0.01823730394244194, 0.009228515438735485, 0.00527343712747097, -0.002636718563735485, -0.003735351376235485, -0.008349609561264515, -0.015380859375, -0.01296386681497097, -0.01713867112994194, -0.017578125, -0.015380859375, -0.0098876953125, -0.0032958984375, 0.0057128905318677425, 0.01911620981991291, 0.01735839806497097, 0.02351074106991291, 0.02109374850988388, 0.02878417819738388, 0.02395019493997097, 0.01779785193502903, 0.012304686941206455, -0.001538085867650807, -0.0028564452659338713, -0.0120849609375, -0.02285156212747097, -0.0208740234375, -0.02241210825741291, -0.02680663950741291, -0.01779785193502903, -0.01164550706744194, -0.001538085867650807, 0.007031249813735485, 0.01186523400247097, 0.02109374850988388, 0.0296630859375, 0.02702636644244194, 0.02790527231991291, 0.02900390513241291, 0.02460937388241291, 0.01296386681497097, 0.005932617001235485, -0.007031249813735485, -0.012524413876235485, -0.02373046800494194, -0.02834472618997097, -0.03142089769244194, -0.02922363206744194, -0.02548827975988388, -0.01779785193502903, -0.00747070275247097, 0.0035156249068677425, 0.0186767578125, 0.02504882775247097, 0.032958984375, 0.03955078125, 0.03713378682732582, 0.02922363206744194, 0.02592773362994194, 0.01516113243997097, 0.007031249813735485, -0.0057128905318677425, -0.0164794921875, -0.02724609337747097, -0.03559570387005806, -0.03669433668255806, -0.03208007663488388, -0.02592773362994194, -0.02351074106991291, -0.009008788503706455, 0.0008789062267169356, 0.01186523400247097, 0.0274658203125, 0.03142089769244194, 0.03603515401482582, 0.046142578125, 0.04328612983226776, 0.032958984375, 0.02021484263241291, 0.00966796837747097, -0.009448242373764515, -0.01691894419491291, -0.02922363206744194, -0.0318603515625, -0.0406494140625, -0.041748046875, -0.03208007663488388, -0.02548827975988388, -0.01274413987994194, 0.0028564452659338713, 0.014501952566206455, 0.02153320237994194, 0.0340576171875, 0.04746093600988388, 0.05075683444738388, 0.04306640475988388, 0.03120117075741291, 0.02241210825741291, 0.0164794921875, -0.0024169920943677425, -0.01845703087747097, -0.03251953050494194, -0.04218749701976776, -0.0450439453125, -0.0472412109375, -0.04482421651482582, -0.02548827975988388, -0.02153320237994194, 0.0008789062267169356, 0.011206054128706455, 0.03120117075741291, 0.03867187350988388, 0.04482421651482582, 0.05405273288488388, 0.05207519233226776, 0.03559570387005806, 0.03669433668255806, 0.0186767578125, 0.0041748047806322575, -0.011425781063735485, -0.02504882775247097, -0.04240722581744194, -0.04240722581744194, -0.04482421651482582, -0.04240722581744194, -0.03427734225988388, -0.02504882775247097, -0.008129882626235485, 0.010107421316206455, 0.01911620981991291, 0.03581542894244194, 0.0428466796875, 0.05734863132238388, 0.05207519233226776, 0.046142578125, 0.0384521484375, 0.02263183519244194, 0.007910155691206455, -0.01625976525247097, -0.02790527231991291, -0.04218749701976776, -0.04526367038488388, -0.05229492112994194, -0.05031738057732582, -0.03911132737994194, -0.03098144382238388, -0.010107421316206455, 0.0054931640625, 0.02680663950741291, 0.03713378682732582, 0.04768066108226776, 0.0538330078125, 0.05515136569738388, 0.04965820163488388, 0.0384521484375, 0.02834472618997097, 0.009228515438735485, -0.010986328125, -0.02504882775247097, -0.03449707105755806, -0.04812011495232582, -0.05229492112994194, -0.0494384765625, -0.03977050632238388, -0.03098144382238388, -0.01582031138241291, 0.0041748047806322575, 0.02109374850988388, 0.032958984375, 0.04372558370232582, 0.05295410007238388, 0.05668945237994194, 0.04658202826976776, 0.04262695088982582, 0.02768554538488388, 0.0120849609375, -0.006591796875, -0.0252685546875, -0.0362548828125, -0.05141601338982582, -0.05317382514476776, -0.05559081956744194, -0.0472412109375, -0.03251953050494194, -0.01999511756002903, 0.0035156249068677425, 0.02131347544491291, 0.03757324069738388, 0.03999023512005806, 0.05471191182732582, 0.05690917745232582, 0.05537109076976776, 0.04746093600988388, 0.03581542894244194, 0.012524413876235485, -0.001538085867650807, -0.01494140550494194, -0.0340576171875, -0.0428466796875, -0.0472412109375, -0.05185546725988388, -0.04592284932732582, -0.03955078125, -0.02021484263241291, 0.0002197265566792339, 0.015380859375, 0.03010253794491291, 0.03999023512005806, 0.05427245795726776, 0.05515136569738388, 0.05097655951976776, 0.04438476264476776, 0.03076171875, 0.01691894419491291, 0.008129882626235485, -0.01845703087747097, -0.03098144382238388, -0.04306640475988388, -0.04702148213982582, -0.05471191182732582, -0.04548339545726776, -0.03537597507238388, -0.02790527231991291, -0.01164550706744194, 0.0041748047806322575, 0.028564453125, 0.04152831807732582, 0.04812011495232582, 0.05339355394244194, 0.04702148213982582, 0.05229492112994194, 0.03603515401482582, 0.02285156212747097, 0.008349609561264515, -0.01625976525247097, -0.02460937388241291, -0.03471679612994194, -0.04833984375, -0.04833984375, -0.05075683444738388, -0.03933105245232582, -0.02197265625, -0.01164550706744194, 0.003735351376235485, 0.02614746056497097, 0.03999023512005806, 0.04416503757238388, 0.05185546725988388, 0.04790038987994194, 0.04899902269244194, 0.03449707105755806, 0.01999511756002903, 0.010986328125, -0.0041748047806322575, -0.02724609337747097, -0.03911132737994194, -0.04262695088982582, -0.05141601338982582, -0.04196777194738388, -0.04020996019244194, -0.02790527231991291, -0.009008788503706455, 0.003076171735301614, 0.0186767578125, 0.0252685546875, 0.0406494140625, 0.050537109375, 0.04240722581744194, 0.04768066108226776, 0.03076171875, 0.02351074106991291, 0.007250976283103228, -0.0010986328125, -0.017578125, -0.03010253794491291, -0.03361816331744194, -0.04130859300494194, -0.04108886793255806, -0.03823241963982582, -0.02263183519244194, -0.01889648474752903, 0.004833984188735485, 0.011425781063735485, 0.02263183519244194, 0.03955078125, 0.04328612983226776, 0.03955078125, 0.04196777194738388, 0.03361816331744194, 0.02043456956744194, 0.01516113243997097, 0.0008789062267169356, -0.01604003831744194, -0.02878417819738388, -0.03493652120232582, -0.04372558370232582, -0.03713378682732582, -0.03449707105755806, -0.02351074106991291, -0.01735839806497097, -0.0004394531133584678, 0.0098876953125, 0.02482910081744194, 0.02658691257238388, 0.0439453125, 0.04086913913488388, 0.03977050632238388, 0.03669433668255806, 0.02548827975988388, 0.011206054128706455, 0.001538085867650807, -0.01516113243997097, -0.02241210825741291, -0.03098144382238388, -0.03559570387005806, -0.03164062276482582, -0.03076171875, -0.02197265625, -0.01582031138241291, -0.001977538922801614, 0.003076171735301614, 0.017578125, 0.02175292931497097, 0.03273925557732582, 0.03801269456744194, 0.0296630859375, 0.03032226487994194, 0.02219238132238388, 0.0164794921875, 0.002636718563735485, -0.0054931640625, -0.01823730394244194, -0.02329101413488388, -0.02922363206744194, -0.02812499925494194, -0.0296630859375, -0.02329101413488388, -0.014721679501235485, -0.00747070275247097, 0.0028564452659338713, 0.00966796837747097, 0.02197265625, 0.03142089769244194, 0.02460937388241291, 0.02724609337747097, 0.02614746056497097, 0.02065429650247097, 0.011425781063735485, 0.0010986328125, -0.002636718563735485, -0.011425781063735485, -0.014721679501235485, -0.01889648474752903, -0.02131347544491291, -0.024169921875, -0.0186767578125, -0.01186523400247097, -0.01054687425494194, 0.0041748047806322575, 0.007031249813735485, 0.0120849609375, 0.02153320237994194, 0.02395019493997097, 0.02438964694738388, 0.01845703087747097, 0.01735839806497097, 0.009448242373764515, 0.0006591796409338713, 0.0017578124534338713, -0.0068115233443677425, -0.0142822265625, -0.02021484263241291, -0.01625976525247097, -0.019775390625, -0.014721679501235485, -0.0057128905318677425, -0.003735351376235485, -0.0013183592818677425, 0.01186523400247097, 0.01186523400247097, 0.0186767578125, 0.0120849609375, 0.01889648474752903, 0.01889648474752903, 0.0142822265625, 0.01406249962747097, 0.007250976283103228, -0.002197265625, -0.00747070275247097, -0.01076660118997097, -0.01274413987994194, -0.01186523400247097, -0.0068115233443677425, -0.012304686941206455, -0.01318359375, 0.0002197265566792339, -0.0028564452659338713, 0.007910155691206455, 0.00856933556497097, 0.0068115233443677425, 0.003955077845603228, 0.00527343712747097, 0.012524413876235485, 0.0076904296875, 0.00856933556497097, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, 0.001538085867650807, 0.0, -0.008349609561264515, -0.008349609561264515, -0.002636718563735485, -0.0002197265566792339, -0.0057128905318677425, 0.001538085867650807, 0.0017578124534338713, -0.0010986328125, 0.0046142577193677425, 0.007250976283103228, 0.003735351376235485, 0.0046142577193677425, 0.0024169920943677425, 0.001977538922801614, 0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, 0.0002197265566792339, 0.0006591796409338713, 0.0024169920943677425, -0.001977538922801614, 0.004833984188735485, 0.003955077845603228, -0.0028564452659338713, -0.001538085867650807, 0.0008789062267169356, 0.002636718563735485, 0.0057128905318677425, 0.004833984188735485, 0.0013183592818677425, 0.005053710658103228, 0.001977538922801614, 0.0008789062267169356, 0.0017578124534338713, 0.0046142577193677425, 0.0006591796409338713, 0.001977538922801614, 0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, 0.006152343470603228, -0.0002197265566792339, 0.0008789062267169356, -0.0008789062267169356, -0.0041748047806322575, 0.0032958984375, 0.0013183592818677425, -0.0008789062267169356, 0.002197265625, 0.003955077845603228, 0.006152343470603228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00637206993997097, -0.0002197265566792339, -0.002636718563735485, -0.002197265625, 0.00439453125, 0.0004394531133584678, -0.0028564452659338713, 0.003955077845603228, 0.0006591796409338713, 0.00439453125, 0.0002197265566792339, 0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, 0.004833984188735485, 0.0002197265566792339, 0.0046142577193677425, 0.0013183592818677425, 0.0008789062267169356, 0.00527343712747097, 0.0054931640625, -0.001538085867650807, 0.001538085867650807, 0.0004394531133584678, 0.0068115233443677425, -0.003955077845603228, 0.002636718563735485, 0.0006591796409338713, 0.0054931640625, 0.001977538922801614, 0.0032958984375, 0.002197265625, 0.0057128905318677425, -0.001538085867650807, 0.0, -0.0032958984375, 0.0013183592818677425, 0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, 0.0013183592818677425, 0.001977538922801614, 0.003955077845603228, 0.0054931640625, 0.0046142577193677425, -0.0008789062267169356, -0.0010986328125, 0.0046142577193677425, 0.0024169920943677425, 0.0002197265566792339, -0.003955077845603228, -0.0028564452659338713, -0.0035156249068677425, -0.0010986328125, 0.0002197265566792339, 0.003735351376235485, 0.0057128905318677425, 0.00637206993997097, 0.012304686941206455, 0.01274413987994194, 0.010327148251235485, 0.0054931640625, -0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, -0.009008788503706455, -0.011425781063735485, -0.0087890625, -0.01845703087747097, -0.00966796837747097, -0.009008788503706455, -0.0024169920943677425, 0.003955077845603228, 0.007910155691206455, 0.01779785193502903, 0.01779785193502903, 0.01801757700741291, 0.02175292931497097, 0.02658691257238388, 0.02373046800494194, 0.01845703087747097, 0.0046142577193677425, -0.005932617001235485, -0.01274413987994194, -0.017578125, -0.0274658203125, -0.02504882775247097, -0.02329101413488388, -0.02482910081744194, -0.01911620981991291, -0.01076660118997097, 0.0041748047806322575, 0.009228515438735485, 0.01669921912252903, 0.032958984375, 0.03603515401482582, 0.03493652120232582, 0.03427734225988388, 0.02878417819738388, 0.01889648474752903, 0.005932617001235485, 0.0, -0.015380859375, -0.02460937388241291, -0.03142089769244194, -0.04042968526482582, -0.03537597507238388, -0.02878417819738388, -0.02504882775247097, -0.02153320237994194, -0.0002197265566792339, 0.01164550706744194, 0.02680663950741291, 0.0340576171875, 0.04196777194738388, 0.04526367038488388, 0.04746093600988388, 0.03867187350988388, 0.03273925557732582, 0.01933593675494194, 0.0006591796409338713, -0.0120849609375, -0.028564453125, -0.03757324069738388, -0.0472412109375, -0.04899902269244194, -0.04965820163488388, -0.04328612983226776, -0.02219238132238388, -0.00856933556497097, 0.008349609561264515, 0.02373046800494194, 0.0439453125, 0.05119628831744194, 0.06437987834215164, 0.06416015326976776, 0.05888671800494194, 0.03779296949505806, 0.02724609337747097, 0.008349609561264515, -0.014501952566206455, -0.0340576171875, -0.05009765550494194, -0.06174316257238388, -0.059326171875, -0.06174316257238388, -0.05119628831744194, -0.03537597507238388, -0.01054687425494194, 0.010327148251235485, 0.02900390513241291, 0.04680175706744194, 0.0670166015625, 0.07624511420726776, 0.06767577677965164, 0.06416015326976776, 0.0538330078125, 0.03691406175494194, 0.0054931640625, -0.01713867112994194, -0.03713378682732582, -0.05471191182732582, -0.06437987834215164, -0.06855468451976776, -0.07338867336511612, -0.06328124552965164, -0.04482421651482582, -0.024169921875, 0.0041748047806322575, 0.02724609337747097, 0.0538330078125, 0.06943359225988388, 0.08085937052965164, 0.08591308444738388, 0.08151855319738388, 0.06064452975988388, 0.04306640475988388, 0.01604003831744194, -0.007250976283103228, -0.0318603515625, -0.06020507588982582, -0.07185058295726776, -0.07844237983226776, -0.08305663615465164, -0.07492675632238388, -0.05405273288488388, -0.03229980543255806, -0.0035156249068677425, 0.024169921875, 0.04965820163488388, 0.06899414211511612, 0.08085937052965164, 0.09228515625, 0.08305663615465164, 0.07229004055261612, 0.05031738057732582, 0.02834472618997097, -0.001977538922801614, -0.03120117075741291, -0.05449218675494194, -0.07712402194738388, -0.08525390177965164, -0.09052734076976776, -0.07624511420726776, -0.06284179538488388, -0.03867187350988388, -0.01274413987994194, 0.02438964694738388, 0.0538330078125, 0.0780029296875, 0.08854980021715164, 0.09624022990465164, 0.09909667819738388, 0.0867919921875, 0.05844726413488388, 0.03427734225988388, 0.003735351376235485, -0.02680663950741291, -0.06020507588982582, -0.08085937052965164, -0.08657225966453552, -0.09909667819738388, -0.08745116740465164, -0.07294921576976776, -0.04306640475988388, -0.01296386681497097, 0.013403319753706455, 0.04570312425494194, 0.07229004055261612, 0.08920898288488388, 0.10810546576976776, 0.10305175185203552, 0.09250488132238388, 0.07053222507238388, 0.03713378682732582, 0.009228515438735485, -0.02768554538488388, -0.05515136569738388, -0.07470703125, -0.09624022990465164, -0.10151366889476776, -0.09953612834215164, -0.07778320461511612, -0.05581054463982582, -0.02680663950741291, 0.007031249813735485, 0.04460449144244194, 0.0670166015625, 0.09514159709215164, 0.10458984225988388, 0.10305175185203552, 0.09645995497703552, 0.07207030802965164, 0.04328612983226776, 0.019775390625, -0.02021484263241291, -0.05075683444738388, -0.07866210490465164, -0.09316405653953552, -0.10788574069738388, -0.10590820014476776, -0.08942870795726776, -0.05624999850988388, -0.0296630859375, 0.003735351376235485, 0.03383788838982582, 0.06328124552965164, 0.08942870795726776, 0.1043701171875, 0.11249999701976776, 0.1021728515625, 0.07866210490465164, 0.0560302734375, 0.02460937388241291, -0.01582031138241291, -0.04855956882238388, -0.07119140774011612, -0.09755858778953552, -0.10700683295726776, -0.1065673828125, -0.0933837890625, -0.07009277492761612, -0.0384521484375, -0.0006591796409338713, 0.0274658203125, 0.05844726413488388, 0.090087890625, 0.10568847507238388, 0.10546875, 0.10085448622703552, 0.09052734076976776, 0.059326171875, 0.03076171875, -0.002636718563735485, -0.04130859300494194, -0.06899414211511612, -0.09052734076976776, -0.107666015625, -0.10415038466453552, -0.09580077975988388, -0.068115234375, -0.04086913913488388, -0.014721679501235485, 0.02373046800494194, 0.05954589694738388, 0.08525390177965164, 0.10546875, 0.1065673828125, 0.10261230170726776, 0.0911865234375, 0.06218261644244194, 0.03911132737994194, 0.007031249813735485, -0.03559570387005806, -0.06174316257238388, -0.08481445163488388, -0.09821777045726776, -0.09799804538488388, -0.09580077975988388, -0.081298828125, -0.05361327901482582, -0.0208740234375, 0.01845703087747097, 0.05207519233226776, 0.07998047024011612, 0.09272460639476776, 0.10942382365465164, 0.10788574069738388, 0.09162597358226776, 0.07053222507238388, 0.04130859300494194, 0.008129882626235485, -0.02812499925494194, -0.0582275390625, -0.0823974609375, -0.09206542372703552, -0.10107421875, -0.09470214694738388, -0.07844237983226776, -0.05427245795726776, -0.02460937388241291, 0.007031249813735485, 0.03977050632238388, 0.06767577677965164, 0.09162597358226776, 0.09865722060203552, 0.09909667819738388, 0.08854980021715164, 0.068115234375, 0.041748046875, 0.010327148251235485, -0.01933593675494194, -0.04812011495232582, -0.07272949069738388, -0.08503417670726776, -0.09404296427965164, -0.09360351413488388, -0.08173827826976776, -0.05559081956744194, -0.028564453125, -0.001538085867650807, 0.03273925557732582, 0.0604248046875, 0.07624511420726776, 0.09404296427965164, 0.09360351413488388, 0.08767089247703552, 0.07097167521715164, 0.04548339545726776, 0.02197265625, -0.00856933556497097, -0.04196777194738388, -0.0582275390625, -0.07844237983226776, -0.0911865234375, -0.090087890625, -0.07646483927965164, -0.05712890625, -0.02988281100988388, -0.0013183592818677425, 0.02900390513241291, 0.0494384765625, 0.0692138671875, 0.08481445163488388, 0.09360351413488388, 0.0802001953125, 0.0736083984375, 0.05251464620232582, 0.02153320237994194, -0.009228515438735485, -0.032958984375, -0.05097655951976776, -0.0670166015625, -0.08195800334215164, -0.07778320461511612, -0.07119140774011612, -0.05866698920726776, -0.03537597507238388, -0.009448242373764515, 0.015380859375, 0.04680175706744194, 0.06108398362994194, 0.07404784858226776, 0.07976073771715164, 0.0780029296875, 0.06965331733226776, 0.0472412109375, 0.02043456956744194, 0.0, -0.02351074106991291, -0.04482421651482582, -0.0604248046875, -0.0648193359375, -0.07185058295726776, -0.06877440959215164, -0.04899902269244194, -0.03383788838982582, -0.015600585378706455, 0.014721679501235485, 0.03537597507238388, 0.05075683444738388, 0.0670166015625, 0.07382812350988388, 0.06437987834215164, 0.06328124552965164, 0.04152831807732582, 0.0274658203125, 0.0076904296875, -0.017578125, -0.03098144382238388, -0.04680175706744194, -0.0626220703125, -0.06196288764476776, -0.05778808519244194, -0.0428466796875, -0.03032226487994194, -0.012524413876235485, 0.0046142577193677425, 0.02482910081744194, 0.04460449144244194, 0.05097655951976776, 0.05734863132238388, 0.06086425483226776, 0.05668945237994194, 0.04460449144244194, 0.02329101413488388, 0.01076660118997097, -0.007250976283103228, -0.02438964694738388, -0.04042968526482582, -0.04416503757238388, -0.04702148213982582, -0.04812011495232582, -0.04460449144244194, -0.03032226487994194, -0.014721679501235485, -0.0013183592818677425, 0.01691894419491291, 0.03383788838982582, 0.03669433668255806, 0.04460449144244194, 0.04130859300494194, 0.04130859300494194, 0.03054199181497097, 0.02219238132238388, 0.0142822265625, -0.0054931640625, -0.01713867112994194, -0.02373046800494194, -0.03647460788488388, -0.03251953050494194, -0.04020996019244194, -0.03251953050494194, -0.02373046800494194, -0.01296386681497097, -0.00439453125, 0.01274413987994194, 0.02482910081744194, 0.03229980543255806, 0.02724609337747097, 0.03208007663488388, 0.03273925557732582, 0.02592773362994194, 0.01296386681497097, 0.01164550706744194, -0.0002197265566792339, -0.01076660118997097, -0.01604003831744194, -0.01889648474752903, -0.02570800669491291, -0.0263671875, -0.0230712890625, -0.012304686941206455, -0.007031249813735485, -0.002636718563735485, 0.0087890625, 0.009448242373764515, 0.01318359375, 0.02329101413488388, 0.02460937388241291, 0.019775390625, 0.01494140550494194, 0.011206054128706455, 0.008349609561264515, 0.0002197265566792339, -0.004833984188735485, -0.004833984188735485, -0.0164794921875, -0.012524413876235485, -0.010327148251235485, -0.009228515438735485, -0.00637206993997097, 0.001977538922801614, 0.004833984188735485, 0.0068115233443677425, 0.0054931640625, 0.005932617001235485, 0.007910155691206455, 0.01054687425494194, 0.011425781063735485, 0.0087890625, 0.006591796875, -0.002636718563735485, 0.004833984188735485, 0.003955077845603228, 0.001977538922801614, 0.0054931640625, 0.003955077845603228, 0.0004394531133584678, -0.005932617001235485, 0.005932617001235485, 0.0004394531133584678, 0.00527343712747097, 0.007031249813735485, 0.0041748047806322575, -0.001977538922801614, 0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, 0.0017578124534338713, 0.0004394531133584678, -0.002197265625, 0.0008789062267169356, 0.005932617001235485, 0.0006591796409338713, 0.0010986328125, -0.002636718563735485, 0.004833984188735485, 0.002636718563735485, -0.001977538922801614, -0.0032958984375, 0.0008789062267169356, 0.0024169920943677425, -0.0004394531133584678, 0.0068115233443677425, 0.002197265625, 0.001538085867650807, 0.0006591796409338713, 0.0046142577193677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, 0.0032958984375, 0.003955077845603228, -0.0008789062267169356, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, 0.001538085867650807, 0.0087890625, 0.001977538922801614, -0.0013183592818677425, 0.0004394531133584678, 0.0028564452659338713, -0.0004394531133584678, -0.0013183592818677425, 0.001977538922801614, 0.00637206993997097, 0.0054931640625, 0.0032958984375, 0.0046142577193677425, -0.0008789062267169356, -0.003076171735301614, -0.0017578124534338713, -0.003955077845603228, -0.0006591796409338713, 0.0028564452659338713, 0.0006591796409338713, -0.001538085867650807, 0.005932617001235485, 0.0032958984375, -0.002636718563735485, 0.003955077845603228, -0.0028564452659338713, -0.0017578124534338713, 0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, 0.006591796875, -0.0008789062267169356, 0.0006591796409338713, -0.002197265625, 0.003955077845603228, 0.00527343712747097, -0.0017578124534338713, 0.001538085867650807, -0.0035156249068677425, 0.0028564452659338713, 0.0008789062267169356, -0.006591796875, 0.001977538922801614, 0.0002197265566792339, 0.005932617001235485, 0.01274413987994194, 0.006591796875, 0.01164550706744194, 0.01494140550494194, 0.01076660118997097, 0.0120849609375, 0.007910155691206455, 0.00747070275247097, 0.0024169920943677425, -0.01164550706744194, -0.01582031138241291, -0.0186767578125, -0.02285156212747097, -0.024169921875, -0.02065429650247097, -0.01625976525247097, -0.011425781063735485, 0.0035156249068677425, 0.0076904296875, 0.02373046800494194, 0.02263183519244194, 0.03515625, 0.03537597507238388, 0.03779296949505806, 0.02812499925494194, 0.01713867112994194, 0.01164550706744194, -0.00439453125, -0.01384277269244194, -0.02395019493997097, -0.04042968526482582, -0.04218749701976776, -0.0362548828125, -0.03867187350988388, -0.02592773362994194, -0.0164794921875, -0.0035156249068677425, 0.01823730394244194, 0.03076171875, 0.04636230319738388, 0.05031738057732582, 0.0538330078125, 0.05559081956744194, 0.04965820163488388, 0.03142089769244194, 0.013403319753706455, 0.0008789062267169356, -0.02131347544491291, -0.03933105245232582, -0.04877929389476776, -0.05515136569738388, -0.05712890625, -0.05449218675494194, -0.04328612983226776, -0.02131347544491291, -0.0010986328125, 0.0120849609375, 0.0340576171875, 0.059326171875, 0.06943359225988388, 0.06899414211511612, 0.07492675632238388, 0.05844726413488388, 0.04548339545726776, 0.0252685546875, 0.00637206993997097, -0.01955566368997097, -0.04130859300494194, -0.06569824367761612, -0.07097167521715164, -0.0823974609375, -0.07778320461511612, -0.06284179538488388, -0.03691406175494194, -0.01713867112994194, 0.01604003831744194, 0.041748046875, 0.0648193359375, 0.08305663615465164, 0.09602050483226776, 0.08986815810203552, 0.07822265475988388, 0.06174316257238388, 0.03361816331744194, 0.0054931640625, -0.02592773362994194, -0.05097655951976776, -0.07712402194738388, -0.09184569865465164, -0.09184569865465164, -0.09096679091453552, -0.07316894084215164, -0.05646972358226776, -0.02241210825741291, 0.008129882626235485, 0.03779296949505806, 0.07382812350988388, 0.09074706584215164, 0.10700683295726776, 0.10283202677965164, 0.09140624850988388, 0.07426757365465164, 0.04768066108226776, 0.01625976525247097, -0.019775390625, -0.05756835639476776, -0.08195800334215164, -0.10546875, -0.11403807997703552, -0.10305175185203552, -0.09272460639476776, -0.07075195014476776, -0.03032226487994194, 0.005932617001235485, 0.04020996019244194, 0.07646483927965164, 0.10261230170726776, 0.11140136420726776, 0.1263427734375, 0.11162108927965164, 0.08920898288488388, 0.06437987834215164, 0.02065429650247097, -0.01735839806497097, -0.05031738057732582, -0.08283691108226776, -0.10546875, -0.12041015177965164, -0.12656249105930328, -0.1109619140625, -0.08591308444738388, -0.05075683444738388, -0.0008789062267169356, 0.03691406175494194, 0.07075195014476776, 0.10480956733226776, 0.12700195610523224, 0.13710936903953552, 0.12480468302965164, 0.10546875, 0.0714111328125, 0.03801269456744194, -0.0057128905318677425, -0.052734375, -0.08349609375, -0.11799316108226776, -0.12875975668430328, -0.140625, -0.12172850966453552, -0.09294433146715164, -0.05537109076976776, -0.01494140550494194, 0.03383788838982582, 0.07624511420726776, 0.11008300632238388, 0.13425292074680328, 0.14040526747703552, 0.13579101860523224, 0.125244140625, 0.08305663615465164, 0.04877929389476776, 0.004833984188735485, -0.04328612983226776, -0.08525390177965164, -0.11997070163488388, -0.14106445014476776, -0.1461181640625, -0.1318359375, -0.10590820014476776, -0.0692138671875, -0.02922363206744194, 0.02109374850988388, 0.06284179538488388, 0.11140136420726776, 0.14018554985523224, 0.14963378012180328, 0.14875487983226776, 0.12832030653953552, 0.10041503608226776, 0.05471191182732582, 0.01054687425494194, -0.03691406175494194, -0.08085937052965164, -0.11491698771715164, -0.14326171576976776, -0.15446777641773224, -0.14589843153953552, -0.11887206882238388, -0.08591308444738388, -0.03603515401482582, 0.00966796837747097, 0.05646972358226776, 0.10700683295726776, 0.13666991889476776, 0.15754394233226776, 0.15578612685203552, 0.142822265625, 0.11249999701976776, 0.0714111328125, 0.01669921912252903, -0.03251953050494194, -0.07624511420726776, -0.1153564453125, -0.14150390028953552, -0.15446777641773224, -0.15424804389476776, -0.12919922173023224, -0.0911865234375, -0.04987792670726776, 0.0057128905318677425, 0.05449218675494194, 0.09755858778953552, 0.13864745199680328, 0.15776367485523224, 0.16237792372703552, 0.14787597954273224, 0.12238769233226776, 0.081298828125, 0.03317870944738388, -0.01823730394244194, -0.06591796875, -0.11008300632238388, -0.13864745199680328, -0.15183104574680328, -0.15974120795726776, -0.13930663466453552, -0.10349120944738388, -0.05295410007238388, -0.00966796837747097, 0.0450439453125, 0.09140624850988388, 0.12897948920726776, 0.15424804389476776, 0.16083984076976776, 0.1593017578125, 0.1318359375, 0.08920898288488388, 0.04218749701976776, -0.0098876953125, -0.05581054463982582, -0.10480956733226776, -0.13491210341453552, -0.15314941108226776, -0.156005859375, -0.142822265625, -0.10415038466453552, -0.06591796875, -0.012304686941206455, 0.03581542894244194, 0.085693359375, 0.12766112387180328, 0.14787597954273224, 0.15732420980930328, 0.15622557699680328, 0.13754881918430328, 0.094482421875, 0.05515136569738388, 0.0, -0.052734375, -0.09360351413488388, -0.13095702230930328, -0.1483154296875, -0.15446777641773224, -0.14458008110523224, -0.1175537109375, -0.07756347209215164, -0.03076171875, 0.0230712890625, 0.07712402194738388, 0.1131591796875, 0.14370116591453552, 0.15754394233226776, 0.1549072265625, 0.13425292074680328, 0.09602050483226776, 0.05844726413488388, 0.00747070275247097, -0.03757324069738388, -0.08613280951976776, -0.11601562052965164, -0.14348144829273224, -0.15424804389476776, -0.14128418266773224, -0.11711425334215164, -0.07646483927965164, -0.03713378682732582, 0.01164550706744194, 0.05998535081744194, 0.10524901747703552, 0.13623046875, 0.14853514730930328, 0.14919432997703552, 0.13776855170726776, 0.10898437350988388, 0.06394042819738388, 0.01823730394244194, -0.0230712890625, -0.06723632663488388, -0.112060546875, -0.13666991889476776, -0.14150390028953552, -0.142822265625, -0.1197509765625, -0.07954101264476776, -0.04636230319738388, 0.0002197265566792339, 0.04855956882238388, 0.090087890625, 0.1219482421875, 0.13688965141773224, 0.14348144829273224, 0.12678222358226776, 0.10590820014476776, 0.07272949069738388, 0.02658691257238388, -0.0142822265625, -0.06108398362994194, -0.0911865234375, -0.12458495795726776, -0.13359375298023224, -0.13535155355930328, -0.11403807997703552, -0.07998047024011612, -0.04899902269244194, -0.001538085867650807, 0.03581542894244194, 0.07844237983226776, 0.10590820014476776, 0.12260741740465164, 0.1351318359375, 0.12436523288488388, 0.10195311903953552, 0.06965331733226776, 0.0318603515625, -0.00747070275247097, -0.04877929389476776, -0.0780029296875, -0.10371093451976776, -0.11711425334215164, -0.11623534560203552, -0.10898437350988388, -0.0823974609375, -0.04855956882238388, -0.006152343470603228, 0.02460937388241291, 0.05866698920726776, 0.0955810546875, 0.1109619140625, 0.120849609375, 0.11469726264476776, 0.09426268935203552, 0.06547851115465164, 0.032958984375, -0.0041748047806322575, -0.0362548828125, -0.06350097805261612, -0.09074706584215164, -0.107666015625, -0.103271484375, -0.09404296427965164, -0.0802001953125, -0.04921874776482582, -0.019775390625, 0.01691894419491291, 0.04636230319738388, 0.07536620646715164, 0.09294433146715164, 0.10371093451976776, 0.10678710788488388, 0.09030761569738388, 0.06635741889476776, 0.03713378682732582, 0.0017578124534338713, -0.02724609337747097, -0.05515136569738388, -0.07536620646715164, -0.08437499403953552, -0.09140624850988388, -0.0845947265625, -0.06569824367761612, -0.05075683444738388, -0.01823730394244194, 0.0120849609375, 0.03801269456744194, 0.05954589694738388, 0.08063964545726776, 0.08415526896715164, 0.08349609375, 0.072509765625, 0.0604248046875, 0.037353515625, 0.014721679501235485, -0.0142822265625, -0.04108886793255806, -0.0582275390625, -0.07294921576976776, -0.06943359225988388, -0.07514648139476776, -0.0604248046875, -0.04548339545726776, -0.0208740234375, 0.008129882626235485, 0.02834472618997097, 0.04877929389476776, 0.06218261644244194, 0.07075195014476776, 0.06635741889476776, 0.06218261644244194, 0.04768066108226776, 0.028564453125, 0.012304686941206455, -0.011206054128706455, -0.0252685546875, -0.03559570387005806, -0.05559081956744194, -0.05405273288488388, -0.05734863132238388, -0.04438476264476776, -0.03164062276482582, -0.01823730394244194, -0.0046142577193677425, 0.01823730394244194, 0.02834472618997097, 0.03691406175494194, 0.04548339545726776, 0.05449218675494194, 0.04262695088982582, 0.03977050632238388, 0.02438964694738388, 0.014501952566206455, -0.0010986328125, -0.015600585378706455, -0.02702636644244194, -0.037353515625, -0.03383788838982582, -0.03493652120232582, -0.03493652120232582, -0.0296630859375, -0.01384277269244194, -0.0013183592818677425, 0.006152343470603228, 0.024169921875, 0.02197265625, 0.02812499925494194, 0.03339843824505806, 0.03054199181497097, 0.02680663950741291, 0.02153320237994194, 0.010107421316206455, 0.00527343712747097, -0.006591796875, -0.0098876953125, -0.01691894419491291, -0.0142822265625, -0.02109374850988388, -0.01625976525247097, -0.0057128905318677425, -0.009448242373764515, -0.0054931640625, 0.001538085867650807, 0.0087890625, 0.00527343712747097, 0.005932617001235485, 0.010986328125, 0.0054931640625, 0.005932617001235485, 0.003955077845603228, 0.0041748047806322575, -0.0002197265566792339, 0.003955077845603228, 0.0028564452659338713, 0.0041748047806322575, -0.00439453125, 0.0035156249068677425, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, 0.001977538922801614, -0.0006591796409338713, -0.00439453125, -0.0002197265566792339, 0.0017578124534338713, 0.0008789062267169356, 0.003735351376235485, -0.0006591796409338713, -0.0008789062267169356, 0.002197265625, -0.001977538922801614, -0.0002197265566792339, 0.004833984188735485, 0.0035156249068677425, -0.001977538922801614, 0.0017578124534338713, 0.006591796875, 0.005053710658103228, 0.0006591796409338713, 0.006152343470603228, -0.0004394531133584678, 0.001538085867650807, 0.0004394531133584678, 0.0013183592818677425, 0.003076171735301614, 0.0054931640625, -0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0046142577193677425, 0.0004394531133584678, 0.005053710658103228, -0.0024169920943677425, 0.0002197265566792339, -0.001977538922801614, -0.0004394531133584678, 0.0010986328125, 0.002197265625, -0.001977538922801614, 0.005053710658103228, 0.003955077845603228, -0.0002197265566792339, -0.0028564452659338713, 0.003955077845603228, -0.0006591796409338713, 0.003076171735301614, 0.0024169920943677425, 0.001538085867650807, 0.0004394531133584678, 0.00527343712747097, 0.002636718563735485, 0.0024169920943677425, 0.0057128905318677425, 0.0010986328125, 0.007250976283103228, 0.00637206993997097, 0.0046142577193677425, 0.001977538922801614, 0.0032958984375, 0.0035156249068677425, 0.008129882626235485, 0.0004394531133584678, 0.0, 0.0041748047806322575, 0.0024169920943677425, 0.0004394531133584678, 0.005932617001235485, 0.001977538922801614, 0.00439453125, -0.0024169920943677425, 0.00439453125, 0.0035156249068677425, 0.001977538922801614, 0.001977538922801614, -0.0028564452659338713, 0.002197265625, 0.00439453125, 0.0028564452659338713, -0.0024169920943677425, -0.00439453125, -0.006152343470603228, 0.0013183592818677425, -0.0028564452659338713, 0.002636718563735485, 0.007910155691206455, 0.01625976525247097, 0.01384277269244194, 0.014721679501235485, 0.02131347544491291, 0.01845703087747097, 0.01999511756002903, 0.00747070275247097, 0.00747070275247097, -0.0076904296875, -0.009228515438735485, -0.01779785193502903, -0.02351074106991291, -0.03076171875, -0.02395019493997097, -0.02219238132238388, -0.01911620981991291, -0.009448242373764515, 0.0041748047806322575, 0.010107421316206455, 0.028564453125, 0.037353515625, 0.04460449144244194, 0.04987792670726776, 0.04262695088982582, 0.03999023512005806, 0.024169921875, 0.015380859375, -0.006152343470603228, -0.02043456956744194, -0.03647460788488388, -0.04438476264476776, -0.05734863132238388, -0.05009765550494194, -0.05141601338982582, -0.03933105245232582, -0.01823730394244194, 0.001538085867650807, 0.01691894419491291, 0.04218749701976776, 0.0582275390625, 0.0703125, 0.07119140774011612, 0.07207030802965164, 0.05427245795726776, 0.04460449144244194, 0.01669921912252903, -0.0017578124534338713, -0.02680663950741291, -0.04636230319738388, -0.06767577677965164, -0.07602538913488388, -0.07866210490465164, -0.06965331733226776, -0.05690917745232582, -0.03251953050494194, -0.008349609561264515, 0.02285156212747097, 0.04416503757238388, 0.07448730617761612, 0.08701171725988388, 0.10129394382238388, 0.09426268935203552, 0.07646483927965164, 0.0626220703125, 0.03537597507238388, -0.0010986328125, -0.02988281100988388, -0.0582275390625, -0.08701171725988388, -0.10063476115465164, -0.10612792521715164, -0.09514159709215164, -0.08151855319738388, -0.05229492112994194, -0.019775390625, 0.02197265625, 0.04855956882238388, 0.08635253459215164, 0.11162108927965164, 0.1219482421875, 0.11777343600988388, 0.10129394382238388, 0.08107910305261612, 0.04702148213982582, 0.00747070275247097, -0.03493652120232582, -0.06328124552965164, -0.09931640326976776, -0.11799316108226776, -0.12568359076976776, -0.11733397841453552, -0.10019531100988388, -0.07119140774011612, -0.03449707105755806, 0.007031249813735485, 0.05756835639476776, 0.09843749552965164, 0.12700195610523224, 0.1439208984375, 0.14479979872703552, 0.13095702230930328, 0.1043701171875, 0.06130370870232582, 0.02285156212747097, -0.02438964694738388, -0.0692138671875, -0.10810546576976776, -0.1351318359375, -0.14589843153953552, -0.14106445014476776, -0.12678222358226776, -0.094482421875, -0.04746093600988388, -0.0013183592818677425, 0.04921874776482582, 0.09799804538488388, 0.12788085639476776, 0.15249022841453552, 0.16677245497703552, 0.14853514730930328, 0.11623534560203552, 0.07734374701976776, 0.0318603515625, -0.01823730394244194, -0.07009277492761612, -0.10788574069738388, -0.14919432997703552, -0.16743163764476776, -0.1593017578125, -0.14326171576976776, -0.10568847507238388, -0.06020507588982582, -0.008349609561264515, 0.04570312425494194, 0.09953612834215164, 0.13974608480930328, 0.16105957329273224, 0.17226561903953552, 0.16655273735523224, 0.14238281548023224, 0.09689941257238388, 0.04592284932732582, -0.006591796875, -0.05976562201976776, -0.11777343600988388, -0.1549072265625, -0.18105468153953552, -0.17819823324680328, -0.16677245497703552, -0.12875975668430328, -0.07932128757238388, -0.01713867112994194, 0.04328612983226776, 0.09602050483226776, 0.1461181640625, 0.17578125, 0.19467772543430328, 0.18522948026657104, 0.15468749403953552, 0.112060546875, 0.06657714396715164, 0.002197265625, -0.0582275390625, -0.11052245646715164, -0.15249022841453552, -0.1856689453125, -0.19511717557907104, -0.18281249701976776, -0.138427734375, -0.09228515625, -0.0318603515625, 0.03010253794491291, 0.08349609375, 0.14260253310203552, 0.17775878310203552, 0.19489745795726776, 0.19577635824680328, 0.17072753608226776, 0.12678222358226776, 0.07734374701976776, 0.012304686941206455, -0.04899902269244194, -0.10458984225988388, -0.15556640923023224, -0.18984374403953552, -0.1988525390625, -0.19028319418430328, -0.15534667670726776, -0.10722655802965164, -0.04965820163488388, 0.014501952566206455, 0.07954101264476776, 0.13557128608226776, 0.177978515625, 0.20170897245407104, 0.2120361328125, 0.18479003012180328, 0.14677734673023224, 0.09162597358226776, 0.03229980543255806, -0.03229980543255806, -0.09865722060203552, -0.15644530951976776, -0.18764647841453552, -0.20412597060203552, -0.19797362387180328, -0.16545410454273224, -0.11777343600988388, -0.063720703125, 0.008129882626235485, 0.07272949069738388, 0.129638671875, 0.1812744140625, 0.20917968451976776, 0.21818846464157104, 0.1966552734375, 0.15534667670726776, 0.1087646484375, 0.03999023512005806, -0.01911620981991291, -0.08767089247703552, -0.14304198324680328, -0.19072264432907104, -0.20566405355930328, -0.21159666776657104, -0.17929686605930328, -0.13117675483226776, -0.07448730617761612, -0.01076660118997097, 0.06130370870232582, 0.12348632514476776, 0.1658935546875, 0.1988525390625, 0.21511229872703552, 0.20698241889476776, 0.17094725370407104, 0.11491698771715164, 0.054931640625, -0.013623046688735485, -0.07712402194738388, -0.13579101860523224, -0.18105468153953552, -0.20588378608226776, -0.20522460341453552, -0.19028319418430328, -0.14304198324680328, -0.08349609375, -0.02153320237994194, 0.04833984375, 0.10480956733226776, 0.15754394233226776, 0.19379882514476776, 0.20742186903953552, 0.20917968451976776, 0.1812744140625, 0.12590332329273224, 0.07097167521715164, 0.00527343712747097, -0.05734863132238388, -0.11953124403953552, -0.1724853515625, -0.19709472358226776, -0.20917968451976776, -0.19028319418430328, -0.14897461235523224, -0.09206542372703552, -0.03713378682732582, 0.0318603515625, 0.09953612834215164, 0.14699706435203552, 0.19028319418430328, 0.20632323622703552, 0.20478515326976776, 0.1768798828125, 0.13469238579273224, 0.07646483927965164, 0.01186523400247097, -0.04526367038488388, -0.10986328125, -0.15798339247703552, -0.18544921278953552, -0.20061033964157104, -0.18544921278953552, -0.1549072265625, -0.10480956733226776, -0.05119628831744194, 0.0142822265625, 0.07316894084215164, 0.12832030653953552, 0.17160643637180328, 0.19489745795726776, 0.20258788764476776, 0.17446288466453552, 0.1417236328125, 0.08811035007238388, 0.02548827975988388, -0.03779296949505806, -0.09272460639476776, -0.14084471762180328, -0.1724853515625, -0.19094237685203552, -0.18303221464157104, -0.15886230766773224, -0.112060546875, -0.05515136569738388, 0.002197265625, 0.06547851115465164, 0.11469726264476776, 0.15776367485523224, 0.1856689453125, 0.191162109375, 0.16831053793430328, 0.13469238579273224, 0.09162597358226776, 0.03273925557732582, -0.015600585378706455, -0.07866210490465164, -0.12436523288488388, -0.16259765625, -0.17644041776657104, -0.17006835341453552, -0.14897461235523224, -0.10964354872703552, -0.06350097805261612, -0.00439453125, 0.05141601338982582, 0.0966796875, 0.14304198324680328, 0.16633300483226776, 0.17731933295726776, 0.16347655653953552, 0.14018554985523224, 0.08964843302965164, 0.04790038987994194, -0.010327148251235485, -0.059326171875, -0.10524901747703552, -0.13974608480930328, -0.16435547173023224, -0.15952147543430328, -0.13996581733226776, -0.11447753757238388, -0.06613769382238388, -0.0186767578125, 0.03229980543255806, 0.07822265475988388, 0.11447753757238388, 0.14545898139476776, 0.156005859375, 0.1483154296875, 0.1263427734375, 0.09404296427965164, 0.05295410007238388, -0.0013183592818677425, -0.0472412109375, -0.08833007514476776, -0.11931151896715164, -0.13886718451976776, -0.14436034858226776, -0.1263427734375, -0.10349120944738388, -0.0714111328125, -0.02153320237994194, 0.0263671875, 0.06745605170726776, 0.10590820014476776, 0.12216796725988388, 0.13535155355930328, 0.13579101860523224, 0.11249999701976776, 0.08635253459215164, 0.05207519233226776, 0.007031249813735485, -0.0362548828125, -0.07185058295726776, -0.09755858778953552, -0.12150878459215164, -0.12392577528953552, -0.11140136420726776, -0.09536132216453552, -0.06328124552965164, -0.0296630859375, 0.011425781063735485, 0.04680175706744194, 0.07998047024011612, 0.10502929240465164, 0.1109619140625, 0.11074218153953552, 0.09645995497703552, 0.07734374701976776, 0.04768066108226776, 0.01779785193502903, -0.02043456956744194, -0.05251464620232582, -0.07294921576976776, -0.09536132216453552, -0.09953612834215164, -0.09536132216453552, -0.08327636867761612, -0.0582275390625, -0.02395019493997097, 0.005053710658103228, 0.032958984375, 0.05800781026482582, 0.07932128757238388, 0.09140624850988388, 0.08503417670726776, 0.08217773586511612, 0.06943359225988388, 0.04636230319738388, 0.01911620981991291, -0.01186523400247097, -0.03911132737994194, -0.052734375, -0.06943359225988388, -0.07207030802965164, -0.07602538913488388, -0.06174316257238388, -0.04570312425494194, -0.02702636644244194, -0.0024169920943677425, 0.02329101413488388, 0.03581542894244194, 0.05361327901482582, 0.06240234151482582, 0.06789550930261612, 0.0582275390625, 0.052734375, 0.03757324069738388, 0.014501952566206455, -0.00439453125, -0.02065429650247097, -0.03317870944738388, -0.04570312425494194, -0.05229492112994194, -0.04855956882238388, -0.04042968526482582, -0.03208007663488388, -0.01691894419491291, -0.002197265625, 0.013403319753706455, 0.02241210825741291, 0.03317870944738388, 0.03713378682732582, 0.03779296949505806, 0.03669433668255806, 0.0252685546875, 0.02351074106991291, 0.007910155691206455, -0.0013183592818677425, -0.007031249813735485, -0.01516113243997097, -0.01625976525247097, -0.02790527231991291, -0.02702636644244194, -0.01779785193502903, -0.014721679501235485, -0.007250976283103228, 0.0028564452659338713, 0.00439453125, 0.008129882626235485, 0.0164794921875, 0.008349609561264515, 0.010107421316206455, 0.00856933556497097, 0.004833984188735485, 0.0076904296875, -0.0013183592818677425, 0.00527343712747097, -0.0010986328125, 0.0, 0.00439453125, 0.003735351376235485, 0.003955077845603228, 0.004833984188735485, 0.0028564452659338713, 0.002636718563735485, -0.001977538922801614, 0.0002197265566792339, 0.001538085867650807, 0.003735351376235485, 0.0010986328125, -0.001538085867650807, 0.0002197265566792339, 0.0054931640625, 0.00637206993997097, 0.003955077845603228, 0.0035156249068677425, 0.0013183592818677425, 0.0054931640625, -0.006152343470603228, -0.0006591796409338713, -0.0032958984375, 0.0, 0.00527343712747097, 0.0006591796409338713, 0.005932617001235485, 0.0068115233443677425, 0.0076904296875, 0.0006591796409338713, -0.0002197265566792339, 0.0028564452659338713, 0.001977538922801614, 0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003735351376235485, -0.001538085867650807, 0.006591796875, -0.0013183592818677425, 0.0024169920943677425, 0.0041748047806322575, 0.0006591796409338713, 0.00439453125, 0.0041748047806322575, 0.0057128905318677425, -0.001538085867650807, 0.003076171735301614, -0.0017578124534338713, 0.0006591796409338713, -0.003735351376235485, 0.003955077845603228, 0.0010986328125, 0.001977538922801614, 0.00527343712747097, 0.0010986328125, 0.0006591796409338713, -0.0010986328125, -0.0010986328125, 0.0010986328125, -0.0004394531133584678, 0.007250976283103228, -0.001538085867650807, 0.00747070275247097, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, 0.00747070275247097, 0.0010986328125, 0.002636718563735485, 0.003076171735301614, 0.006152343470603228, -0.001538085867650807, 0.0008789062267169356, 0.002636718563735485, -0.0013183592818677425, 0.0, 0.0008789062267169356, -0.002636718563735485, 0.0046142577193677425, 0.005053710658103228, -0.0041748047806322575, 0.003955077845603228, 0.001977538922801614, -0.0017578124534338713, -0.006152343470603228, -0.00439453125, -0.0076904296875, 0.002636718563735485, 0.0008789062267169356, 0.00527343712747097, 0.008349609561264515, 0.02021484263241291, 0.01889648474752903, 0.02175292931497097, 0.02614746056497097, 0.01823730394244194, 0.01735839806497097, 0.00966796837747097, -0.008129882626235485, -0.01516113243997097, -0.02263183519244194, -0.03383788838982582, -0.03273925557732582, -0.0384521484375, -0.03493652120232582, -0.02922363206744194, -0.0120849609375, -0.0028564452659338713, 0.0164794921875, 0.03933105245232582, 0.0406494140625, 0.05537109076976776, 0.05844726413488388, 0.05471191182732582, 0.05097655951976776, 0.02658691257238388, 0.015600585378706455, -0.009228515438735485, -0.02592773362994194, -0.046142578125, -0.05690917745232582, -0.06965331733226776, -0.0670166015625, -0.06416015326976776, -0.050537109375, -0.03010253794491291, 0.0006591796409338713, 0.02504882775247097, 0.04702148213982582, 0.06679687649011612, 0.08195800334215164, 0.08942870795726776, 0.0845947265625, 0.07536620646715164, 0.05537109076976776, 0.02878417819738388, -0.009228515438735485, -0.03471679612994194, -0.06174316257238388, -0.085693359375, -0.10129394382238388, -0.09865722060203552, -0.09711913764476776, -0.07272949069738388, -0.05075683444738388, -0.01054687425494194, 0.0274658203125, 0.06020507588982582, 0.09536132216453552, 0.11052245646715164, 0.12041015177965164, 0.11513671278953552, 0.10151366889476776, 0.07294921576976776, 0.04306640475988388, 0.0004394531133584678, -0.041748046875, -0.08041992038488388, -0.1087646484375, -0.1219482421875, -0.129638671875, -0.12282714247703552, -0.10173339396715164, -0.06108398362994194, -0.01933593675494194, 0.01713867112994194, 0.06525878608226776, 0.10480956733226776, 0.134033203125, 0.14985351264476776, 0.14523924887180328, 0.12875975668430328, 0.09360351413488388, 0.0648193359375, 0.00747070275247097, -0.03515625, -0.08195800334215164, -0.12041015177965164, -0.14479979872703552, -0.16171874105930328, -0.14963378012180328, -0.12392577528953552, -0.08393554389476776, -0.03999023512005806, 0.01318359375, 0.06635741889476776, 0.10942382365465164, 0.15336914360523224, 0.17490233480930328, 0.17885741591453552, 0.16281737387180328, 0.12370605021715164, 0.07866210490465164, 0.02614746056497097, -0.02944335900247097, -0.085693359375, -0.12875975668430328, -0.15996094048023224, -0.18918456137180328, -0.17929686605930328, -0.14897461235523224, -0.10722655802965164, -0.0560302734375, 0.0010986328125, 0.06130370870232582, 0.11865234375, 0.16457518935203552, 0.18918456137180328, 0.2010498046875, 0.1834716796875, 0.14787597954273224, 0.098876953125, 0.03691406175494194, -0.02790527231991291, -0.08305663615465164, -0.13886718451976776, -0.17841796576976776, -0.20346678793430328, -0.20192870497703552, -0.17885741591453552, -0.1351318359375, -0.0758056640625, -0.01186523400247097, 0.06218261644244194, 0.11403807997703552, 0.17314451932907104, 0.20566405355930328, 0.21599119901657104, 0.20720213651657104, 0.17314451932907104, 0.12568359076976776, 0.05734863132238388, -0.012304686941206455, -0.07844237983226776, -0.13974608480930328, -0.18808592855930328, -0.22148436307907104, -0.22324217855930328, -0.20456542074680328, -0.15249022841453552, -0.09316405653953552, -0.02922363206744194, 0.05075683444738388, 0.11865234375, 0.17731933295726776, 0.21379393339157104, 0.23994140326976776, 0.22609862685203552, 0.19841307401657104, 0.142822265625, 0.0802001953125, 0.0017578124534338713, -0.07229004055261612, -0.13974608480930328, -0.19160155951976776, -0.228515625, -0.23554687201976776, -0.22434081137180328, -0.17995604872703552, -0.11271972209215164, -0.03977050632238388, 0.03229980543255806, 0.10744628310203552, 0.17292480170726776, 0.2208251953125, 0.25092771649360657, 0.2471923828125, 0.21137695014476776, 0.15754394233226776, 0.09492187201976776, 0.02285156212747097, -0.05449218675494194, -0.12546385824680328, -0.18413084745407104, -0.23752440512180328, -0.2493896484375, -0.23994140326976776, -0.191162109375, -0.13469238579273224, -0.05998535081744194, 0.0186767578125, 0.09602050483226776, 0.169189453125, 0.22280272841453552, 0.2518066465854645, 0.2583984434604645, 0.22609862685203552, 0.17490233480930328, 0.10898437350988388, 0.03647460788488388, -0.04548339545726776, -0.1131591796875, -0.18105468153953552, -0.22763670980930328, -0.25861814618110657, -0.2502685487270355, -0.21115721762180328, -0.15314941108226776, -0.07185058295726776, 0.009008788503706455, 0.0845947265625, 0.1593017578125, 0.22236327826976776, 0.2559814453125, 0.26740720868110657, 0.235107421875, 0.19028319418430328, 0.13271483778953552, 0.05295410007238388, -0.02922363206744194, -0.10151366889476776, -0.17775878310203552, -0.226318359375, -0.25971677899360657, -0.2529052793979645, -0.22148436307907104, -0.16325683891773224, -0.08701171725988388, -0.012524413876235485, 0.0670166015625, 0.14809569716453552, 0.21005858480930328, 0.24477538466453552, 0.27180173993110657, 0.24851073324680328, 0.208740234375, 0.14436034858226776, 0.06789550930261612, -0.01296386681497097, -0.08657225966453552, -0.164794921875, -0.2120361328125, -0.25004881620407104, -0.2568603456020355, -0.228515625, -0.18149413168430328, -0.107666015625, -0.0274658203125, 0.0538330078125, 0.1241455078125, 0.19709472358226776, 0.23972167074680328, 0.25751951336860657, 0.2562011778354645, 0.21225585043430328, 0.1527099609375, 0.08613280951976776, 0.008349609561264515, -0.07229004055261612, -0.14523924887180328, -0.20830076932907104, -0.25004881620407104, -0.2612548768520355, -0.23972167074680328, -0.19204100966453552, -0.116455078125, -0.04702148213982582, 0.03559570387005806, 0.11337890475988388, 0.18039549887180328, 0.23312987387180328, 0.2581787109375, 0.24916991591453552, 0.21489256620407104, 0.1680908203125, 0.094482421875, 0.02351074106991291, -0.0560302734375, -0.13271483778953552, -0.18984374403953552, -0.23576658964157104, -0.25224608182907104, -0.23005370795726776, -0.19797362387180328, -0.13315428793430328, -0.05559081956744194, 0.0186767578125, 0.09580077975988388, 0.15798339247703552, 0.21115721762180328, 0.23928222060203552, 0.24125975370407104, 0.22038573026657104, 0.17050780355930328, 0.10393065959215164, 0.03383788838982582, -0.04042968526482582, -0.11271972209215164, -0.16765137016773224, -0.21884764730930328, -0.230712890625, -0.22807615995407104, -0.191162109375, -0.13820800185203552, -0.06899414211511612, 0.00637206993997097, 0.07976073771715164, 0.14018554985523224, 0.18742674589157104, 0.230712890625, 0.23049315810203552, 0.21247558295726776, 0.1746826171875, 0.10832519084215164, 0.04548339545726776, -0.02834472618997097, -0.08920898288488388, -0.14985351264476776, -0.19577635824680328, -0.21445311605930328, -0.21049803495407104, -0.18830566108226776, -0.13974608480930328, -0.07272949069738388, -0.010107421316206455, 0.06020507588982582, 0.12150878459215164, 0.17490233480930328, 0.20852050185203552, 0.21796874701976776, 0.20368652045726776, 0.16171874105930328, 0.1175537109375, 0.054931640625, -0.012304686941206455, -0.07558593899011612, -0.134033203125, -0.17731933295726776, -0.19511717557907104, -0.19753417372703552, -0.18017578125, -0.13974608480930328, -0.07822265475988388, -0.0164794921875, 0.04702148213982582, 0.1021728515625, 0.15468749403953552, 0.1834716796875, 0.19379882514476776, 0.19028319418430328, 0.15974120795726776, 0.11162108927965164, 0.05998535081744194, -0.0010986328125, -0.05559081956744194, -0.10678710788488388, -0.14260253310203552, -0.173583984375, -0.182373046875, -0.16171874105930328, -0.12744140625, -0.0802001953125, -0.02592773362994194, 0.03251953050494194, 0.076904296875, 0.12370605021715164, 0.15292967855930328, 0.17182616889476776, 0.1669921875, 0.147216796875, 0.1109619140625, 0.05998535081744194, 0.01296386681497097, -0.04262695088982582, -0.08261718600988388, -0.12150878459215164, -0.14787597954273224, -0.1527099609375, -0.13930663466453552, -0.11689452826976776, -0.08305663615465164, -0.03251953050494194, 0.01735839806497097, 0.05646972358226776, 0.09404296427965164, 0.12392577528953552, 0.1373291015625, 0.1395263671875, 0.12612304091453552, 0.094482421875, 0.05646972358226776, 0.02241210825741291, -0.02285156212747097, -0.06657714396715164, -0.09733886271715164, -0.11557617038488388, -0.12172850966453552, -0.12041015177965164, -0.10393065959215164, -0.07404784858226776, -0.03691406175494194, 0.004833984188735485, 0.03867187350988388, 0.07470703125, 0.094482421875, 0.1109619140625, 0.11052245646715164, 0.10810546576976776, 0.07602538913488388, 0.05251464620232582, 0.0230712890625, -0.007910155691206455, -0.04306640475988388, -0.07382812350988388, -0.085693359375, -0.09052734076976776, -0.094482421875, -0.07954101264476776, -0.06130370870232582, -0.03691406175494194, -0.0041748047806322575, 0.02570800669491291, 0.05185546725988388, 0.07119140774011612, 0.0845947265625, 0.08415526896715164, 0.07470703125, 0.0626220703125, 0.04416503757238388, 0.0252685546875, 0.0008789062267169356, -0.0274658203125, -0.04548339545726776, -0.05339355394244194, -0.05778808519244194, -0.063720703125, -0.05844726413488388, -0.04196777194738388, -0.0208740234375, -0.005053710658103228, 0.00856933556497097, 0.02658691257238388, 0.03911132737994194, 0.04812011495232582, 0.050537109375, 0.04482421651482582, 0.03471679612994194, 0.02922363206744194, 0.015600585378706455, 0.0002197265566792339, -0.01076660118997097, -0.01845703087747097, -0.02219238132238388, -0.03208007663488388, -0.02548827975988388, -0.02131347544491291, -0.01296386681497097, -0.010327148251235485, 0.0004394531133584678, 0.00527343712747097, 0.0142822265625, 0.007250976283103228, 0.01823730394244194, 0.01669921912252903, 0.01735839806497097, 0.010986328125, 0.011425781063735485, 0.0006591796409338713, 0.0, -0.001538085867650807, 0.003076171735301614, 0.0002197265566792339, 0.0017578124534338713, 0.0041748047806322575, 0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, 0.0004394531133584678, 0.0008789062267169356, 0.0013183592818677425, 0.0006591796409338713, 0.0, -0.0017578124534338713, -0.0008789062267169356, 0.0010986328125, 0.0004394531133584678, 0.001977538922801614, 0.0028564452659338713, 0.0028564452659338713, 0.0008789062267169356, -0.0032958984375, -0.002197265625, 0.004833984188735485, 0.0054931640625, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, 0.00439453125, 0.001977538922801614, -0.0010986328125, 0.0008789062267169356, -0.0024169920943677425, 0.00527343712747097, -0.0006591796409338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0057128905318677425, 0.0, -0.0035156249068677425, 0.005932617001235485, 0.0008789062267169356, 0.0046142577193677425, 0.006152343470603228, 0.0013183592818677425, -0.001977538922801614, 0.001538085867650807, -0.0046142577193677425, 0.003735351376235485, 0.0004394531133584678, 0.008349609561264515, 0.0041748047806322575, -0.0046142577193677425, 0.00527343712747097, -0.0008789062267169356, -0.0013183592818677425, 0.0041748047806322575, 0.002197265625, -0.0006591796409338713, 0.00527343712747097, -0.0006591796409338713, 0.0002197265566792339, 0.0057128905318677425, 0.0010986328125, 0.001538085867650807, 0.003076171735301614, 0.0024169920943677425, 0.0017578124534338713, -0.0028564452659338713, 0.00439453125, -0.0024169920943677425, 0.0002197265566792339, 0.001538085867650807, -0.0010986328125, -0.0008789062267169356, 0.002636718563735485, 0.0057128905318677425, 0.00637206993997097, 0.002636718563735485, 0.00637206993997097, 0.007031249813735485, 0.003735351376235485, 0.003735351376235485, 0.00637206993997097, 0.001977538922801614, 0.0028564452659338713, -0.0046142577193677425, -0.0068115233443677425, -0.006152343470603228, -0.00439453125, 0.002197265625, 0.00856933556497097, 0.006152343470603228, 0.01779785193502903, 0.0252685546875, 0.02768554538488388, 0.03142089769244194, 0.02988281100988388, 0.01933593675494194, 0.02021484263241291, 0.0041748047806322575, -0.008129882626235485, -0.0186767578125, -0.03515625, -0.03999023512005806, -0.041748046875, -0.04658202826976776, -0.03911132737994194, -0.03208007663488388, -0.01076660118997097, 0.0035156249068677425, 0.02351074106991291, 0.03537597507238388, 0.05097655951976776, 0.0615234375, 0.06965331733226776, 0.0692138671875, 0.05339355394244194, 0.03339843824505806, 0.01516113243997097, -0.012524413876235485, -0.03273925557732582, -0.05866698920726776, -0.07229004055261612, -0.08107910305261612, -0.085693359375, -0.07426757365465164, -0.0604248046875, -0.02922363206744194, -0.0010986328125, 0.02241210825741291, 0.05778808519244194, 0.0845947265625, 0.10349120944738388, 0.10920409858226776, 0.10283202677965164, 0.0823974609375, 0.05866698920726776, 0.03383788838982582, -0.002197265625, -0.0406494140625, -0.07536620646715164, -0.1021728515625, -0.125244140625, -0.12348632514476776, -0.11491698771715164, -0.08481445163488388, -0.0516357421875, -0.009008788503706455, 0.03164062276482582, 0.07185058295726776, 0.10832519084215164, 0.129638671875, 0.138427734375, 0.14106445014476776, 0.12062987685203552, 0.08723144233226776, 0.04768066108226776, 0.003735351376235485, -0.04680175706744194, -0.08349609375, -0.12172850966453552, -0.14743651449680328, -0.15380859375, -0.14501953125, -0.120849609375, -0.07844237983226776, -0.03164062276482582, 0.02351074106991291, 0.07954101264476776, 0.12260741740465164, 0.15908202528953552, 0.17424315214157104, 0.1746826171875, 0.15952147543430328, 0.11843261122703552, 0.06943359225988388, 0.013623046688735485, -0.04372558370232582, -0.094482421875, -0.14545898139476776, -0.17885741591453552, -0.18764647841453552, -0.18479003012180328, -0.14743651449680328, -0.10744628310203552, -0.04438476264476776, 0.01911620981991291, 0.07492675632238388, 0.13557128608226776, 0.18017578125, 0.20632323622703552, 0.2120361328125, 0.19313964247703552, 0.14765624701976776, 0.0966796875, 0.03164062276482582, -0.03779296949505806, -0.09931640326976776, -0.15380859375, -0.19621580839157104, -0.21774901449680328, -0.20720213651657104, -0.17775878310203552, -0.13205565512180328, -0.07075195014476776, 0.0, 0.072509765625, 0.14040526747703552, 0.19160155951976776, 0.2230224609375, 0.23225097358226776, 0.21818846464157104, 0.1746826171875, 0.11865234375, 0.04987792670726776, -0.02504882775247097, -0.09953612834215164, -0.15754394233226776, -0.21730956435203552, -0.24477538466453552, -0.239501953125, -0.208740234375, -0.15249022841453552, -0.08986815810203552, -0.0076904296875, 0.0626220703125, 0.14084471762180328, 0.19621580839157104, 0.24785155057907104, 0.2605957090854645, 0.2493896484375, 0.20566405355930328, 0.14084471762180328, 0.06877440959215164, -0.0087890625, -0.08349609375, -0.15688475966453552, -0.2252197265625, -0.2529052793979645, -0.2671875059604645, -0.23225097358226776, -0.18193358182907104, -0.10898437350988388, -0.0318603515625, 0.054931640625, 0.13557128608226776, 0.21115721762180328, 0.2579589784145355, 0.27861326932907104, 0.2689453065395355, 0.22478026151657104, 0.16633300483226776, 0.09316405653953552, 0.009228515438735485, -0.0780029296875, -0.15666504204273224, -0.21950682997703552, -0.26960447430610657, -0.287841796875, -0.2603759765625, -0.20852050185203552, -0.13864745199680328, -0.0494384765625, 0.03889160230755806, 0.12326660007238388, 0.19687499105930328, 0.25532224774360657, 0.29487302899360657, 0.2880615293979645, 0.25202634930610657, 0.18764647841453552, 0.11711425334215164, 0.02724609337747097, -0.06613769382238388, -0.14699706435203552, -0.22104491293430328, -0.27290037274360657, -0.29157713055610657, -0.2770752012729645, -0.23093260824680328, -0.1571044921875, -0.0736083984375, 0.02460937388241291, 0.10920409858226776, 0.19357909262180328, 0.26081541180610657, 0.3008056581020355, 0.3067382872104645, 0.2660888731479645, 0.21533203125, 0.129638671875, 0.03933105245232582, -0.04658202826976776, -0.1307373046875, -0.21049803495407104, -0.26630857586860657, -0.29926756024360657, -0.29597166180610657, -0.24235838651657104, -0.1746826171875, -0.087890625, 0.0041748047806322575, 0.09689941257238388, 0.18259276449680328, 0.2535644471645355, 0.2990478575229645, 0.31201171875, 0.2854247987270355, 0.23356932401657104, 0.15446777641773224, 0.06437987834215164, -0.03273925557732582, -0.11623534560203552, -0.20148925483226776, -0.2689453065395355, -0.30036619305610657, -0.30366209149360657, -0.26433104276657104, -0.18852537870407104, -0.10898437350988388, -0.017578125, 0.08151855319738388, 0.16633300483226776, 0.23444823920726776, 0.2990478575229645, 0.3188232481479645, 0.2968505918979645, 0.23862303793430328, 0.17094725370407104, 0.08041992038488388, -0.008349609561264515, -0.10239257663488388, -0.1878662109375, -0.25114744901657104, -0.2935546934604645, -0.305419921875, -0.27180173993110657, -0.21577148139476776, -0.12370605021715164, -0.03801269456744194, 0.05756835639476776, 0.14414061605930328, 0.22258299589157104, 0.2825683653354645, 0.31245115399360657, 0.3019042909145355, 0.25114744901657104, 0.18764647841453552, 0.09382323920726776, 0.0041748047806322575, -0.08107910305261612, -0.16853027045726776, -0.2373046875, -0.283447265625, -0.3001464903354645, -0.274658203125, -0.221923828125, -0.14633788168430328, -0.0516357421875, 0.03647460788488388, 0.13029785454273224, 0.20895995199680328, 0.26806640625, 0.3019042909145355, 0.2953124940395355, 0.2605957090854645, 0.19401854276657104, 0.11887206882238388, 0.02263183519244194, -0.06174316257238388, -0.14985351264476776, -0.21335448324680328, -0.27070310711860657, -0.2920165956020355, -0.28059080243110657, -0.2252197265625, -0.15578612685203552, -0.068115234375, 0.02373046800494194, 0.10700683295726776, 0.18303221464157104, 0.24697265028953552, 0.2913574278354645, 0.2891601622104645, 0.252685546875, 0.19951170682907104, 0.12019042670726776, 0.04042968526482582, -0.04372558370232582, -0.12788085639476776, -0.19819335639476776, -0.2502685487270355, -0.2735595703125, -0.2649902403354645, -0.2296142578125, -0.16435547173023224, -0.08415526896715164, 0.007910155691206455, 0.08305663615465164, 0.16765137016773224, 0.22807615995407104, 0.26630857586860657, 0.2810302674770355, 0.248291015625, 0.19643554091453552, 0.1351318359375, 0.05581054463982582, -0.02460937388241291, -0.10371093451976776, -0.17666015028953552, -0.2296142578125, -0.2625732421875, -0.2513671815395355, -0.22763670980930328, -0.16567382216453552, -0.09096679091453552, -0.01164550706744194, 0.07185058295726776, 0.13754881918430328, 0.2032470703125, 0.2493896484375, 0.2515869140625, 0.24411620199680328, 0.19599609076976776, 0.13579101860523224, 0.06657714396715164, -0.01625976525247097, -0.08481445163488388, -0.14787597954273224, -0.20500487089157104, -0.23159179091453552, -0.23598632216453552, -0.20830076932907104, -0.15974120795726776, -0.0999755859375, -0.02944335900247097, 0.04833984375, 0.120849609375, 0.17094725370407104, 0.21357421576976776, 0.23708495497703552, 0.21884764730930328, 0.19072264432907104, 0.1351318359375, 0.06833495944738388, 0.0076904296875, -0.06657714396715164, -0.12722167372703552, -0.17512206733226776, -0.21027831733226776, -0.21884764730930328, -0.19753417372703552, -0.15864257514476776, -0.09865722060203552, -0.03054199181497097, 0.02878417819738388, 0.08701171725988388, 0.14414061605930328, 0.18852537870407104, 0.19775390625, 0.19753417372703552, 0.17402343451976776, 0.12612304091453552, 0.07448730617761612, 0.0120849609375, -0.04636230319738388, -0.09821777045726776, -0.1461181640625, -0.17182616889476776, -0.18413084745407104, -0.16611327230930328, -0.14128418266773224, -0.09711913764476776, -0.04130859300494194, 0.01735839806497097, 0.06767577677965164, 0.120849609375, 0.14897461235523224, 0.16874998807907104, 0.16896972060203552, 0.14545898139476776, 0.11403807997703552, 0.07492675632238388, 0.02329101413488388, -0.02944335900247097, -0.07338867336511612, -0.11030273139476776, -0.14128418266773224, -0.14809569716453552, -0.14106445014476776, -0.1241455078125, -0.08701171725988388, -0.03691406175494194, 0.009228515438735485, 0.04833984375, 0.09272460639476776, 0.11249999701976776, 0.13205565512180328, 0.13227538764476776, 0.11821288615465164, 0.1021728515625, 0.06306152045726776, 0.02658691257238388, -0.01713867112994194, -0.05141601338982582, -0.07734374701976776, -0.103271484375, -0.11359862983226776, -0.10612792521715164, -0.09184569865465164, -0.07119140774011612, -0.04240722581744194, -0.009008788503706455, 0.02658691257238388, 0.0648193359375, 0.08195800334215164, 0.09536132216453552, 0.09689941257238388, 0.09536132216453552, 0.0780029296875, 0.04548339545726776, 0.02153320237994194, -0.005932617001235485, -0.0296630859375, -0.05097655951976776, -0.06943359225988388, -0.07712402194738388, -0.076904296875, -0.06723632663488388, -0.04526367038488388, -0.02812499925494194, -0.0054931640625, 0.01516113243997097, 0.03471679612994194, 0.04592284932732582, 0.05756835639476776, 0.0604248046875, 0.05910644307732582, 0.04306640475988388, 0.02812499925494194, 0.01384277269244194, 0.003735351376235485, -0.014721679501235485, -0.02131347544491291, -0.03361816331744194, -0.03647460788488388, -0.03779296949505806, -0.03339843824505806, -0.01691894419491291, -0.009228515438735485, 0.0013183592818677425, 0.00856933556497097, 0.01582031138241291, 0.02131347544491291, 0.01823730394244194, 0.02065429650247097, 0.01735839806497097, 0.0142822265625, 0.01164550706744194, 0.007250976283103228, 0.001977538922801614, -0.0008789062267169356, 0.0010986328125, -0.002636718563735485, -0.00439453125, -0.002636718563735485, -0.0035156249068677425, -0.0024169920943677425, -0.0013183592818677425, 0.005932617001235485, 0.0013183592818677425, 0.001538085867650807, 0.006591796875, 0.00527343712747097, 0.003735351376235485, 0.002197265625, 0.0028564452659338713, 0.005932617001235485, 0.0002197265566792339, 0.00439453125, 0.002636718563735485, 0.003955077845603228, -0.002636718563735485, 0.002197265625, -0.0024169920943677425, -0.0013183592818677425, 0.005932617001235485, -0.001538085867650807, -0.0002197265566792339, 0.0006591796409338713, 0.0035156249068677425, -0.0013183592818677425, -0.0008789062267169356, 0.003076171735301614, 0.0032958984375, -0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0004394531133584678, 0.00966796837747097, 0.00439453125, -0.003735351376235485, 0.0, -0.0028564452659338713, 0.0008789062267169356, 0.0008789062267169356, 0.0008789062267169356, -0.002197265625, 0.0032958984375, 0.002197265625, 0.00527343712747097, -0.0006591796409338713, 0.0032958984375, 0.0054931640625, 0.0008789062267169356, 0.00637206993997097, 0.0032958984375, -0.0013183592818677425, -0.0004394531133584678, 0.001538085867650807, -0.0017578124534338713, 0.002636718563735485, 0.005053710658103228, -0.003955077845603228, 0.0054931640625, 0.0004394531133584678, 0.0, 0.0046142577193677425, -0.0024169920943677425, -0.0024169920943677425, 0.001538085867650807, 0.0, 0.0032958984375, 0.0028564452659338713, 0.004833984188735485, -0.003735351376235485, 0.00637206993997097, 0.0, -0.0010986328125, 0.006152343470603228, 0.001977538922801614, 0.0, 0.003955077845603228, 0.0032958984375, 0.0004394531133584678, -0.0035156249068677425, -0.0035156249068677425, -0.005932617001235485, -0.009228515438735485, -0.007031249813735485, -0.009008788503706455, -0.003955077845603228, 0.0013183592818677425, 0.0076904296875, 0.02175292931497097, 0.02702636644244194, 0.03164062276482582, 0.03669433668255806, 0.02570800669491291, 0.03076171875, 0.0164794921875, 0.010327148251235485, -0.01076660118997097, -0.01823730394244194, -0.03757324069738388, -0.04438476264476776, -0.05361327901482582, -0.05229492112994194, -0.04438476264476776, -0.03032226487994194, -0.02065429650247097, -0.0024169920943677425, 0.02460937388241291, 0.04196777194738388, 0.06130370870232582, 0.07646483927965164, 0.0802001953125, 0.07316894084215164, 0.06130370870232582, 0.04548339545726776, 0.0164794921875, -0.009008788503706455, -0.04086913913488388, -0.063720703125, -0.08305663615465164, -0.09711913764476776, -0.10129394382238388, -0.08613280951976776, -0.06723632663488388, -0.03977050632238388, -0.0087890625, 0.0340576171875, 0.06437987834215164, 0.098876953125, 0.1153564453125, 0.12832030653953552, 0.11843261122703552, 0.09689941257238388, 0.06767577677965164, 0.03757324069738388, -0.004833984188735485, -0.04877929389476776, -0.09206542372703552, -0.11953124403953552, -0.1439208984375, -0.14304198324680328, -0.13425292074680328, -0.10634765028953552, -0.06547851115465164, -0.01823730394244194, 0.03581542894244194, 0.07844237983226776, 0.12678222358226776, 0.15776367485523224, 0.1614990234375, 0.16171874105930328, 0.13710936903953552, 0.10261230170726776, 0.06086425483226776, -0.0002197265566792339, -0.05537109076976776, -0.09931640326976776, -0.1461181640625, -0.1768798828125, -0.1878662109375, -0.17578125, -0.13227538764476776, -0.0911865234375, -0.03317870944738388, 0.03208007663488388, 0.085693359375, 0.1439208984375, 0.18017578125, 0.20148925483226776, 0.1988525390625, 0.17929686605930328, 0.13359375298023224, 0.07888183742761612, 0.01823730394244194, -0.04921874776482582, -0.11579589545726776, -0.169189453125, -0.20786131918430328, -0.22280272841453552, -0.204345703125, -0.17753905057907104, -0.11799316108226776, -0.05185546725988388, 0.02395019493997097, 0.08503417670726776, 0.15183104574680328, 0.20895995199680328, 0.24038085341453552, 0.23972167074680328, 0.21796874701976776, 0.16853027045726776, 0.10920409858226776, 0.03383788838982582, -0.04416503757238388, -0.11579589545726776, -0.18061523139476776, -0.2252197265625, -0.24960936605930328, -0.25202634930610657, -0.21005858480930328, -0.14985351264476776, -0.07888183742761612, 0.009008788503706455, 0.087890625, 0.15666504204273224, 0.22126464545726776, 0.2647705078125, 0.27861326932907104, 0.2540039122104645, 0.20390623807907104, 0.129638671875, 0.05207519233226776, -0.02834472618997097, -0.10788574069738388, -0.18413084745407104, -0.2449951171875, -0.28190916776657104, -0.2832275331020355, -0.24763183295726776, -0.17644041776657104, -0.10634765028953552, -0.01274413987994194, 0.07932128757238388, 0.15952147543430328, 0.23115234076976776, 0.2748779356479645, 0.3062988221645355, 0.2858642637729645, 0.22763670980930328, 0.16611327230930328, 0.0823974609375, -0.015380859375, -0.09843749552965164, -0.18500976264476776, -0.257080078125, -0.2924560606479645, -0.30058592557907104, -0.27619627118110657, -0.208740234375, -0.12546385824680328, -0.03889160230755806, 0.05756835639476776, 0.15117187798023224, 0.22939452528953552, 0.2909179627895355, 0.3232177793979645, 0.30585935711860657, 0.2627929747104645, 0.186767578125, 0.10305175185203552, 0.008129882626235485, -0.08613280951976776, -0.17270506918430328, -0.24960936605930328, -0.30498045682907104, -0.3243164122104645, -0.2964111268520355, -0.24433593451976776, -0.15249022841453552, -0.06218261644244194, 0.03713378682732582, 0.14194335043430328, 0.22390136122703552, 0.2964111268520355, 0.3287109434604645, 0.333984375, 0.2869628965854645, 0.21621093153953552, 0.134033203125, 0.03361816331744194, -0.0692138671875, -0.16193847358226776, -0.25334471464157104, -0.3065185546875, -0.34211423993110657, -0.32453611493110657, -0.2605957090854645, -0.18105468153953552, -0.0780029296875, 0.02285156212747097, 0.12062987685203552, 0.2208251953125, 0.2953124940395355, 0.33837890625, 0.35881346464157104, 0.31464841961860657, 0.23906248807907104, 0.15249022841453552, 0.05185546725988388, -0.05031738057732582, -0.14523924887180328, -0.2449951171875, -0.30498045682907104, -0.3392578065395355, -0.3350830078125, -0.2810302674770355, -0.2021484375, -0.10283202677965164, 0.0013183592818677425, 0.10283202677965164, 0.19929198920726776, 0.283447265625, 0.34123533964157104, 0.3583739995956421, 0.3262939453125, 0.26301267743110657, 0.16940917074680328, 0.06767577677965164, -0.037353515625, -0.1329345703125, -0.22653807699680328, -0.2997070252895355, -0.34013670682907104, -0.3504638671875, -0.301025390625, -0.22478026151657104, -0.12612304091453552, -0.02548827975988388, 0.0823974609375, 0.18105468153953552, 0.26872557401657104, 0.33991697430610657, 0.3636474609375, 0.34233397245407104, 0.27619627118110657, 0.19731444120407104, 0.09536132216453552, -0.008129882626235485, -0.116455078125, -0.213134765625, -0.2902587950229645, -0.3403564393520355, -0.3526611328125, -0.318603515625, -0.23488768935203552, -0.14545898139476776, -0.03911132737994194, 0.06350097805261612, 0.16567382216453552, 0.2546630799770355, 0.3309082090854645, 0.3570556640625, 0.35200193524360657, 0.2898193299770355, 0.20368652045726776, 0.10964354872703552, 0.011206054128706455, -0.09624022990465164, -0.18632811307907104, -0.2755371034145355, -0.32805174589157104, -0.35002440214157104, -0.32080078125, -0.2502685487270355, -0.160400390625, -0.05888671800494194, 0.03955078125, 0.14699706435203552, 0.23247069120407104, 0.3076171875, 0.3427734375, 0.3469482362270355, 0.2942138612270355, 0.22258299589157104, 0.12678222358226776, 0.03142089769244194, -0.07053222507238388, -0.17116698622703552, -0.2524658143520355, -0.31025388836860657, -0.3394775390625, -0.32036131620407104, -0.2557617127895355, -0.17951659858226776, -0.07492675632238388, 0.02065429650247097, 0.12480468302965164, 0.217529296875, 0.28608396649360657, 0.3326660096645355, 0.33684080839157104, 0.2957519590854645, 0.22873534262180328, 0.14743651449680328, 0.04658202826976776, -0.0516357421875, -0.14501953125, -0.22412109375, -0.29179686307907104, -0.32585448026657104, -0.3175048828125, -0.25773924589157104, -0.18654784560203552, -0.09206542372703552, 0.00637206993997097, 0.09689941257238388, 0.182373046875, 0.25927734375, 0.30476072430610657, 0.32233884930610657, 0.2880615293979645, 0.23576658964157104, 0.14985351264476776, 0.06218261644244194, -0.02395019493997097, -0.11711425334215164, -0.20192870497703552, -0.2638916075229645, -0.29597166180610657, -0.30168455839157104, -0.25927734375, -0.18435057997703552, -0.10810546576976776, -0.01779785193502903, 0.07119140774011612, 0.164794921875, 0.235107421875, 0.27971190214157104, 0.2968505918979645, 0.27531737089157104, 0.23137205839157104, 0.15556640923023224, 0.076904296875, -0.01164550706744194, -0.09426268935203552, -0.17182616889476776, -0.2384033203125, -0.270263671875, -0.2770752012729645, -0.2515869140625, -0.19204100966453552, -0.11184081435203552, -0.03164062276482582, 0.052734375, 0.13864745199680328, 0.19731444120407104, 0.2548828125, 0.27202147245407104, 0.25532224774360657, 0.21774901449680328, 0.15666504204273224, 0.08349609375, 0.0068115233443677425, -0.07426757365465164, -0.14875487983226776, -0.20698241889476776, -0.24016112089157104, -0.2529052793979645, -0.2252197265625, -0.1790771484375, -0.1142578125, -0.03801269456744194, 0.03339843824505806, 0.10920409858226776, 0.16457518935203552, 0.21840819716453552, 0.2384033203125, 0.22939452528953552, 0.20061033964157104, 0.15227051079273224, 0.08701171725988388, 0.01669921912252903, -0.05119628831744194, -0.11601562052965164, -0.17006835341453552, -0.20390623807907104, -0.21005858480930328, -0.20654296875, -0.16501463949680328, -0.1142578125, -0.04460449144244194, 0.02219238132238388, 0.08107910305261612, 0.138427734375, 0.17841796576976776, 0.19775390625, 0.19467772543430328, 0.17204588651657104, 0.13601073622703552, 0.08151855319738388, 0.02790527231991291, -0.03823241963982582, -0.08415526896715164, -0.13425292074680328, -0.1636962890625, -0.17490233480930328, -0.17270506918430328, -0.14106445014476776, -0.0977783203125, -0.046142578125, 0.001977538922801614, 0.0538330078125, 0.09755858778953552, 0.13798828423023224, 0.16171874105930328, 0.15424804389476776, 0.140625, 0.11491698771715164, 0.07844237983226776, 0.03251953050494194, -0.0208740234375, -0.06130370870232582, -0.09689941257238388, -0.12106933444738388, -0.1351318359375, -0.13381347060203552, -0.11271972209215164, -0.0758056640625, -0.04130859300494194, -0.0035156249068677425, 0.03757324069738388, 0.07119140774011612, 0.09404296427965164, 0.11184081435203552, 0.11557617038488388, 0.10590820014476776, 0.08217773586511612, 0.05515136569738388, 0.02482910081744194, -0.008129882626235485, -0.03823241963982582, -0.05976562201976776, -0.0780029296875, -0.0867919921875, -0.08613280951976776, -0.08085937052965164, -0.05449218675494194, -0.0340576171875, -0.0041748047806322575, 0.019775390625, 0.0406494140625, 0.052734375, 0.0670166015625, 0.06306152045726776, 0.068115234375, 0.05624999850988388, 0.03383788838982582, 0.01625976525247097, -0.0004394531133584678, -0.013403319753706455, -0.02592773362994194, -0.04372558370232582, -0.04548339545726776, -0.04086913913488388, -0.03032226487994194, -0.02614746056497097, -0.019775390625, -0.007910155691206455, 0.0017578124534338713, 0.01801757700741291, 0.01845703087747097, 0.01911620981991291, 0.01889648474752903, 0.0142822265625, 0.02109374850988388, 0.013623046688735485, 0.0024169920943677425, 0.005932617001235485, 0.005053710658103228, 0.0046142577193677425, -0.003955077845603228, -0.001977538922801614, -0.00439453125, 0.0024169920943677425, -0.001977538922801614, 0.00439453125, 0.0024169920943677425, 0.00439453125, 0.0017578124534338713, 0.0006591796409338713, -0.0004394531133584678, 0.0041748047806322575, 0.0032958984375, 0.002636718563735485, 0.003955077845603228, 0.0028564452659338713, -0.0006591796409338713, 0.003955077845603228, -0.002197265625, 0.0004394531133584678, 0.00527343712747097, 0.0, -0.0024169920943677425, 0.0006591796409338713, 0.004833984188735485, 0.004833984188735485, -0.0004394531133584678, -0.001977538922801614, 0.001538085867650807, 0.002197265625, -0.002636718563735485, 0.003076171735301614, -0.001977538922801614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.007250976283103228, 0.0076904296875, -0.0017578124534338713, 0.005932617001235485, 0.0035156249068677425, 0.005053710658103228, 0.00637206993997097, 0.002197265625, -0.002636718563735485, 0.0057128905318677425, 0.0013183592818677425, -0.0010986328125, 0.002636718563735485, 0.0002197265566792339, -0.003735351376235485, 0.0041748047806322575, -0.0008789062267169356, -0.0041748047806322575, 0.007031249813735485, 0.0, -0.0006591796409338713, 0.003735351376235485, -0.0046142577193677425, -0.002197265625, 0.0024169920943677425, 0.001977538922801614, -0.001538085867650807, 0.00527343712747097, 0.001977538922801614, -0.0010986328125, -0.0013183592818677425, 0.006152343470603228, 0.0046142577193677425, 0.0057128905318677425, 0.0035156249068677425, 0.003076171735301614, 0.0024169920943677425, -0.0010986328125, 0.00637206993997097, 0.003955077845603228, 0.0013183592818677425, 0.008349609561264515, 0.0068115233443677425, 0.005053710658103228, 0.0, 0.003955077845603228, -0.0010986328125, 0.0035156249068677425, -0.0046142577193677425, -0.0017578124534338713, -0.006591796875, -0.00966796837747097, -0.010327148251235485, 0.001977538922801614, -0.0010986328125, 0.012524413876235485, 0.02548827975988388, 0.03251953050494194, 0.03339843824505806, 0.03383788838982582, 0.03713378682732582, 0.02988281100988388, 0.01713867112994194, 0.01296386681497097, -0.010986328125, -0.02592773362994194, -0.04196777194738388, -0.05581054463982582, -0.06218261644244194, -0.06306152045726776, -0.0560302734375, -0.03581542894244194, -0.01604003831744194, 0.007250976283103228, 0.03010253794491291, 0.05581054463982582, 0.07075195014476776, 0.08503417670726776, 0.08481445163488388, 0.085693359375, 0.07492675632238388, 0.0538330078125, 0.02285156212747097, -0.010986328125, -0.04152831807732582, -0.07272949069738388, -0.09909667819738388, -0.10942382365465164, -0.10832519084215164, -0.09931640326976776, -0.07602538913488388, -0.04570312425494194, -0.00527343712747097, 0.0340576171875, 0.07119140774011612, 0.11228027194738388, 0.12700195610523224, 0.14238281548023224, 0.13908691704273224, 0.11030273139476776, 0.0845947265625, 0.03757324069738388, -0.0041748047806322575, -0.05405273288488388, -0.103271484375, -0.13491210341453552, -0.15776367485523224, -0.1614990234375, -0.1527099609375, -0.11733397841453552, -0.07316894084215164, -0.02197265625, 0.03823241963982582, 0.09360351413488388, 0.13820800185203552, 0.17556151747703552, 0.18874511122703552, 0.1834716796875, 0.15952147543430328, 0.12041015177965164, 0.06218261644244194, 0.0032958984375, -0.0582275390625, -0.11909179389476776, -0.16611327230930328, -0.19423827528953552, -0.20830076932907104, -0.18984374403953552, -0.15886230766773224, -0.10634765028953552, -0.03471679612994194, 0.02988281100988388, 0.09953612834215164, 0.16083984076976776, 0.20830076932907104, 0.2318115234375, 0.22895507514476776, 0.20192870497703552, 0.15183104574680328, 0.08723144233226776, 0.015380859375, -0.05141601338982582, -0.12678222358226776, -0.1900634765625, -0.23466795682907104, -0.24960936605930328, -0.2362060546875, -0.20126952230930328, -0.138427734375, -0.06328124552965164, 0.0208740234375, 0.10019531100988388, 0.17292480170726776, 0.22807615995407104, 0.2704834043979645, 0.2777343690395355, 0.23972167074680328, 0.191162109375, 0.11843261122703552, 0.04328612983226776, -0.04460449144244194, -0.13117675483226776, -0.20017088949680328, -0.2581787109375, -0.28498533368110657, -0.2766357362270355, -0.23225097358226776, -0.17336425185203552, -0.08371581882238388, 0.003955077845603228, 0.09711913764476776, 0.17622070014476776, 0.24697265028953552, 0.29443359375, 0.3131103515625, 0.28564453125, 0.23049315810203552, 0.14985351264476776, 0.06328124552965164, -0.03361816331744194, -0.11491698771715164, -0.20412597060203552, -0.26762694120407104, -0.3111328184604645, -0.309814453125, -0.26762694120407104, -0.20170897245407104, -0.11447753757238388, -0.0164794921875, 0.08415526896715164, 0.1790771484375, 0.25664061307907104, 0.314208984375, 0.34321287274360657, 0.32014158368110657, 0.26213377714157104, 0.18698729574680328, 0.08833007514476776, -0.00966796837747097, -0.10415038466453552, -0.19841307401657104, -0.2781738340854645, -0.3249755799770355, -0.34101560711860657, -0.3065185546875, -0.23664550483226776, -0.14040526747703552, -0.04196777194738388, 0.06525878608226776, 0.16347655653953552, 0.25532224774360657, 0.32805174589157104, 0.36848142743110657, 0.34650877118110657, 0.296630859375, 0.21467284858226776, 0.11667480319738388, 0.007910155691206455, -0.09228515625, -0.18984374403953552, -0.27861326932907104, -0.3438720703125, -0.37067869305610657, -0.3414550721645355, -0.2669677734375, -0.17226561903953552, -0.0626220703125, 0.04438476264476776, 0.15073241293430328, 0.2540039122104645, 0.32453611493110657, 0.3825439214706421, 0.36958006024360657, 0.32233884930610657, 0.23906248807907104, 0.14963378012180328, 0.0318603515625, -0.07316894084215164, -0.17731933295726776, -0.26982420682907104, -0.34013670682907104, -0.3812255859375, -0.3594726324081421, -0.298828125, -0.19753417372703552, -0.085693359375, 0.02197265625, 0.13315428793430328, 0.24301756918430328, 0.32958984375, 0.38188475370407104, 0.388916015625, 0.3480468690395355, 0.26872557401657104, 0.17578125, 0.0648193359375, -0.05339355394244194, -0.16633300483226776, -0.2678466737270355, -0.34650877118110657, -0.39374998211860657, -0.37968748807907104, -0.31640625, -0.23005370795726776, -0.11447753757238388, 0.0024169920943677425, 0.11601562052965164, 0.22214354574680328, 0.32080078125, 0.3858398199081421, 0.40825194120407104, 0.3682616949081421, 0.2858642637729645, 0.18940429389476776, 0.08371581882238388, -0.02702636644244194, -0.140625, -0.2518066465854645, -0.3342041075229645, -0.3854003846645355, -0.4031982421875, -0.34123533964157104, -0.2471923828125, -0.1417236328125, -0.03098144382238388, 0.08986815810203552, 0.19973143935203552, 0.2977294921875, 0.384521484375, 0.41154783964157104, 0.38056638836860657, 0.31376951932907104, 0.21708983182907104, 0.10854491591453552, -0.0098876953125, -0.12106933444738388, -0.23225097358226776, -0.32124021649360657, -0.3836425542831421, -0.40473631024360657, -0.3515625, -0.26872557401657104, -0.16457518935203552, -0.0494384765625, 0.0714111328125, 0.18061523139476776, 0.292236328125, 0.36210936307907104, 0.4161621034145355, 0.3944091796875, 0.3315673768520355, 0.24104003608226776, 0.13249512016773224, 0.0142822265625, -0.09799804538488388, -0.21159666776657104, -0.29509276151657104, -0.37617185711860657, -0.39374998211860657, -0.3605712652206421, -0.28190916776657104, -0.18083494901657104, -0.06569824367761612, 0.04460449144244194, 0.16413573920726776, 0.25773924589157104, 0.34431150555610657, 0.39067381620407104, 0.3988037109375, 0.3304687440395355, 0.24477538466453552, 0.15183104574680328, 0.03515625, -0.07558593899011612, -0.18742674589157104, -0.27619627118110657, -0.35639646649360657, -0.38847655057907104, -0.36979979276657104, -0.29157713055610657, -0.2010498046875, -0.08767089247703552, 0.02219238132238388, 0.13996581733226776, 0.23972167074680328, 0.3249755799770355, 0.3766113221645355, 0.3856201171875, 0.3342041075229645, 0.26103514432907104, 0.17006835341453552, 0.05207519233226776, -0.05185546725988388, -0.16062010824680328, -0.252685546875, -0.3227783143520355, -0.371337890625, -0.3601318299770355, -0.305419921875, -0.20742186903953552, -0.10458984225988388, -0.0017578124534338713, 0.112060546875, 0.21533203125, 0.2975097596645355, 0.35112303495407104, 0.3724365234375, 0.3326660096645355, 0.25664061307907104, 0.1702880859375, 0.07119140774011612, -0.02812499925494194, -0.13029785454273224, -0.22565917670726776, -0.3043212890625, -0.34211423993110657, -0.3438720703125, -0.29729002714157104, -0.21928709745407104, -0.11601562052965164, -0.019775390625, 0.085693359375, 0.1834716796875, 0.26520994305610657, 0.322998046875, 0.34211423993110657, 0.31926268339157104, 0.252685546875, 0.17644041776657104, 0.09030761569738388, -0.008349609561264515, -0.10480956733226776, -0.19731444120407104, -0.263671875, -0.3117919862270355, -0.3240966796875, -0.2847656309604645, -0.21533203125, -0.12832030653953552, -0.03713378682732582, 0.06503906100988388, 0.14985351264476776, 0.23115234076976776, 0.2902587950229645, 0.3087158203125, 0.3023437559604645, 0.24477538466453552, 0.17863768339157104, 0.0966796875, 0.0006591796409338713, -0.08591308444738388, -0.15952147543430328, -0.2340087890625, -0.2748779356479645, -0.2920165956020355, -0.2616943418979645, -0.213134765625, -0.13447265326976776, -0.04636230319738388, 0.03889160230755806, 0.1219482421875, 0.19709472358226776, 0.24895018339157104, 0.27202147245407104, 0.2678466737270355, 0.22763670980930328, 0.1658935546875, 0.09821777045726776, 0.01823730394244194, -0.05998535081744194, -0.13469238579273224, -0.19313964247703552, -0.23818358778953552, -0.252685546875, -0.235107421875, -0.19072264432907104, -0.12150878459215164, -0.05361327901482582, 0.02263183519244194, 0.090087890625, 0.15139159560203552, 0.20236815512180328, 0.230712890625, 0.23444823920726776, 0.19797362387180328, 0.1527099609375, 0.09030761569738388, 0.02878417819738388, -0.03977050632238388, -0.10041503608226776, -0.14699706435203552, -0.18259276449680328, -0.1988525390625, -0.18918456137180328, -0.16303710639476776, -0.11228027194738388, -0.05866698920726776, 0.00856933556497097, 0.06525878608226776, 0.11843261122703552, 0.16523437201976776, 0.17731933295726776, 0.18083494901657104, 0.16962890326976776, 0.13425292074680328, 0.08063964545726776, 0.03383788838982582, -0.019775390625, -0.06767577677965164, -0.11271972209215164, -0.13776855170726776, -0.15512694418430328, -0.15183104574680328, -0.12568359076976776, -0.09228515625, -0.04570312425494194, -0.0024169920943677425, 0.03801269456744194, 0.08635253459215164, 0.11447753757238388, 0.1351318359375, 0.13601073622703552, 0.12172850966453552, 0.10041503608226776, 0.06877440959215164, 0.02922363206744194, -0.002197265625, -0.04482421651482582, -0.0703125, -0.08876952528953552, -0.09953612834215164, -0.10151366889476776, -0.08767089247703552, -0.06064452975988388, -0.0340576171875, -0.00966796837747097, 0.0208740234375, 0.05229492112994194, 0.06284179538488388, 0.07382812350988388, 0.08283691108226776, 0.07053222507238388, 0.06086425483226776, 0.03911132737994194, 0.02329101413488388, 0.0013183592818677425, -0.01779785193502903, -0.02988281100988388, -0.04812011495232582, -0.04658202826976776, -0.04965820163488388, -0.04306640475988388, -0.028564453125, -0.02021484263241291, -0.007910155691206455, 0.0035156249068677425, 0.017578125, 0.01779785193502903, 0.02988281100988388, 0.02263183519244194, 0.02065429650247097, 0.01911620981991291, 0.013403319753706455, 0.011425781063735485, 0.003076171735301614, 0.0002197265566792339, 0.002197265625, -0.0010986328125, -0.003955077845603228, 0.0046142577193677425, -0.005053710658103228, 0.0006591796409338713, 0.002636718563735485, 0.004833984188735485, 0.005932617001235485, 0.0017578124534338713, 0.00439453125, 0.0068115233443677425, 0.0032958984375, 0.0008789062267169356, 0.0032958984375, 0.0017578124534338713, -0.0002197265566792339, -0.003955077845603228, -0.0024169920943677425, -0.003735351376235485, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, 0.0041748047806322575, 0.00527343712747097, 0.003955077845603228, -0.0041748047806322575, 0.002636718563735485, 0.003076171735301614, -0.0002197265566792339, -0.0008789062267169356, 0.00747070275247097, 0.0008789062267169356, 0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003076171735301614, 0.0024169920943677425, 0.001977538922801614, 0.0008789062267169356, 0.0057128905318677425, -0.0008789062267169356, 0.003955077845603228, 0.002197265625, -0.003076171735301614, -0.0006591796409338713, 0.007031249813735485, -0.0006591796409338713, 0.003076171735301614, 0.0046142577193677425, 0.0006591796409338713, 0.006152343470603228, 0.0017578124534338713, 0.0076904296875, -0.0032958984375, 0.007031249813735485, -0.001977538922801614, 0.003735351376235485, 0.0, 0.005932617001235485, 0.004833984188735485, 0.0032958984375, 0.001977538922801614, 0.002197265625, -0.0006591796409338713, 0.0032958984375, 0.0004394531133584678, 0.0004394531133584678, 0.0032958984375, 0.0041748047806322575, -0.003076171735301614, 0.006152343470603228, -0.0028564452659338713, 0.004833984188735485, -0.0006591796409338713, 0.00439453125, 0.002636718563735485, 0.006152343470603228, 0.0010986328125, 0.0017578124534338713, 0.004833984188735485, 0.0, -0.0028564452659338713, 0.0006591796409338713, -0.0041748047806322575, -0.0057128905318677425, -0.011425781063735485, -0.011206054128706455, -0.01076660118997097, -0.0041748047806322575, 0.009448242373764515, 0.010327148251235485, 0.0252685546875, 0.02768554538488388, 0.03999023512005806, 0.0439453125, 0.041748046875, 0.03933105245232582, 0.01713867112994194, 0.01164550706744194, -0.0142822265625, -0.02768554538488388, -0.0406494140625, -0.05756835639476776, -0.06679687649011612, -0.06987304240465164, -0.0560302734375, -0.04746093600988388, -0.02153320237994194, 0.005053710658103228, 0.03010253794491291, 0.06218261644244194, 0.08393554389476776, 0.09184569865465164, 0.10590820014476776, 0.09711913764476776, 0.0845947265625, 0.0582275390625, 0.01889648474752903, -0.01406249962747097, -0.05009765550494194, -0.08107910305261612, -0.1109619140625, -0.1263427734375, -0.12392577528953552, -0.10744628310203552, -0.08173827826976776, -0.04855956882238388, -0.00856933556497097, 0.03779296949505806, 0.07998047024011612, 0.12041015177965164, 0.14238281548023224, 0.1571044921875, 0.15007324516773224, 0.1285400390625, 0.09580077975988388, 0.046142578125, -0.005932617001235485, -0.0648193359375, -0.11447753757238388, -0.15183104574680328, -0.17819823324680328, -0.1845703125, -0.16215820610523224, -0.1318359375, -0.08261718600988388, -0.02438964694738388, 0.04416503757238388, 0.10393065959215164, 0.15117187798023224, 0.19204100966453552, 0.21027831733226776, 0.20698241889476776, 0.17336425185203552, 0.12919922173023224, 0.06767577677965164, 0.001977538922801614, -0.06328124552965164, -0.12875975668430328, -0.18215331435203552, -0.22214354574680328, -0.23203124105930328, -0.21840819716453552, -0.1724853515625, -0.11557617038488388, -0.041748046875, 0.03361816331744194, 0.10634765028953552, 0.18039549887180328, 0.228515625, 0.2612548768520355, 0.261474609375, 0.22785644233226776, 0.17226561903953552, 0.1021728515625, 0.01955566368997097, -0.05866698920726776, -0.13557128608226776, -0.20083007216453552, -0.25642088055610657, -0.27619627118110657, -0.2660888731479645, -0.21533203125, -0.15534667670726776, -0.07053222507238388, 0.01779785193502903, 0.11184081435203552, 0.191162109375, 0.2551025450229645, 0.3030029237270355, 0.30256345868110657, 0.2671875059604645, 0.2120361328125, 0.1373291015625, 0.0494384765625, -0.04482421651482582, -0.14106445014476776, -0.2208251953125, -0.2865234315395355, -0.3131103515625, -0.31464841961860657, -0.261474609375, -0.18918456137180328, -0.09602050483226776, 0.003076171735301614, 0.10107421875, 0.19401854276657104, 0.2759765684604645, 0.3218994140625, 0.3394775390625, 0.31486815214157104, 0.24785155057907104, 0.17446288466453552, 0.06833495944738388, -0.02900390513241291, -0.13029785454273224, -0.22434081137180328, -0.29619139432907104, -0.35090330243110657, -0.3451904058456421, -0.301025390625, -0.2274169921875, -0.12436523288488388, -0.01955566368997097, 0.08635253459215164, 0.19138182699680328, 0.2825683653354645, 0.3425537049770355, 0.37858885526657104, 0.3502441346645355, 0.28498533368110657, 0.20061033964157104, 0.10546875, -0.007031249813735485, -0.11821288615465164, -0.21357421576976776, -0.305419921875, -0.3645263612270355, -0.38232421875, -0.34123533964157104, -0.26191404461860657, -0.16171874105930328, -0.04702148213982582, 0.06613769382238388, 0.17292480170726776, 0.27531737089157104, 0.3550781011581421, 0.4007812440395355, 0.3930908143520355, 0.32805174589157104, 0.23291015625, 0.13754881918430328, 0.015600585378706455, -0.10063476115465164, -0.213134765625, -0.30937498807907104, -0.3768310546875, -0.40363767743110657, -0.3779296875, -0.29443359375, -0.18764647841453552, -0.07272949069738388, 0.04262695088982582, 0.15886230766773224, 0.2779541015625, 0.36320799589157104, 0.41791990399360657, 0.4111083745956421, 0.36298826336860657, 0.26850584149360657, 0.160400390625, 0.046142578125, -0.07229004055261612, -0.19621580839157104, -0.2990478575229645, -0.38627928495407104, -0.42253416776657104, -0.4100097417831421, -0.3254150450229645, -0.22609862685203552, -0.10283202677965164, 0.02482910081744194, 0.1461181640625, 0.2627929747104645, 0.3634277284145355, 0.4295654296875, 0.4425292909145355, 0.38671875, 0.29729002714157104, 0.18742674589157104, 0.07272949069738388, -0.0516357421875, -0.17512206733226776, -0.27971190214157104, -0.3779296875, -0.4352782964706421, -0.4227539002895355, -0.3546386659145355, -0.24785155057907104, -0.12436523288488388, -0.00856933556497097, 0.12832030653953552, 0.2406005859375, 0.3427734375, 0.42561033368110657, 0.44978025555610657, 0.41572263836860657, 0.32036131620407104, 0.21533203125, 0.08657225966453552, -0.02680663950741291, -0.15314941108226776, -0.26411131024360657, -0.3638671636581421, -0.4352782964706421, -0.4436279237270355, -0.37639158964157104, -0.27685546875, -0.15117187798023224, -0.02944335900247097, 0.09821777045726776, 0.21840819716453552, 0.3260742127895355, 0.41374510526657104, 0.44978025555610657, 0.4308837652206421, 0.34211423993110657, 0.2362060546875, 0.12238769233226776, -0.0054931640625, -0.12766112387180328, -0.24213866889476776, -0.3451904058456421, -0.43022459745407104, -0.44450682401657104, -0.39704588055610657, -0.29707029461860657, -0.18083494901657104, -0.0516357421875, 0.07207030802965164, 0.19819335639476776, 0.31376951932907104, 0.40253904461860657, 0.44758298993110657, 0.43352049589157104, 0.36650389432907104, 0.2601562440395355, 0.14040526747703552, 0.0230712890625, -0.10063476115465164, -0.22763670980930328, -0.33222654461860657, -0.4095703065395355, -0.44340819120407104, -0.40363767743110657, -0.32014158368110657, -0.19973143935203552, -0.08173827826976776, 0.05185546725988388, 0.169189453125, 0.28410643339157104, 0.38957518339157104, 0.4359374940395355, 0.44230955839157104, 0.3779296875, 0.27509763836860657, 0.15842284262180328, 0.03757324069738388, -0.08195800334215164, -0.20148925483226776, -0.30607908964157104, -0.39396971464157104, -0.43022459745407104, -0.4130859375, -0.32563474774360657, -0.22038573026657104, -0.09602050483226776, 0.02878417819738388, 0.14501953125, 0.2548828125, 0.35991209745407104, 0.42033690214157104, 0.4370361268520355, 0.38386228680610657, 0.28278806805610657, 0.1790771484375, 0.05756835639476776, -0.05954589694738388, -0.17072753608226776, -0.27861326932907104, -0.3700195252895355, -0.41352537274360657, -0.39814451336860657, -0.33354490995407104, -0.2318115234375, -0.12436523288488388, -0.001538085867650807, 0.12348632514476776, 0.23049315810203552, 0.3240966796875, 0.39374998211860657, 0.4106689393520355, 0.37836912274360657, 0.287841796875, 0.19533690810203552, 0.07976073771715164, -0.03559570387005806, -0.14238281548023224, -0.25048828125, -0.33112791180610657, -0.37946775555610657, -0.3869384527206421, -0.33464354276657104, -0.24565428495407104, -0.13007812201976776, -0.019775390625, 0.09162597358226776, 0.19687499105930328, 0.29157713055610657, 0.3614501953125, 0.3832031190395355, 0.3649657964706421, 0.28630369901657104, 0.1988525390625, 0.0955810546875, -0.01494140550494194, -0.11953124403953552, -0.21994628012180328, -0.3008056581020355, -0.35222166776657104, -0.36079099774360657, -0.3249755799770355, -0.24367675185203552, -0.14326171576976776, -0.03713378682732582, 0.07426757365465164, 0.17138671875, 0.2557617127895355, 0.32124021649360657, 0.3502441346645355, 0.33771970868110657, 0.2759765684604645, 0.19511717557907104, 0.10832519084215164, 0.008349609561264515, -0.09272460639476776, -0.17951659858226776, -0.2603759765625, -0.3133300840854645, -0.3221191465854645, -0.29289549589157104, -0.2296142578125, -0.1395263671875, -0.05361327901482582, 0.04680175706744194, 0.13601073622703552, 0.21774901449680328, 0.2777343690395355, 0.3117919862270355, 0.30366209149360657, 0.25927734375, 0.1845703125, 0.10854491591453552, 0.02065429650247097, -0.07053222507238388, -0.1439208984375, -0.21818846464157104, -0.26850584149360657, -0.2865234315395355, -0.26520994305610657, -0.21137695014476776, -0.14304198324680328, -0.05888671800494194, 0.0164794921875, 0.11074218153953552, 0.1746826171875, 0.23422850668430328, 0.25971677899360657, 0.25993651151657104, 0.23005370795726776, 0.173583984375, 0.10854491591453552, 0.032958984375, -0.04306640475988388, -0.1131591796875, -0.17622070014476776, -0.21665038168430328, -0.23247069120407104, -0.22543944418430328, -0.18193358182907104, -0.1318359375, -0.06525878608226776, 0.002636718563735485, 0.0692138671875, 0.13820800185203552, 0.18281249701976776, 0.20478515326976776, 0.20917968451976776, 0.19160155951976776, 0.15183104574680328, 0.094482421875, 0.02944335900247097, -0.028564453125, -0.0802001953125, -0.12326660007238388, -0.16677245497703552, -0.17402343451976776, -0.17050780355930328, -0.142822265625, -0.1043701171875, -0.0615234375, -0.0054931640625, 0.04438476264476776, 0.08876952528953552, 0.12612304091453552, 0.1494140625, 0.151611328125, 0.13337402045726776, 0.11030273139476776, 0.07756347209215164, 0.03603515401482582, -0.008349609561264515, -0.05295410007238388, -0.08701171725988388, -0.10810546576976776, -0.11184081435203552, -0.11491698771715164, -0.0999755859375, -0.07602538913488388, -0.03911132737994194, -0.005932617001235485, 0.02065429650247097, 0.05229492112994194, 0.07426757365465164, 0.085693359375, 0.09272460639476776, 0.0802001953125, 0.06306152045726776, 0.04965820163488388, 0.02329101413488388, 0.0046142577193677425, -0.01889648474752903, -0.03537597507238388, -0.05559081956744194, -0.05317382514476776, -0.05778808519244194, -0.041748046875, -0.03801269456744194, -0.01779785193502903, -0.0054931640625, 0.009008788503706455, 0.02065429650247097, 0.02900390513241291, 0.03339843824505806, 0.0274658203125, 0.02285156212747097, 0.02263183519244194, 0.007910155691206455, 0.0028564452659338713, 0.00439453125, 0.0, 0.0006591796409338713, -0.0028564452659338713, 0.003076171735301614, -0.00527343712747097, 0.003076171735301614, 0.004833984188735485, 0.0017578124534338713, 0.0046142577193677425, 0.00527343712747097, 0.0057128905318677425, 0.0057128905318677425, 0.0, 0.004833984188735485, 0.0046142577193677425, 0.007910155691206455, -0.001538085867650807, 0.0013183592818677425, 0.0008789062267169356, -0.0006591796409338713, 0.0035156249068677425, -0.0008789062267169356, -0.00439453125, -0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, 0.0010986328125, 0.003955077845603228, 0.0002197265566792339, 0.0006591796409338713, 0.0046142577193677425, -0.002197265625, 0.0054931640625, 0.0017578124534338713, 0.0068115233443677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.25 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.001538085867650807, 0.002197265625, 0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, 0.00527343712747097, 0.0032958984375, 0.0006591796409338713, 0.003955077845603228, -0.0008789062267169356, -0.0008789062267169356, 0.0013183592818677425, 0.0054931640625, -0.001538085867650807, 0.003955077845603228, 0.00439453125, 0.006152343470603228, -0.0006591796409338713, -0.0008789062267169356, 0.003955077845603228, -0.0024169920943677425, 0.00439453125, 0.005932617001235485, 0.0, 0.0, 0.0032958984375, 0.0035156249068677425, 0.0017578124534338713, 0.0013183592818677425, 0.006152343470603228, 0.00527343712747097, 0.0046142577193677425, 0.0006591796409338713, 0.007910155691206455, -0.0024169920943677425, -0.0032958984375, -0.001538085867650807, 0.0002197265566792339, 0.00527343712747097, 0.002636718563735485, 0.003735351376235485, -0.001977538922801614, 0.004833984188735485, 0.004833984188735485, -0.0024169920943677425, -0.002197265625, 0.005932617001235485, -0.002197265625, -0.002197265625, -0.0068115233443677425, -0.01669921912252903, -0.014721679501235485, -0.0120849609375, -0.00527343712747097, 0.00527343712747097, 0.01845703087747097, 0.02175292931497097, 0.03208007663488388, 0.04218749701976776, 0.04328612983226776, 0.04108886793255806, 0.03669433668255806, 0.02263183519244194, 0.00856933556497097, -0.010327148251235485, -0.028564453125, -0.05646972358226776, -0.06328124552965164, -0.06833495944738388, -0.07602538913488388, -0.06459961086511612, -0.05427245795726776, -0.02570800669491291, 0.00527343712747097, 0.02988281100988388, 0.05954589694738388, 0.09206542372703552, 0.10964354872703552, 0.11293944716453552, 0.10986328125, 0.0911865234375, 0.059326171875, 0.024169921875, -0.0164794921875, -0.05734863132238388, -0.0867919921875, -0.120849609375, -0.13117675483226776, -0.13315428793430328, -0.12216796725988388, -0.09162597358226776, -0.05427245795726776, -0.00527343712747097, 0.05031738057732582, 0.09470214694738388, 0.13095702230930328, 0.169189453125, 0.17556151747703552, 0.16303710639476776, 0.13908691704273224, 0.10063476115465164, 0.046142578125, -0.010327148251235485, -0.06459961086511612, -0.123046875, -0.16457518935203552, -0.19204100966453552, -0.19533690810203552, -0.18281249701976776, -0.14150390028953552, -0.08635253459215164, -0.02373046800494194, 0.04855956882238388, 0.11557617038488388, 0.17270506918430328, 0.21115721762180328, 0.23576658964157104, 0.23334960639476776, 0.199951171875, 0.13930663466453552, 0.08173827826976776, 0.009228515438735485, -0.07316894084215164, -0.1417236328125, -0.20170897245407104, -0.24433593451976776, -0.25773924589157104, -0.24257811903953552, -0.19577635824680328, -0.12260741740465164, -0.04548339545726776, 0.03361816331744194, 0.11491698771715164, 0.19687499105930328, 0.24895018339157104, 0.2821289002895355, 0.2843261659145355, 0.24675291776657104, 0.1856689453125, 0.10920409858226776, 0.02900390513241291, -0.06350097805261612, -0.14875487983226776, -0.22675780951976776, -0.2799316346645355, -0.30366209149360657, -0.28959959745407104, -0.24213866889476776, -0.16721190512180328, -0.07998047024011612, 0.0208740234375, 0.11579589545726776, 0.20786131918430328, 0.2799316346645355, 0.32124021649360657, 0.3370605409145355, 0.2964111268520355, 0.2296142578125, 0.15139159560203552, 0.05427245795726776, -0.05031738057732582, -0.14567871391773224, -0.23466795682907104, -0.30585935711860657, -0.3495849370956421, -0.3350830078125, -0.2935546934604645, -0.20412597060203552, -0.10283202677965164, -0.0002197265566792339, 0.10898437350988388, 0.20236815512180328, 0.296630859375, 0.36188963055610657, 0.37507322430610657, 0.34782713651657104, 0.27290037274360657, 0.18083494901657104, 0.0780029296875, -0.02900390513241291, -0.13491210341453552, -0.243896484375, -0.32080078125, -0.38188475370407104, -0.3836425542831421, -0.3364013731479645, -0.2493896484375, -0.13710936903953552, -0.03054199181497097, 0.09074706584215164, 0.20522460341453552, 0.30388182401657104, 0.3788085877895355, 0.4194580018520355, 0.38671875, 0.3089355528354645, 0.21467284858226776, 0.10964354872703552, -0.009228515438735485, -0.12106933444738388, -0.22807615995407104, -0.3342041075229645, -0.39396971464157104, -0.41264647245407104, -0.3700195252895355, -0.28608396649360657, -0.17600096762180328, -0.05778808519244194, 0.0714111328125, 0.18698729574680328, 0.3034423887729645, 0.3897949159145355, 0.4383544921875, 0.42473143339157104, 0.35595703125, 0.25642088055610657, 0.14304198324680328, 0.0252685546875, -0.10458984225988388, -0.22060546278953552, -0.32958984375, -0.40825194120407104, -0.4440673589706421, -0.41352537274360657, -0.3210205137729645, -0.21137695014476776, -0.087890625, 0.04372558370232582, 0.16896972060203552, 0.2935546934604645, 0.3968261480331421, 0.44978025555610657, 0.44978025555610657, 0.39045408368110657, 0.29069823026657104, 0.17819823324680328, 0.0439453125, -0.07954101264476776, -0.20566405355930328, -0.31926268339157104, -0.4100097417831421, -0.44999998807907104, -0.44428709149360657, -0.3550781011581421, -0.24653320014476776, -0.11513671278953552, 0.02175292931497097, 0.15139159560203552, 0.2801513671875, 0.3779296875, 0.44978025555610657, 0.44978025555610657, 0.421875, 0.3243164122104645, 0.20610350370407104, 0.07294921576976776, -0.05866698920726776, -0.18171386420726776, -0.305419921875, -0.39990234375, -0.44999998807907104, -0.44999998807907104, -0.38605955243110657, -0.27290037274360657, -0.14150390028953552, -0.007031249813735485, 0.12282714247703552, 0.2513671815395355, 0.37177732586860657, 0.44978025555610657, 0.44978025555610657, 0.44868162274360657, 0.34760740399360657, 0.23225097358226776, 0.107666015625, -0.02988281100988388, -0.1593017578125, -0.2803710997104645, -0.3880370855331421, -0.44999998807907104, -0.44999998807907104, -0.4040771424770355, -0.30146482586860657, -0.17424315214157104, -0.03691406175494194, 0.10283202677965164, 0.2340087890625, 0.3550781011581421, 0.44978025555610657, 0.44978025555610657, 0.44978025555610657, 0.37617185711860657, 0.25773924589157104, 0.12612304091453552, -0.005053710658103228, -0.1351318359375, -0.25422361493110657, -0.3689208924770355, -0.44999998807907104, -0.44999998807907104, -0.4295654296875, -0.3183837831020355, -0.19511717557907104, -0.05756835639476776, 0.07954101264476776, 0.20302733778953552, 0.3304687440395355, 0.4253906011581421, 0.44978025555610657, 0.44978025555610657, 0.393310546875, 0.27949216961860657, 0.15117187798023224, 0.01999511756002903, -0.10590820014476776, -0.23422850668430328, -0.35441893339157104, -0.4374755620956421, -0.44999998807907104, -0.44208982586860657, -0.3407958745956421, -0.21489256620407104, -0.0889892578125, 0.0439453125, 0.1812744140625, 0.3062988221645355, 0.4031982421875, 0.44978025555610657, 0.44978025555610657, 0.40363767743110657, 0.30498045682907104, 0.1746826171875, 0.04350585862994194, -0.08503417670726776, -0.20610350370407104, -0.3205810487270355, -0.4183593690395355, -0.44999998807907104, -0.44648435711860657, -0.3612304627895355, -0.2406005859375, -0.10898437350988388, 0.01911620981991291, 0.15666504204273224, 0.2757568359375, 0.3759521245956421, 0.44978025555610657, 0.44978025555610657, 0.4150634706020355, 0.3087158203125, 0.2010498046875, 0.06789550930261612, -0.0582275390625, -0.1878662109375, -0.29487302899360657, -0.3864990174770355, -0.446044921875, -0.44099119305610657, -0.3667236268520355, -0.2502685487270355, -0.13117675483226776, -0.003076171735301614, 0.12128905951976776, 0.2507080137729645, 0.35419920086860657, 0.4293456971645355, 0.44978025555610657, 0.4133056402206421, 0.32365721464157104, 0.21379393339157104, 0.08811035007238388, -0.03317870944738388, -0.15534667670726776, -0.2625732421875, -0.3583739995956421, -0.421875, -0.4264892339706421, -0.3605712652206421, -0.2601562440395355, -0.14787597954273224, -0.02460937388241291, 0.0966796875, 0.21335448324680328, 0.32343748211860657, 0.3957275152206421, 0.4286864995956421, 0.4007812440395355, 0.31596678495407104, 0.21379393339157104, 0.10502929240465164, -0.015600585378706455, -0.13271483778953552, -0.23027342557907104, -0.3251953125, -0.3935302495956421, -0.4056152105331421, -0.3546386659145355, -0.261474609375, -0.16018065810203552, -0.04592284932732582, 0.07163085788488388, 0.18852537870407104, 0.27839353680610657, 0.3572753667831421, 0.3919921815395355, 0.3788085877895355, 0.30278319120407104, 0.21577148139476776, 0.12150878459215164, 0.0041748047806322575, -0.09821777045726776, -0.19797362387180328, -0.28300780057907104, -0.3469482362270355, -0.371337890625, -0.3243164122104645, -0.2572998106479645, -0.164794921875, -0.05185546725988388, 0.04987792670726776, 0.14897461235523224, 0.23686522245407104, 0.30322265625, 0.34233397245407104, 0.3350830078125, 0.292236328125, 0.21577148139476776, 0.11997070163488388, 0.024169921875, -0.07185058295726776, -0.16743163764476776, -0.24785155057907104, -0.2975097596645355, -0.31464841961860657, -0.3021240234375, -0.24038085341453552, -0.16171874105930328, -0.06877440959215164, 0.02395019493997097, 0.11447753757238388, 0.19973143935203552, 0.25773924589157104, 0.29377439618110657, 0.28520506620407104, 0.25773924589157104, 0.18984374403953552, 0.11513671278953552, 0.03691406175494194, -0.05097655951976776, -0.12502440810203552, -0.18874511122703552, -0.23774413764476776, -0.26301267743110657, -0.24323730170726776, -0.20720213651657104, -0.13908691704273224, -0.07294921576976776, 0.010107421316206455, 0.07866210490465164, 0.15292967855930328, 0.20500487089157104, 0.22719725966453552, 0.23532713949680328, 0.21071776747703552, 0.16984862089157104, 0.10305175185203552, 0.03559570387005806, -0.02614746056497097, -0.09228515625, -0.14216308295726776, -0.177978515625, -0.2032470703125, -0.19599609076976776, -0.1658935546875, -0.11579589545726776, -0.05866698920726776, -0.002636718563735485, 0.05339355394244194, 0.10393065959215164, 0.14523924887180328, 0.16457518935203552, 0.16523437201976776, 0.160400390625, 0.12678222358226776, 0.08195800334215164, 0.04196777194738388, -0.0098876953125, -0.05976562201976776, -0.09733886271715164, -0.11843261122703552, -0.12985838949680328, -0.12678222358226776, -0.10678710788488388, -0.08283691108226776, -0.04899902269244194, -0.007910155691206455, 0.03142089769244194, 0.05844726413488388, 0.08635253459215164, 0.10261230170726776, 0.103271484375, 0.09711913764476776, 0.07602538913488388, 0.05581054463982582, 0.0263671875, -0.001538085867650807, -0.02614746056497097, -0.03977050632238388, -0.05361327901482582, -0.0670166015625, -0.05734863132238388, -0.0516357421875, -0.04328612983226776, -0.024169921875, -0.0068115233443677425, 0.00966796837747097, 0.0208740234375, 0.03120117075741291, 0.02834472618997097, 0.03383788838982582, 0.02504882775247097, 0.02131347544491291, 0.01494140550494194, 0.00856933556497097, -0.0010986328125, -0.0008789062267169356, 0.0, 0.0013183592818677425, 0.0032958984375, 0.0, 0.002197265625, 0.0032958984375, -0.0017578124534338713, 0.00637206993997097, 0.003076171735301614, -0.0017578124534338713, 0.009008788503706455, 0.009228515438735485, 0.002636718563735485, 0.009228515438735485, 0.005932617001235485, -0.0028564452659338713, 0.0024169920943677425, 0.0, 0.004833984188735485, 0.0041748047806322575, -0.001538085867650807, -0.0028564452659338713, -0.0032958984375, -0.001977538922801614, 0.0002197265566792339, 0.0041748047806322575, -0.0002197265566792339, 0.0046142577193677425, 0.007031249813735485, -0.0008789062267169356, 0.0068115233443677425, 0.0057128905318677425, 0.00439453125, 0.006591796875 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0, -0.0006591796409338713, 0.0046142577193677425, -0.0008789062267169356, -0.001538085867650807, 0.006152343470603228, 0.0028564452659338713, -0.0013183592818677425, 0.0017578124534338713, 0.0035156249068677425, 0.0008789062267169356, 0.0024169920943677425, 0.00527343712747097, -0.0008789062267169356, -0.0013183592818677425, 0.005053710658103228, -0.0004394531133584678, 0.0028564452659338713, 0.0041748047806322575, 0.0008789062267169356, 0.0032958984375, -0.0017578124534338713, 0.0010986328125, 0.0008789062267169356, 0.001538085867650807, -0.0004394531133584678, 0.0010986328125, 0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, 0.0017578124534338713, 0.0046142577193677425, -0.0028564452659338713, 0.002197265625, 0.003955077845603228, -0.001977538922801614, 0.0008789062267169356, 0.0002197265566792339, 0.00637206993997097, -0.003076171735301614, 0.0041748047806322575, 0.0, 0.00637206993997097, 0.005932617001235485, -0.003735351376235485, 0.003955077845603228, 0.003735351376235485, 0.0008789062267169356, 0.0008789062267169356, -0.0017578124534338713, -0.0035156249068677425, -0.0013183592818677425, 0.004833984188735485, 0.0041748047806322575, -0.0008789062267169356, 0.002636718563735485, 0.003955077845603228, 0.010107421316206455, 0.00747070275247097, 0.00439453125, 0.0, 0.0006591796409338713, 0.0, -0.011425781063735485, -0.004833984188735485, -0.0002197265566792339, 0.002197265625, -0.00527343712747097, 0.0010986328125, 0.003955077845603228, 0.011206054128706455, 0.008129882626235485, 0.006152343470603228, 0.0057128905318677425, 0.0098876953125, -0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0098876953125, -0.006591796875, -0.009228515438735485, -0.003076171735301614, -0.0054931640625, 0.002636718563735485, 0.0024169920943677425, 0.01054687425494194, 0.01296386681497097, 0.019775390625, 0.01318359375, 0.01582031138241291, 0.00856933556497097, 0.0013183592818677425, -0.0008789062267169356, -0.0076904296875, -0.010986328125, -0.01713867112994194, -0.01955566368997097, -0.01318359375, -0.010107421316206455, -0.0013183592818677425, 0.010327148251235485, 0.01889648474752903, 0.012304686941206455, 0.01801757700741291, 0.02219238132238388, 0.02043456956744194, 0.009228515438735485, 0.008349609561264515, -0.002197265625, -0.01186523400247097, -0.01274413987994194, -0.02197265625, -0.01889648474752903, -0.01845703087747097, -0.012524413876235485, -0.001977538922801614, 0.0098876953125, 0.014721679501235485, 0.02197265625, 0.03076171875, 0.02285156212747097, 0.024169921875, 0.01274413987994194, 0.01054687425494194, -0.002197265625, -0.014721679501235485, -0.0208740234375, -0.02395019493997097, -0.02043456956744194, -0.0208740234375, -0.01823730394244194, -0.005053710658103228, 0.00747070275247097, 0.01625976525247097, 0.02285156212747097, 0.03076171875, 0.02790527231991291, 0.02878417819738388, 0.0186767578125, 0.00527343712747097, -0.0024169920943677425, -0.0120849609375, -0.02109374850988388, -0.02900390513241291, -0.0274658203125, -0.02329101413488388, -0.011425781063735485, -0.00527343712747097, 0.01186523400247097, 0.0186767578125, 0.03361816331744194, 0.03603515401482582, 0.03273925557732582, 0.03208007663488388, 0.02219238132238388, 0.008349609561264515, -0.0013183592818677425, -0.01933593675494194, -0.02922363206744194, -0.03823241963982582, -0.028564453125, -0.02263183519244194, -0.01911620981991291, -0.005932617001235485, 0.013623046688735485, 0.02614746056497097, 0.02922363206744194, 0.03559570387005806, 0.0406494140625, 0.03427734225988388, 0.01955566368997097, 0.00527343712747097, -0.005932617001235485, -0.02219238132238388, -0.02878417819738388, -0.03361816331744194, -0.04020996019244194, -0.0340576171875, -0.02373046800494194, -0.00527343712747097, 0.0120849609375, 0.0252685546875, 0.03361816331744194, 0.04218749701976776, 0.04416503757238388, 0.03251953050494194, 0.01845703087747097, 0.007910155691206455, -0.010107421316206455, -0.01911620981991291, -0.02768554538488388, -0.03757324069738388, -0.04086913913488388, -0.03229980543255806, -0.01823730394244194, -0.005053710658103228, 0.0068115233443677425, 0.02614746056497097, 0.04438476264476776, 0.05075683444738388, 0.04570312425494194, 0.03867187350988388, 0.028564453125, 0.01318359375, -0.010986328125, -0.02438964694738388, -0.03383788838982582, -0.041748046875, -0.03977050632238388, -0.03537597507238388, -0.0274658203125, -0.0087890625, 0.01164550706744194, 0.02900390513241291, 0.04350585862994194, 0.04218749701976776, 0.04746093600988388, 0.03911132737994194, 0.02944335900247097, 0.01076660118997097, -0.006591796875, -0.02812499925494194, -0.03339843824505806, -0.04899902269244194, -0.04350585862994194, -0.04262695088982582, -0.02175292931497097, -0.006152343470603228, 0.012304686941206455, 0.02878417819738388, 0.03889160230755806, 0.0516357421875, 0.05207519233226776, 0.04416503757238388, 0.03010253794491291, 0.010986328125, -0.004833984188735485, -0.02504882775247097, -0.037353515625, -0.04790038987994194, -0.04899902269244194, -0.03713378682732582, -0.02263183519244194, -0.010107421316206455, 0.01406249962747097, 0.02482910081744194, 0.04592284932732582, 0.05075683444738388, 0.04833984375, 0.04548339545726776, 0.02438964694738388, 0.012304686941206455, -0.002636718563735485, -0.0296630859375, -0.04416503757238388, -0.04877929389476776, -0.04548339545726776, -0.04460449144244194, -0.032958984375, -0.010327148251235485, 0.009008788503706455, 0.0296630859375, 0.04042968526482582, 0.05339355394244194, 0.05009765550494194, 0.04042968526482582, 0.0318603515625, 0.0098876953125, -0.0046142577193677425, -0.028564453125, -0.04438476264476776, -0.05295410007238388, -0.04460449144244194, -0.03933105245232582, -0.02504882775247097, -0.012524413876235485, 0.0098876953125, 0.03251953050494194, 0.04592284932732582, 0.05537109076976776, 0.05295410007238388, 0.04416503757238388, 0.03493652120232582, 0.01406249962747097, -0.010986328125, -0.02175292931497097, -0.041748046875, -0.0472412109375, -0.05119628831744194, -0.0384521484375, -0.028564453125, -0.009008788503706455, 0.010107421316206455, 0.03251953050494194, 0.04899902269244194, 0.05756835639476776, 0.05097655951976776, 0.04416503757238388, 0.02900390513241291, 0.013623046688735485, -0.00966796837747097, -0.0274658203125, -0.03713378682732582, -0.0439453125, -0.04899902269244194, -0.03647460788488388, -0.02395019493997097, -0.0046142577193677425, 0.01164550706744194, 0.02944335900247097, 0.0450439453125, 0.05471191182732582, 0.0494384765625, 0.04833984375, 0.03164062276482582, 0.01933593675494194, -0.01274413987994194, -0.024169921875, -0.0384521484375, -0.04570312425494194, -0.04372558370232582, -0.03911132737994194, -0.02790527231991291, -0.01054687425494194, 0.0164794921875, 0.02702636644244194, 0.04702148213982582, 0.04592284932732582, 0.05712890625, 0.04240722581744194, 0.02900390513241291, 0.010107421316206455, -0.00747070275247097, -0.02241210825741291, -0.0362548828125, -0.04768066108226776, -0.04482421651482582, -0.03603515401482582, -0.02438964694738388, -0.0087890625, 0.007031249813735485, 0.0296630859375, 0.03955078125, 0.0472412109375, 0.04965820163488388, 0.04702148213982582, 0.02724609337747097, 0.01516113243997097, -0.00856933556497097, -0.02043456956744194, -0.04042968526482582, -0.04482421651482582, -0.03977050632238388, -0.03581542894244194, -0.02702636644244194, -0.010986328125, 0.01318359375, 0.03098144382238388, 0.03933105245232582, 0.05097655951976776, 0.04548339545726776, 0.03647460788488388, 0.02373046800494194, 0.01076660118997097, -0.006152343470603228, -0.01889648474752903, -0.03229980543255806, -0.04306640475988388, -0.041748046875, -0.0340576171875, -0.019775390625, -0.007250976283103228, 0.00747070275247097, 0.02658691257238388, 0.03515625, 0.04680175706744194, 0.04658202826976776, 0.03427734225988388, 0.03054199181497097, 0.01054687425494194, -0.003076171735301614, -0.01999511756002903, -0.0340576171875, -0.03559570387005806, -0.03449707105755806, -0.03361816331744194, -0.02460937388241291, -0.006152343470603228, 0.01516113243997097, 0.02812499925494194, 0.02922363206744194, 0.04592284932732582, 0.03757324069738388, 0.04042968526482582, 0.02175292931497097, 0.007910155691206455, -0.00637206993997097, -0.02021484263241291, -0.02988281100988388, -0.03537597507238388, -0.02944335900247097, -0.02988281100988388, -0.02131347544491291, -0.00856933556497097, 0.010107421316206455, 0.01999511756002903, 0.03427734225988388, 0.03669433668255806, 0.03911132737994194, 0.02570800669491291, 0.0230712890625, 0.01296386681497097, -0.001538085867650807, -0.01669921912252903, -0.03076171875, -0.03537597507238388, -0.02680663950741291, -0.02680663950741291, -0.012304686941206455, -0.007031249813735485, 0.00527343712747097, 0.017578125, 0.02724609337747097, 0.03164062276482582, 0.03691406175494194, 0.02570800669491291, 0.01999511756002903, 0.00966796837747097, -0.0032958984375, -0.01604003831744194, -0.024169921875, -0.02351074106991291, -0.02460937388241291, -0.02768554538488388, -0.01801757700741291, -0.0046142577193677425, 0.007250976283103228, 0.019775390625, 0.02219238132238388, 0.02724609337747097, 0.02438964694738388, 0.02197265625, 0.012304686941206455, 0.00439453125, 0.002636718563735485, -0.011206054128706455, -0.01889648474752903, -0.01779785193502903, -0.02065429650247097, -0.01691894419491291, -0.011425781063735485, 0.0, 0.001977538922801614, 0.013623046688735485, 0.01735839806497097, 0.0274658203125, 0.02702636644244194, 0.0164794921875, 0.013623046688735485, 0.0028564452659338713, 0.003735351376235485, -0.0076904296875, -0.01186523400247097, -0.02175292931497097, -0.015380859375, -0.01516113243997097, -0.01186523400247097, -0.001538085867650807, 0.00527343712747097, 0.009448242373764515, 0.01999511756002903, 0.024169921875, 0.014501952566206455, 0.01625976525247097, 0.010107421316206455, 0.0098876953125, -0.003955077845603228, -0.011425781063735485, -0.0142822265625, -0.014721679501235485, -0.011206054128706455, -0.008349609561264515, -0.0087890625, -0.00637206993997097, 0.005053710658103228, 0.008129882626235485, 0.01604003831744194, 0.01296386681497097, 0.01494140550494194, 0.0068115233443677425, 0.010107421316206455, 0.0002197265566792339, 0.004833984188735485, -0.009008788503706455, -0.01076660118997097, -0.0041748047806322575, -0.007250976283103228, -0.005932617001235485, -0.002636718563735485, 0.0032958984375, 0.0028564452659338713, 0.001977538922801614, 0.01076660118997097, 0.007250976283103228, 0.00747070275247097, 0.01164550706744194, 0.004833984188735485, 0.001977538922801614, 0.0054931640625, -0.0035156249068677425, -0.005932617001235485, -0.004833984188735485, 0.0002197265566792339, 0.0028564452659338713, 0.002197265625, 0.0017578124534338713, 0.0017578124534338713, 0.002636718563735485, -0.0004394531133584678, 0.0032958984375, 0.00527343712747097, 0.006152343470603228, 0.008129882626235485, 0.00527343712747097, 0.0046142577193677425, 0.0054931640625, 0.007031249813735485, 0.00527343712747097, 0.0068115233443677425, -0.0004394531133584678, -0.0002197265566792339, 0.003955077845603228, 0.0013183592818677425, 0.0028564452659338713, 0.003955077845603228, 0.003735351376235485, -0.001977538922801614, -0.001538085867650807, 0.002197265625, -0.0013183592818677425, -0.0010986328125, 0.0028564452659338713, 0.001977538922801614, -0.0002197265566792339, 0.0028564452659338713, 0.0035156249068677425, 0.0024169920943677425, 0.00747070275247097, 0.0004394531133584678, 0.0010986328125, 0.001538085867650807, -0.0004394531133584678, 0.00527343712747097, 0.0017578124534338713, -0.0028564452659338713, 0.003735351376235485, 0.006152343470603228, -0.0035156249068677425, 0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, 0.003735351376235485, -0.001977538922801614, -0.001538085867650807, 0.0041748047806322575, 0.0035156249068677425, -0.0010986328125, 0.003076171735301614, -0.0013183592818677425, 0.0, 0.003955077845603228, -0.002197265625, -0.002197265625, 0.0017578124534338713, 0.002197265625, 0.0, 0.0032958984375, 0.0046142577193677425, 0.0013183592818677425, 0.002197265625, 0.0035156249068677425, 0.0054931640625, -0.002197265625, 0.005932617001235485, 0.0054931640625, 0.004833984188735485, 0.0017578124534338713, 0.0035156249068677425, -0.0004394531133584678, 0.0035156249068677425, -0.0008789062267169356, 0.0017578124534338713, -0.0002197265566792339, 0.00747070275247097, 0.001538085867650807, 0.007031249813735485, 0.0013183592818677425, 0.007031249813735485, 0.0004394531133584678, 0.0, -0.0010986328125, 0.005932617001235485, 0.0041748047806322575, 0.0054931640625, 0.0046142577193677425, 0.0024169920943677425, 0.0002197265566792339, 0.0004394531133584678, -0.003076171735301614, 0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, 0.0046142577193677425, 0.0013183592818677425, 0.006152343470603228, 0.00856933556497097, 0.00439453125, 0.01164550706744194, 0.005932617001235485, 0.0004394531133584678, 0.0010986328125, -0.0006591796409338713, -0.0054931640625, -0.00527343712747097, -0.01186523400247097, -0.010986328125, -0.006591796875, -0.0024169920943677425, -0.005053710658103228, 0.005053710658103228, 0.010986328125, 0.0164794921875, 0.014501952566206455, 0.01955566368997097, 0.014501952566206455, 0.009448242373764515, 0.001977538922801614, 0.0032958984375, -0.0076904296875, -0.013623046688735485, -0.0230712890625, -0.01582031138241291, -0.015600585378706455, -0.013623046688735485, -0.0008789062267169356, 0.009008788503706455, 0.014501952566206455, 0.03076171875, 0.0296630859375, 0.03471679612994194, 0.02351074106991291, 0.02241210825741291, 0.01054687425494194, 0.0024169920943677425, -0.015380859375, -0.02153320237994194, -0.02658691257238388, -0.03032226487994194, -0.0230712890625, -0.015380859375, -0.0068115233443677425, 0.012524413876235485, 0.02812499925494194, 0.03164062276482582, 0.04020996019244194, 0.04130859300494194, 0.03933105245232582, 0.02614746056497097, 0.010107421316206455, -0.00856933556497097, -0.02395019493997097, -0.03757324069738388, -0.04262695088982582, -0.04262695088982582, -0.03537597507238388, -0.0263671875, -0.0087890625, 0.012524413876235485, 0.032958984375, 0.04548339545726776, 0.04899902269244194, 0.04855956882238388, 0.046142578125, 0.03383788838982582, 0.011425781063735485, -0.008129882626235485, -0.024169921875, -0.04020996019244194, -0.05471191182732582, -0.05449218675494194, -0.0439453125, -0.02658691257238388, -0.01274413987994194, 0.015600585378706455, 0.03032226487994194, 0.04768066108226776, 0.06064452975988388, 0.05844726413488388, 0.05361327901482582, 0.0406494140625, 0.01779785193502903, -0.007031249813735485, -0.02878417819738388, -0.0450439453125, -0.0560302734375, -0.06218261644244194, -0.05031738057732582, -0.03251953050494194, -0.0120849609375, 0.01889648474752903, 0.03383788838982582, 0.05207519233226776, 0.06350097805261612, 0.0648193359375, 0.06130370870232582, 0.04592284932732582, 0.01406249962747097, -0.012524413876235485, -0.03801269456744194, -0.05537109076976776, -0.06943359225988388, -0.07185058295726776, -0.06196288764476776, -0.03471679612994194, -0.0142822265625, 0.01911620981991291, 0.04636230319738388, 0.06416015326976776, 0.07229004055261612, 0.07229004055261612, 0.0604248046875, 0.04899902269244194, 0.014721679501235485, -0.008129882626235485, -0.03757324069738388, -0.0615234375, -0.0703125, -0.07382812350988388, -0.06591796875, -0.03867187350988388, -0.013623046688735485, 0.0164794921875, 0.04855956882238388, 0.07009277492761612, 0.08107910305261612, 0.07976073771715164, 0.07229004055261612, 0.05031738057732582, 0.01604003831744194, -0.01296386681497097, -0.04416503757238388, -0.06679687649011612, -0.08217773586511612, -0.08415526896715164, -0.07185058295726776, -0.04350585862994194, -0.02043456956744194, 0.019775390625, 0.04548339545726776, 0.07492675632238388, 0.09228515625, 0.08986815810203552, 0.08041992038488388, 0.04768066108226776, 0.01516113243997097, -0.015600585378706455, -0.05031738057732582, -0.07119140774011612, -0.08701171725988388, -0.08481445163488388, -0.0791015625, -0.05251464620232582, -0.01494140550494194, 0.02329101413488388, 0.054931640625, 0.08195800334215164, 0.08920898288488388, 0.09382323920726776, 0.08415526896715164, 0.0516357421875, 0.02175292931497097, -0.01164550706744194, -0.05141601338982582, -0.07426757365465164, -0.09206542372703552, -0.09272460639476776, -0.07448730617761612, -0.05361327901482582, -0.01889648474752903, 0.01823730394244194, 0.05141601338982582, 0.07866210490465164, 0.0966796875, 0.09492187201976776, 0.08701171725988388, 0.05690917745232582, 0.02460937388241291, -0.012304686941206455, -0.054931640625, -0.07316894084215164, -0.09931640326976776, -0.09689941257238388, -0.07756347209215164, -0.05668945237994194, -0.01384277269244194, 0.02197265625, 0.05976562201976776, 0.0889892578125, 0.10546875, 0.10415038466453552, 0.08745116740465164, 0.06020507588982582, 0.02548827975988388, -0.014501952566206455, -0.05207519233226776, -0.07844237983226776, -0.09931640326976776, -0.1021728515625, -0.07888183742761612, -0.05317382514476776, -0.02197265625, 0.02175292931497097, 0.05888671800494194, 0.08525390177965164, 0.0966796875, 0.10151366889476776, 0.08393554389476776, 0.05471191182732582, 0.02702636644244194, -0.01406249962747097, -0.05361327901482582, -0.076904296875, -0.09536132216453552, -0.09602050483226776, -0.08657225966453552, -0.05800781026482582, -0.01691894419491291, 0.0230712890625, 0.05449218675494194, 0.090087890625, 0.10239257663488388, 0.10810546576976776, 0.08591308444738388, 0.0604248046875, 0.01845703087747097, -0.01845703087747097, -0.05734863132238388, -0.0802001953125, -0.09624022990465164, -0.10019531100988388, -0.08393554389476776, -0.06174316257238388, -0.01999511756002903, 0.02329101413488388, 0.0538330078125, 0.087890625, 0.10239257663488388, 0.10612792521715164, 0.08371581882238388, 0.05800781026482582, 0.017578125, -0.01582031138241291, -0.05778808519244194, -0.08701171725988388, -0.09514159709215164, -0.09865722060203552, -0.085693359375, -0.05361327901482582, -0.01933593675494194, 0.017578125, 0.05317382514476776, 0.08437499403953552, 0.09624022990465164, 0.09821777045726776, 0.08349609375, 0.06064452975988388, 0.02197265625, -0.01186523400247097, -0.05119628831744194, -0.08063964545726776, -0.09645995497703552, -0.09294433146715164, -0.08635253459215164, -0.05888671800494194, -0.015380859375, 0.02021484263241291, 0.05888671800494194, 0.087890625, 0.09843749552965164, 0.0955810546875, 0.08437499403953552, 0.05954589694738388, 0.02131347544491291, -0.01801757700741291, -0.05185546725988388, -0.08063964545726776, -0.090087890625, -0.09645995497703552, -0.08041992038488388, -0.0494384765625, -0.0208740234375, 0.01911620981991291, 0.05097655951976776, 0.07646483927965164, 0.10041503608226776, 0.09909667819738388, 0.08767089247703552, 0.05624999850988388, 0.02175292931497097, -0.01054687425494194, -0.05075683444738388, -0.07316894084215164, -0.08854980021715164, -0.090087890625, -0.07932128757238388, -0.04636230319738388, -0.01911620981991291, 0.02482910081744194, 0.05515136569738388, 0.08063964545726776, 0.08964843302965164, 0.08964843302965164, 0.07294921576976776, 0.05515136569738388, 0.01845703087747097, -0.01713867112994194, -0.0439453125, -0.07426757365465164, -0.08415526896715164, -0.08876952528953552, -0.07602538913488388, -0.0516357421875, -0.01955566368997097, 0.02197265625, 0.0472412109375, 0.07294921576976776, 0.08986815810203552, 0.08833007514476776, 0.0736083984375, 0.04702148213982582, 0.01582031138241291, -0.01076660118997097, -0.04526367038488388, -0.06503906100988388, -0.076904296875, -0.07602538913488388, -0.06723632663488388, -0.0406494140625, -0.01955566368997097, 0.02131347544491291, 0.04416503757238388, 0.06965331733226776, 0.07734374701976776, 0.085693359375, 0.06306152045726776, 0.04921874776482582, 0.02065429650247097, -0.011206054128706455, -0.04460449144244194, -0.05910644307732582, -0.06987304240465164, -0.07185058295726776, -0.06306152045726776, -0.03471679612994194, -0.01318359375, 0.0164794921875, 0.03955078125, 0.05910644307732582, 0.07075195014476776, 0.07207030802965164, 0.05537109076976776, 0.03757324069738388, 0.01164550706744194, -0.013403319753706455, -0.03999023512005806, -0.05097655951976776, -0.06064452975988388, -0.06767577677965164, -0.05449218675494194, -0.032958984375, -0.009008788503706455, 0.011206054128706455, 0.03361816331744194, 0.05515136569738388, 0.06218261644244194, 0.06679687649011612, 0.05690917745232582, 0.03339843824505806, 0.014501952566206455, -0.01318359375, -0.02922363206744194, -0.05119628831744194, -0.05866698920726776, -0.05339355394244194, -0.04899902269244194, -0.02812499925494194, -0.01604003831744194, 0.015600585378706455, 0.0296630859375, 0.04570312425494194, 0.052734375, 0.0604248046875, 0.050537109375, 0.03427734225988388, 0.01625976525247097, -0.01054687425494194, -0.02680663950741291, -0.04152831807732582, -0.04965820163488388, -0.05207519233226776, -0.037353515625, -0.02922363206744194, -0.0076904296875, 0.007250976283103228, 0.02438964694738388, 0.03867187350988388, 0.04218749701976776, 0.05251464620232582, 0.041748046875, 0.0274658203125, 0.0142822265625, -0.0013183592818677425, -0.01669921912252903, -0.02768554538488388, -0.04152831807732582, -0.03823241963982582, -0.0296630859375, -0.0164794921875, -0.0028564452659338713, 0.01296386681497097, 0.019775390625, 0.03471679612994194, 0.03142089769244194, 0.03647460788488388, 0.03229980543255806, 0.02373046800494194, 0.008129882626235485, 0.0024169920943677425, -0.01604003831744194, -0.0230712890625, -0.02460937388241291, -0.02197265625, -0.02065429650247097, -0.01318359375, -0.003735351376235485, 0.007250976283103228, 0.017578125, 0.02944335900247097, 0.02922363206744194, 0.02131347544491291, 0.02065429650247097, 0.01735839806497097, 0.0024169920943677425, 0.0004394531133584678, -0.0068115233443677425, -0.0186767578125, -0.014501952566206455, -0.02219238132238388, -0.009448242373764515, -0.007250976283103228, 0.0010986328125, 0.00856933556497097, 0.014501952566206455, 0.01516113243997097, 0.0208740234375, 0.01845703087747097, 0.01735839806497097, 0.011425781063735485, 0.00527343712747097, -0.00439453125, -0.0010986328125, -0.002197265625, -0.0035156249068677425, -0.010327148251235485, -0.003735351376235485, -0.00439453125, -0.0002197265566792339, 0.005053710658103228, 0.0068115233443677425, 0.001538085867650807, 0.008129882626235485, 0.001977538922801614, 0.0076904296875, 0.0041748047806322575, 0.0008789062267169356, 0.0002197265566792339, 0.005932617001235485, 0.00637206993997097, 0.001538085867650807, 0.005053710658103228, 0.00527343712747097, 0.0010986328125, -0.003076171735301614, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, 0.0035156249068677425, 0.0017578124534338713, 0.0035156249068677425, 0.003076171735301614, 0.0002197265566792339, 0.007031249813735485, 0.00439453125, 0.0004394531133584678, 0.0032958984375, 0.00527343712747097, 0.005932617001235485, 0.001538085867650807, -0.001538085867650807, 0.002636718563735485, -0.0002197265566792339, -0.0010986328125, 0.00439453125, -0.0008789062267169356, 0.0004394531133584678, -0.001538085867650807, 0.0010986328125, 0.005932617001235485, -0.003076171735301614, 0.0068115233443677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.007250976283103228, 0.0002197265566792339, 0.003735351376235485, 0.0006591796409338713, 0.003076171735301614, 0.003076171735301614, 0.001538085867650807, 0.0057128905318677425, 0.0002197265566792339, 0.0013183592818677425, 0.0004394531133584678, 0.0041748047806322575, -0.001977538922801614, 0.00527343712747097, 0.001538085867650807, 0.001977538922801614, 0.0017578124534338713, 0.0057128905318677425, 0.003735351376235485, 0.0041748047806322575, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, 0.0032958984375, 0.0057128905318677425, -0.001977538922801614, 0.0054931640625, 0.002636718563735485, 0.006152343470603228, 0.0057128905318677425, 0.0010986328125, -0.003955077845603228, -0.0010986328125, 0.0032958984375, 0.00439453125, 0.003955077845603228, 0.00637206993997097, -0.0010986328125, 0.003955077845603228, 0.001977538922801614, 0.0008789062267169356, 0.006152343470603228, 0.0068115233443677425, -0.0035156249068677425, -0.003955077845603228, -0.0013183592818677425, 0.001977538922801614, 0.0041748047806322575, 0.0046142577193677425, 0.0008789062267169356, 0.00856933556497097, 0.01274413987994194, 0.012524413876235485, 0.01384277269244194, 0.011425781063735485, 0.0013183592818677425, -0.001538085867650807, -0.004833984188735485, -0.014501952566206455, -0.01406249962747097, -0.01779785193502903, -0.009008788503706455, -0.005932617001235485, -0.0076904296875, 0.011425781063735485, 0.019775390625, 0.02219238132238388, 0.03142089769244194, 0.02768554538488388, 0.0208740234375, 0.02329101413488388, 0.003735351376235485, -0.0006591796409338713, -0.01296386681497097, -0.02988281100988388, -0.03317870944738388, -0.03515625, -0.02834472618997097, -0.01933593675494194, -0.00637206993997097, 0.009448242373764515, 0.0296630859375, 0.04262695088982582, 0.04570312425494194, 0.04636230319738388, 0.0428466796875, 0.02812499925494194, 0.010986328125, -0.010327148251235485, -0.02878417819738388, -0.03867187350988388, -0.04702148213982582, -0.04965820163488388, -0.04130859300494194, -0.02922363206744194, -0.01274413987994194, 0.01318359375, 0.03449707105755806, 0.0494384765625, 0.05800781026482582, 0.06306152045726776, 0.04921874776482582, 0.03537597507238388, 0.013623046688735485, -0.011425781063735485, -0.03120117075741291, -0.052734375, -0.06174316257238388, -0.06086425483226776, -0.05339355394244194, -0.0340576171875, -0.014501952566206455, 0.015380859375, 0.03955078125, 0.05998535081744194, 0.0780029296875, 0.07536620646715164, 0.063720703125, 0.04636230319738388, 0.01955566368997097, -0.01516113243997097, -0.03955078125, -0.068115234375, -0.07404784858226776, -0.07448730617761612, -0.06723632663488388, -0.0450439453125, -0.009228515438735485, 0.02263183519244194, 0.04790038987994194, 0.07097167521715164, 0.09162597358226776, 0.09096679091453552, 0.0703125, 0.04877929389476776, 0.02219238132238388, -0.01911620981991291, -0.04790038987994194, -0.07866210490465164, -0.09536132216453552, -0.09162597358226776, -0.0791015625, -0.04790038987994194, -0.0164794921875, 0.02219238132238388, 0.05734863132238388, 0.08107910305261612, 0.10590820014476776, 0.098876953125, 0.08173827826976776, 0.05800781026482582, 0.02592773362994194, -0.01779785193502903, -0.05317382514476776, -0.08481445163488388, -0.10261230170726776, -0.10415038466453552, -0.08767089247703552, -0.0626220703125, -0.02548827975988388, 0.02680663950741291, 0.06328124552965164, 0.09931640326976776, 0.10458984225988388, 0.11909179389476776, 0.09799804538488388, 0.06394042819738388, 0.02482910081744194, -0.015380859375, -0.06416015326976776, -0.08613280951976776, -0.10590820014476776, -0.11074218153953552, -0.09602050483226776, -0.06174316257238388, -0.02504882775247097, 0.02680663950741291, 0.06240234151482582, 0.1065673828125, 0.12480468302965164, 0.11821288615465164, 0.10898437350988388, 0.06987304240465164, 0.02482910081744194, -0.01933593675494194, -0.06306152045726776, -0.1021728515625, -0.11997070163488388, -0.12480468302965164, -0.10546875, -0.0670166015625, -0.0208740234375, 0.02702636644244194, 0.07272949069738388, 0.1087646484375, 0.1351318359375, 0.13007812201976776, 0.1142578125, 0.07866210490465164, 0.03054199181497097, -0.01625976525247097, -0.0714111328125, -0.1043701171875, -0.12678222358226776, -0.12875975668430328, -0.10634765028953552, -0.0780029296875, -0.02241210825741291, 0.03032226487994194, 0.08217773586511612, 0.12041015177965164, 0.140625, 0.1351318359375, 0.120849609375, 0.07954101264476776, 0.0318603515625, -0.02021484263241291, -0.07272949069738388, -0.1142578125, -0.13996581733226776, -0.13315428793430328, -0.11865234375, -0.07558593899011612, -0.02570800669491291, 0.02724609337747097, 0.08151855319738388, 0.11931151896715164, 0.14040526747703552, 0.14501953125, 0.1241455078125, 0.08854980021715164, 0.03229980543255806, -0.02197265625, -0.07822265475988388, -0.11953124403953552, -0.14414061605930328, -0.14523924887180328, -0.12238769233226776, -0.07976073771715164, -0.03229980543255806, 0.02724609337747097, 0.08349609375, 0.12019042670726776, 0.15117187798023224, 0.15007324516773224, 0.12788085639476776, 0.08986815810203552, 0.03339843824505806, -0.01845703087747097, -0.08195800334215164, -0.11865234375, -0.14040526747703552, -0.14414061605930328, -0.11909179389476776, -0.0802001953125, -0.02812499925494194, 0.0296630859375, 0.08349609375, 0.12546385824680328, 0.158203125, 0.14875487983226776, 0.1329345703125, 0.08942870795726776, 0.02922363206744194, -0.02812499925494194, -0.07888183742761612, -0.11887206882238388, -0.14589843153953552, -0.14633788168430328, -0.1219482421875, -0.08635253459215164, -0.03273925557732582, 0.03098144382238388, 0.08876952528953552, 0.12568359076976776, 0.15644530951976776, 0.1527099609375, 0.1263427734375, 0.09162597358226776, 0.03251953050494194, -0.02680663950741291, -0.07954101264476776, -0.125244140625, -0.15227051079273224, -0.15380859375, -0.12985838949680328, -0.08481445163488388, -0.03449707105755806, 0.03361816331744194, 0.08811035007238388, 0.12788085639476776, 0.15402831137180328, 0.15139159560203552, 0.13227538764476776, 0.08503417670726776, 0.03427734225988388, -0.02548827975988388, -0.08063964545726776, -0.11909179389476776, -0.15029296278953552, -0.147216796875, -0.13095702230930328, -0.08283691108226776, -0.03010253794491291, 0.02812499925494194, 0.08657225966453552, 0.12480468302965164, 0.15205077826976776, 0.147216796875, 0.1285400390625, 0.0911865234375, 0.0296630859375, -0.02241210825741291, -0.07888183742761612, -0.11579589545726776, -0.14106445014476776, -0.14699706435203552, -0.12106933444738388, -0.08085937052965164, -0.03339843824505806, 0.02922363206744194, 0.07932128757238388, 0.12832030653953552, 0.151611328125, 0.1494140625, 0.1263427734375, 0.08745116740465164, 0.03581542894244194, -0.02504882775247097, -0.07624511420726776, -0.11689452826976776, -0.1373291015625, -0.13996581733226776, -0.12370605021715164, -0.07404784858226776, -0.02922363206744194, 0.02702636644244194, 0.08283691108226776, 0.12326660007238388, 0.1417236328125, 0.14567871391773224, 0.12282714247703552, 0.08481445163488388, 0.02680663950741291, -0.024169921875, -0.07097167521715164, -0.10920409858226776, -0.13315428793430328, -0.13469238579273224, -0.11579589545726776, -0.0780029296875, -0.03010253794491291, 0.02285156212747097, 0.076904296875, 0.11711425334215164, 0.13710936903953552, 0.13469238579273224, 0.120849609375, 0.07998047024011612, 0.02768554538488388, -0.01691894419491291, -0.06943359225988388, -0.10502929240465164, -0.12612304091453552, -0.12678222358226776, -0.1087646484375, -0.07009277492761612, -0.02658691257238388, 0.02241210825741291, 0.07185058295726776, 0.107666015625, 0.12590332329273224, 0.12722167372703552, 0.1043701171875, 0.0714111328125, 0.02900390513241291, -0.0230712890625, -0.06240234151482582, -0.10195311903953552, -0.11799316108226776, -0.116455078125, -0.10107421875, -0.06284179538488388, -0.02438964694738388, 0.02131347544491291, 0.06525878608226776, 0.09953612834215164, 0.11865234375, 0.12458495795726776, 0.09975585341453552, 0.0648193359375, 0.02812499925494194, -0.01845703087747097, -0.06196288764476776, -0.08657225966453552, -0.11293944716453552, -0.11293944716453552, -0.09294433146715164, -0.05756835639476776, -0.024169921875, 0.02460937388241291, 0.06394042819738388, 0.09052734076976776, 0.10415038466453552, 0.10415038466453552, 0.09294433146715164, 0.06306152045726776, 0.0230712890625, -0.01076660118997097, -0.05515136569738388, -0.07712402194738388, -0.09426268935203552, -0.09492187201976776, -0.07976073771715164, -0.052734375, -0.024169921875, 0.02131347544491291, 0.05185546725988388, 0.07558593899011612, 0.09931640326976776, 0.09755858778953552, 0.07778320461511612, 0.050537109375, 0.02351074106991291, -0.01296386681497097, -0.04680175706744194, -0.07272949069738388, -0.08657225966453552, -0.08635253459215164, -0.07448730617761612, -0.04833984375, -0.01164550706744194, 0.02131347544491291, 0.0450439453125, 0.06789550930261612, 0.081298828125, 0.07822265475988388, 0.06569824367761612, 0.0428466796875, 0.01911620981991291, -0.014721679501235485, -0.03801269456744194, -0.05734863132238388, -0.0714111328125, -0.06789550930261612, -0.05800781026482582, -0.0362548828125, -0.012524413876235485, 0.012304686941206455, 0.04130859300494194, 0.05888671800494194, 0.07316894084215164, 0.0703125, 0.06196288764476776, 0.03647460788488388, 0.01186523400247097, -0.01076660118997097, -0.02768554538488388, -0.04921874776482582, -0.0560302734375, -0.0582275390625, -0.04768066108226776, -0.028564453125, -0.014501952566206455, 0.017578125, 0.03010253794491291, 0.05251464620232582, 0.05515136569738388, 0.05624999850988388, 0.04812011495232582, 0.03120117075741291, 0.01054687425494194, -0.0024169920943677425, -0.02153320237994194, -0.03779296949505806, -0.03823241963982582, -0.04636230319738388, -0.03010253794491291, -0.02570800669491291, -0.003076171735301614, 0.006152343470603228, 0.02482910081744194, 0.03537597507238388, 0.04196777194738388, 0.0406494140625, 0.037353515625, 0.02614746056497097, 0.006591796875, -0.0041748047806322575, -0.012304686941206455, -0.02373046800494194, -0.02065429650247097, -0.02329101413488388, -0.02614746056497097, -0.0142822265625, -0.006152343470603228, 0.0028564452659338713, 0.01845703087747097, 0.017578125, 0.0186767578125, 0.02065429650247097, 0.02043456956744194, 0.01054687425494194, 0.0028564452659338713, 0.0008789062267169356, -0.009008788503706455, -0.009448242373764515, -0.01494140550494194, -0.013403319753706455, -0.01054687425494194, -0.0017578124534338713, 0.0013183592818677425, 0.0008789062267169356, 0.00439453125, -0.0004394531133584678, 0.003076171735301614, 0.0041748047806322575, 0.0054931640625, 0.004833984188735485, -0.0013183592818677425, 0.00527343712747097, -0.0013183592818677425, 0.0032958984375, -0.0006591796409338713, 0.003955077845603228, 0.006591796875, -0.0017578124534338713, 0.003076171735301614, 0.0041748047806322575, 0.003076171735301614, 0.0068115233443677425, -0.001977538922801614, -0.0017578124534338713, -0.0046142577193677425, -0.0024169920943677425, 0.0035156249068677425, 0.006591796875, 0.00637206993997097, 0.001538085867650807, 0.0028564452659338713, 0.00637206993997097, 0.003735351376235485, 0.001538085867650807, 0.004833984188735485, 0.005932617001235485, -0.0028564452659338713, -0.0004394531133584678, 0.001538085867650807, 0.00527343712747097, -0.003076171735301614, 0.0004394531133584678, 0.0006591796409338713, 0.0035156249068677425, 0.0035156249068677425, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003955077845603228, 0.0017578124534338713, 0.00439453125, 0.0002197265566792339, 0.00747070275247097, 0.0013183592818677425, 0.00439453125, 0.0008789062267169356, 0.005932617001235485, -0.001977538922801614, 0.0032958984375, 0.001977538922801614, 0.001977538922801614, 0.0057128905318677425, 0.003735351376235485, -0.002197265625, 0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, 0.0002197265566792339, -0.002636718563735485, 0.0046142577193677425, -0.0008789062267169356, -0.0028564452659338713, 0.0008789062267169356, -0.0032958984375, 0.0013183592818677425, -0.0006591796409338713, 0.0057128905318677425, -0.0006591796409338713, 0.0004394531133584678, 0.0013183592818677425, 0.0035156249068677425, 0.006591796875, 0.0057128905318677425, 0.0032958984375, 0.0041748047806322575, 0.007250976283103228, 0.002636718563735485, 0.005053710658103228, 0.007250976283103228, 0.0041748047806322575, 0.005053710658103228, 0.003735351376235485, -0.0002197265566792339, 0.0032958984375, 0.005053710658103228, -0.0041748047806322575, -0.001977538922801614, -0.001977538922801614, 0.0, -0.0024169920943677425, 0.0032958984375, 0.003955077845603228, 0.014501952566206455, 0.0164794921875, 0.02153320237994194, 0.0164794921875, 0.01516113243997097, 0.006591796875, -0.00527343712747097, -0.009448242373764515, -0.01713867112994194, -0.0274658203125, -0.02263183519244194, -0.02395019493997097, -0.015380859375, -0.00966796837747097, 0.0035156249068677425, 0.01823730394244194, 0.02658691257238388, 0.03933105245232582, 0.04306640475988388, 0.0362548828125, 0.02790527231991291, 0.006591796875, -0.0024169920943677425, -0.02395019493997097, -0.03955078125, -0.04899902269244194, -0.04152831807732582, -0.04350585862994194, -0.0263671875, -0.008349609561264515, 0.010986328125, 0.02922363206744194, 0.04328612983226776, 0.05998535081744194, 0.0648193359375, 0.04658202826976776, 0.03977050632238388, 0.011425781063735485, -0.005932617001235485, -0.03779296949505806, -0.054931640625, -0.06437987834215164, -0.06306152045726776, -0.05471191182732582, -0.0384521484375, -0.01494140550494194, 0.01669921912252903, 0.04108886793255806, 0.06108398362994194, 0.07624511420726776, 0.08041992038488388, 0.06240234151482582, 0.05075683444738388, 0.017578125, -0.0186767578125, -0.04152831807732582, -0.07382812350988388, -0.08283691108226776, -0.09140624850988388, -0.07954101264476776, -0.052734375, -0.01911620981991291, 0.02263183519244194, 0.05778808519244194, 0.08657225966453552, 0.09624022990465164, 0.10173339396715164, 0.08107910305261612, 0.05646972358226776, 0.01735839806497097, -0.01516113243997097, -0.05800781026482582, -0.08723144233226776, -0.10349120944738388, -0.10480956733226776, -0.08723144233226776, -0.06064452975988388, -0.02197265625, 0.01933593675494194, 0.05712890625, 0.09514159709215164, 0.1131591796875, 0.11403807997703552, 0.10371093451976776, 0.07009277492761612, 0.02790527231991291, -0.02460937388241291, -0.059326171875, -0.09536132216453552, -0.11447753757238388, -0.11887206882238388, -0.10810546576976776, -0.0692138671875, -0.02263183519244194, 0.02197265625, 0.07888183742761612, 0.10722655802965164, 0.12875975668430328, 0.13469238579273224, 0.11601562052965164, 0.07624511420726776, 0.03032226487994194, -0.02219238132238388, -0.07229004055261612, -0.11249999701976776, -0.13579101860523224, -0.13359375298023224, -0.11865234375, -0.07602538913488388, -0.03076171875, 0.02768554538488388, 0.08393554389476776, 0.12590332329273224, 0.14501953125, 0.15380859375, 0.12919922173023224, 0.08964843302965164, 0.0296630859375, -0.0230712890625, -0.08063964545726776, -0.11711425334215164, -0.14919432997703552, -0.15029296278953552, -0.1329345703125, -0.08657225966453552, -0.0318603515625, 0.032958984375, 0.0933837890625, 0.134033203125, 0.16347655653953552, 0.16655273735523224, 0.13754881918430328, 0.09536132216453552, 0.03142089769244194, -0.0252685546875, -0.08613280951976776, -0.13579101860523224, -0.16105957329273224, -0.16435547173023224, -0.14501953125, -0.09360351413488388, -0.03537597507238388, 0.03251953050494194, 0.09821777045726776, 0.14370116591453552, 0.16874998807907104, 0.17424315214157104, 0.14897461235523224, 0.10283202677965164, 0.0406494140625, -0.02922363206744194, -0.09492187201976776, -0.140625, -0.17094725370407104, -0.17490233480930328, -0.1483154296875, -0.09821777045726776, -0.0340576171875, 0.03669433668255806, 0.10415038466453552, 0.15007324516773224, 0.18149413168430328, 0.18413084745407104, 0.1593017578125, 0.10898437350988388, 0.03669433668255806, -0.024169921875, -0.09052734076976776, -0.14853514730930328, -0.18083494901657104, -0.18940429389476776, -0.1614990234375, -0.10283202677965164, -0.04108886793255806, 0.03515625, 0.10502929240465164, 0.15952147543430328, 0.19533690810203552, 0.18896484375, 0.16831053793430328, 0.10832519084215164, 0.04592284932732582, -0.03515625, -0.09426268935203552, -0.15556640923023224, -0.18632811307907104, -0.19028319418430328, -0.15886230766773224, -0.10415038466453552, -0.03471679612994194, 0.0318603515625, 0.10788574069738388, 0.16765137016773224, 0.20083007216453552, 0.199951171875, 0.1724853515625, 0.1109619140625, 0.04790038987994194, -0.03449707105755806, -0.10502929240465164, -0.15666504204273224, -0.19160155951976776, -0.20017088949680328, -0.16127929091453552, -0.10568847507238388, -0.04240722581744194, 0.04306640475988388, 0.11337890475988388, 0.16655273735523224, 0.2010498046875, 0.20017088949680328, 0.16874998807907104, 0.11777343600988388, 0.04152831807732582, -0.03383788838982582, -0.10239257663488388, -0.15974120795726776, -0.19401854276657104, -0.20039062201976776, -0.16567382216453552, -0.11337890475988388, -0.04262695088982582, 0.03581542894244194, 0.1142578125, 0.16655273735523224, 0.20478515326976776, 0.1988525390625, 0.17314451932907104, 0.11667480319738388, 0.04328612983226776, -0.02702636644244194, -0.10063476115465164, -0.16062010824680328, -0.19731444120407104, -0.19863280653953552, -0.16435547173023224, -0.10986328125, -0.04240722581744194, 0.03559570387005806, 0.11447753757238388, 0.164794921875, 0.19951170682907104, 0.20170897245407104, 0.1669921875, 0.11052245646715164, 0.04196777194738388, -0.02834472618997097, -0.09689941257238388, -0.16193847358226776, -0.19467772543430328, -0.19577635824680328, -0.16677245497703552, -0.10722655802965164, -0.03999023512005806, 0.03713378682732582, 0.1043701171875, 0.169189453125, 0.193359375, 0.20126952230930328, 0.17072753608226776, 0.11140136420726776, 0.04548339545726776, -0.02614746056497097, -0.09975585341453552, -0.16193847358226776, -0.18654784560203552, -0.19929198920726776, -0.16853027045726776, -0.10942382365465164, -0.04130859300494194, 0.03581542894244194, 0.11140136420726776, 0.1636962890625, 0.19182127714157104, 0.19270019233226776, 0.16984862089157104, 0.11052245646715164, 0.03977050632238388, -0.0263671875, -0.10085448622703552, -0.15292967855930328, -0.18918456137180328, -0.19357909262180328, -0.15688475966453552, -0.10239257663488388, -0.03251953050494194, 0.04218749701976776, 0.10173339396715164, 0.16018065810203552, 0.18632811307907104, 0.19072264432907104, 0.15622557699680328, 0.11162108927965164, 0.0384521484375, -0.02373046800494194, -0.09843749552965164, -0.15139159560203552, -0.1790771484375, -0.17995604872703552, -0.151611328125, -0.09865722060203552, -0.03515625, 0.0296630859375, 0.10261230170726776, 0.15380859375, 0.17863768339157104, 0.177978515625, 0.14985351264476776, 0.098876953125, 0.03911132737994194, -0.0296630859375, -0.08547362685203552, -0.13579101860523224, -0.17292480170726776, -0.16457518935203552, -0.14304198324680328, -0.08986815810203552, -0.03317870944738388, 0.03581542894244194, 0.09382323920726776, 0.14479979872703552, 0.16413573920726776, 0.173583984375, 0.13908691704273224, 0.09843749552965164, 0.04328612983226776, -0.02658691257238388, -0.08107910305261612, -0.13051757216453552, -0.15644530951976776, -0.16105957329273224, -0.1351318359375, -0.08942870795726776, -0.02812499925494194, 0.03010253794491291, 0.08481445163488388, 0.13249512016773224, 0.158203125, 0.15227051079273224, 0.12678222358226776, 0.08942870795726776, 0.02878417819738388, -0.028564453125, -0.07624511420726776, -0.12041015177965164, -0.14787597954273224, -0.14018554985523224, -0.11843261122703552, -0.08261718600988388, -0.02878417819738388, 0.024169921875, 0.07888183742761612, 0.11821288615465164, 0.1395263671875, 0.14501953125, 0.11821288615465164, 0.081298828125, 0.02900390513241291, -0.02373046800494194, -0.0692138671875, -0.11030273139476776, -0.12985838949680328, -0.1307373046875, -0.10810546576976776, -0.07558593899011612, -0.024169921875, 0.02592773362994194, 0.06745605170726776, 0.10239257663488388, 0.12458495795726776, 0.1285400390625, 0.10568847507238388, 0.0736083984375, 0.02834472618997097, -0.02241210825741291, -0.06196288764476776, -0.0966796875, -0.1087646484375, -0.11711425334215164, -0.10107421875, -0.06218261644244194, -0.02197265625, 0.01779785193502903, 0.05954589694738388, 0.09580077975988388, 0.10986328125, 0.11447753757238388, 0.09404296427965164, 0.0604248046875, 0.0230712890625, -0.014721679501235485, -0.05646972358226776, -0.07822265475988388, -0.09953612834215164, -0.10041503608226776, -0.07932128757238388, -0.05141601338982582, -0.01516113243997097, 0.019775390625, 0.05361327901482582, 0.07404784858226776, 0.09206542372703552, 0.0911865234375, 0.07866210490465164, 0.0516357421875, 0.01713867112994194, -0.009008788503706455, -0.04548339545726776, -0.06833495944738388, -0.07778320461511612, -0.076904296875, -0.06525878608226776, -0.04328612983226776, -0.013623046688735485, 0.01274413987994194, 0.04042968526482582, 0.06394042819738388, 0.06723632663488388, 0.07448730617761612, 0.06064452975988388, 0.04086913913488388, 0.0186767578125, -0.00527343712747097, -0.02944335900247097, -0.04460449144244194, -0.05976562201976776, -0.0604248046875, -0.04570312425494194, -0.02658691257238388, -0.007250976283103228, 0.01296386681497097, 0.02900390513241291, 0.03977050632238388, 0.05207519233226776, 0.04899902269244194, 0.0450439453125, 0.0274658203125, 0.0142822265625, -0.006152343470603228, -0.017578125, -0.02988281100988388, -0.03999023512005806, -0.03647460788488388, -0.02834472618997097, -0.0208740234375, -0.008129882626235485, 0.0041748047806322575, 0.01823730394244194, 0.02109374850988388, 0.02988281100988388, 0.02724609337747097, 0.02724609337747097, 0.02263183519244194, 0.007250976283103228, 0.001538085867650807, -0.0098876953125, -0.01494140550494194, -0.01625976525247097, -0.01384277269244194, -0.01164550706744194, -0.002636718563735485, -0.007250976283103228, 0.0068115233443677425, 0.0057128905318677425, 0.0068115233443677425, 0.00966796837747097, 0.003735351376235485, 0.0028564452659338713, 0.009448242373764515, 0.0, 0.0010986328125, 0.002636718563735485, 0.0068115233443677425, -0.0013183592818677425, 0.001538085867650807, -0.0004394531133584678, 0.0017578124534338713, 0.0024169920943677425, 0.001538085867650807, 0.0041748047806322575, 0.00439453125, 0.0, -0.0010986328125, 0.0041748047806322575, 0.003955077845603228, 0.006152343470603228, 0.004833984188735485, 0.00527343712747097, 0.007031249813735485, 0.0006591796409338713, 0.006152343470603228, 0.006591796875, 0.0008789062267169356, 0.002636718563735485, 0.00439453125, 0.0057128905318677425, 0.00527343712747097, -0.0006591796409338713, 0.00439453125, 0.0008789062267169356, -0.001538085867650807, 0.0032958984375, 0.00637206993997097, 0.0010986328125, 0.00439453125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.002636718563735485, -0.003735351376235485, 0.001538085867650807, 0.0013183592818677425, 0.007031249813735485, 0.005932617001235485, 0.0032958984375, 0.001977538922801614, 0.0041748047806322575, 0.0028564452659338713, -0.0010986328125, 0.001538085867650807, -0.0002197265566792339, 0.002636718563735485, 0.0006591796409338713, 0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, 0.003735351376235485, 0.003955077845603228, 0.0032958984375, -0.002636718563735485, 0.0032958984375, 0.0057128905318677425, 0.0002197265566792339, 0.0017578124534338713, -0.0004394531133584678, 0.0002197265566792339, 0.00439453125, -0.001538085867650807, 0.0024169920943677425, 0.0004394531133584678, 0.0, 0.0006591796409338713, -0.002636718563735485, 0.00439453125, -0.0010986328125, 0.0002197265566792339, 0.005932617001235485, 0.001538085867650807, 0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, 0.003955077845603228, 0.0, -0.003735351376235485, -0.0006591796409338713, 0.0017578124534338713, -0.004833984188735485, -0.0010986328125, -0.0041748047806322575, -0.0024169920943677425, -0.0010986328125, 0.006591796875, 0.01296386681497097, 0.012524413876235485, 0.01516113243997097, 0.02175292931497097, 0.01779785193502903, 0.01604003831744194, 0.009228515438735485, -0.00439453125, -0.01845703087747097, -0.02790527231991291, -0.02614746056497097, -0.03251953050494194, -0.02219238132238388, -0.01516113243997097, -0.0068115233443677425, 0.01164550706744194, 0.02263183519244194, 0.03713378682732582, 0.04658202826976776, 0.04130859300494194, 0.0450439453125, 0.0274658203125, 0.009008788503706455, -0.00966796837747097, -0.02768554538488388, -0.04218749701976776, -0.05405273288488388, -0.0582275390625, -0.05515136569738388, -0.03691406175494194, -0.00637206993997097, 0.01274413987994194, 0.04020996019244194, 0.05581054463982582, 0.0670166015625, 0.07822265475988388, 0.06064452975988388, 0.04350585862994194, 0.013403319753706455, -0.00966796837747097, -0.04548339545726776, -0.06613769382238388, -0.07514648139476776, -0.08217773586511612, -0.07075195014476776, -0.05141601338982582, -0.01955566368997097, 0.0208740234375, 0.05251464620232582, 0.0867919921875, 0.0955810546875, 0.0977783203125, 0.08041992038488388, 0.06328124552965164, 0.02241210825741291, -0.015380859375, -0.05581054463982582, -0.08547362685203552, -0.1043701171875, -0.10920409858226776, -0.09602050483226776, -0.05800781026482582, -0.0252685546875, 0.02702636644244194, 0.06657714396715164, 0.10502929240465164, 0.11865234375, 0.12568359076976776, 0.10568847507238388, 0.07470703125, 0.0318603515625, -0.01955566368997097, -0.06745605170726776, -0.10195311903953552, -0.12590332329273224, -0.12392577528953552, -0.10942382365465164, -0.07229004055261612, -0.02373046800494194, 0.02614746056497097, 0.07932128757238388, 0.12370605021715164, 0.14216308295726776, 0.14436034858226776, 0.1219482421875, 0.087890625, 0.02790527231991291, -0.0274658203125, -0.0736083984375, -0.12106933444738388, -0.15249022841453552, -0.15644530951976776, -0.12502440810203552, -0.08437499403953552, -0.03032226487994194, 0.0340576171875, 0.08811035007238388, 0.13557128608226776, 0.16193847358226776, 0.16831053793430328, 0.1461181640625, 0.0933837890625, 0.0362548828125, -0.03076171875, -0.09184569865465164, -0.13601073622703552, -0.16940917074680328, -0.1768798828125, -0.14787597954273224, -0.09645995497703552, -0.03603515401482582, 0.03955078125, 0.09799804538488388, 0.14985351264476776, 0.18061523139476776, 0.18610839545726776, 0.15556640923023224, 0.11074218153953552, 0.03471679612994194, -0.02834472618997097, -0.09711913764476776, -0.1505126953125, -0.18874511122703552, -0.18632811307907104, -0.15776367485523224, -0.10700683295726776, -0.03537597507238388, 0.03823241963982582, 0.1131591796875, 0.16303710639476776, 0.19599609076976776, 0.19753417372703552, 0.17182616889476776, 0.1131591796875, 0.04680175706744194, -0.03471679612994194, -0.10261230170726776, -0.16303710639476776, -0.19687499105930328, -0.21027831733226776, -0.17226561903953552, -0.11711425334215164, -0.03757324069738388, 0.04240722581744194, 0.11601562052965164, 0.17402343451976776, 0.21665038168430328, 0.213134765625, 0.18303221464157104, 0.12678222358226776, 0.04438476264476776, -0.03647460788488388, -0.10810546576976776, -0.17490233480930328, -0.21708983182907104, -0.2186279296875, -0.18610839545726776, -0.11887206882238388, -0.04130859300494194, 0.04240722581744194, 0.11843261122703552, 0.18544921278953552, 0.22170409560203552, 0.22719725966453552, 0.19489745795726776, 0.1307373046875, 0.04416503757238388, -0.0362548828125, -0.11711425334215164, -0.18083494901657104, -0.22587889432907104, -0.23049315810203552, -0.19270019233226776, -0.12392577528953552, -0.04702148213982582, 0.04306640475988388, 0.1318359375, 0.1966552734375, 0.23334960639476776, 0.23378905653953552, 0.199951171875, 0.13447265326976776, 0.0516357421875, -0.03317870944738388, -0.11733397841453552, -0.18544921278953552, -0.23159179091453552, -0.23774413764476776, -0.20390623807907104, -0.13579101860523224, -0.04899902269244194, 0.0439453125, 0.13117675483226776, 0.20566405355930328, 0.24367675185203552, 0.24631346762180328, 0.20017088949680328, 0.1395263671875, 0.059326171875, -0.03229980543255806, -0.123046875, -0.19291990995407104, -0.23994140326976776, -0.24851073324680328, -0.20852050185203552, -0.13359375298023224, -0.04438476264476776, 0.04108886793255806, 0.13117675483226776, 0.20061033964157104, 0.24873046576976776, 0.2535644471645355, 0.20830076932907104, 0.13930663466453552, 0.05581054463982582, -0.03977050632238388, -0.125244140625, -0.19863280653953552, -0.24191893637180328, -0.24191893637180328, -0.20852050185203552, -0.13579101860523224, -0.05207519233226776, 0.04855956882238388, 0.13095702230930328, 0.20258788764476776, 0.24697265028953552, 0.24697265028953552, 0.21401366591453552, 0.13601073622703552, 0.05031738057732582, -0.03537597507238388, -0.1241455078125, -0.19291990995407104, -0.23972167074680328, -0.24587401747703552, -0.21577148139476776, -0.13864745199680328, -0.0538330078125, 0.04306640475988388, 0.1373291015625, 0.19973143935203552, 0.2427978515625, 0.24807128310203552, 0.21269530057907104, 0.1395263671875, 0.05449218675494194, -0.03120117075741291, -0.12678222358226776, -0.20083007216453552, -0.23972167074680328, -0.24345701932907104, -0.20917968451976776, -0.1373291015625, -0.05031738057732582, 0.041748046875, 0.12919922173023224, 0.20192870497703552, 0.248291015625, 0.24411620199680328, 0.20346678793430328, 0.13974608480930328, 0.05734863132238388, -0.03251953050494194, -0.1219482421875, -0.19028319418430328, -0.23708495497703552, -0.24257811903953552, -0.20500487089157104, -0.1373291015625, -0.05031738057732582, 0.0406494140625, 0.1329345703125, 0.20017088949680328, 0.23576658964157104, 0.24543456733226776, 0.20258788764476776, 0.14018554985523224, 0.04921874776482582, -0.03229980543255806, -0.123046875, -0.18544921278953552, -0.22434081137180328, -0.23422850668430328, -0.19775390625, -0.12832030653953552, -0.04812011495232582, 0.04020996019244194, 0.12216796725988388, 0.18940429389476776, 0.2296142578125, 0.22785644233226776, 0.19643554091453552, 0.12919922173023224, 0.05339355394244194, -0.03098144382238388, -0.11557617038488388, -0.17775878310203552, -0.22456054389476776, -0.22609862685203552, -0.19291990995407104, -0.12941893935203552, -0.03867187350988388, 0.04460449144244194, 0.11689452826976776, 0.1812744140625, 0.22390136122703552, 0.22478026151657104, 0.18742674589157104, 0.1263427734375, 0.04899902269244194, -0.032958984375, -0.10920409858226776, -0.17204588651657104, -0.20698241889476776, -0.21379393339157104, -0.18325194716453552, -0.11953124403953552, -0.04548339545726776, 0.04350585862994194, 0.11865234375, 0.17270506918430328, 0.20808105170726776, 0.21027831733226776, 0.18105468153953552, 0.11733397841453552, 0.0428466796875, -0.03339843824505806, -0.098876953125, -0.15908202528953552, -0.19797362387180328, -0.19863280653953552, -0.1702880859375, -0.112060546875, -0.0406494140625, 0.037353515625, 0.10480956733226776, 0.16083984076976776, 0.19291990995407104, 0.19204100966453552, 0.16787108778953552, 0.10898437350988388, 0.04042968526482582, -0.0296630859375, -0.09624022990465164, -0.15073241293430328, -0.1834716796875, -0.18654784560203552, -0.15556640923023224, -0.10393065959215164, -0.03339843824505806, 0.04042968526482582, 0.10195311903953552, 0.1494140625, 0.17380370199680328, 0.17644041776657104, 0.15446777641773224, 0.09645995497703552, 0.04240722581744194, -0.028564453125, -0.08261718600988388, -0.13666991889476776, -0.1658935546875, -0.16677245497703552, -0.13666991889476776, -0.09316405653953552, -0.03076171875, 0.02812499925494194, 0.08283691108226776, 0.13359375298023224, 0.15644530951976776, 0.15556640923023224, 0.12875975668430328, 0.0933837890625, 0.03493652120232582, -0.02438964694738388, -0.07229004055261612, -0.11777343600988388, -0.13996581733226776, -0.14633788168430328, -0.12041015177965164, -0.07932128757238388, -0.02900390513241291, 0.03120117075741291, 0.07492675632238388, 0.1131591796875, 0.13864745199680328, 0.13886718451976776, 0.10942382365465164, 0.08107910305261612, 0.03032226487994194, -0.01999511756002903, -0.0703125, -0.09843749552965164, -0.11887206882238388, -0.12260741740465164, -0.0966796875, -0.063720703125, -0.02460937388241291, 0.01889648474752903, 0.0604248046875, 0.09162597358226776, 0.11008300632238388, 0.1153564453125, 0.09975585341453552, 0.06218261644244194, 0.028564453125, -0.01406249962747097, -0.05581054463982582, -0.08613280951976776, -0.098876953125, -0.09294433146715164, -0.08063964545726776, -0.05515136569738388, -0.013403319753706455, 0.017578125, 0.04702148213982582, 0.07558593899011612, 0.08964843302965164, 0.087890625, 0.07404784858226776, 0.04877929389476776, 0.01691894419491291, -0.015600585378706455, -0.04020996019244194, -0.063720703125, -0.0758056640625, -0.068115234375, -0.06394042819738388, -0.03889160230755806, -0.01779785193502903, 0.015380859375, 0.04042968526482582, 0.05361327901482582, 0.06284179538488388, 0.06108398362994194, 0.05405273288488388, 0.03471679612994194, 0.00966796837747097, -0.003735351376235485, -0.02680663950741291, -0.04658202826976776, -0.04746093600988388, -0.04218749701976776, -0.03867187350988388, -0.02395019493997097, -0.009228515438735485, 0.00966796837747097, 0.01779785193502903, 0.02944335900247097, 0.03537597507238388, 0.03515625, 0.02614746056497097, 0.02285156212747097, 0.00856933556497097, -0.0057128905318677425, -0.012304686941206455, -0.02131347544491291, -0.01691894419491291, -0.02329101413488388, -0.013403319753706455, -0.01296386681497097, 0.001538085867650807, 0.006152343470603228, 0.005932617001235485, 0.013403319753706455, 0.005932617001235485, 0.011206054128706455, 0.007250976283103228, 0.0008789062267169356, 0.004833984188735485, 0.0032958984375, 0.0017578124534338713, 0.005932617001235485, 0.003076171735301614, -0.0010986328125, 0.0057128905318677425, 0.0068115233443677425, -0.0004394531133584678, -0.0002197265566792339, -0.00439453125, -0.0041748047806322575, 0.0057128905318677425, -0.0010986328125, 0.0024169920943677425, 0.00527343712747097, 0.0035156249068677425, 0.004833984188735485, 0.0017578124534338713, 0.002197265625, 0.0006591796409338713, 0.0004394531133584678, -0.0002197265566792339, 0.00527343712747097, 0.002636718563735485, 0.006591796875, -0.003735351376235485, 0.0002197265566792339, -0.0028564452659338713, -0.003955077845603228, 0.00439453125, 0.002197265625, -0.0010986328125, 0.00439453125, 0.0013183592818677425, 0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.001538085867650807, -0.0010986328125, 0.0013183592818677425, 0.006152343470603228, -0.0017578124534338713, -0.0002197265566792339, 0.006591796875, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, 0.0024169920943677425, 0.0057128905318677425, -0.0004394531133584678, 0.003076171735301614, 0.0054931640625, 0.002636718563735485, 0.0028564452659338713, 0.0032958984375, 0.001538085867650807, -0.0024169920943677425, 0.0, -0.0002197265566792339, -0.002197265625, 0.0041748047806322575, 0.0, 0.00439453125, 0.0057128905318677425, -0.0017578124534338713, 0.0046142577193677425, 0.0032958984375, -0.0028564452659338713, 0.0068115233443677425, -0.0032958984375, 0.0013183592818677425, 0.0054931640625, 0.0035156249068677425, 0.0, 0.005053710658103228, 0.008129882626235485, 0.004833984188735485, -0.001538085867650807, 0.005053710658103228, 0.003735351376235485, 0.001538085867650807, -0.002197265625, 0.004833984188735485, -0.0004394531133584678, -0.0041748047806322575, -0.0024169920943677425, 0.0002197265566792339, -0.007250976283103228, -0.0046142577193677425, 0.001538085867650807, 0.0004394531133584678, 0.008129882626235485, 0.013623046688735485, 0.02197265625, 0.02658691257238388, 0.01955566368997097, 0.01933593675494194, 0.005053710658103228, -0.0010986328125, -0.01845703087747097, -0.02482910081744194, -0.03317870944738388, -0.03999023512005806, -0.03823241963982582, -0.02460937388241291, -0.00966796837747097, 0.011425781063735485, 0.0296630859375, 0.03999023512005806, 0.04812011495232582, 0.06196288764476776, 0.04921874776482582, 0.03383788838982582, 0.01516113243997097, -0.01186523400247097, -0.03867187350988388, -0.05581054463982582, -0.06416015326976776, -0.0692138671875, -0.06130370870232582, -0.0406494140625, -0.01889648474752903, 0.01955566368997097, 0.04240722581744194, 0.0703125, 0.08920898288488388, 0.08986815810203552, 0.0802001953125, 0.05141601338982582, 0.02175292931497097, -0.014501952566206455, -0.04812011495232582, -0.07778320461511612, -0.0966796875, -0.09755858778953552, -0.08195800334215164, -0.05559081956744194, -0.0230712890625, 0.02219238132238388, 0.06459961086511612, 0.0999755859375, 0.1153564453125, 0.11689452826976776, 0.09953612834215164, 0.07207030802965164, 0.02812499925494194, -0.019775390625, -0.06613769382238388, -0.10283202677965164, -0.12744140625, -0.13315428793430328, -0.11118163913488388, -0.07778320461511612, -0.02241210825741291, 0.02900390513241291, 0.08393554389476776, 0.1175537109375, 0.14238281548023224, 0.15029296278953552, 0.12875975668430328, 0.08942870795726776, 0.0362548828125, -0.02724609337747097, -0.08041992038488388, -0.12744140625, -0.156005859375, -0.15095214545726776, -0.1318359375, -0.08920898288488388, -0.03076171875, 0.02988281100988388, 0.08745116740465164, 0.14040526747703552, 0.17380370199680328, 0.17116698622703552, 0.1505126953125, 0.0977783203125, 0.04108886793255806, -0.028564453125, -0.09470214694738388, -0.1461181640625, -0.18061523139476776, -0.18083494901657104, -0.15139159560203552, -0.10810546576976776, -0.03208007663488388, 0.04240722581744194, 0.112060546875, 0.16677245497703552, 0.19072264432907104, 0.19841307401657104, 0.17072753608226776, 0.11162108927965164, 0.04636230319738388, -0.02944335900247097, -0.107666015625, -0.160400390625, -0.2021484375, -0.20830076932907104, -0.17753905057907104, -0.11403807997703552, -0.04152831807732582, 0.04658202826976776, 0.11843261122703552, 0.18369139730930328, 0.21577148139476776, 0.21599119901657104, 0.18500976264476776, 0.12370605021715164, 0.05119628831744194, -0.03559570387005806, -0.11403807997703552, -0.18193358182907104, -0.21687011420726776, -0.22829589247703552, -0.19248045980930328, -0.12766112387180328, -0.0439453125, 0.04262695088982582, 0.1241455078125, 0.19489745795726776, 0.24038085341453552, 0.23642577230930328, 0.20654296875, 0.13623046875, 0.05471191182732582, -0.03273925557732582, -0.12656249105930328, -0.19709472358226776, -0.23862303793430328, -0.24411620199680328, -0.20852050185203552, -0.13095702230930328, -0.04921874776482582, 0.041748046875, 0.1395263671875, 0.21027831733226776, 0.2572998106479645, 0.2568603456020355, 0.22148436307907104, 0.1439208984375, 0.0604248046875, -0.03515625, -0.12700195610523224, -0.20346678793430328, -0.25092771649360657, -0.25642088055610657, -0.2197265625, -0.14238281548023224, -0.05229492112994194, 0.04746093600988388, 0.14106445014476776, 0.21489256620407104, 0.26520994305610657, 0.26652830839157104, 0.22587889432907104, 0.15358886122703552, 0.05998535081744194, -0.04416503757238388, -0.13535155355930328, -0.21005858480930328, -0.2678466737270355, -0.2757568359375, -0.23027342557907104, -0.14655761420726776, -0.05954589694738388, 0.04526367038488388, 0.14853514730930328, 0.22258299589157104, 0.2755371034145355, 0.2770752012729645, 0.2362060546875, 0.15798339247703552, 0.06591796875, -0.03999023512005806, -0.1318359375, -0.21884764730930328, -0.2682861387729645, -0.2792724668979645, -0.230712890625, -0.15424804389476776, -0.05405273288488388, 0.04855956882238388, 0.158203125, 0.23554687201976776, 0.2876220643520355, 0.29289549589157104, 0.24543456733226776, 0.16721190512180328, 0.06745605170726776, -0.03801269456744194, -0.13447265326976776, -0.22126464545726776, -0.2843261659145355, -0.28740233182907104, -0.24345701932907104, -0.15732420980930328, -0.054931640625, 0.05361327901482582, 0.15183104574680328, 0.23642577230930328, 0.2968505918979645, 0.2913574278354645, 0.24763183295726776, 0.16633300483226776, 0.068115234375, -0.03559570387005806, -0.14479979872703552, -0.22499999403953552, -0.2891601622104645, -0.29179686307907104, -0.24807128310203552, -0.158203125, -0.05361327901482582, 0.05537109076976776, 0.15886230766773224, 0.243896484375, 0.2968505918979645, 0.2975097596645355, 0.24631346762180328, 0.16853027045726776, 0.0670166015625, -0.03647460788488388, -0.14128418266773224, -0.23049315810203552, -0.28630369901657104, -0.2902587950229645, -0.24257811903953552, -0.16523437201976776, -0.0604248046875, 0.05097655951976776, 0.15644530951976776, 0.23994140326976776, 0.2913574278354645, 0.29069823026657104, 0.24543456733226776, 0.16545410454273224, 0.06679687649011612, -0.0384521484375, -0.13820800185203552, -0.22917479276657104, -0.2865234315395355, -0.292236328125, -0.24235838651657104, -0.15798339247703552, -0.05800781026482582, 0.05515136569738388, 0.15117187798023224, 0.23247069120407104, 0.2898193299770355, 0.292236328125, 0.24104003608226776, 0.16787108778953552, 0.06196288764476776, -0.04240722581744194, -0.13688965141773224, -0.2208251953125, -0.27685546875, -0.28190916776657104, -0.23422850668430328, -0.15688475966453552, -0.05888671800494194, 0.04636230319738388, 0.15402831137180328, 0.23708495497703552, 0.28564453125, 0.28828123211860657, 0.23532713949680328, 0.1593017578125, 0.06240234151482582, -0.04218749701976776, -0.1329345703125, -0.22258299589157104, -0.26850584149360657, -0.28190916776657104, -0.23356932401657104, -0.15292967855930328, -0.05581054463982582, 0.05251464620232582, 0.14589843153953552, 0.22412109375, 0.27839353680610657, 0.2757568359375, 0.230712890625, 0.16083984076976776, 0.06196288764476776, -0.037353515625, -0.13754881918430328, -0.2098388671875, -0.26301267743110657, -0.26982420682907104, -0.2252197265625, -0.14150390028953552, -0.04812011495232582, 0.05427245795726776, 0.13930663466453552, 0.21269530057907104, 0.25861814618110657, 0.2627929747104645, 0.21577148139476776, 0.1505126953125, 0.05690917745232582, -0.03955078125, -0.12612304091453552, -0.20566405355930328, -0.24565428495407104, -0.2537841796875, -0.2109375, -0.140625, -0.04592284932732582, 0.04526367038488388, 0.13271483778953552, 0.20280760526657104, 0.24169921875, 0.24587401747703552, 0.20742186903953552, 0.14348144829273224, 0.05559081956744194, -0.03251953050494194, -0.11821288615465164, -0.1845703125, -0.23356932401657104, -0.24125975370407104, -0.19248045980930328, -0.1307373046875, -0.04833984375, 0.04526367038488388, 0.12590332329273224, 0.19204100966453552, 0.22719725966453552, 0.23378905653953552, 0.19577635824680328, 0.12832030653953552, 0.0516357421875, -0.03208007663488388, -0.11337890475988388, -0.17731933295726776, -0.21511229872703552, -0.21269530057907104, -0.18435057997703552, -0.11799316108226776, -0.04702148213982582, 0.03955078125, 0.11447753757238388, 0.17402343451976776, 0.20808105170726776, 0.20654296875, 0.182373046875, 0.11623534560203552, 0.04570312425494194, -0.0318603515625, -0.09975585341453552, -0.15556640923023224, -0.19709472358226776, -0.2010498046875, -0.16259765625, -0.10590820014476776, -0.03537597507238388, 0.03032226487994194, 0.10019531100988388, 0.15380859375, 0.18369139730930328, 0.19248045980930328, 0.15336914360523224, 0.10590820014476776, 0.03911132737994194, -0.02592773362994194, -0.0889892578125, -0.14150390028953552, -0.16853027045726776, -0.16721190512180328, -0.14523924887180328, -0.090087890625, -0.03603515401482582, 0.03559570387005806, 0.08920898288488388, 0.13425292074680328, 0.16655273735523224, 0.16259765625, 0.1351318359375, 0.08986815810203552, 0.037353515625, -0.01955566368997097, -0.07866210490465164, -0.11667480319738388, -0.14326171576976776, -0.14699706435203552, -0.11557617038488388, -0.08195800334215164, -0.02614746056497097, 0.03164062276482582, 0.08151855319738388, 0.11447753757238388, 0.13908691704273224, 0.13315428793430328, 0.11557617038488388, 0.07514648139476776, 0.02878417819738388, -0.01999511756002903, -0.06350097805261612, -0.09733886271715164, -0.12019042670726776, -0.11557617038488388, -0.10107421875, -0.05998535081744194, -0.01955566368997097, 0.02197265625, 0.06218261644244194, 0.0889892578125, 0.10832519084215164, 0.10129394382238388, 0.08371581882238388, 0.05756835639476776, 0.02241210825741291, -0.01625976525247097, -0.05141601338982582, -0.0714111328125, -0.08657225966453552, -0.08767089247703552, -0.07229004055261612, -0.04526367038488388, -0.014501952566206455, 0.012524413876235485, 0.04262695088982582, 0.06503906100988388, 0.07514648139476776, 0.07624511420726776, 0.05756835639476776, 0.04020996019244194, 0.017578125, -0.008129882626235485, -0.03273925557732582, -0.04833984375, -0.04921874776482582, -0.05295410007238388, -0.04570312425494194, -0.03251953050494194, -0.00637206993997097, 0.01318359375, 0.0230712890625, 0.03669433668255806, 0.04680175706744194, 0.04350585862994194, 0.032958984375, 0.02241210825741291, 0.007031249813735485, -0.005053710658103228, -0.0208740234375, -0.024169921875, -0.02482910081744194, -0.02724609337747097, -0.01406249962747097, -0.01669921912252903, -0.0008789062267169356, 0.0076904296875, 0.0054931640625, 0.0142822265625, 0.009228515438735485, 0.01516113243997097, 0.010327148251235485, 0.0004394531133584678, 0.003735351376235485, 0.001977538922801614, 0.004833984188735485, 0.008349609561264515, 0.0010986328125, 0.0004394531133584678, 0.0006591796409338713, 0.0046142577193677425, -0.0013183592818677425, -0.003076171735301614, 0.0057128905318677425, -0.002636718563735485, -0.001977538922801614, -0.002197265625, 0.004833984188735485, -0.0035156249068677425, -0.0032958984375, 0.005053710658103228, -0.001977538922801614, 0.0017578124534338713, 0.00747070275247097, 0.006152343470603228, -0.001538085867650807, 0.0002197265566792339, 0.005053710658103228, 0.0024169920943677425, -0.003735351376235485, 0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, 0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, 0.002197265625, 0.0013183592818677425, 0.00637206993997097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.00527343712747097, -0.0017578124534338713, 0.0002197265566792339, 0.0057128905318677425, 0.0002197265566792339, 0.002197265625, 0.006152343470603228, 0.0017578124534338713, -0.002636718563735485, -0.002197265625, 0.004833984188735485, -0.0028564452659338713, -0.0017578124534338713, 0.002636718563735485, 0.0, 0.0032958984375, 0.0008789062267169356, 0.006591796875, 0.0008789062267169356, 0.0017578124534338713, -0.0035156249068677425, -0.0006591796409338713, 0.0004394531133584678, 0.0028564452659338713, 0.0057128905318677425, -0.002197265625, 0.002636718563735485, -0.002197265625, 0.0008789062267169356, 0.003955077845603228, 0.0017578124534338713, 0.0004394531133584678, -0.0010986328125, 0.006152343470603228, -0.001977538922801614, 0.0024169920943677425, -0.0013183592818677425, 0.0028564452659338713, 0.0008789062267169356, 0.002197265625, 0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0028564452659338713, 0.0024169920943677425, 0.003735351376235485, 0.00637206993997097, 0.001977538922801614, -0.0054931640625, -0.001538085867650807, -0.007250976283103228, -0.004833984188735485, -0.005053710658103228, 0.003076171735301614, 0.008349609561264515, 0.02065429650247097, 0.02131347544491291, 0.03164062276482582, 0.02724609337747097, 0.02065429650247097, 0.011206054128706455, -0.0008789062267169356, -0.015380859375, -0.0318603515625, -0.03867187350988388, -0.04328612983226776, -0.03581542894244194, -0.02395019493997097, -0.00527343712747097, 0.009008788503706455, 0.03098144382238388, 0.04855956882238388, 0.06547851115465164, 0.068115234375, 0.05295410007238388, 0.0362548828125, 0.0120849609375, -0.0087890625, -0.04152831807732582, -0.06789550930261612, -0.08151855319738388, -0.07954101264476776, -0.06657714396715164, -0.04768066108226776, -0.01713867112994194, 0.01889648474752903, 0.05690917745232582, 0.08151855319738388, 0.09755858778953552, 0.0999755859375, 0.08942870795726776, 0.0615234375, 0.0263671875, -0.02219238132238388, -0.06020507588982582, -0.0955810546875, -0.1142578125, -0.116455078125, -0.10063476115465164, -0.06284179538488388, -0.02592773362994194, 0.02768554538488388, 0.072509765625, 0.11162108927965164, 0.13425292074680328, 0.13579101860523224, 0.11821288615465164, 0.07778320461511612, 0.03273925557732582, -0.02153320237994194, -0.08151855319738388, -0.12172850966453552, -0.147216796875, -0.14699706435203552, -0.1307373046875, -0.08986815810203552, -0.03647460788488388, 0.03317870944738388, 0.09052734076976776, 0.14370116591453552, 0.17292480170726776, 0.16721190512180328, 0.14677734673023224, 0.10393065959215164, 0.03383788838982582, -0.02614746056497097, -0.09184569865465164, -0.14150390028953552, -0.17578125, -0.186767578125, -0.15644530951976776, -0.10283202677965164, -0.03823241963982582, 0.04108886793255806, 0.10854491591453552, 0.1636962890625, 0.20017088949680328, 0.20566405355930328, 0.1680908203125, 0.11469726264476776, 0.04636230319738388, -0.03361816331744194, -0.11184081435203552, -0.16787108778953552, -0.20302733778953552, -0.21357421576976776, -0.17841796576976776, -0.12128905951976776, -0.04240722581744194, 0.046142578125, 0.12326660007238388, 0.18588866293430328, 0.22214354574680328, 0.23291015625, 0.19643554091453552, 0.1318359375, 0.054931640625, -0.03273925557732582, -0.11579589545726776, -0.18808592855930328, -0.23488768935203552, -0.23576658964157104, -0.19643554091453552, -0.12875975668430328, -0.04680175706744194, 0.04702148213982582, 0.12897948920726776, 0.208740234375, 0.24631346762180328, 0.25312498211860657, 0.21884764730930328, 0.14436034858226776, 0.05427245795726776, -0.03361816331744194, -0.12875975668430328, -0.208740234375, -0.2572998106479645, -0.26081541180610657, -0.22148436307907104, -0.14370116591453552, -0.05712890625, 0.04790038987994194, 0.14326171576976776, 0.22324217855930328, 0.2693847715854645, 0.274658203125, 0.23291015625, 0.15886230766773224, 0.05910644307732582, -0.03779296949505806, -0.13579101860523224, -0.21928709745407104, -0.270263671875, -0.2821289002895355, -0.2362060546875, -0.15688475966453552, -0.05646972358226776, 0.04768066108226776, 0.15864257514476776, 0.24038085341453552, 0.28388670086860657, 0.2902587950229645, 0.2493896484375, 0.16633300483226776, 0.06240234151482582, -0.03383788838982582, -0.1461181640625, -0.23356932401657104, -0.2867431640625, -0.2942138612270355, -0.24960936605930328, -0.16611327230930328, -0.05646972358226776, 0.05668945237994194, 0.16413573920726776, 0.24455565214157104, 0.30278319120407104, 0.30585935711860657, 0.263671875, 0.17534178495407104, 0.07338867336511612, -0.04350585862994194, -0.14436034858226776, -0.24147948622703552, -0.30498045682907104, -0.3084960877895355, -0.26301267743110657, -0.17600096762180328, -0.059326171875, 0.05515136569738388, 0.16171874105930328, 0.2594970762729645, 0.3177246153354645, 0.31816405057907104, 0.27531737089157104, 0.18522948026657104, 0.06679687649011612, -0.04482421651482582, -0.15117187798023224, -0.2529052793979645, -0.3100341856479645, -0.3243164122104645, -0.2744384706020355, -0.17336425185203552, -0.06569824367761612, 0.06086425483226776, 0.17160643637180328, 0.2649902403354645, 0.3293701112270355, 0.3262939453125, 0.27839353680610657, 0.18698729574680328, 0.07734374701976776, -0.04328612983226776, -0.1593017578125, -0.2524658143520355, -0.3155273497104645, -0.33244627714157104, -0.27949216961860657, -0.18435057997703552, -0.07163085788488388, 0.05668945237994194, 0.16677245497703552, 0.2700439393520355, 0.3282714784145355, 0.33881834149360657, 0.28498533368110657, 0.186767578125, 0.08151855319738388, -0.04240722581744194, -0.15117187798023224, -0.2546630799770355, -0.3183837831020355, -0.333984375, -0.27839353680610657, -0.18544921278953552, -0.06745605170726776, 0.0516357421875, 0.17490233480930328, 0.26806640625, 0.3348632752895355, 0.3458496034145355, 0.28059080243110657, 0.19094237685203552, 0.072509765625, -0.046142578125, -0.16523437201976776, -0.261474609375, -0.327392578125, -0.3337646424770355, -0.27861326932907104, -0.18061523139476776, -0.06767577677965164, 0.0615234375, 0.17226561903953552, 0.27619627118110657, 0.3298095762729645, 0.336181640625, 0.27949216961860657, 0.1922607421875, 0.08107910305261612, -0.03933105245232582, -0.15249022841453552, -0.2605957090854645, -0.3199218809604645, -0.3348632752895355, -0.28278806805610657, -0.18259276449680328, -0.0670166015625, 0.06130370870232582, 0.16874998807907104, 0.2671875059604645, 0.333984375, 0.33991697430610657, 0.2779541015625, 0.1900634765625, 0.07119140774011612, -0.04196777194738388, -0.15842284262180328, -0.25092771649360657, -0.3197021484375, -0.33222654461860657, -0.27399900555610657, -0.18369139730930328, -0.06767577677965164, 0.05295410007238388, 0.17512206733226776, 0.2605957090854645, 0.3240966796875, 0.3385986089706421, 0.27509763836860657, 0.182373046875, 0.07097167521715164, -0.03977050632238388, -0.15468749403953552, -0.2524658143520355, -0.31640625, -0.3260742127895355, -0.2691650390625, -0.17666015028953552, -0.06130370870232582, 0.05097655951976776, 0.1658935546875, 0.26301267743110657, 0.31025388836860657, 0.318603515625, 0.26806640625, 0.1834716796875, 0.0758056640625, -0.04680175706744194, -0.14787597954273224, -0.239501953125, -0.2999267578125, -0.31025388836860657, -0.2562011778354645, -0.17490233480930328, -0.06437987834215164, 0.05361327901482582, 0.15842284262180328, 0.25114744901657104, 0.3052001893520355, 0.30937498807907104, 0.25861814618110657, 0.16940917074680328, 0.07229004055261612, -0.04372558370232582, -0.14216308295726776, -0.22763670980930328, -0.2825683653354645, -0.29619139432907104, -0.24323730170726776, -0.15776367485523224, -0.05734863132238388, 0.04548339545726776, 0.15139159560203552, 0.23906248807907104, 0.283447265625, 0.2898193299770355, 0.23686522245407104, 0.1571044921875, 0.06855468451976776, -0.04218749701976776, -0.13798828423023224, -0.21994628012180328, -0.2649902403354645, -0.28125, -0.23444823920726776, -0.15358886122703552, -0.05031738057732582, 0.05119628831744194, 0.140625, 0.2230224609375, 0.26323240995407104, 0.2645507752895355, 0.2252197265625, 0.15336914360523224, 0.05888671800494194, -0.03713378682732582, -0.12590332329273224, -0.2054443359375, -0.24565428495407104, -0.2579589784145355, -0.21511229872703552, -0.13337402045726776, -0.04702148213982582, 0.04218749701976776, 0.1329345703125, 0.2054443359375, 0.23862303793430328, 0.24191893637180328, 0.20192870497703552, 0.1395263671875, 0.05207519233226776, -0.03427734225988388, -0.11909179389476776, -0.18435057997703552, -0.21928709745407104, -0.22895507514476776, -0.19160155951976776, -0.12700195610523224, -0.04812011495232582, 0.04108886793255806, 0.11689452826976776, 0.18039549887180328, 0.221923828125, 0.21621093153953552, 0.18303221464157104, 0.12019042670726776, 0.05075683444738388, -0.0274658203125, -0.10920409858226776, -0.16567382216453552, -0.19797362387180328, -0.19533690810203552, -0.16413573920726776, -0.10788574069738388, -0.0384521484375, 0.03493652120232582, 0.10195311903953552, 0.156005859375, 0.18435057997703552, 0.18940429389476776, 0.16083984076976776, 0.10480956733226776, 0.0439453125, -0.0208740234375, -0.08833007514476776, -0.13666991889476776, -0.16831053793430328, -0.16391600668430328, -0.1439208984375, -0.09711913764476776, -0.03229980543255806, 0.03120117075741291, 0.08920898288488388, 0.12985838949680328, 0.1614990234375, 0.15468749403953552, 0.129638671875, 0.09052734076976776, 0.03581542894244194, -0.02021484263241291, -0.07163085788488388, -0.11667480319738388, -0.13996581733226776, -0.13776855170726776, -0.1175537109375, -0.07514648139476776, -0.02570800669491291, 0.02197265625, 0.06899414211511612, 0.10371093451976776, 0.12810058891773224, 0.11843261122703552, 0.10634765028953552, 0.07294921576976776, 0.03164062276482582, -0.015380859375, -0.05910644307732582, -0.08415526896715164, -0.09953612834215164, -0.10546875, -0.081298828125, -0.05537109076976776, -0.0208740234375, 0.01955566368997097, 0.05515136569738388, 0.07646483927965164, 0.08920898288488388, 0.08327636867761612, 0.06877440959215164, 0.04899902269244194, 0.01691894419491291, -0.01164550706744194, -0.03581542894244194, -0.05624999850988388, -0.06328124552965164, -0.06459961086511612, -0.05734863132238388, -0.0362548828125, -0.011425781063735485, 0.01516113243997097, 0.03120117075741291, 0.0494384765625, 0.04921874776482582, 0.0450439453125, 0.03801269456744194, 0.0263671875, 0.01296386681497097, -0.0068115233443677425, -0.02043456956744194, -0.0263671875, -0.02438964694738388, -0.02922363206744194, -0.02438964694738388, -0.01186523400247097, -0.007250976283103228, 0.0004394531133584678, 0.01054687425494194, 0.012304686941206455, 0.01054687425494194, 0.01823730394244194, 0.01296386681497097, 0.00747070275247097, -0.0002197265566792339, 0.0013183592818677425, 0.0057128905318677425, 0.003955077845603228, 0.0032958984375, 0.0004394531133584678, 0.0, 0.002197265625, -0.0013183592818677425, -0.001538085867650807, 0.0017578124534338713, -0.002636718563735485, 0.0008789062267169356, -0.004833984188735485, 0.006591796875, -0.002636718563735485, 0.00439453125, 0.005053710658103228, 0.007910155691206455, 0.00439453125, 0.0068115233443677425, 0.004833984188735485, 0.00527343712747097, 0.006152343470603228, -0.001538085867650807, -0.0024169920943677425, 0.0013183592818677425, -0.003076171735301614, 0.001977538922801614, 0.0013183592818677425, 0.0006591796409338713, -0.003735351376235485, 0.003076171735301614, 0.005053710658103228, 0.001538085867650807, 0.00637206993997097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003955077845603228, 0.0017578124534338713, 0.002197265625, 0.0008789062267169356, 0.0041748047806322575, -0.0010986328125, -0.001977538922801614, 0.0028564452659338713, 0.00527343712747097, -0.002197265625, -0.0017578124534338713, 0.0041748047806322575, -0.0024169920943677425, 0.007031249813735485, -0.002197265625, -0.0028564452659338713, 0.001538085867650807, 0.0054931640625, 0.006152343470603228, 0.00527343712747097, 0.0004394531133584678, -0.0006591796409338713, 0.0, -0.0002197265566792339, -0.0006591796409338713, 0.003076171735301614, 0.0028564452659338713, 0.002197265625, -0.0010986328125, 0.0004394531133584678, -0.001977538922801614, 0.004833984188735485, 0.003735351376235485, 0.0006591796409338713, 0.0002197265566792339, 0.0035156249068677425, 0.00527343712747097, 0.003735351376235485, 0.001538085867650807, 0.005053710658103228, 0.002197265625, 0.006591796875, 0.005932617001235485, -0.0010986328125, -0.003076171735301614, 0.003735351376235485, 0.0041748047806322575, 0.0013183592818677425, -0.003955077845603228, -0.00439453125, -0.007910155691206455, -0.0057128905318677425, -0.0028564452659338713, 0.012304686941206455, 0.015600585378706455, 0.01779785193502903, 0.02724609337747097, 0.03317870944738388, 0.02834472618997097, 0.019775390625, 0.007910155691206455, -0.008349609561264515, -0.0208740234375, -0.03164062276482582, -0.04877929389476776, -0.04482421651482582, -0.04658202826976776, -0.02395019493997097, -0.013623046688735485, 0.009228515438735485, 0.03317870944738388, 0.05954589694738388, 0.07272949069738388, 0.07668457180261612, 0.06613769382238388, 0.04460449144244194, 0.01823730394244194, -0.012304686941206455, -0.04570312425494194, -0.07712402194738388, -0.08767089247703552, -0.09030761569738388, -0.08041992038488388, -0.04965820163488388, -0.01823730394244194, 0.01801757700741291, 0.06328124552965164, 0.09624022990465164, 0.10942382365465164, 0.12370605021715164, 0.10261230170726776, 0.0692138671875, 0.02592773362994194, -0.02109374850988388, -0.07229004055261612, -0.103271484375, -0.1329345703125, -0.12941893935203552, -0.11381835490465164, -0.076904296875, -0.02790527231991291, 0.024169921875, 0.08283691108226776, 0.12985838949680328, 0.15007324516773224, 0.15468749403953552, 0.13315428793430328, 0.09184569865465164, 0.02922363206744194, -0.03010253794491291, -0.09030761569738388, -0.13798828423023224, -0.1746826171875, -0.17556151747703552, -0.14545898139476776, -0.094482421875, -0.03427734225988388, 0.03669433668255806, 0.10678710788488388, 0.15842284262180328, 0.19182127714157104, 0.18808592855930328, 0.16193847358226776, 0.10986328125, 0.04460449144244194, -0.02812499925494194, -0.10305175185203552, -0.16215820610523224, -0.19929198920726776, -0.21137695014476776, -0.17292480170726776, -0.11381835490465164, -0.041748046875, 0.04218749701976776, 0.12238769233226776, 0.1834716796875, 0.2208251953125, 0.22236327826976776, 0.19489745795726776, 0.13579101860523224, 0.052734375, -0.03098144382238388, -0.12172850966453552, -0.18544921278953552, -0.23598632216453552, -0.2427978515625, -0.20126952230930328, -0.13205565512180328, -0.05097655951976776, 0.04899902269244194, 0.13798828423023224, 0.21181640028953552, 0.2502685487270355, 0.2557617127895355, 0.22390136122703552, 0.15007324516773224, 0.05668945237994194, -0.03449707105755806, -0.13776855170726776, -0.21291503310203552, -0.26213377714157104, -0.2700439393520355, -0.23225097358226776, -0.14985351264476776, -0.05734863132238388, 0.05471191182732582, 0.14677734673023224, 0.22653807699680328, 0.2880615293979645, 0.2902587950229645, 0.24147948622703552, 0.16435547173023224, 0.06547851115465164, -0.04350585862994194, -0.14304198324680328, -0.23225097358226776, -0.29399412870407104, -0.2920165956020355, -0.24916991591453552, -0.16193847358226776, -0.06240234151482582, 0.0560302734375, 0.16127929091453552, 0.2537841796875, 0.30827635526657104, 0.3087158203125, 0.2656494081020355, 0.17402343451976776, 0.07163085788488388, -0.04636230319738388, -0.15183104574680328, -0.24895018339157104, -0.3052001893520355, -0.3139892518520355, -0.2726806700229645, -0.17775878310203552, -0.06525878608226776, 0.05537109076976776, 0.16896972060203552, 0.2625732421875, 0.3232177793979645, 0.3276123106479645, 0.27861326932907104, 0.18918456137180328, 0.0703125, -0.04306640475988388, -0.15424804389476776, -0.2572998106479645, -0.32673338055610657, -0.33771970868110657, -0.2869628965854645, -0.1812744140625, -0.07207030802965164, 0.05229492112994194, 0.17160643637180328, 0.28125, 0.33771970868110657, 0.3491455018520355, 0.29816892743110657, 0.19094237685203552, 0.08195800334215164, -0.04592284932732582, -0.1669921875, -0.26411131024360657, -0.33771970868110657, -0.3482666015625, -0.2933349609375, -0.19687499105930328, -0.07294921576976776, 0.05471191182732582, 0.18061523139476776, 0.2887206971645355, 0.35200193524360657, 0.3689208924770355, 0.3043212890625, 0.20368652045726776, 0.0802001953125, -0.04240722581744194, -0.16281737387180328, -0.27312010526657104, -0.3491455018520355, -0.36518552899360657, -0.305419921875, -0.20039062201976776, -0.07866210490465164, 0.054931640625, 0.18171386420726776, 0.3021240234375, 0.36628416180610657, 0.37617185711860657, 0.31267088651657104, 0.21247558295726776, 0.08876952528953552, -0.04877929389476776, -0.17116698622703552, -0.2898193299770355, -0.3638671636581421, -0.3711181581020355, -0.31794431805610657, -0.20500487089157104, -0.07382812350988388, 0.06350097805261612, 0.18830566108226776, 0.3023437559604645, 0.3704589605331421, 0.3864990174770355, 0.314208984375, 0.20588378608226776, 0.08349609375, -0.04416503757238388, -0.1790771484375, -0.2843261659145355, -0.36188963055610657, -0.38386228680610657, -0.31684568524360657, -0.20083007216453552, -0.07404784858226776, 0.059326171875, 0.19204100966453552, 0.3021240234375, 0.37836912274360657, 0.380126953125, 0.3216796815395355, 0.21796874701976776, 0.08920898288488388, -0.04658202826976776, -0.17314451932907104, -0.28608396649360657, -0.36320799589157104, -0.3854003846645355, -0.3254150450229645, -0.20522460341453552, -0.0780029296875, 0.06196288764476776, 0.19423827528953552, 0.3043212890625, 0.3799072206020355, 0.3941894471645355, 0.322998046875, 0.2120361328125, 0.08327636867761612, -0.04548339545726776, -0.1724853515625, -0.2891601622104645, -0.3711181581020355, -0.3755126893520355, -0.31574705243110657, -0.20390623807907104, -0.08327636867761612, 0.06306152045726776, 0.186767578125, 0.301025390625, 0.38056638836860657, 0.3825439214706421, 0.3150878846645355, 0.20654296875, 0.08525390177965164, -0.05009765550494194, -0.17446288466453552, -0.2865234315395355, -0.36188963055610657, -0.3733154237270355, -0.31684568524360657, -0.2010498046875, -0.07932128757238388, 0.05690917745232582, 0.18962401151657104, 0.2942138612270355, 0.37353515625, 0.3777099549770355, 0.31201171875, 0.20478515326976776, 0.08525390177965164, -0.046142578125, -0.17709960043430328, -0.28081053495407104, -0.35859373211860657, -0.36650389432907104, -0.3117919862270355, -0.19643554091453552, -0.0780029296875, 0.05954589694738388, 0.18918456137180328, 0.29267576336860657, 0.36188963055610657, 0.3634277284145355, 0.3019042909145355, 0.19687499105930328, 0.08151855319738388, -0.04768066108226776, -0.16721190512180328, -0.27399900555610657, -0.34562987089157104, -0.35310056805610657, -0.29597166180610657, -0.19401854276657104, -0.07316894084215164, 0.05471191182732582, 0.17600096762180328, 0.2854247987270355, 0.3535400331020355, 0.34760740399360657, 0.2920165956020355, 0.19313964247703552, 0.07668457180261612, -0.04306640475988388, -0.16347655653953552, -0.2590576112270355, -0.3251953125, -0.33464354276657104, -0.27861326932907104, -0.17512206733226776, -0.0604248046875, 0.0538330078125, 0.17556151747703552, 0.270263671875, 0.32365721464157104, 0.3337646424770355, 0.27641600370407104, 0.17951659858226776, 0.07712402194738388, -0.04548339545726776, -0.156005859375, -0.24345701932907104, -0.31047362089157104, -0.31354978680610657, -0.25927734375, -0.17336425185203552, -0.06130370870232582, 0.0494384765625, 0.16523437201976776, 0.24763183295726776, 0.3008056581020355, 0.3041015565395355, 0.25114744901657104, 0.17666015028953552, 0.0714111328125, -0.04152831807732582, -0.14545898139476776, -0.22609862685203552, -0.2847656309604645, -0.29377439618110657, -0.24851073324680328, -0.1571044921875, -0.0582275390625, 0.05185546725988388, 0.14875487983226776, 0.22763670980930328, 0.2755371034145355, 0.28081053495407104, 0.23378905653953552, 0.15798339247703552, 0.05581054463982582, -0.04438476264476776, -0.1285400390625, -0.20654296875, -0.25532224774360657, -0.26213377714157104, -0.22104491293430328, -0.14238281548023224, -0.05009765550494194, 0.04658202826976776, 0.13776855170726776, 0.20632323622703552, 0.25202634930610657, 0.24653320014476776, 0.20786131918430328, 0.13557128608226776, 0.0538330078125, -0.03647460788488388, -0.12480468302965164, -0.18918456137180328, -0.23159179091453552, -0.228515625, -0.18742674589157104, -0.13007812201976776, -0.04350585862994194, 0.04482421651482582, 0.12326660007238388, 0.17929686605930328, 0.217529296875, 0.21379393339157104, 0.17578125, 0.11931151896715164, 0.0472412109375, -0.02988281100988388, -0.10415038466453552, -0.15644530951976776, -0.19467772543430328, -0.19533690810203552, -0.16062010824680328, -0.10524901747703552, -0.04152831807732582, 0.037353515625, 0.0999755859375, 0.15468749403953552, 0.18017578125, 0.18522948026657104, 0.14853514730930328, 0.09711913764476776, 0.0340576171875, -0.024169921875, -0.08305663615465164, -0.1329345703125, -0.15864257514476776, -0.15644530951976776, -0.12810058891773224, -0.08371581882238388, -0.03493652120232582, 0.03339843824505806, 0.0823974609375, 0.11821288615465164, 0.14458008110523224, 0.13864745199680328, 0.11909179389476776, 0.08107910305261612, 0.03339843824505806, -0.02482910081744194, -0.06569824367761612, -0.0999755859375, -0.12216796725988388, -0.11184081435203552, -0.09821777045726776, -0.06547851115465164, -0.02548827975988388, 0.02504882775247097, 0.05668945237994194, 0.0867919921875, 0.09821777045726776, 0.10195311903953552, 0.08261718600988388, 0.052734375, 0.02724609337747097, -0.01625976525247097, -0.04438476264476776, -0.06789550930261612, -0.0802001953125, -0.07602538913488388, -0.06767577677965164, -0.03757324069738388, -0.01494140550494194, 0.017578125, 0.03867187350988388, 0.04812011495232582, 0.06218261644244194, 0.05405273288488388, 0.04416503757238388, 0.03559570387005806, 0.011425781063735485, -0.0057128905318677425, -0.0164794921875, -0.03032226487994194, -0.03713378682732582, -0.03383788838982582, -0.02548827975988388, -0.010327148251235485, -0.009448242373764515, 0.00637206993997097, 0.008349609561264515, 0.01735839806497097, 0.01801757700741291, 0.0120849609375, 0.01054687425494194, 0.0028564452659338713, 0.003735351376235485, 0.007250976283103228, 0.0057128905318677425, 0.0013183592818677425, 0.0054931640625, 0.00747070275247097, 0.001977538922801614, 0.0010986328125, 0.002197265625, 0.0013183592818677425, -0.003735351376235485, -0.0017578124534338713, 0.002197265625, 0.0013183592818677425, 0.0, 0.0010986328125, -0.0002197265566792339, 0.005932617001235485, -0.003076171735301614, 0.00527343712747097, 0.005053710658103228, 0.0017578124534338713, 0.0006591796409338713, 0.008129882626235485, 0.0041748047806322575, 0.0028564452659338713, 0.0024169920943677425, 0.002636718563735485, 0.002636718563735485, -0.005053710658103228, -0.003076171735301614, -0.002197265625, 0.0046142577193677425, 0.008129882626235485, 0.0024169920943677425, -0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0024169920943677425, 0.0004394531133584678, -0.0006591796409338713, 0.002197265625, 0.004833984188735485, 0.0032958984375, 0.0068115233443677425, -0.001538085867650807, 0.005053710658103228, -0.0004394531133584678, 0.0054931640625, 0.001538085867650807, 0.002636718563735485, -0.0032958984375, 0.001977538922801614, 0.0046142577193677425, 0.0008789062267169356, 0.0017578124534338713, -0.0008789062267169356, 0.001538085867650807, 0.0041748047806322575, 0.006591796875, 0.0035156249068677425, -0.001977538922801614, 0.002636718563735485, 0.00527343712747097, 0.004833984188735485, -0.003076171735301614, 0.002197265625, 0.0, -0.0017578124534338713, 0.0004394531133584678, 0.005053710658103228, -0.0017578124534338713, 0.00439453125, 0.005932617001235485, 0.003076171735301614, 0.0004394531133584678, -0.0002197265566792339, 0.0010986328125, 0.006152343470603228, -0.004833984188735485, -0.0017578124534338713, 0.002636718563735485, 0.005053710658103228, 0.0024169920943677425, -0.0035156249068677425, 0.0006591796409338713, -0.0068115233443677425, -0.00527343712747097, -0.01186523400247097, -0.01076660118997097, -0.00527343712747097, 0.007910155691206455, 0.01691894419491291, 0.02768554538488388, 0.03383788838982582, 0.03229980543255806, 0.0296630859375, 0.01845703087747097, 0.008129882626235485, -0.005053710658103228, -0.02680663950741291, -0.04020996019244194, -0.04965820163488388, -0.05229492112994194, -0.05229492112994194, -0.0384521484375, -0.011206054128706455, 0.01494140550494194, 0.03713378682732582, 0.06789550930261612, 0.0780029296875, 0.07932128757238388, 0.07119140774011612, 0.04680175706744194, 0.02153320237994194, -0.01164550706744194, -0.05449218675494194, -0.08525390177965164, -0.09689941257238388, -0.09931640326976776, -0.08767089247703552, -0.06723632663488388, -0.02548827975988388, 0.02460937388241291, 0.06965331733226776, 0.10502929240465164, 0.12919922173023224, 0.12744140625, 0.11008300632238388, 0.07602538913488388, 0.02658691257238388, -0.01955566368997097, -0.07404784858226776, -0.11821288615465164, -0.14479979872703552, -0.15095214545726776, -0.1318359375, -0.08745116740465164, -0.03273925557732582, 0.02988281100988388, 0.090087890625, 0.13930663466453552, 0.16940917074680328, 0.18061523139476776, 0.15007324516773224, 0.09755858778953552, 0.04108886793255806, -0.0318603515625, -0.10107421875, -0.15688475966453552, -0.18720702826976776, -0.195556640625, -0.169189453125, -0.10942382365465164, -0.04130859300494194, 0.03977050632238388, 0.11799316108226776, 0.17490233480930328, 0.21071776747703552, 0.2230224609375, 0.18742674589157104, 0.12590332329273224, 0.0439453125, -0.03208007663488388, -0.11447753757238388, -0.18413084745407104, -0.22412109375, -0.23488768935203552, -0.19929198920726776, -0.13139648735523224, -0.0450439453125, 0.04350585862994194, 0.13579101860523224, 0.20280760526657104, 0.2562011778354645, 0.26103514432907104, 0.21818846464157104, 0.14238281548023224, 0.05207519233226776, -0.03823241963982582, -0.12810058891773224, -0.21577148139476776, -0.257080078125, -0.274658203125, -0.22873534262180328, -0.14787597954273224, -0.05141601338982582, 0.04877929389476776, 0.14545898139476776, 0.23532713949680328, 0.2823486328125, 0.292236328125, 0.23884277045726776, 0.16567382216453552, 0.06174316257238388, -0.046142578125, -0.14348144829273224, -0.23049315810203552, -0.2858642637729645, -0.3043212890625, -0.25532224774360657, -0.16940917074680328, -0.06503906100988388, 0.05405273288488388, 0.16237792372703552, 0.257080078125, 0.31926268339157104, 0.3150878846645355, 0.26433104276657104, 0.17600096762180328, 0.07075195014476776, -0.03911132737994194, -0.15468749403953552, -0.2513671815395355, -0.32233884930610657, -0.32233884930610657, -0.2823486328125, -0.18479003012180328, -0.06503906100988388, 0.05646972358226776, 0.17709960043430328, 0.2704834043979645, 0.3425537049770355, 0.34782713651657104, 0.29267576336860657, 0.1966552734375, 0.07976073771715164, -0.0428466796875, -0.16633300483226776, -0.26542967557907104, -0.3320068418979645, -0.35310056805610657, -0.3030029237270355, -0.19863280653953552, -0.06745605170726776, 0.05910644307732582, 0.18039549887180328, 0.2909179627895355, 0.3583739995956421, 0.3733154237270355, 0.3076171875, 0.20346678793430328, 0.08876952528953552, -0.04570312425494194, -0.17204588651657104, -0.2770752012729645, -0.35661619901657104, -0.3702392578125, -0.3139892518520355, -0.20808105170726776, -0.07646483927965164, 0.05866698920726776, 0.1900634765625, 0.30585935711860657, 0.3790283203125, 0.3858398199081421, 0.32145994901657104, 0.21247558295726776, 0.08876952528953552, -0.04526367038488388, -0.17534178495407104, -0.28740233182907104, -0.37749022245407104, -0.3968261480331421, -0.333984375, -0.217529296875, -0.08217773586511612, 0.05471191182732582, 0.20061033964157104, 0.3122314512729645, 0.39814451336860657, 0.4078124761581421, 0.3372802734375, 0.228515625, 0.085693359375, -0.050537109375, -0.18061523139476776, -0.30036619305610657, -0.3878173828125, -0.4023193120956421, -0.34211423993110657, -0.22763670980930328, -0.08964843302965164, 0.06503906100988388, 0.20654296875, 0.3260742127895355, 0.406494140625, 0.4141845703125, 0.3524414002895355, 0.22873534262180328, 0.09140624850988388, -0.04262695088982582, -0.18413084745407104, -0.30717772245407104, -0.4007812440395355, -0.4227539002895355, -0.3526611328125, -0.22939452528953552, -0.08085937052965164, 0.06987304240465164, 0.20170897245407104, 0.33222654461860657, 0.41813963651657104, 0.43242186307907104, 0.3539794683456421, 0.22785644233226776, 0.09514159709215164, -0.0428466796875, -0.182373046875, -0.3106933534145355, -0.3988037109375, -0.42670896649360657, -0.3506835699081421, -0.22653807699680328, -0.08964843302965164, 0.06174316257238388, 0.20654296875, 0.33024901151657104, 0.4220947027206421, 0.4297851324081421, 0.35419920086860657, 0.23027342557907104, 0.09272460639476776, -0.05471191182732582, -0.18918456137180328, -0.3109130859375, -0.39814451336860657, -0.42473143339157104, -0.3524414002895355, -0.22346191108226776, -0.08371581882238388, 0.06745605170726776, 0.21159666776657104, 0.3342041075229645, 0.4271484315395355, 0.4361572265625, 0.3579345643520355, 0.22917479276657104, 0.10019531100988388, -0.05119628831744194, -0.191162109375, -0.3095947206020355, -0.39704588055610657, -0.4286864995956421, -0.35771483182907104, -0.23159179091453552, -0.08217773586511612, 0.063720703125, 0.20654296875, 0.33574217557907104, 0.4242919683456421, 0.4352782964706421, 0.3524414002895355, 0.23269042372703552, 0.10305175185203552, -0.04658202826976776, -0.19094237685203552, -0.30827635526657104, -0.3985839784145355, -0.4198974370956421, -0.3550781011581421, -0.22434081137180328, -0.08745116740465164, 0.06086425483226776, 0.20895995199680328, 0.32475584745407104, 0.41154783964157104, 0.41923826932907104, 0.3535400331020355, 0.226318359375, 0.0911865234375, -0.04658202826976776, -0.18544921278953552, -0.3056396543979645, -0.39726561307907104, -0.41594237089157104, -0.34760740399360657, -0.21818846464157104, -0.08481445163488388, 0.06394042819738388, 0.19929198920726776, 0.32080078125, 0.41022947430610657, 0.4100097417831421, 0.34672850370407104, 0.22412109375, 0.09470214694738388, -0.04790038987994194, -0.1878662109375, -0.301025390625, -0.3770507574081421, -0.39111328125, -0.32695311307907104, -0.21533203125, -0.07998047024011612, 0.06459961086511612, 0.19687499105930328, 0.3106933534145355, 0.38957518339157104, 0.3924316167831421, 0.3251953125, 0.21906737983226776, 0.08415526896715164, -0.04702148213982582, -0.17336425185203552, -0.28520506620407104, -0.3658447265625, -0.3821044862270355, -0.31574705243110657, -0.20698241889476776, -0.07756347209215164, 0.06240234151482582, 0.18984374403953552, 0.30278319120407104, 0.3704589605331421, 0.37617185711860657, 0.30585935711860657, 0.19577635824680328, 0.07668457180261612, -0.05031738057732582, -0.17226561903953552, -0.27729490399360657, -0.35200193524360657, -0.3583739995956421, -0.2935546934604645, -0.18896484375, -0.07075195014476776, 0.0648193359375, 0.18303221464157104, 0.28125, 0.3403564393520355, 0.35310056805610657, 0.2869628965854645, 0.19313964247703552, 0.07954101264476776, -0.04350585862994194, -0.16347655653953552, -0.2627929747104645, -0.32673338055610657, -0.32783201336860657, -0.2748779356479645, -0.17314451932907104, -0.06745605170726776, 0.054931640625, 0.17138671875, 0.25861814618110657, 0.3172851502895355, 0.318603515625, 0.26872557401657104, 0.17072753608226776, 0.06525878608226776, -0.04702148213982582, -0.14743651449680328, -0.24104003608226776, -0.2889404296875, -0.296630859375, -0.24345701932907104, -0.15578612685203552, -0.052734375, 0.05185546725988388, 0.15688475966453552, 0.23422850668430328, 0.2865234315395355, 0.2889404296875, 0.23291015625, 0.15117187798023224, 0.05756835639476776, -0.0384521484375, -0.13908691704273224, -0.21115721762180328, -0.2625732421875, -0.26433104276657104, -0.226318359375, -0.14128418266773224, -0.04592284932732582, 0.04196777194738388, 0.14084471762180328, 0.20390623807907104, 0.25092771649360657, 0.24367675185203552, 0.20302733778953552, 0.13886718451976776, 0.05581054463982582, -0.03691406175494194, -0.11667480319738388, -0.17885741591453552, -0.217529296875, -0.22478026151657104, -0.18940429389476776, -0.1175537109375, -0.0439453125, 0.03999023512005806, 0.11579589545726776, 0.173583984375, 0.20390623807907104, 0.20742186903953552, 0.16984862089157104, 0.1131591796875, 0.04218749701976776, -0.03427734225988388, -0.10195311903953552, -0.14853514730930328, -0.18061523139476776, -0.17709960043430328, -0.14633788168430328, -0.09799804538488388, -0.03493652120232582, 0.02878417819738388, 0.09052734076976776, 0.13710936903953552, 0.1658935546875, 0.160400390625, 0.13535155355930328, 0.0889892578125, 0.03208007663488388, -0.0230712890625, -0.07778320461511612, -0.11733397841453552, -0.13754881918430328, -0.134033203125, -0.1087646484375, -0.0736083984375, -0.02263183519244194, 0.02219238132238388, 0.063720703125, 0.09711913764476776, 0.1153564453125, 0.11689452826976776, 0.09206542372703552, 0.05866698920726776, 0.02460937388241291, -0.013403319753706455, -0.05317382514476776, -0.076904296875, -0.08767089247703552, -0.08723144233226776, -0.06745605170726776, -0.04218749701976776, -0.01823730394244194, 0.01691894419491291, 0.04130859300494194, 0.05624999850988388, 0.06306152045726776, 0.06130370870232582, 0.05075683444738388, 0.03823241963982582, 0.017578125, -0.00747070275247097, -0.02438964694738388, -0.03032226487994194, -0.04086913913488388, -0.03713378682732582, -0.03361816331744194, -0.014501952566206455, -0.001538085867650807, 0.006152343470603228, 0.0120849609375, 0.019775390625, 0.01911620981991291, 0.014721679501235485, 0.00856933556497097, 0.009228515438735485, 0.003735351376235485, 0.003076171735301614, 0.0004394531133584678, 0.007910155691206455, 0.0057128905318677425, 0.0008789062267169356, 0.0028564452659338713, 0.00439453125, 0.0010986328125, 0.003076171735301614, 0.0017578124534338713, -0.0054931640625, 0.0008789062267169356, -0.0035156249068677425, 0.0013183592818677425, 0.003735351376235485, 0.001977538922801614, 0.0006591796409338713, -0.002197265625, 0.00527343712747097, -0.0004394531133584678, 0.00439453125, 0.007250976283103228, 0.0006591796409338713, 0.0013183592818677425, 0.0002197265566792339, 0.001977538922801614, -0.0032958984375, -0.0004394531133584678, -0.002197265625, -0.0041748047806322575, -0.0013183592818677425, -0.0013183592818677425, 0.0002197265566792339, 0.0057128905318677425, 0.00527343712747097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.3 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0028564452659338713, 0.0032958984375, -0.0013183592818677425, 0.0035156249068677425, 0.005053710658103228, 0.00439453125, 0.0017578124534338713, 0.0028564452659338713, -0.0017578124534338713, 0.00439453125, 0.0, 0.001977538922801614, 0.0010986328125, 0.004833984188735485, -0.0024169920943677425, 0.0002197265566792339, 0.0, -0.002636718563735485, 0.001977538922801614, -0.002197265625, -0.0035156249068677425, 0.0002197265566792339, 0.001977538922801614, 0.003955077845603228, -0.0013183592818677425, 0.00439453125, 0.0024169920943677425, 0.002197265625, 0.0054931640625, 0.0024169920943677425, 0.0032958984375, -0.001977538922801614, 0.0041748047806322575, 0.004833984188735485, 0.0046142577193677425, 0.00439453125, 0.0032958984375, 0.0002197265566792339, 0.0028564452659338713, 0.0, 0.0035156249068677425, -0.003955077845603228, -0.0002197265566792339, 0.0004394531133584678, 0.0004394531133584678, -0.0002197265566792339, 0.001977538922801614, 0.001977538922801614, -0.0035156249068677425, -0.01054687425494194, -0.01384277269244194, -0.0024169920943677425, -0.0006591796409338713, 0.0054931640625, 0.01735839806497097, 0.02482910081744194, 0.03120117075741291, 0.03691406175494194, 0.03229980543255806, 0.02548827975988388, 0.010986328125, -0.01076660118997097, -0.02438964694738388, -0.04965820163488388, -0.05471191182732582, -0.06503906100988388, -0.05097655951976776, -0.03801269456744194, -0.010986328125, 0.01779785193502903, 0.04855956882238388, 0.0714111328125, 0.09470214694738388, 0.09821777045726776, 0.081298828125, 0.05471191182732582, 0.024169921875, -0.02241210825741291, -0.05624999850988388, -0.09228515625, -0.1065673828125, -0.1153564453125, -0.0966796875, -0.06613769382238388, -0.02570800669491291, 0.02658691257238388, 0.07646483927965164, 0.120849609375, 0.13688965141773224, 0.14523924887180328, 0.12150878459215164, 0.08503417670726776, 0.03559570387005806, -0.02570800669491291, -0.08393554389476776, -0.13491210341453552, -0.15908202528953552, -0.16062010824680328, -0.14633788168430328, -0.0977783203125, -0.03142089769244194, 0.0318603515625, 0.10634765028953552, 0.15336914360523224, 0.1856689453125, 0.18984374403953552, 0.16083984076976776, 0.116455078125, 0.04746093600988388, -0.02988281100988388, -0.1109619140625, -0.16567382216453552, -0.20786131918430328, -0.21467284858226776, -0.18544921278953552, -0.12019042670726776, -0.04438476264476776, 0.04086913913488388, 0.1307373046875, 0.18896484375, 0.23378905653953552, 0.24082030355930328, 0.20566405355930328, 0.13447265326976776, 0.05207519233226776, -0.03449707105755806, -0.12810058891773224, -0.19621580839157104, -0.2535644471645355, -0.2546630799770355, -0.21599119901657104, -0.14414061605930328, -0.05405273288488388, 0.04921874776482582, 0.1483154296875, 0.22170409560203552, 0.26960447430610657, 0.27949216961860657, 0.23576658964157104, 0.16083984076976776, 0.06569824367761612, -0.04108886793255806, -0.14765624701976776, -0.22543944418430328, -0.2821289002895355, -0.2986083924770355, -0.25114744901657104, -0.16523437201976776, -0.06240234151482582, 0.0538330078125, 0.15996094048023224, 0.24916991591453552, 0.3062988221645355, 0.31816405057907104, 0.2612548768520355, 0.1812744140625, 0.07053222507238388, -0.04152831807732582, -0.15205077826976776, -0.24982909858226776, -0.3150878846645355, -0.3262939453125, -0.27839353680610657, -0.18083494901657104, -0.06657714396715164, 0.05976562201976776, 0.17490233480930328, 0.27685546875, 0.3462890386581421, 0.3469482362270355, 0.2900390625, 0.19951170682907104, 0.07888183742761612, -0.0439453125, -0.16391600668430328, -0.2722412049770355, -0.34870603680610657, -0.3605712652206421, -0.30366209149360657, -0.2010498046875, -0.0802001953125, 0.05800781026482582, 0.18391112983226776, 0.29816892743110657, 0.3733154237270355, 0.37749022245407104, 0.3139892518520355, 0.20830076932907104, 0.08811035007238388, -0.04416503757238388, -0.17050780355930328, -0.2865234315395355, -0.37199705839157104, -0.39155271649360657, -0.322998046875, -0.21599119901657104, -0.08041992038488388, 0.06635741889476776, 0.19643554091453552, 0.3117919862270355, 0.4010009765625, 0.40583494305610657, 0.34123533964157104, 0.22104491293430328, 0.09821777045726776, -0.04877929389476776, -0.177978515625, -0.3008056581020355, -0.39111328125, -0.4150634706020355, -0.3436523377895355, -0.21796874701976776, -0.0867919921875, 0.0582275390625, 0.208740234375, 0.32893064618110657, 0.41704100370407104, 0.4220947027206421, 0.3603515625, 0.23291015625, 0.09645995497703552, -0.04987792670726776, -0.18984374403953552, -0.31574705243110657, -0.4040771424770355, -0.43000486493110657, -0.36210936307907104, -0.23378905653953552, -0.08745116740465164, 0.05976562201976776, 0.20961913466453552, 0.3372802734375, 0.43000486493110657, 0.4495605230331421, 0.36518552899360657, 0.23994140326976776, 0.10195311903953552, -0.04921874776482582, -0.19731444120407104, -0.3249755799770355, -0.4150634706020355, -0.43879392743110657, -0.36870115995407104, -0.23752440512180328, -0.09602050483226776, 0.0615234375, 0.21225585043430328, 0.3440917730331421, 0.4403320252895355, 0.44978025555610657, 0.3869384527206421, 0.2540039122104645, 0.1065673828125, -0.04921874776482582, -0.19863280653953552, -0.33112791180610657, -0.43110349774360657, -0.44999998807907104, -0.3770507574081421, -0.24565428495407104, -0.0911865234375, 0.06064452975988388, 0.22390136122703552, 0.3550781011581421, 0.44868162274360657, 0.44978025555610657, 0.3919921815395355, 0.2540039122104645, 0.10964354872703552, -0.04833984375, -0.20192870497703552, -0.3372802734375, -0.4381347596645355, -0.44999998807907104, -0.38715818524360657, -0.24587401747703552, -0.09184569865465164, 0.06767577677965164, 0.21818846464157104, 0.36430662870407104, 0.44978025555610657, 0.44978025555610657, 0.38847655057907104, 0.2535644471645355, 0.10744628310203552, -0.04855956882238388, -0.20192870497703552, -0.33332517743110657, -0.4392333924770355, -0.44999998807907104, -0.3854003846645355, -0.24345701932907104, -0.10107421875, 0.06306152045726776, 0.22565917670726776, 0.353759765625, 0.44978025555610657, 0.44978025555610657, 0.38715818524360657, 0.2524658143520355, 0.10546875, -0.04658202826976776, -0.19951170682907104, -0.3436523377895355, -0.43549802899360657, -0.44999998807907104, -0.3843017518520355, -0.24455565214157104, -0.09931640326976776, 0.06745605170726776, 0.21906737983226776, 0.353759765625, 0.44978025555610657, 0.44978025555610657, 0.3821044862270355, 0.25532224774360657, 0.1021728515625, -0.05361327901482582, -0.19951170682907104, -0.33244627714157104, -0.4326415956020355, -0.44999998807907104, -0.3781493902206421, -0.24543456733226776, -0.09755858778953552, 0.06547851115465164, 0.2208251953125, 0.349365234375, 0.44978025555610657, 0.44978025555610657, 0.3766113221645355, 0.25202634930610657, 0.10195311903953552, -0.04833984375, -0.19489745795726776, -0.3315673768520355, -0.4249511659145355, -0.44890135526657104, -0.36979979276657104, -0.24016112089157104, -0.090087890625, 0.07009277492761612, 0.2164306640625, 0.35090330243110657, 0.4383544921875, 0.44978025555610657, 0.369140625, 0.24104003608226776, 0.09470214694738388, -0.0472412109375, -0.19291990995407104, -0.3172851502895355, -0.4133056402206421, -0.437255859375, -0.36210936307907104, -0.22412109375, -0.08942870795726776, 0.0626220703125, 0.21511229872703552, 0.3407958745956421, 0.4227539002895355, 0.43571776151657104, 0.3594726324081421, 0.23027342557907104, 0.09953612834215164, -0.05185546725988388, -0.18874511122703552, -0.31157225370407104, -0.39616698026657104, -0.41374510526657104, -0.353759765625, -0.22587889432907104, -0.07712402194738388, 0.06789550930261612, 0.20720213651657104, 0.3227783143520355, 0.4031982421875, 0.4161621034145355, 0.3403564393520355, 0.21906737983226776, 0.09096679091453552, -0.05712890625, -0.1856689453125, -0.30168455839157104, -0.3836425542831421, -0.3930908143520355, -0.3249755799770355, -0.20830076932907104, -0.08151855319738388, 0.06525878608226776, 0.19753417372703552, 0.31135252118110657, 0.3814452886581421, 0.3858398199081421, 0.31464841961860657, 0.20808105170726776, 0.085693359375, -0.05009765550494194, -0.17622070014476776, -0.2814697325229645, -0.35969236493110657, -0.3614501953125, -0.31047362089157104, -0.19160155951976776, -0.0714111328125, 0.06350097805261612, 0.1812744140625, 0.29069823026657104, 0.36079099774360657, 0.35222166776657104, 0.2946533262729645, 0.18654784560203552, 0.07734374701976776, -0.04636230319738388, -0.16896972060203552, -0.2649902403354645, -0.3271728456020355, -0.3282714784145355, -0.2757568359375, -0.1724853515625, -0.06196288764476776, 0.063720703125, 0.17116698622703552, 0.26433104276657104, 0.31904295086860657, 0.3227783143520355, 0.263671875, 0.17204588651657104, 0.06240234151482582, -0.04482421651482582, -0.1483154296875, -0.23642577230930328, -0.29289549589157104, -0.2986083924770355, -0.2427978515625, -0.15402831137180328, -0.05471191182732582, 0.05646972358226776, 0.15095214545726776, 0.23159179091453552, 0.274658203125, 0.27509763836860657, 0.22895507514476776, 0.15249022841453552, 0.05559081956744194, -0.04240722581744194, -0.13315428793430328, -0.20566405355930328, -0.24982909858226776, -0.248291015625, -0.21071776747703552, -0.13271483778953552, -0.05009765550494194, 0.0472412109375, 0.12656249105930328, 0.19841307401657104, 0.23444823920726776, 0.228515625, 0.1900634765625, 0.12678222358226776, 0.04328612983226776, -0.03449707105755806, -0.11359862983226776, -0.16457518935203552, -0.20346678793430328, -0.20039062201976776, -0.17314451932907104, -0.10634765028953552, -0.0318603515625, 0.037353515625, 0.0999755859375, 0.15512694418430328, 0.18391112983226776, 0.17929686605930328, 0.14699706435203552, 0.09755858778953552, 0.03229980543255806, -0.028564453125, -0.08261718600988388, -0.12436523288488388, -0.14985351264476776, -0.14589843153953552, -0.12502440810203552, -0.0845947265625, -0.02614746056497097, 0.02329101413488388, 0.0758056640625, 0.10942382365465164, 0.12941893935203552, 0.12546385824680328, 0.10107421875, 0.07185058295726776, 0.02768554538488388, -0.01296386681497097, -0.05976562201976776, -0.08723144233226776, -0.09755858778953552, -0.09975585341453552, -0.07954101264476776, -0.04592284932732582, -0.01691894419491291, 0.01801757700741291, 0.05031738057732582, 0.0670166015625, 0.07382812350988388, 0.06899414211511612, 0.06328124552965164, 0.03977050632238388, 0.013403319753706455, -0.011425781063735485, -0.02438964694738388, -0.04372558370232582, -0.04460449144244194, -0.03779296949505806, -0.03581542894244194, -0.02438964694738388, -0.009448242373764515, 0.00966796837747097, 0.01801757700741291, 0.02021484263241291, 0.02065429650247097, 0.017578125, 0.01604003831744194, 0.007031249813735485, 0.0032958984375, 0.00637206993997097, 0.009228515438735485, 0.0032958984375, 0.0004394531133584678, 0.003076171735301614, 0.003735351376235485, -0.0017578124534338713, -0.0041748047806322575, 0.0017578124534338713, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, 0.002197265625, -0.002636718563735485, 0.0035156249068677425, 0.0054931640625, 0.00637206993997097, -0.0028564452659338713, 0.0041748047806322575, -0.001977538922801614, 0.003076171735301614, 0.0017578124534338713, -0.0028564452659338713, 0.0010986328125, -0.0024169920943677425, -0.0004394531133584678, 0.003735351376235485, -0.0054931640625, 0.004833984188735485, -0.0004394531133584678, 0.0032958984375, 0.002197265625, 0.00527343712747097, -0.0017578124534338713, -0.0017578124534338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.007250976283103228, 0.0057128905318677425, 0.002636718563735485, -0.0008789062267169356, 0.0057128905318677425, 0.004833984188735485, 0.0013183592818677425, 0.005932617001235485, 0.0041748047806322575, 0.00747070275247097, 0.0008789062267169356, 0.006152343470603228, 0.001977538922801614, 0.008349609561264515, 0.005932617001235485, 0.0028564452659338713, 0.0046142577193677425, 0.00527343712747097, 0.004833984188735485, 0.0010986328125, 0.006591796875, 0.005932617001235485, 0.004833984188735485, 0.0006591796409338713, 0.0013183592818677425, 0.001538085867650807, 0.00439453125, 0.00439453125, -0.002197265625, 0.00439453125, -0.0008789062267169356, 0.0, -0.001977538922801614, 0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, 0.0035156249068677425, 0.0006591796409338713, 0.004833984188735485, 0.0035156249068677425, 0.003735351376235485, 0.0013183592818677425, 0.0046142577193677425, -0.003076171735301614, 0.0046142577193677425, 0.00527343712747097, 0.002197265625, 0.0046142577193677425, 0.0013183592818677425, 0.006152343470603228, -0.0002197265566792339, -0.0013183592818677425, 0.0054931640625, 0.0087890625, 0.003076171735301614, 0.00439453125, 0.0035156249068677425, -0.002636718563735485, 0.001977538922801614, -0.0057128905318677425, -0.00439453125, -0.0068115233443677425, -0.001977538922801614, 0.0008789062267169356, 0.006152343470603228, 0.01054687425494194, 0.007031249813735485, 0.01054687425494194, 0.0068115233443677425, 0.0076904296875, 0.0013183592818677425, -0.0013183592818677425, -0.0041748047806322575, -0.008129882626235485, -0.01318359375, -0.003076171735301614, -0.0054931640625, 0.0002197265566792339, 0.009448242373764515, 0.012524413876235485, 0.014501952566206455, 0.010986328125, 0.01516113243997097, 0.00747070275247097, 0.0013183592818677425, -0.003076171735301614, -0.007910155691206455, -0.012304686941206455, -0.0164794921875, -0.004833984188735485, -0.0006591796409338713, 0.001538085867650807, 0.011206054128706455, 0.01999511756002903, 0.013403319753706455, 0.02043456956744194, 0.011425781063735485, 0.0028564452659338713, 0.0004394531133584678, -0.013623046688735485, -0.014721679501235485, -0.012304686941206455, -0.01845703087747097, -0.01274413987994194, -0.002636718563735485, 0.008349609561264515, 0.01494140550494194, 0.01735839806497097, 0.01955566368997097, 0.01889648474752903, 0.012304686941206455, 0.0035156249068677425, -0.0035156249068677425, -0.01406249962747097, -0.02504882775247097, -0.01823730394244194, -0.02109374850988388, -0.0164794921875, -0.001538085867650807, 0.00856933556497097, 0.02021484263241291, 0.02351074106991291, 0.02878417819738388, 0.02153320237994194, 0.01076660118997097, 0.002636718563735485, -0.0120849609375, -0.01625976525247097, -0.02175292931497097, -0.02680663950741291, -0.01779785193502903, -0.005932617001235485, 0.0028564452659338713, 0.01845703087747097, 0.02197265625, 0.03537597507238388, 0.03361816331744194, 0.02263183519244194, 0.01274413987994194, -0.0004394531133584678, -0.01516113243997097, -0.03054199181497097, -0.03317870944738388, -0.02548827975988388, -0.02065429650247097, -0.00527343712747097, 0.003955077845603228, 0.01845703087747097, 0.02658691257238388, 0.04130859300494194, 0.02790527231991291, 0.019775390625, 0.01384277269244194, -0.01274413987994194, -0.0186767578125, -0.03317870944738388, -0.03098144382238388, -0.03229980543255806, -0.02131347544491291, 0.0, 0.015600585378706455, 0.02570800669491291, 0.04020996019244194, 0.03911132737994194, 0.02878417819738388, 0.01625976525247097, 0.0028564452659338713, -0.0164794921875, -0.02614746056497097, -0.03361816331744194, -0.03955078125, -0.0296630859375, -0.02065429650247097, 0.0041748047806322575, 0.02197265625, 0.0340576171875, 0.04526367038488388, 0.04416503757238388, 0.03361816331744194, 0.01911620981991291, -0.003735351376235485, -0.01713867112994194, -0.03229980543255806, -0.04108886793255806, -0.0428466796875, -0.02944335900247097, -0.01516113243997097, 0.010986328125, 0.02900390513241291, 0.04438476264476776, 0.04987792670726776, 0.03999023512005806, 0.03383788838982582, 0.009448242373764515, -0.00856933556497097, -0.0230712890625, -0.03669433668255806, -0.04658202826976776, -0.03603515401482582, -0.02285156212747097, -0.0054931640625, 0.009008788503706455, 0.03054199181497097, 0.04416503757238388, 0.04965820163488388, 0.04240722581744194, 0.02504882775247097, 0.006152343470603228, -0.01318359375, -0.0318603515625, -0.03867187350988388, -0.05075683444738388, -0.03383788838982582, -0.02351074106991291, 0.0028564452659338713, 0.024169921875, 0.0406494140625, 0.04592284932732582, 0.054931640625, 0.03933105245232582, 0.02658691257238388, 0.0046142577193677425, -0.01516113243997097, -0.03691406175494194, -0.041748046875, -0.0472412109375, -0.03229980543255806, -0.02175292931497097, 0.006591796875, 0.03032226487994194, 0.04636230319738388, 0.05559081956744194, 0.04372558370232582, 0.03999023512005806, 0.0142822265625, -0.004833984188735485, -0.02680663950741291, -0.03801269456744194, -0.05361327901482582, -0.0450439453125, -0.03581542894244194, -0.009008788503706455, 0.0142822265625, 0.03098144382238388, 0.04350585862994194, 0.05229492112994194, 0.05229492112994194, 0.02790527231991291, 0.011206054128706455, -0.013403319753706455, -0.03383788838982582, -0.04592284932732582, -0.05515136569738388, -0.04240722581744194, -0.02438964694738388, -0.008349609561264515, 0.015380859375, 0.03581542894244194, 0.05361327901482582, 0.059326171875, 0.0439453125, 0.02548827975988388, 0.0002197265566792339, -0.0186767578125, -0.04086913913488388, -0.05405273288488388, -0.05361327901482582, -0.04328612983226776, -0.01889648474752903, 0.005053710658103228, 0.02658691257238388, 0.04262695088982582, 0.05229492112994194, 0.0582275390625, 0.04108886793255806, 0.02065429650247097, -0.00527343712747097, -0.02944335900247097, -0.04438476264476776, -0.0538330078125, -0.04592284932732582, -0.032958984375, -0.01845703087747097, 0.01318359375, 0.02768554538488388, 0.04965820163488388, 0.05295410007238388, 0.05317382514476776, 0.03933105245232582, 0.01845703087747097, -0.0087890625, -0.03010253794491291, -0.04416503757238388, -0.05317382514476776, -0.04746093600988388, -0.03449707105755806, -0.010327148251235485, 0.02131347544491291, 0.03999023512005806, 0.04877929389476776, 0.05778808519244194, 0.04636230319738388, 0.02768554538488388, 0.00527343712747097, -0.01779785193502903, -0.041748046875, -0.05229492112994194, -0.04680175706744194, -0.046142578125, -0.0208740234375, -0.0035156249068677425, 0.02241210825741291, 0.0439453125, 0.05251464620232582, 0.05449218675494194, 0.04372558370232582, 0.02021484263241291, -0.0008789062267169356, -0.024169921875, -0.03933105245232582, -0.04899902269244194, -0.04548339545726776, -0.0384521484375, -0.02109374850988388, 0.00439453125, 0.02724609337747097, 0.03955078125, 0.05449218675494194, 0.04833984375, 0.03493652120232582, 0.01735839806497097, -0.0006591796409338713, -0.02460937388241291, -0.04460449144244194, -0.04965820163488388, -0.04636230319738388, -0.03208007663488388, -0.0098876953125, 0.009228515438735485, 0.032958984375, 0.04812011495232582, 0.05119628831744194, 0.04460449144244194, 0.03032226487994194, 0.01274413987994194, -0.013403319753706455, -0.03515625, -0.04702148213982582, -0.0472412109375, -0.04416503757238388, -0.024169921875, -0.001977538922801614, 0.013623046688735485, 0.03933105245232582, 0.04855956882238388, 0.04965820163488388, 0.03669433668255806, 0.024169921875, -0.0002197265566792339, -0.013403319753706455, -0.03581542894244194, -0.04768066108226776, -0.04548339545726776, -0.03977050632238388, -0.01823730394244194, 0.0017578124534338713, 0.01735839806497097, 0.04262695088982582, 0.04526367038488388, 0.04702148213982582, 0.03603515401482582, 0.01911620981991291, -0.006591796875, -0.02285156212747097, -0.03713378682732582, -0.04438476264476776, -0.04240722581744194, -0.0274658203125, -0.0164794921875, 0.0054931640625, 0.02878417819738388, 0.04020996019244194, 0.04592284932732582, 0.04196777194738388, 0.02900390513241291, 0.012304686941206455, -0.012524413876235485, -0.02658691257238388, -0.03911132737994194, -0.04152831807732582, -0.03076171875, -0.02329101413488388, -0.001977538922801614, 0.0087890625, 0.02395019493997097, 0.03691406175494194, 0.03603515401482582, 0.03339843824505806, 0.02658691257238388, 0.007250976283103228, -0.01296386681497097, -0.02570800669491291, -0.03273925557732582, -0.03911132737994194, -0.02988281100988388, -0.012304686941206455, -0.004833984188735485, 0.01625976525247097, 0.0252685546875, 0.0340576171875, 0.03911132737994194, 0.02680663950741291, 0.0186767578125, 0.005932617001235485, -0.0120849609375, -0.02900390513241291, -0.03383788838982582, -0.03229980543255806, -0.0274658203125, -0.01625976525247097, 0.0087890625, 0.01845703087747097, 0.02834472618997097, 0.0384521484375, 0.0274658203125, 0.0252685546875, 0.008349609561264515, -0.00856933556497097, -0.013403319753706455, -0.02834472618997097, -0.02944335900247097, -0.02482910081744194, -0.01735839806497097, -0.001977538922801614, 0.006152343470603228, 0.02109374850988388, 0.02504882775247097, 0.03251953050494194, 0.02285156212747097, 0.02460937388241291, 0.010107421316206455, -0.00747070275247097, -0.014721679501235485, -0.02592773362994194, -0.02241210825741291, -0.02043456956744194, -0.00747070275247097, 0.0002197265566792339, 0.007910155691206455, 0.01823730394244194, 0.02702636644244194, 0.02658691257238388, 0.0252685546875, 0.010107421316206455, 0.0017578124534338713, -0.01054687425494194, -0.01955566368997097, -0.01845703087747097, -0.02065429650247097, -0.01933593675494194, -0.01318359375, 0.00637206993997097, 0.009448242373764515, 0.0186767578125, 0.02131347544491291, 0.01933593675494194, 0.01186523400247097, 0.0054931640625, 0.0008789062267169356, -0.00527343712747097, -0.01582031138241291, -0.019775390625, -0.01582031138241291, -0.010107421316206455, -0.0013183592818677425, 0.007250976283103228, 0.00856933556497097, 0.01582031138241291, 0.019775390625, 0.01669921912252903, 0.0076904296875, 0.001977538922801614, -0.0054931640625, -0.01186523400247097, -0.0164794921875, -0.01318359375, -0.012304686941206455, -0.008349609561264515, 0.0002197265566792339, 0.010107421316206455, 0.01054687425494194, 0.013623046688735485, 0.009228515438735485, 0.01691894419491291, 0.013623046688735485, 0.0008789062267169356, -0.005053710658103228, -0.005053710658103228, -0.009008788503706455, -0.00966796837747097, -0.0087890625, -0.005053710658103228, 0.002197265625, 0.00966796837747097, 0.005053710658103228, 0.008349609561264515, 0.0041748047806322575, 0.009448242373764515, 0.0004394531133584678, 0.0010986328125, 0.0017578124534338713, 0.0004394531133584678, -0.009008788503706455, 0.0008789062267169356, 0.0, 0.0028564452659338713, 0.003735351376235485, 0.0057128905318677425, 0.0010986328125, -0.0002197265566792339, 0.003955077845603228, 0.0035156249068677425, 0.0046142577193677425, 0.0010986328125, 0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, 0.005053710658103228, 0.001977538922801614, 0.003955077845603228, 0.0032958984375, 0.001977538922801614, -0.001977538922801614, 0.001538085867650807, -0.0041748047806322575, -0.003076171735301614, 0.0046142577193677425, -0.0017578124534338713, -0.0006591796409338713, 0.00439453125, 0.002197265625, 0.0032958984375, 0.003955077845603228, 0.006591796875, 0.00637206993997097, 0.004833984188735485, 0.002636718563735485, 0.0006591796409338713, -0.0002197265566792339, 0.00527343712747097, 0.0008789062267169356, 0.005932617001235485, 0.0004394531133584678, 0.00637206993997097, 0.0004394531133584678, -0.0002197265566792339, 0.0008789062267169356, 0.0041748047806322575 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.2)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, 0.007031249813735485, -0.0002197265566792339, -0.0006591796409338713, 0.0046142577193677425, 0.0010986328125, -0.002197265625, -0.003735351376235485, 0.0006591796409338713, -0.001538085867650807, 0.0013183592818677425, 0.0017578124534338713, 0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, 0.00439453125, -0.0006591796409338713, 0.007910155691206455, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, 0.002636718563735485, -0.0006591796409338713, 0.004833984188735485, 0.00439453125, -0.001538085867650807, 0.0017578124534338713, 0.0035156249068677425, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, 0.002197265625, -0.0008789062267169356, 0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, 0.004833984188735485, -0.0013183592818677425, 0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, 0.00439453125, -0.001977538922801614, 0.0017578124534338713, -0.0028564452659338713, -0.002636718563735485, -0.0032958984375, -0.001977538922801614, 0.0057128905318677425, 0.0013183592818677425, 0.0076904296875, 0.007910155691206455, 0.003955077845603228, 0.01076660118997097, 0.002197265625, 0.0035156249068677425, -0.0068115233443677425, -0.00856933556497097, -0.009448242373764515, -0.01076660118997097, -0.01054687425494194, 0.002636718563735485, 0.008129882626235485, 0.0142822265625, 0.01054687425494194, 0.01713867112994194, 0.015600585378706455, 0.0076904296875, 0.00637206993997097, -0.003076171735301614, -0.014721679501235485, -0.015600585378706455, -0.01625976525247097, -0.01164550706744194, -0.003735351376235485, 0.00527343712747097, 0.01494140550494194, 0.01669921912252903, 0.024169921875, 0.0296630859375, 0.02351074106991291, 0.014501952566206455, 0.003955077845603228, -0.0164794921875, -0.0230712890625, -0.02944335900247097, -0.02878417819738388, -0.02153320237994194, -0.006152343470603228, 0.0041748047806322575, 0.02373046800494194, 0.02878417819738388, 0.03867187350988388, 0.03515625, 0.02395019493997097, 0.012304686941206455, -0.0028564452659338713, -0.02285156212747097, -0.02790527231991291, -0.03208007663488388, -0.02988281100988388, -0.02460937388241291, -0.002636718563735485, 0.01406249962747097, 0.03251953050494194, 0.04086913913488388, 0.04592284932732582, 0.04438476264476776, 0.03098144382238388, 0.00747070275247097, -0.009008788503706455, -0.02790527231991291, -0.03757324069738388, -0.04833984375, -0.04152831807732582, -0.024169921875, 0.001977538922801614, 0.02175292931497097, 0.0428466796875, 0.04746093600988388, 0.05009765550494194, 0.046142578125, 0.0208740234375, 0.001977538922801614, -0.0186767578125, -0.0450439453125, -0.05075683444738388, -0.05185546725988388, -0.0406494140625, -0.01911620981991291, 0.0017578124534338713, 0.02900390513241291, 0.052734375, 0.05998535081744194, 0.05800781026482582, 0.04196777194738388, 0.01911620981991291, -0.002636718563735485, -0.0318603515625, -0.054931640625, -0.05976562201976776, -0.05888671800494194, -0.04240722581744194, -0.01274413987994194, 0.01582031138241291, 0.04262695088982582, 0.06503906100988388, 0.06547851115465164, 0.0648193359375, 0.0439453125, 0.01845703087747097, -0.017578125, -0.0384521484375, -0.0626220703125, -0.07075195014476776, -0.05844726413488388, -0.03911132737994194, -0.0046142577193677425, 0.02812499925494194, 0.05471191182732582, 0.07492675632238388, 0.07382812350988388, 0.06130370870232582, 0.03955078125, 0.0041748047806322575, -0.03120117075741291, -0.05031738057732582, -0.07558593899011612, -0.07185058295726776, -0.06086425483226776, -0.03098144382238388, 0.006152343470603228, 0.0362548828125, 0.06679687649011612, 0.085693359375, 0.0780029296875, 0.063720703125, 0.032958984375, -0.0017578124534338713, -0.03515625, -0.06965331733226776, -0.08481445163488388, -0.07558593899011612, -0.06218261644244194, -0.02263183519244194, 0.01054687425494194, 0.04833984375, 0.0758056640625, 0.08393554389476776, 0.08503417670726776, 0.06306152045726776, 0.02548827975988388, -0.01494140550494194, -0.05295410007238388, -0.07470703125, -0.08811035007238388, -0.07954101264476776, -0.05756835639476776, -0.01999511756002903, 0.02329101413488388, 0.06130370870232582, 0.08854980021715164, 0.09799804538488388, 0.08217773586511612, 0.05361327901482582, 0.01494140550494194, -0.02988281100988388, -0.06569824367761612, -0.0911865234375, -0.08547362685203552, -0.07492675632238388, -0.046142578125, -0.00856933556497097, 0.0406494140625, 0.0736083984375, 0.09514159709215164, 0.10019531100988388, 0.08327636867761612, 0.04086913913488388, -0.0017578124534338713, -0.04020996019244194, -0.0736083984375, -0.09426268935203552, -0.09404296427965164, -0.07097167521715164, -0.03757324069738388, 0.010107421316206455, 0.04702148213982582, 0.08217773586511612, 0.10195311903953552, 0.09580077975988388, 0.07448730617761612, 0.03581542894244194, -0.007910155691206455, -0.0560302734375, -0.0889892578125, -0.10239257663488388, -0.09470214694738388, -0.06657714396715164, -0.01933593675494194, 0.02329101413488388, 0.0626220703125, 0.09645995497703552, 0.10744628310203552, 0.09162597358226776, 0.05954589694738388, 0.02460937388241291, -0.02482910081744194, -0.06855468451976776, -0.09096679091453552, -0.09843749552965164, -0.09272460639476776, -0.052734375, -0.00966796837747097, 0.03889160230755806, 0.07932128757238388, 0.09975585341453552, 0.10546875, 0.09228515625, 0.05712890625, 0.0098876953125, -0.0384521484375, -0.07185058295726776, -0.10349120944738388, -0.10107421875, -0.08657225966453552, -0.04262695088982582, 0.0057128905318677425, 0.052734375, 0.08986815810203552, 0.11008300632238388, 0.10415038466453552, 0.0780029296875, 0.04218749701976776, -0.0008789062267169356, -0.04833984375, -0.08481445163488388, -0.10524901747703552, -0.09799804538488388, -0.072509765625, -0.03449707105755806, 0.01691894419491291, 0.063720703125, 0.09865722060203552, 0.10480956733226776, 0.1043701171875, 0.07382812350988388, 0.02812499925494194, -0.01604003831744194, -0.06020507588982582, -0.09228515625, -0.1021728515625, -0.0966796875, -0.0560302734375, -0.01582031138241291, 0.03449707105755806, 0.07097167521715164, 0.10239257663488388, 0.10261230170726776, 0.0955810546875, 0.06284179538488388, 0.017578125, -0.03076171875, -0.0758056640625, -0.09733886271715164, -0.10393065959215164, -0.08173827826976776, -0.04987792670726776, -0.008349609561264515, 0.03933105245232582, 0.07932128757238388, 0.10634765028953552, 0.10744628310203552, 0.085693359375, 0.04768066108226776, 0.00637206993997097, -0.04416503757238388, -0.07382812350988388, -0.09865722060203552, -0.09975585341453552, -0.07448730617761612, -0.03427734225988388, 0.012304686941206455, 0.05427245795726776, 0.08415526896715164, 0.10568847507238388, 0.09711913764476776, 0.07646483927965164, 0.0362548828125, -0.0120849609375, -0.05954589694738388, -0.08393554389476776, -0.10305175185203552, -0.09250488132238388, -0.06745605170726776, -0.01889648474752903, 0.02175292931497097, 0.06416015326976776, 0.09360351413488388, 0.10415038466453552, 0.0889892578125, 0.059326171875, 0.01516113243997097, -0.01911620981991291, -0.063720703125, -0.0933837890625, -0.094482421875, -0.07998047024011612, -0.04965820163488388, -0.014721679501235485, 0.03493652120232582, 0.07163085788488388, 0.0977783203125, 0.09799804538488388, 0.07558593899011612, 0.04680175706744194, 0.00747070275247097, -0.03801269456744194, -0.06657714396715164, -0.08349609375, -0.0911865234375, -0.0714111328125, -0.03537597507238388, 0.007031249813735485, 0.04416503757238388, 0.07646483927965164, 0.09162597358226776, 0.08481445163488388, 0.06525878608226776, 0.03911132737994194, -0.00527343712747097, -0.037353515625, -0.07536620646715164, -0.08613280951976776, -0.08481445163488388, -0.05800781026482582, -0.03098144382238388, 0.01801757700741291, 0.05537109076976776, 0.07316894084215164, 0.08920898288488388, 0.07866210490465164, 0.05888671800494194, 0.02834472618997097, -0.01911620981991291, -0.05251464620232582, -0.07536620646715164, -0.0791015625, -0.06987304240465164, -0.05229492112994194, -0.013623046688735485, 0.024169921875, 0.05581054463982582, 0.07514648139476776, 0.08525390177965164, 0.06591796875, 0.04526367038488388, 0.005053710658103228, -0.02043456956744194, -0.04855956882238388, -0.06899414211511612, -0.07338867336511612, -0.06328124552965164, -0.03208007663488388, -0.005053710658103228, 0.02680663950741291, 0.05888671800494194, 0.07185058295726776, 0.07888183742761612, 0.063720703125, 0.0362548828125, 0.0008789062267169356, -0.02702636644244194, -0.0582275390625, -0.06789550930261612, -0.06723632663488388, -0.0472412109375, -0.02197265625, 0.006152343470603228, 0.04218749701976776, 0.0560302734375, 0.06613769382238388, 0.06108398362994194, 0.05119628831744194, 0.02482910081744194, -0.005932617001235485, -0.03669433668255806, -0.05515136569738388, -0.05668945237994194, -0.05778808519244194, -0.03713378682732582, -0.01691894419491291, 0.0098876953125, 0.0406494140625, 0.05229492112994194, 0.05800781026482582, 0.05075683444738388, 0.037353515625, 0.007031249813735485, -0.008349609561264515, -0.03691406175494194, -0.05229492112994194, -0.05185546725988388, -0.04526367038488388, -0.0263671875, -0.001538085867650807, 0.015380859375, 0.03889160230755806, 0.05317382514476776, 0.04921874776482582, 0.04196777194738388, 0.02834472618997097, 0.0008789062267169356, -0.0164794921875, -0.0340576171875, -0.04086913913488388, -0.03911132737994194, -0.03669433668255806, -0.01494140550494194, 0.0010986328125, 0.02153320237994194, 0.03493652120232582, 0.03955078125, 0.0384521484375, 0.02768554538488388, 0.01296386681497097, 0.0, -0.02065429650247097, -0.03449707105755806, -0.03208007663488388, -0.03208007663488388, -0.02241210825741291, -0.0057128905318677425, 0.00856933556497097, 0.01713867112994194, 0.03515625, 0.03669433668255806, 0.03098144382238388, 0.02351074106991291, 0.006152343470603228, -0.007031249813735485, -0.01604003831744194, -0.02219238132238388, -0.02395019493997097, -0.0274658203125, -0.0142822265625, -0.002197265625, 0.009448242373764515, 0.02131347544491291, 0.02438964694738388, 0.02241210825741291, 0.0186767578125, 0.013623046688735485, 0.0004394531133584678, -0.00637206993997097, -0.009448242373764515, -0.01186523400247097, -0.01845703087747097, -0.00966796837747097, -0.005932617001235485, 0.0035156249068677425, 0.014501952566206455, 0.01076660118997097, 0.01296386681497097, 0.017578125, 0.01406249962747097, 0.0098876953125, 0.0, -0.0024169920943677425, -0.009448242373764515, -0.01054687425494194, -0.00527343712747097, -0.0028564452659338713, -0.0010986328125, 0.0035156249068677425, 0.0002197265566792339, 0.00527343712747097, 0.003076171735301614, 0.007031249813735485, 0.002636718563735485, -0.002197265625, 0.0046142577193677425, 0.0013183592818677425, 0.005932617001235485, 0.0017578124534338713, -0.0010986328125, -0.002197265625, 0.00527343712747097, 0.004833984188735485, 0.003735351376235485, 0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, 0.0035156249068677425, 0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.002197265625, 0.006152343470603228, 0.0041748047806322575, -0.001538085867650807, 0.00747070275247097, 0.005053710658103228, 0.007250976283103228, 0.006152343470603228, 0.00439453125, -0.0004394531133584678, 0.00527343712747097, 0.0013183592818677425, 0.0008789062267169356, 0.003955077845603228, -0.0024169920943677425, 0.005053710658103228, 0.00527343712747097, 0.0010986328125, 0.0032958984375 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.3)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, 0.00439453125, 0.0035156249068677425, 0.0, 0.0057128905318677425, -0.0024169920943677425, 0.002197265625, -0.001977538922801614, 0.003955077845603228, 0.0017578124534338713, 0.0068115233443677425, 0.0017578124534338713, 0.00527343712747097, 0.0041748047806322575, 0.00637206993997097, 0.0008789062267169356, 0.005053710658103228, 0.0032958984375, 0.006591796875, -0.0013183592818677425, 0.003955077845603228, 0.00637206993997097, 0.004833984188735485, 0.0046142577193677425, 0.003735351376235485, -0.001977538922801614, 0.0041748047806322575, 0.003076171735301614, -0.0004394531133584678, 0.0017578124534338713, 0.0046142577193677425, -0.002636718563735485, 0.0054931640625, -0.0017578124534338713, 0.00527343712747097, 0.00637206993997097, -0.0004394531133584678, 0.0004394531133584678, 0.006591796875, 0.007910155691206455, 0.0032958984375, 0.001977538922801614, 0.0032958984375, 0.0035156249068677425, 0.0017578124534338713, -0.0010986328125, 0.0028564452659338713, 0.002636718563735485, -0.002197265625, 0.002197265625, 0.0013183592818677425, -0.0006591796409338713, 0.0035156249068677425, 0.008349609561264515, 0.01076660118997097, 0.00747070275247097, 0.010107421316206455, 0.01186523400247097, 0.003076171735301614, 0.002197265625, -0.007910155691206455, -0.012304686941206455, -0.01669921912252903, -0.01735839806497097, -0.01318359375, -0.0008789062267169356, 0.007031249813735485, 0.0186767578125, 0.02241210825741291, 0.02922363206744194, 0.02329101413488388, 0.0164794921875, -0.0008789062267169356, -0.00966796837747097, -0.02373046800494194, -0.02175292931497097, -0.02680663950741291, -0.0252685546875, -0.01735839806497097, 0.002197265625, 0.0208740234375, 0.02724609337747097, 0.04152831807732582, 0.04218749701976776, 0.0274658203125, 0.01823730394244194, -0.0010986328125, -0.02175292931497097, -0.03647460788488388, -0.0450439453125, -0.04306640475988388, -0.0340576171875, -0.014721679501235485, 0.005932617001235485, 0.02922363206744194, 0.04987792670726776, 0.05097655951976776, 0.0494384765625, 0.03449707105755806, 0.01516113243997097, -0.003735351376235485, -0.03449707105755806, -0.04636230319738388, -0.059326171875, -0.04636230319738388, -0.0318603515625, -0.00966796837747097, 0.01933593675494194, 0.04526367038488388, 0.05668945237994194, 0.06899414211511612, 0.05888671800494194, 0.04306640475988388, 0.01494140550494194, -0.01604003831744194, -0.04855956882238388, -0.06394042819738388, -0.0703125, -0.05646972358226776, -0.03559570387005806, 0.0010986328125, 0.03120117075741291, 0.05734863132238388, 0.07514648139476776, 0.07316894084215164, 0.06350097805261612, 0.041748046875, 0.0008789062267169356, -0.03142089769244194, -0.06218261644244194, -0.07492675632238388, -0.08283691108226776, -0.06525878608226776, -0.03339843824505806, 0.00527343712747097, 0.04306640475988388, 0.07932128757238388, 0.09316405653953552, 0.08876952528953552, 0.0626220703125, 0.03361816331744194, -0.0068115233443677425, -0.04899902269244194, -0.07932128757238388, -0.0911865234375, -0.08525390177965164, -0.063720703125, -0.02065429650247097, 0.02482910081744194, 0.0604248046875, 0.09492187201976776, 0.10502929240465164, 0.09624022990465164, 0.06899414211511612, 0.0186767578125, -0.02351074106991291, -0.06525878608226776, -0.09096679091453552, -0.10151366889476776, -0.08811035007238388, -0.05910644307732582, -0.01735839806497097, 0.04130859300494194, 0.08063964545726776, 0.11118163913488388, 0.1142578125, 0.0977783203125, 0.0582275390625, 0.00856933556497097, -0.03801269456744194, -0.08261718600988388, -0.11689452826976776, -0.10678710788488388, -0.08920898288488388, -0.04812011495232582, 0.003076171735301614, 0.05668945237994194, 0.09206542372703552, 0.12678222358226776, 0.12216796725988388, 0.09052734076976776, 0.04790038987994194, -0.010327148251235485, -0.06284179538488388, -0.098876953125, -0.12612304091453552, -0.11997070163488388, -0.08591308444738388, -0.03669433668255806, 0.02241210825741291, 0.07163085788488388, 0.11821288615465164, 0.12985838949680328, 0.1285400390625, 0.08811035007238388, 0.03823241963982582, -0.02021484263241291, -0.07207030802965164, -0.11513671278953552, -0.12656249105930328, -0.12216796725988388, -0.08195800334215164, -0.02263183519244194, 0.03757324069738388, 0.08701171725988388, 0.13469238579273224, 0.13776855170726776, 0.11821288615465164, 0.08393554389476776, 0.017578125, -0.04482421651482582, -0.09074706584215164, -0.1318359375, -0.13996581733226776, -0.1175537109375, -0.06965331733226776, -0.006152343470603228, 0.05646972358226776, 0.10722655802965164, 0.14238281548023224, 0.14655761420726776, 0.11469726264476776, 0.05888671800494194, 0.0013183592818677425, -0.06284179538488388, -0.1109619140625, -0.13908691704273224, -0.14414061605930328, -0.10986328125, -0.050537109375, 0.010107421316206455, 0.0802001953125, 0.13007812201976776, 0.156005859375, 0.14787597954273224, 0.11118163913488388, 0.04658202826976776, -0.01318359375, -0.07932128757238388, -0.1241455078125, -0.14370116591453552, -0.13469238579273224, -0.09492187201976776, -0.03779296949505806, 0.03120117075741291, 0.09799804538488388, 0.13645018637180328, 0.15908202528953552, 0.13315428793430328, 0.0955810546875, 0.02724609337747097, -0.03603515401482582, -0.09470214694738388, -0.13996581733226776, -0.14963378012180328, -0.13359375298023224, -0.08107910305261612, -0.01801757700741291, 0.0560302734375, 0.11293944716453552, 0.14765624701976776, 0.15974120795726776, 0.12656249105930328, 0.07624511420726776, 0.01494140550494194, -0.05646972358226776, -0.1142578125, -0.15073241293430328, -0.14963378012180328, -0.12436523288488388, -0.0692138671875, 0.003735351376235485, 0.07624511420726776, 0.1263427734375, 0.1571044921875, 0.1549072265625, 0.11953124403953552, 0.0582275390625, -0.01054687425494194, -0.07536620646715164, -0.12897948920726776, -0.15622557699680328, -0.15029296278953552, -0.11140136420726776, -0.0439453125, 0.02482910081744194, 0.09162597358226776, 0.14084471762180328, 0.16611327230930328, 0.14743651449680328, 0.10480956733226776, 0.04658202826976776, -0.02922363206744194, -0.09404296427965164, -0.13864745199680328, -0.16062010824680328, -0.14106445014476776, -0.09602050483226776, -0.02878417819738388, 0.04108886793255806, 0.10832519084215164, 0.15314941108226776, 0.15556640923023224, 0.13601073622703552, 0.09030761569738388, 0.02329101413488388, -0.04482421651482582, -0.1043701171875, -0.14897461235523224, -0.15183104574680328, -0.1307373046875, -0.07338867336511612, -0.002197265625, 0.06547851115465164, 0.1263427734375, 0.15446777641773224, 0.15183104574680328, 0.12897948920726776, 0.06503906100988388, 0.0057128905318677425, -0.06437987834215164, -0.11931151896715164, -0.15336914360523224, -0.14677734673023224, -0.11030273139476776, -0.05624999850988388, 0.009008788503706455, 0.08151855319738388, 0.1285400390625, 0.1549072265625, 0.1461181640625, 0.11271972209215164, 0.04812011495232582, -0.02043456956744194, -0.08371581882238388, -0.12897948920726776, -0.15446777641773224, -0.13666991889476776, -0.09382323920726776, -0.03603515401482582, 0.03713378682732582, 0.08942870795726776, 0.14150390028953552, 0.15358886122703552, 0.1351318359375, 0.08964843302965164, 0.02988281100988388, -0.03361816331744194, -0.09074706584215164, -0.1307373046875, -0.14655761420726776, -0.12106933444738388, -0.07624511420726776, -0.01164550706744194, 0.04416503757238388, 0.10349120944738388, 0.134033203125, 0.14809569716453552, 0.11491698771715164, 0.0758056640625, 0.01384277269244194, -0.04877929389476776, -0.09711913764476776, -0.13425292074680328, -0.13007812201976776, -0.10744628310203552, -0.05690917745232582, 0.0010986328125, 0.063720703125, 0.11733397841453552, 0.140625, 0.13776855170726776, 0.10744628310203552, 0.05009765550494194, -0.0032958984375, -0.06547851115465164, -0.11008300632238388, -0.129638671875, -0.11887206882238388, -0.09272460639476776, -0.03515625, 0.01604003831744194, 0.07778320461511612, 0.11799316108226776, 0.12656249105930328, 0.12238769233226776, 0.087890625, 0.03559570387005806, -0.02065429650247097, -0.07119140774011612, -0.11293944716453552, -0.12612304091453552, -0.10590820014476776, -0.07338867336511612, -0.01889648474752903, 0.03208007663488388, 0.0823974609375, 0.11140136420726776, 0.12436523288488388, 0.10305175185203552, 0.0648193359375, 0.01164550706744194, -0.03164062276482582, -0.07536620646715164, -0.112060546875, -0.10810546576976776, -0.09360351413488388, -0.05009765550494194, -0.0046142577193677425, 0.03999023512005806, 0.08371581882238388, 0.11030273139476776, 0.10678710788488388, 0.08876952528953552, 0.04438476264476776, -0.0013183592818677425, -0.04262695088982582, -0.07954101264476776, -0.09843749552965164, -0.10041503608226776, -0.0736083984375, -0.037353515625, 0.0057128905318677425, 0.05449218675494194, 0.09052734076976776, 0.09975585341453552, 0.0911865234375, 0.0692138671875, 0.03032226487994194, -0.0098876953125, -0.0516357421875, -0.07448730617761612, -0.09272460639476776, -0.085693359375, -0.0615234375, -0.01823730394244194, 0.01604003831744194, 0.05888671800494194, 0.08481445163488388, 0.08635253459215164, 0.08217773586511612, 0.05185546725988388, 0.02263183519244194, -0.02131347544491291, -0.05734863132238388, -0.0736083984375, -0.07888183742761612, -0.06635741889476776, -0.03691406175494194, -0.009448242373764515, 0.02460937388241291, 0.05581054463982582, 0.07646483927965164, 0.07426757365465164, 0.06591796875, 0.04130859300494194, 0.007250976283103228, -0.02812499925494194, -0.04965820163488388, -0.0626220703125, -0.06240234151482582, -0.05229492112994194, -0.024169921875, 0.0010986328125, 0.03559570387005806, 0.05581054463982582, 0.06899414211511612, 0.06569824367761612, 0.04746093600988388, 0.01801757700741291, 0.002197265625, -0.0230712890625, -0.04130859300494194, -0.05207519233226776, -0.04768066108226776, -0.03757324069738388, -0.01384277269244194, 0.010327148251235485, 0.03449707105755806, 0.04262695088982582, 0.05097655951976776, 0.04438476264476776, 0.0340576171875, 0.0098876953125, -0.0068115233443677425, -0.02548827975988388, -0.03361816331744194, -0.0406494140625, -0.0362548828125, -0.01669921912252903, -0.0013183592818677425, 0.01516113243997097, 0.02768554538488388, 0.03801269456744194, 0.03955078125, 0.02658691257238388, 0.01516113243997097, 0.00527343712747097, -0.011206054128706455, -0.01625976525247097, -0.02329101413488388, -0.02504882775247097, -0.02197265625, -0.01274413987994194, 0.005932617001235485, 0.011206054128706455, 0.02109374850988388, 0.02438964694738388, 0.0186767578125, 0.0186767578125, 0.00439453125, 0.007031249813735485, -0.011206054128706455, -0.014501952566206455, -0.012524413876235485, -0.0068115233443677425, -0.0046142577193677425, 0.0013183592818677425, 0.008349609561264515, 0.0, 0.006591796875, 0.003076171735301614, 0.009448242373764515, 0.007250976283103228, 0.00439453125, -0.002636718563735485, 0.0004394531133584678, 0.004833984188735485, -0.002636718563735485, 0.006591796875, 0.0013183592818677425, -0.001538085867650807, 0.002636718563735485, -0.0010986328125, -0.001538085867650807, 0.006152343470603228, -0.0017578124534338713, -0.0004394531133584678, 0.0013183592818677425, 0.00439453125, -0.0002197265566792339, -0.0035156249068677425, 0.0068115233443677425, -0.0006591796409338713, -0.0024169920943677425, -0.0002197265566792339, 0.0068115233443677425, -0.0024169920943677425, 0.001977538922801614, 0.0028564452659338713, -0.0006591796409338713, 0.00439453125, 0.0024169920943677425, 0.002636718563735485, 0.0002197265566792339, 0.00439453125, 0.0002197265566792339, 0.00637206993997097, -0.0017578124534338713, 0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.4)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, 0.0046142577193677425, 0.001538085867650807, -0.0032958984375, 0.001977538922801614, -0.0006591796409338713, -0.0002197265566792339, 0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, 0.004833984188735485, 0.0002197265566792339, 0.0004394531133584678, 0.0013183592818677425, 0.003955077845603228, 0.004833984188735485, 0.0004394531133584678, 0.0002197265566792339, 0.0041748047806322575, -0.0010986328125, 0.0006591796409338713, 0.0046142577193677425, 0.0, 0.0068115233443677425, 0.0, 0.003955077845603228, 0.0028564452659338713, 0.0024169920943677425, 0.0010986328125, 0.0013183592818677425, -0.0006591796409338713, 0.0, -0.0028564452659338713, 0.0035156249068677425, -0.0008789062267169356, -0.0024169920943677425, 0.005932617001235485, -0.002636718563735485, 0.002197265625, 0.0013183592818677425, 0.006152343470603228, 0.0041748047806322575, -0.002197265625, 0.007031249813735485, 0.0041748047806322575, 0.0017578124534338713, 0.0010986328125, 0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0002197265566792339, 0.0054931640625, 0.007910155691206455, 0.01669921912252903, 0.009228515438735485, 0.010986328125, 0.01186523400247097, 0.003955077845603228, -0.007031249813735485, -0.007910155691206455, -0.02131347544491291, -0.0186767578125, -0.014721679501235485, -0.010986328125, -0.006591796875, 0.01384277269244194, 0.024169921875, 0.02922363206744194, 0.0296630859375, 0.02504882775247097, 0.01955566368997097, 0.007031249813735485, -0.01186523400247097, -0.02285156212747097, -0.04130859300494194, -0.0340576171875, -0.03669433668255806, -0.02021484263241291, 0.0017578124534338713, 0.024169921875, 0.0406494140625, 0.05207519233226776, 0.05471191182732582, 0.03779296949505806, 0.02329101413488388, -0.0028564452659338713, -0.0208740234375, -0.04636230319738388, -0.05537109076976776, -0.05624999850988388, -0.04108886793255806, -0.01845703087747097, 0.00527343712747097, 0.03911132737994194, 0.06130370870232582, 0.06525878608226776, 0.06789550930261612, 0.04702148213982582, 0.02021484263241291, -0.01604003831744194, -0.041748046875, -0.07053222507238388, -0.0758056640625, -0.06679687649011612, -0.04570312425494194, -0.0142822265625, 0.01911620981991291, 0.05844726413488388, 0.08041992038488388, 0.09096679091453552, 0.07822265475988388, 0.04790038987994194, 0.01691894419491291, -0.02548827975988388, -0.05888671800494194, -0.08283691108226776, -0.09711913764476776, -0.07668457180261612, -0.04702148213982582, -0.0002197265566792339, 0.041748046875, 0.08085937052965164, 0.10041503608226776, 0.10898437350988388, 0.09030761569738388, 0.04768066108226776, 0.002197265625, -0.0439453125, -0.07998047024011612, -0.1021728515625, -0.10700683295726776, -0.08525390177965164, -0.04416503757238388, 0.01164550706744194, 0.05427245795726776, 0.09931640326976776, 0.11953124403953552, 0.11579589545726776, 0.09228515625, 0.03955078125, -0.0120849609375, -0.06284179538488388, -0.10349120944738388, -0.12612304091453552, -0.11293944716453552, -0.08437499403953552, -0.03120117075741291, 0.02812499925494194, 0.08195800334215164, 0.11513671278953552, 0.13579101860523224, 0.12392577528953552, 0.08635253459215164, 0.03076171875, -0.03010253794491291, -0.08833007514476776, -0.1263427734375, -0.14414061605930328, -0.12150878459215164, -0.0802001953125, -0.01318359375, 0.04592284932732582, 0.10964354872703552, 0.1439208984375, 0.14765624701976776, 0.123046875, 0.07470703125, 0.014721679501235485, -0.05449218675494194, -0.1131591796875, -0.14304198324680328, -0.15622557699680328, -0.12260741740465164, -0.06855468451976776, 0.00637206993997097, 0.0703125, 0.12875975668430328, 0.16721190512180328, 0.15974120795726776, 0.12612304091453552, 0.0615234375, -0.006152343470603228, -0.081298828125, -0.13710936903953552, -0.16435547173023224, -0.15446777641773224, -0.11799316108226776, -0.0560302734375, 0.02065429650247097, 0.09294433146715164, 0.14501953125, 0.17314451932907104, 0.16215820610523224, 0.11337890475988388, 0.04658202826976776, -0.02988281100988388, -0.09733886271715164, -0.15864257514476776, -0.17138671875, -0.15996094048023224, -0.10854491591453552, -0.02680663950741291, 0.04965820163488388, 0.12019042670726776, 0.17314451932907104, 0.18544921278953552, 0.15996094048023224, 0.0977783203125, 0.02878417819738388, -0.0516357421875, -0.12348632514476776, -0.1680908203125, -0.17775878310203552, -0.15402831137180328, -0.08547362685203552, -0.0041748047806322575, 0.07426757365465164, 0.1461181640625, 0.18632811307907104, 0.19138182699680328, 0.15512694418430328, 0.0867919921875, 0.0028564452659338713, -0.08041992038488388, -0.14414061605930328, -0.193359375, -0.18852537870407104, -0.13974608480930328, -0.072509765625, 0.011425781063735485, 0.09843749552965164, 0.17050780355930328, 0.1988525390625, 0.18896484375, 0.13623046875, 0.06240234151482582, -0.02329101413488388, -0.10151366889476776, -0.16347655653953552, -0.19775390625, -0.18720702826976776, -0.12875975668430328, -0.05207519233226776, 0.04042968526482582, 0.12041015177965164, 0.18413084745407104, 0.20126952230930328, 0.18544921278953552, 0.12392577528953552, 0.03933105245232582, -0.04658202826976776, -0.125244140625, -0.18017578125, -0.20852050185203552, -0.17490233480930328, -0.11140136420726776, -0.02438964694738388, 0.06547851115465164, 0.14809569716453552, 0.19643554091453552, 0.2054443359375, 0.17006835341453552, 0.10524901747703552, 0.01955566368997097, -0.06657714396715164, -0.14743651449680328, -0.19775390625, -0.2010498046875, -0.16435547173023224, -0.09184569865465164, 0.007250976283103228, 0.09536132216453552, 0.16237792372703552, 0.20786131918430328, 0.20852050185203552, 0.15754394233226776, 0.07778320461511612, -0.01164550706744194, -0.09624022990465164, -0.17050780355930328, -0.20852050185203552, -0.1966552734375, -0.1461181640625, -0.06459961086511612, 0.02614746056497097, 0.11271972209215164, 0.18588866293430328, 0.2142333984375, 0.19423827528953552, 0.134033203125, 0.05185546725988388, -0.03867187350988388, -0.11689452826976776, -0.18588866293430328, -0.20500487089157104, -0.18940429389476776, -0.125244140625, -0.0340576171875, 0.06020507588982582, 0.1417236328125, 0.19709472358226776, 0.21467284858226776, 0.17995604872703552, 0.11162108927965164, 0.02724609337747097, -0.05778808519244194, -0.14414061605930328, -0.1878662109375, -0.20500487089157104, -0.17094725370407104, -0.09953612834215164, -0.01274413987994194, 0.08041992038488388, 0.15534667670726776, 0.19709472358226776, 0.20654296875, 0.16325683891773224, 0.09030761569738388, 0.007031249813735485, -0.08173827826976776, -0.15842284262180328, -0.19841307401657104, -0.1966552734375, -0.14897461235523224, -0.06899414211511612, 0.01889648474752903, 0.09975585341453552, 0.17226561903953552, 0.20500487089157104, 0.18852537870407104, 0.1417236328125, 0.06569824367761612, -0.02482910081744194, -0.10722655802965164, -0.1669921875, -0.20126952230930328, -0.18654784560203552, -0.12348632514476776, -0.05141601338982582, 0.04108886793255806, 0.1263427734375, 0.1834716796875, 0.19467772543430328, 0.17600096762180328, 0.11931151896715164, 0.03208007663488388, -0.04680175706744194, -0.11931151896715164, -0.17819823324680328, -0.19138182699680328, -0.16391600668430328, -0.09799804538488388, -0.019775390625, 0.0626220703125, 0.13996581733226776, 0.18259276449680328, 0.18830566108226776, 0.15996094048023224, 0.09645995497703552, 0.01186523400247097, -0.063720703125, -0.13117675483226776, -0.17753905057907104, -0.17819823324680328, -0.14304198324680328, -0.07536620646715164, 0.0076904296875, 0.07976073771715164, 0.14238281548023224, 0.17666015028953552, 0.17644041776657104, 0.13227538764476776, 0.06394042819738388, -0.011425781063735485, -0.08261718600988388, -0.1395263671875, -0.16765137016773224, -0.16127929091453552, -0.11953124403953552, -0.05317382514476776, 0.02944335900247097, 0.1021728515625, 0.14897461235523224, 0.17622070014476776, 0.15798339247703552, 0.11447753757238388, 0.05075683444738388, -0.03076171875, -0.09536132216453552, -0.1505126953125, -0.15974120795726776, -0.14743651449680328, -0.09184569865465164, -0.03164062276482582, 0.04372558370232582, 0.11271972209215164, 0.15205077826976776, 0.16523437201976776, 0.14084471762180328, 0.09184569865465164, 0.01691894419491291, -0.04833984375, -0.10854491591453552, -0.14084471762180328, -0.14699706435203552, -0.12019042670726776, -0.07294921576976776, -0.003735351376235485, 0.06328124552965164, 0.11689452826976776, 0.14677734673023224, 0.14370116591453552, 0.11601562052965164, 0.06437987834215164, 0.001538085867650807, -0.05668945237994194, -0.10788574069738388, -0.13161620497703552, -0.134033203125, -0.09909667819738388, -0.05031738057732582, 0.012524413876235485, 0.06965331733226776, 0.11579589545726776, 0.13557128608226776, 0.12260741740465164, 0.08811035007238388, 0.04196777194738388, -0.009448242373764515, -0.06503906100988388, -0.10502929240465164, -0.11557617038488388, -0.11403807997703552, -0.07932128757238388, -0.0263671875, 0.02570800669491291, 0.072509765625, 0.11162108927965164, 0.112060546875, 0.10700683295726776, 0.06591796875, 0.02768554538488388, -0.02285156212747097, -0.07075195014476776, -0.09821777045726776, -0.10371093451976776, -0.08745116740465164, -0.05361327901482582, -0.01274413987994194, 0.03537597507238388, 0.07207030802965164, 0.09733886271715164, 0.10305175185203552, 0.08085937052965164, 0.05295410007238388, 0.009008788503706455, -0.037353515625, -0.07053222507238388, -0.08657225966453552, -0.08701171725988388, -0.06591796875, -0.03955078125, 0.0013183592818677425, 0.0406494140625, 0.06877440959215164, 0.085693359375, 0.08085937052965164, 0.05910644307732582, 0.02900390513241291, -0.007910155691206455, -0.0406494140625, -0.06130370870232582, -0.07602538913488388, -0.07185058295726776, -0.04812011495232582, -0.01669921912252903, 0.013403319753706455, 0.04196777194738388, 0.06306152045726776, 0.06635741889476776, 0.05646972358226776, 0.04130859300494194, 0.015380859375, -0.015600585378706455, -0.03032226487994194, -0.0472412109375, -0.05624999850988388, -0.04768066108226776, -0.02614746056497097, -0.003076171735301614, 0.02043456956744194, 0.02900390513241291, 0.04262695088982582, 0.04965820163488388, 0.03647460788488388, 0.01999511756002903, 0.011206054128706455, -0.011206054128706455, -0.02768554538488388, -0.03713378682732582, -0.03603515401482582, -0.0318603515625, -0.0164794921875, -0.0032958984375, 0.01164550706744194, 0.02548827975988388, 0.03229980543255806, 0.02878417819738388, 0.02285156212747097, 0.015380859375, -0.0041748047806322575, -0.00856933556497097, -0.01274413987994194, -0.01625976525247097, -0.0142822265625, -0.0076904296875, -0.0054931640625, 0.0028564452659338713, 0.003735351376235485, 0.011206054128706455, 0.0120849609375, 0.010107421316206455, 0.0032958984375, 0.0002197265566792339, 0.0017578124534338713, 0.0032958984375, -0.0010986328125, 0.0, 0.003735351376235485, -0.0010986328125, 0.005932617001235485, 0.0057128905318677425, 0.0035156249068677425, 0.003735351376235485, 0.0032958984375, 0.0076904296875, 0.0054931640625, -0.0028564452659338713, 0.0035156249068677425, 0.0004394531133584678, 0.003076171735301614, 0.0057128905318677425, 0.002636718563735485, 0.0028564452659338713, 0.005053710658103228, 0.003735351376235485, 0.0017578124534338713, 0.003955077845603228, -0.001538085867650807, -0.003076171735301614, 0.001538085867650807, 0.0010986328125, 0.0010986328125, -0.0008789062267169356, 0.0008789062267169356, -0.001538085867650807, 0.003955077845603228, 0.004833984188735485, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.5)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0002197265566792339, 0.0024169920943677425, 0.0006591796409338713, 0.00527343712747097, -0.0006591796409338713, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, 0.0035156249068677425, 0.001977538922801614, 0.0010986328125, 0.0010986328125, 0.0010986328125, -0.001538085867650807, 0.002197265625, 0.00527343712747097, 0.00527343712747097, -0.0006591796409338713, -0.0004394531133584678, 0.003735351376235485, 0.001977538922801614, 0.0010986328125, 0.0017578124534338713, 0.0017578124534338713, 0.0, 0.003076171735301614, 0.0046142577193677425, 0.0054931640625, -0.003955077845603228, 0.003076171735301614, 0.0008789062267169356, -0.001538085867650807, 0.00637206993997097, 0.00527343712747097, -0.0035156249068677425, 0.0006591796409338713, 0.002197265625, -0.0008789062267169356, 0.00527343712747097, 0.0008789062267169356, -0.0024169920943677425, 0.00439453125, 0.0024169920943677425, 0.0010986328125, 0.0054931640625, 0.0057128905318677425, -0.001977538922801614, 0.005053710658103228, 0.0013183592818677425, -0.0010986328125, -0.006152343470603228, -0.0032958984375, 0.0010986328125, 0.009228515438735485, 0.01186523400247097, 0.01713867112994194, 0.0142822265625, 0.01274413987994194, 0.0098876953125, -0.001977538922801614, -0.01911620981991291, -0.02329101413488388, -0.02351074106991291, -0.02438964694738388, -0.02043456956744194, -0.007910155691206455, 0.01186523400247097, 0.024169921875, 0.0340576171875, 0.0428466796875, 0.0340576171875, 0.0274658203125, 0.0013183592818677425, -0.011206054128706455, -0.02834472618997097, -0.0494384765625, -0.05075683444738388, -0.04020996019244194, -0.02285156212747097, 0.003955077845603228, 0.02395019493997097, 0.04592284932732582, 0.06591796875, 0.06350097805261612, 0.05229492112994194, 0.02878417819738388, 0.0004394531133584678, -0.03361816331744194, -0.05800781026482582, -0.06723632663488388, -0.068115234375, -0.054931640625, -0.02790527231991291, 0.01406249962747097, 0.04987792670726776, 0.06943359225988388, 0.08657225966453552, 0.07844237983226776, 0.0615234375, 0.02504882775247097, -0.015380859375, -0.05251464620232582, -0.08305663615465164, -0.09096679091453552, -0.08833007514476776, -0.06306152045726776, -0.02197265625, 0.02329101413488388, 0.06899414211511612, 0.09711913764476776, 0.10568847507238388, 0.09316405653953552, 0.06503906100988388, 0.02285156212747097, -0.03229980543255806, -0.08151855319738388, -0.10458984225988388, -0.11601562052965164, -0.09975585341453552, -0.06240234151482582, -0.006152343470603228, 0.046142578125, 0.09931640326976776, 0.129638671875, 0.13271483778953552, 0.10832519084215164, 0.05537109076976776, 0.007910155691206455, -0.05624999850988388, -0.10612792521715164, -0.12985838949680328, -0.13623046875, -0.10458984225988388, -0.05207519233226776, 0.009448242373764515, 0.07075195014476776, 0.12458495795726776, 0.151611328125, 0.14501953125, 0.10964354872703552, 0.04899902269244194, -0.012524413876235485, -0.07888183742761612, -0.12678222358226776, -0.15952147543430328, -0.14743651449680328, -0.09909667819738388, -0.03581542894244194, 0.02768554538488388, 0.10261230170726776, 0.14787597954273224, 0.17314451932907104, 0.14963378012180328, 0.10195311903953552, 0.03010253794491291, -0.04306640475988388, -0.11271972209215164, -0.158203125, -0.16831053793430328, -0.15622557699680328, -0.09624022990465164, -0.01779785193502903, 0.05778808519244194, 0.13337402045726776, 0.17138671875, 0.18479003012180328, 0.15358886122703552, 0.0977783203125, 0.0120849609375, -0.06064452975988388, -0.13798828423023224, -0.17578125, -0.19270019233226776, -0.15073241293430328, -0.07866210490465164, 0.00439453125, 0.08349609375, 0.16105957329273224, 0.20061033964157104, 0.20148925483226776, 0.1505126953125, 0.0791015625, -0.0032958984375, -0.09162597358226776, -0.16831053793430328, -0.19929198920726776, -0.19731444120407104, -0.1395263671875, -0.06767577677965164, 0.03142089769244194, 0.11469726264476776, 0.18391112983226776, 0.21335448324680328, 0.20412597060203552, 0.14326171576976776, 0.05624999850988388, -0.03515625, -0.12019042670726776, -0.18698729574680328, -0.22104491293430328, -0.19687499105930328, -0.13051757216453552, -0.041748046875, 0.05910644307732582, 0.14963378012180328, 0.20610350370407104, 0.22434081137180328, 0.19929198920726776, 0.125244140625, 0.02922363206744194, -0.06437987834215164, -0.15336914360523224, -0.21159666776657104, -0.23203124105930328, -0.18610839545726776, -0.11293944716453552, -0.013623046688735485, 0.08854980021715164, 0.17226561903953552, 0.23488768935203552, 0.2384033203125, 0.18391112983226776, 0.10590820014476776, 0.0041748047806322575, -0.09426268935203552, -0.17973631620407104, -0.23444823920726776, -0.23203124105930328, -0.18215331435203552, -0.09096679091453552, 0.0164794921875, 0.11491698771715164, 0.20302733778953552, 0.24104003608226776, 0.23422850668430328, 0.1724853515625, 0.0758056640625, -0.01933593675494194, -0.12546385824680328, -0.19973143935203552, -0.24323730170726776, -0.22653807699680328, -0.1636962890625, -0.0560302734375, 0.04877929389476776, 0.15336914360523224, 0.22499999403953552, 0.25334471464157104, 0.22214354574680328, 0.14853514730930328, 0.04899902269244194, -0.05537109076976776, -0.15205077826976776, -0.22280272841453552, -0.2502685487270355, -0.21994628012180328, -0.13974608480930328, -0.02900390513241291, 0.07668457180261612, 0.17973631620407104, 0.243896484375, 0.2601562440395355, 0.21774901449680328, 0.12744140625, 0.02373046800494194, -0.081298828125, -0.18017578125, -0.24631346762180328, -0.25048828125, -0.20390623807907104, -0.10546875, 0.0054931640625, 0.11337890475988388, 0.19951170682907104, 0.2572998106479645, 0.25048828125, 0.18720702826976776, 0.09755858778953552, -0.007910155691206455, -0.11733397841453552, -0.20192870497703552, -0.25554198026657104, -0.24741210043430328, -0.17622070014476776, -0.07294921576976776, 0.03449707105755806, 0.14370116591453552, 0.22895507514476776, 0.2568603456020355, 0.2427978515625, 0.16677245497703552, 0.07272949069738388, -0.0406494140625, -0.15095214545726776, -0.22214354574680328, -0.2583984434604645, -0.22939452528953552, -0.14787597954273224, -0.04152831807732582, 0.06569824367761612, 0.16896972060203552, 0.23312987387180328, 0.26301267743110657, 0.22148436307907104, 0.14018554985523224, 0.0428466796875, -0.06679687649011612, -0.16347655653953552, -0.23027342557907104, -0.2471923828125, -0.20632323622703552, -0.120849609375, -0.01669921912252903, 0.09909667819738388, 0.1900634765625, 0.25334471464157104, 0.25004881620407104, 0.20148925483226776, 0.10942382365465164, 0.009008788503706455, -0.0977783203125, -0.18391112983226776, -0.24609375, -0.23818358778953552, -0.18325194716453552, -0.09162597358226776, 0.01516113243997097, 0.12590332329273224, 0.20632323622703552, 0.2551025450229645, 0.24301756918430328, 0.17204588651657104, 0.07866210490465164, -0.02680663950741291, -0.12788085639476776, -0.20522460341453552, -0.243896484375, -0.22412109375, -0.15249022841453552, -0.05998535081744194, 0.04833984375, 0.15095214545726776, 0.21840819716453552, 0.24213866889476776, 0.21489256620407104, 0.14238281548023224, 0.04921874776482582, -0.05690917745232582, -0.15314941108226776, -0.21401366591453552, -0.230712890625, -0.19907225668430328, -0.12370605021715164, -0.02768554538488388, 0.07470703125, 0.16171874105930328, 0.22016601264476776, 0.2318115234375, 0.1966552734375, 0.11293944716453552, 0.02197265625, -0.0845947265625, -0.16083984076976776, -0.22236327826976776, -0.22214354574680328, -0.17336425185203552, -0.09272460639476776, 0.008349609561264515, 0.10019531100988388, 0.18500976264476776, 0.22697752714157104, 0.21796874701976776, 0.17204588651657104, 0.08525390177965164, -0.01076660118997097, -0.10261230170726776, -0.1724853515625, -0.21555174887180328, -0.1988525390625, -0.14919432997703552, -0.06196288764476776, 0.02724609337747097, 0.11953124403953552, 0.18215331435203552, 0.21445311605930328, 0.19731444120407104, 0.14040526747703552, 0.05405273288488388, -0.032958984375, -0.11799316108226776, -0.17644041776657104, -0.20017088949680328, -0.17819823324680328, -0.11953124403953552, -0.03757324069738388, 0.05515136569738388, 0.12700195610523224, 0.1878662109375, 0.19423827528953552, 0.17204588651657104, 0.1109619140625, 0.02922363206744194, -0.05581054463982582, -0.1307373046875, -0.17072753608226776, -0.18369139730930328, -0.15424804389476776, -0.09140624850988388, -0.008349609561264515, 0.07602538913488388, 0.142822265625, 0.18083494901657104, 0.18303221464157104, 0.13864745199680328, 0.07888183742761612, 0.003076171735301614, -0.07448730617761612, -0.13315428793430328, -0.16896972060203552, -0.16677245497703552, -0.12568359076976776, -0.06064452975988388, 0.014721679501235485, 0.08481445163488388, 0.13930663466453552, 0.16325683891773224, 0.151611328125, 0.11337890475988388, 0.04833984375, -0.019775390625, -0.08195800334215164, -0.129638671875, -0.15534667670726776, -0.13359375298023224, -0.09184569865465164, -0.032958984375, 0.03142089769244194, 0.09536132216453552, 0.1307373046875, 0.15073241293430328, 0.1219482421875, 0.08217773586511612, 0.02570800669491291, -0.03493652120232582, -0.08393554389476776, -0.12238769233226776, -0.13161620497703552, -0.11293944716453552, -0.06855468451976776, -0.01801757700741291, 0.04240722581744194, 0.09470214694738388, 0.11799316108226776, 0.13117675483226776, 0.10393065959215164, 0.0648193359375, 0.005932617001235485, -0.03889160230755806, -0.08349609375, -0.10810546576976776, -0.10898437350988388, -0.0845947265625, -0.0428466796875, 0.007031249813735485, 0.05405273288488388, 0.08745116740465164, 0.10239257663488388, 0.094482421875, 0.0802001953125, 0.03317870944738388, -0.003955077845603228, -0.04526367038488388, -0.07404784858226776, -0.08723144233226776, -0.08811035007238388, -0.0604248046875, -0.02131347544491291, 0.01494140550494194, 0.04899902269244194, 0.07097167521715164, 0.08085937052965164, 0.07338867336511612, 0.04768066108226776, 0.01713867112994194, -0.01516113243997097, -0.0450439453125, -0.06020507588982582, -0.06635741889476776, -0.05515136569738388, -0.041748046875, -0.010986328125, 0.02065429650247097, 0.04152831807732582, 0.05800781026482582, 0.05756835639476776, 0.0439453125, 0.03361816331744194, 0.011425781063735485, -0.01625976525247097, -0.03801269456744194, -0.0384521484375, -0.04460449144244194, -0.03054199181497097, -0.01801757700741291, 0.0035156249068677425, 0.019775390625, 0.03032226487994194, 0.03581542894244194, 0.03537597507238388, 0.02812499925494194, 0.0087890625, 0.0, -0.0142822265625, -0.01933593675494194, -0.02460937388241291, -0.01713867112994194, -0.0120849609375, -0.003955077845603228, 0.007250976283103228, 0.0087890625, 0.01691894419491291, 0.0076904296875, 0.009448242373764515, 0.00637206993997097, -0.0035156249068677425, 0.005053710658103228, 0.0041748047806322575, 0.0041748047806322575, 0.0028564452659338713, 0.0035156249068677425, 0.0024169920943677425, 0.0008789062267169356, -0.001977538922801614, 0.007250976283103228, 0.0032958984375, 0.0, 0.0006591796409338713, 0.0028564452659338713, -0.004833984188735485, -0.00439453125, 0.001538085867650807, -0.003076171735301614, 0.001977538922801614, 0.0024169920943677425, 0.00747070275247097, 0.0010986328125, 0.006152343470603228, 0.003955077845603228, 0.00439453125, 0.0032958984375, 0.0006591796409338713, 0.0046142577193677425, 0.00527343712747097, 0.003076171735301614, -0.005053710658103228, 0.0013183592818677425, -0.0041748047806322575, 0.005932617001235485, 0.003955077845603228, 0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.6)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.001977538922801614, -0.001538085867650807, 0.004833984188735485, -0.00439453125, 0.005053710658103228, -0.0002197265566792339, 0.004833984188735485, 0.0046142577193677425, 0.005053710658103228, 0.0041748047806322575, 0.008129882626235485, 0.0006591796409338713, -0.001538085867650807, 0.0068115233443677425, 0.0032958984375, 0.0, 0.001538085867650807, 0.00637206993997097, 0.0, 0.0017578124534338713, 0.0028564452659338713, 0.0002197265566792339, -0.0010986328125, -0.001538085867650807, 0.006152343470603228, 0.008129882626235485, 0.0006591796409338713, -0.002636718563735485, 0.0041748047806322575, 0.005932617001235485, -0.001977538922801614, -0.0035156249068677425, 0.0013183592818677425, 0.001977538922801614, 0.002636718563735485, 0.0013183592818677425, 0.0004394531133584678, -0.0032958984375, -0.0008789062267169356, -0.0032958984375, -0.001977538922801614, 0.0032958984375, 0.002636718563735485, 0.006152343470603228, -0.001977538922801614, 0.0004394531133584678, 0.0013183592818677425, -0.0017578124534338713, 0.001538085867650807, -0.0046142577193677425, -0.006152343470603228, 0.0017578124534338713, 0.002197265625, 0.009228515438735485, 0.01274413987994194, 0.0186767578125, 0.02614746056497097, 0.01801757700741291, 0.00527343712747097, -0.001538085867650807, -0.01516113243997097, -0.02614746056497097, -0.03471679612994194, -0.02680663950741291, -0.01713867112994194, -0.0004394531133584678, 0.01384277269244194, 0.03471679612994194, 0.04130859300494194, 0.050537109375, 0.03823241963982582, 0.02922363206744194, 0.0098876953125, -0.01801757700741291, -0.04306640475988388, -0.05646972358226776, -0.05778808519244194, -0.05229492112994194, -0.02944335900247097, 0.0028564452659338713, 0.03471679612994194, 0.0538330078125, 0.07207030802965164, 0.07778320461511612, 0.06437987834215164, 0.03339843824505806, -0.006591796875, -0.041748046875, -0.07294921576976776, -0.08635253459215164, -0.08041992038488388, -0.06350097805261612, -0.03471679612994194, 0.0120849609375, 0.0538330078125, 0.08701171725988388, 0.10480956733226776, 0.09602050483226776, 0.06943359225988388, 0.02768554538488388, -0.01735839806497097, -0.06723632663488388, -0.10151366889476776, -0.11074218153953552, -0.1021728515625, -0.06987304240465164, -0.0208740234375, 0.02790527231991291, 0.08481445163488388, 0.116455078125, 0.13579101860523224, 0.11337890475988388, 0.07536620646715164, 0.02021484263241291, -0.04328612983226776, -0.0889892578125, -0.12568359076976776, -0.13666991889476776, -0.11887206882238388, -0.07514648139476776, -0.012304686941206455, 0.05756835639476776, 0.11469726264476776, 0.1461181640625, 0.15666504204273224, 0.12260741740465164, 0.07624511420726776, -0.0008789062267169356, -0.06591796875, -0.11931151896715164, -0.16083984076976776, -0.16435547173023224, -0.12128905951976776, -0.06284179538488388, 0.012304686941206455, 0.08327636867761612, 0.14414061605930328, 0.17578125, 0.16677245497703552, 0.1329345703125, 0.06240234151482582, -0.01889648474752903, -0.09514159709215164, -0.15183104574680328, -0.18391112983226776, -0.17534178495407104, -0.12282714247703552, -0.04636230319738388, 0.0406494140625, 0.11909179389476776, 0.182373046875, 0.199951171875, 0.18588866293430328, 0.12392577528953552, 0.04152831807732582, -0.04526367038488388, -0.12897948920726776, -0.19072264432907104, -0.20917968451976776, -0.18215331435203552, -0.11887206882238388, -0.02768554538488388, 0.06635741889476776, 0.14809569716453552, 0.20302733778953552, 0.22543944418430328, 0.1856689453125, 0.1131591796875, 0.02153320237994194, -0.07514648139476776, -0.15842284262180328, -0.21730956435203552, -0.22104491293430328, -0.18149413168430328, -0.09711913764476776, 0.0010986328125, 0.10458984225988388, 0.19204100966453552, 0.2340087890625, 0.23334960639476776, 0.18413084745407104, 0.09294433146715164, -0.013403319753706455, -0.11403807997703552, -0.19050292670726776, -0.2340087890625, -0.23598632216453552, -0.17644041776657104, -0.07536620646715164, 0.03691406175494194, 0.13337402045726776, 0.21401366591453552, 0.25334471464157104, 0.23686522245407104, 0.16633300483226776, 0.0703125, -0.04240722581744194, -0.14743651449680328, -0.22565917670726776, -0.2660888731479645, -0.23752440512180328, -0.15974120795726776, -0.04482421651482582, 0.06899414211511612, 0.17094725370407104, 0.25092771649360657, 0.2691650390625, 0.23488768935203552, 0.14787597954273224, 0.04130859300494194, -0.07404784858226776, -0.17226561903953552, -0.25444334745407104, -0.2737793028354645, -0.22126464545726776, -0.134033203125, -0.01318359375, 0.10502929240465164, 0.2098388671875, 0.2704834043979645, 0.27290037274360657, 0.22719725966453552, 0.12458495795726776, 0.010107421316206455, -0.10415038466453552, -0.204345703125, -0.2726806700229645, -0.27685546875, -0.20742186903953552, -0.10393065959215164, 0.01999511756002903, 0.13908691704273224, 0.2406005859375, 0.2911376953125, 0.2843261659145355, 0.20368652045726776, 0.09382323920726776, -0.02988281100988388, -0.14018554985523224, -0.24016112089157104, -0.2843261659145355, -0.27421873807907104, -0.18259276449680328, -0.07053222507238388, 0.05537109076976776, 0.17204588651657104, 0.2678466737270355, 0.3065185546875, 0.2693847715854645, 0.18171386420726776, 0.06086425483226776, -0.06657714396715164, -0.17731933295726776, -0.2682861387729645, -0.2990478575229645, -0.25444334745407104, -0.16413573920726776, -0.03757324069738388, 0.09689941257238388, 0.21005858480930328, 0.2858642637729645, 0.29838865995407104, 0.25202634930610657, 0.14545898139476776, 0.0263671875, -0.09624022990465164, -0.20632323622703552, -0.29069823026657104, -0.29816892743110657, -0.24125975370407104, -0.13249512016773224, 0.007910155691206455, 0.134033203125, 0.23203124105930328, 0.3023437559604645, 0.30168455839157104, 0.22324217855930328, 0.11491698771715164, -0.011206054128706455, -0.13623046875, -0.23093260824680328, -0.30168455839157104, -0.28608396649360657, -0.20895995199680328, -0.09624022990465164, 0.04108886793255806, 0.15776367485523224, 0.2645507752895355, 0.30278319120407104, 0.28828123211860657, 0.19797362387180328, 0.08437499403953552, -0.04020996019244194, -0.16940917074680328, -0.2581787109375, -0.30585935711860657, -0.27641600370407104, -0.17556151747703552, -0.05690917745232582, 0.07338867336511612, 0.18896484375, 0.27751463651657104, 0.3076171875, 0.25883787870407104, 0.16567382216453552, 0.04812011495232582, -0.07998047024011612, -0.19357909262180328, -0.2777343690395355, -0.29838865995407104, -0.2515869140625, -0.14919432997703552, -0.01735839806497097, 0.112060546875, 0.22917479276657104, 0.2913574278354645, 0.30146482586860657, 0.23312987387180328, 0.12744140625, 0.00856933556497097, -0.11074218153953552, -0.21928709745407104, -0.2909179627895355, -0.2845458984375, -0.217529296875, -0.10964354872703552, 0.01669921912252903, 0.14523924887180328, 0.2406005859375, 0.30168455839157104, 0.2832275331020355, 0.2076416015625, 0.08876952528953552, -0.02482910081744194, -0.14040526747703552, -0.23554687201976776, -0.2867431640625, -0.2649902403354645, -0.1845703125, -0.06877440959215164, 0.050537109375, 0.17072753608226776, 0.25202634930610657, 0.2924560606479645, 0.2638916075229645, 0.16611327230930328, 0.059326171875, -0.06064452975988388, -0.16962890326976776, -0.2507080137729645, -0.28718259930610657, -0.24411620199680328, -0.14677734673023224, -0.03867187350988388, 0.08393554389476776, 0.19248045980930328, 0.2645507752895355, 0.27971190214157104, 0.22587889432907104, 0.13864745199680328, 0.01889648474752903, -0.09294433146715164, -0.1944580078125, -0.261474609375, -0.26411131024360657, -0.21357421576976776, -0.10920409858226776, 0.004833984188735485, 0.11228027194738388, 0.21511229872703552, 0.2647705078125, 0.2559814453125, 0.19357909262180328, 0.10458984225988388, -0.01296386681497097, -0.11667480319738388, -0.20478515326976776, -0.24960936605930328, -0.2406005859375, -0.17731933295726776, -0.07646483927965164, 0.03889160230755806, 0.1439208984375, 0.21840819716453552, 0.2583984434604645, 0.23312987387180328, 0.16435547173023224, 0.06394042819738388, -0.04328612983226776, -0.13996581733226776, -0.21005858480930328, -0.24323730170726776, -0.2197265625, -0.13776855170726776, -0.03955078125, 0.0626220703125, 0.15732420980930328, 0.22016601264476776, 0.23422850668430328, 0.20632323622703552, 0.12832030653953552, 0.037353515625, -0.06789550930261612, -0.14567871391773224, -0.20939940214157104, -0.22038573026657104, -0.17995604872703552, -0.10349120944738388, -0.007250976283103228, 0.09052734076976776, 0.16127929091453552, 0.20895995199680328, 0.21335448324680328, 0.16567382216453552, 0.09931640326976776, 0.005932617001235485, -0.08481445163488388, -0.16193847358226776, -0.20654296875, -0.19204100966453552, -0.151611328125, -0.07536620646715164, 0.02065429650247097, 0.0999755859375, 0.16984862089157104, 0.19270019233226776, 0.18171386420726776, 0.13381347060203552, 0.05998535081744194, -0.02021484263241291, -0.1021728515625, -0.15227051079273224, -0.18413084745407104, -0.164794921875, -0.11359862983226776, -0.03801269456744194, 0.03383788838982582, 0.11469726264476776, 0.15666504204273224, 0.17292480170726776, 0.15688475966453552, 0.10722655802965164, 0.028564453125, -0.03911132737994194, -0.10063476115465164, -0.14216308295726776, -0.15842284262180328, -0.13688965141773224, -0.08327636867761612, -0.013403319753706455, 0.05207519233226776, 0.11469726264476776, 0.14194335043430328, 0.14304198324680328, 0.12458495795726776, 0.06965331733226776, 0.007910155691206455, -0.04833984375, -0.10019531100988388, -0.13381347060203552, -0.12941893935203552, -0.09931640326976776, -0.04987792670726776, 0.0010986328125, 0.06328124552965164, 0.10568847507238388, 0.12436523288488388, 0.11623534560203552, 0.09162597358226776, 0.04130859300494194, -0.0028564452659338713, -0.0582275390625, -0.0889892578125, -0.1109619140625, -0.09799804538488388, -0.06965331733226776, -0.02724609337747097, 0.01889648474752903, 0.05954589694738388, 0.08723144233226776, 0.09492187201976776, 0.08745116740465164, 0.06350097805261612, 0.02285156212747097, -0.02131347544491291, -0.04855956882238388, -0.076904296875, -0.08261718600988388, -0.0714111328125, -0.04899902269244194, -0.014721679501235485, 0.019775390625, 0.05449218675494194, 0.07338867336511612, 0.06459961086511612, 0.05844726413488388, 0.03647460788488388, 0.007910155691206455, -0.02153320237994194, -0.04152831807732582, -0.05449218675494194, -0.05405273288488388, -0.03977050632238388, -0.01933593675494194, -0.003076171735301614, 0.01516113243997097, 0.037353515625, 0.04240722581744194, 0.03933105245232582, 0.03229980543255806, 0.01274413987994194, 0.0002197265566792339, -0.01296386681497097, -0.024169921875, -0.0274658203125, -0.01999511756002903, -0.02131347544491291, -0.00527343712747097, 0.002197265625, 0.01406249962747097, 0.01625976525247097, 0.01845703087747097, 0.01406249962747097, 0.002197265625, 0.0008789062267169356, 0.002636718563735485, 0.003955077845603228, 0.0, 0.0041748047806322575, 0.0, 0.0054931640625, 0.0, 0.0010986328125, 0.0013183592818677425, 0.007250976283103228, 0.0041748047806322575, 0.002636718563735485, 0.006152343470603228, 0.0041748047806322575, -0.0046142577193677425, -0.001977538922801614, 0.0006591796409338713, -0.002197265625, 0.0028564452659338713, 0.00527343712747097, 0.001538085867650807, 0.0008789062267169356, 0.006152343470603228, 0.005053710658103228, 0.0028564452659338713, -0.0010986328125, -0.0010986328125, 0.0004394531133584678, -0.002636718563735485, 0.0006591796409338713, 0.004833984188735485, 0.0004394531133584678, -0.002636718563735485, 0.003735351376235485, -0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.7)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.007031249813735485, -0.001538085867650807, -0.0028564452659338713, 0.005053710658103228, 0.0068115233443677425, 0.0004394531133584678, 0.0017578124534338713, 0.001977538922801614, 0.0008789062267169356, 0.0002197265566792339, 0.0, 0.004833984188735485, 0.0004394531133584678, -0.002636718563735485, 0.0032958984375, 0.0004394531133584678, 0.0010986328125, -0.0013183592818677425, 0.0010986328125, -0.0032958984375, 0.0004394531133584678, 0.002197265625, 0.001538085867650807, 0.003076171735301614, -0.001977538922801614, 0.0041748047806322575, 0.0017578124534338713, -0.0002197265566792339, 0.003955077845603228, 0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, 0.002636718563735485, 0.0054931640625, 0.0013183592818677425, 0.006591796875, -0.0004394531133584678, -0.001977538922801614, 0.001977538922801614, -0.001977538922801614, -0.001977538922801614, 0.00637206993997097, -0.0004394531133584678, -0.002636718563735485, -0.003076171735301614, 0.00439453125, 0.003076171735301614, -0.0054931640625, -0.00439453125, -0.0035156249068677425, -0.003955077845603228, -0.0002197265566792339, 0.006152343470603228, 0.01164550706744194, 0.01933593675494194, 0.02175292931497097, 0.0252685546875, 0.02219238132238388, 0.008129882626235485, -0.0024169920943677425, -0.02241210825741291, -0.03581542894244194, -0.03999023512005806, -0.03559570387005806, -0.01933593675494194, -0.0010986328125, 0.01999511756002903, 0.03559570387005806, 0.05317382514476776, 0.05756835639476776, 0.05119628831744194, 0.03164062276482582, 0.0024169920943677425, -0.02724609337747097, -0.04877929389476776, -0.06503906100988388, -0.07097167521715164, -0.05734863132238388, -0.03515625, 0.0057128905318677425, 0.0362548828125, 0.0670166015625, 0.08415526896715164, 0.08415526896715164, 0.07009277492761612, 0.03691406175494194, -0.009008788503706455, -0.04328612983226776, -0.08283691108226776, -0.098876953125, -0.09470214694738388, -0.07382812350988388, -0.03427734225988388, 0.01384277269244194, 0.06855468451976776, 0.10480956733226776, 0.11799316108226776, 0.11579589545726776, 0.08964843302965164, 0.03559570387005806, -0.02482910081744194, -0.07734374701976776, -0.11623534560203552, -0.134033203125, -0.1263427734375, -0.07888183742761612, -0.03054199181497097, 0.03361816331744194, 0.09140624850988388, 0.1417236328125, 0.15249022841453552, 0.13139648735523224, 0.0911865234375, 0.01933593675494194, -0.04262695088982582, -0.10898437350988388, -0.147216796875, -0.16127929091453552, -0.138427734375, -0.081298828125, -0.01054687425494194, 0.06547851115465164, 0.12788085639476776, 0.17226561903953552, 0.17578125, 0.14523924887180328, 0.08173827826976776, 0.00856933556497097, -0.07866210490465164, -0.14348144829273224, -0.17973631620407104, -0.182373046875, -0.14765624701976776, -0.07294921576976776, 0.01691894419491291, 0.10129394382238388, 0.16677245497703552, 0.20280760526657104, 0.19819335639476776, 0.14348144829273224, 0.06503906100988388, -0.0263671875, -0.1109619140625, -0.17600096762180328, -0.21840819716453552, -0.19951170682907104, -0.14150390028953552, -0.05559081956744194, 0.04218749701976776, 0.13425292074680328, 0.20654296875, 0.23269042372703552, 0.21291503310203552, 0.13798828423023224, 0.04350585862994194, -0.05581054463982582, -0.14216308295726776, -0.21401366591453552, -0.24433593451976776, -0.21599119901657104, -0.13117675483226776, -0.02658691257238388, 0.07470703125, 0.17556151747703552, 0.23752440512180328, 0.2537841796875, 0.21159666776657104, 0.12370605021715164, 0.02724609337747097, -0.08635253459215164, -0.18610839545726776, -0.24982909858226776, -0.2656494081020355, -0.20368652045726776, -0.11579589545726776, -0.0041748047806322575, 0.11228027194738388, 0.21599119901657104, 0.27421873807907104, 0.26806640625, 0.20698241889476776, 0.10568847507238388, -0.007031249813735485, -0.1241455078125, -0.22148436307907104, -0.27685546875, -0.26542967557907104, -0.19577635824680328, -0.08085937052965164, 0.03383788838982582, 0.156005859375, 0.25004881620407104, 0.2968505918979645, 0.27312010526657104, 0.1944580078125, 0.07668457180261612, -0.0439453125, -0.164794921875, -0.25664061307907104, -0.29707029461860657, -0.2713623046875, -0.17995604872703552, -0.0516357421875, 0.0791015625, 0.18830566108226776, 0.2843261659145355, 0.3155273497104645, 0.2647705078125, 0.16984862089157104, 0.0472412109375, -0.08481445163488388, -0.199951171875, -0.28168943524360657, -0.31135252118110657, -0.25861814618110657, -0.15227051079273224, -0.02570800669491291, 0.11513671278953552, 0.22917479276657104, 0.3087158203125, 0.3238769471645355, 0.2551025450229645, 0.14150390028953552, 0.01164550706744194, -0.12128905951976776, -0.23774413764476776, -0.309814453125, -0.32036131620407104, -0.24038085341453552, -0.11359862983226776, 0.02153320237994194, 0.15556640923023224, 0.2704834043979645, 0.33024901151657104, 0.3218994140625, 0.230712890625, 0.10898437350988388, -0.03273925557732582, -0.16413573920726776, -0.2693847715854645, -0.32783201336860657, -0.314208984375, -0.21247558295726776, -0.07844237983226776, 0.06350097805261612, 0.19973143935203552, 0.29816892743110657, 0.33991697430610657, 0.30366209149360657, 0.20632323622703552, 0.06877440959215164, -0.06789550930261612, -0.19731444120407104, -0.3023437559604645, -0.340576171875, -0.29289549589157104, -0.1812744140625, -0.04086913913488388, 0.10129394382238388, 0.23203124105930328, 0.3271728456020355, 0.34716796875, 0.2865234315395355, 0.17292480170726776, 0.03098144382238388, -0.11030273139476776, -0.24016112089157104, -0.3260742127895355, -0.34211423993110657, -0.27729490399360657, -0.13930663466453552, -0.0010986328125, 0.14414061605930328, 0.2638916075229645, 0.3495849370956421, 0.34892576932907104, 0.2612548768520355, 0.13645018637180328, -0.008349609561264515, -0.15227051079273224, -0.26323240995407104, -0.3416748046875, -0.33442381024360657, -0.24125975370407104, -0.10349120944738388, 0.03999023512005806, 0.1856689453125, 0.29597166180610657, 0.3603515625, 0.3353027403354645, 0.22873534262180328, 0.09602050483226776, -0.04921874776482582, -0.1878662109375, -0.29377439618110657, -0.35441893339157104, -0.3155273497104645, -0.2021484375, -0.06328124552965164, 0.08503417670726776, 0.21796874701976776, 0.32080078125, 0.362548828125, 0.305419921875, 0.18522948026657104, 0.0560302734375, -0.09162597358226776, -0.226318359375, -0.32080078125, -0.3460693359375, -0.28850096464157104, -0.15688475966453552, -0.02658691257238388, 0.12502440810203552, 0.2548828125, 0.333984375, 0.3524414002895355, 0.2671875059604645, 0.15227051079273224, 0.015600585378706455, -0.13381347060203552, -0.2548828125, -0.3232177793979645, -0.331787109375, -0.24960936605930328, -0.12370605021715164, 0.02153320237994194, 0.160400390625, 0.27509763836860657, 0.34431150555610657, 0.3210205137729645, 0.2362060546875, 0.11118163913488388, -0.03142089769244194, -0.16940917074680328, -0.2744384706020355, -0.32805174589157104, -0.3100341856479645, -0.217529296875, -0.08305663615465164, 0.06086425483226776, 0.19291990995407104, 0.2913574278354645, 0.34211423993110657, 0.29619139432907104, 0.19753417372703552, 0.06306152045726776, -0.072509765625, -0.193359375, -0.2898193299770355, -0.3276123106479645, -0.28278806805610657, -0.16874998807907104, -0.04042968526482582, 0.10261230170726776, 0.21928709745407104, 0.30256345868110657, 0.3199218809604645, 0.2660888731479645, 0.15776367485523224, 0.0252685546875, -0.10085448622703552, -0.2230224609375, -0.29729002714157104, -0.309814453125, -0.24169921875, -0.12875975668430328, 0.002197265625, 0.13381347060203552, 0.235107421875, 0.30476072430610657, 0.29619139432907104, 0.22390136122703552, 0.11513671278953552, -0.010327148251235485, -0.12810058891773224, -0.23378905653953552, -0.2902587950229645, -0.28828123211860657, -0.20456542074680328, -0.08525390177965164, 0.0384521484375, 0.16391600668430328, 0.25312498211860657, 0.29619139432907104, 0.26982420682907104, 0.18193358182907104, 0.07272949069738388, -0.0516357421875, -0.15952147543430328, -0.23994140326976776, -0.28410643339157104, -0.24895018339157104, -0.15908202528953552, -0.04350585862994194, 0.07185058295726776, 0.17753905057907104, 0.2540039122104645, 0.2693847715854645, 0.2384033203125, 0.14985351264476776, 0.04328612983226776, -0.07536620646715164, -0.17138671875, -0.23884277045726776, -0.257080078125, -0.21049803495407104, -0.120849609375, -0.01582031138241291, 0.0999755859375, 0.195556640625, 0.24455565214157104, 0.24565428495407104, 0.19160155951976776, 0.10568847507238388, 0.0013183592818677425, -0.10129394382238388, -0.18698729574680328, -0.23356932401657104, -0.22412109375, -0.17622070014476776, -0.0845947265625, 0.015380859375, 0.12019042670726776, 0.19753417372703552, 0.22873534262180328, 0.21665038168430328, 0.15249022841453552, 0.06789550930261612, -0.02878417819738388, -0.11579589545726776, -0.18544921278953552, -0.21533203125, -0.19160155951976776, -0.13051757216453552, -0.04877929389476776, 0.041748046875, 0.125244140625, 0.18193358182907104, 0.20302733778953552, 0.17556151747703552, 0.11491698771715164, 0.03537597507238388, -0.0516357421875, -0.11777343600988388, -0.17490233480930328, -0.18984374403953552, -0.15798339247703552, -0.09931640326976776, -0.015600585378706455, 0.05866698920726776, 0.13007812201976776, 0.16501463949680328, 0.17666015028953552, 0.14765624701976776, 0.08151855319738388, 0.010986328125, -0.06240234151482582, -0.11667480319738388, -0.15688475966453552, -0.15468749403953552, -0.1241455078125, -0.06328124552965164, 0.0035156249068677425, 0.06613769382238388, 0.12106933444738388, 0.14765624701976776, 0.14545898139476776, 0.10239257663488388, 0.04987792670726776, -0.0054931640625, -0.06503906100988388, -0.10810546576976776, -0.12612304091453552, -0.11931151896715164, -0.08547362685203552, -0.03427734225988388, 0.0230712890625, 0.07207030802965164, 0.1021728515625, 0.11140136420726776, 0.10371093451976776, 0.06679687649011612, 0.0296630859375, -0.02592773362994194, -0.06064452975988388, -0.08942870795726776, -0.09140624850988388, -0.07998047024011612, -0.05668945237994194, -0.009008788503706455, 0.02373046800494194, 0.06064452975988388, 0.081298828125, 0.08876952528953552, 0.0648193359375, 0.04482421651482582, 0.013403319753706455, -0.02680663950741291, -0.0439453125, -0.06130370870232582, -0.06437987834215164, -0.04306640475988388, -0.028564453125, -0.0010986328125, 0.0274658203125, 0.04438476264476776, 0.04768066108226776, 0.04833984375, 0.0384521484375, 0.01999511756002903, 0.0002197265566792339, -0.0186767578125, -0.02680663950741291, -0.0274658203125, -0.02592773362994194, -0.02153320237994194, -0.00637206993997097, 0.004833984188735485, 0.013403319753706455, 0.02021484263241291, 0.01801757700741291, 0.01582031138241291, 0.006591796875, 0.003076171735301614, -0.0024169920943677425, 0.001538085867650807, 0.00439453125, 0.0, 0.0008789062267169356, -0.003076171735301614, -0.0004394531133584678, 0.008349609561264515, 0.003955077845603228, -0.0017578124534338713, 0.004833984188735485, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.00527343712747097, 0.0017578124534338713, 0.003735351376235485, 0.004833984188735485, -0.0002197265566792339, -0.002636718563735485, 0.00856933556497097, 0.002197265625, 0.0041748047806322575, -0.0008789062267169356, 0.0035156249068677425, 0.0004394531133584678, -0.003076171735301614, 0.0032958984375, 0.0008789062267169356, 0.0002197265566792339, 0.0057128905318677425, -0.0017578124534338713, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.8)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.003955077845603228, 0.0054931640625, 0.0028564452659338713, 0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, 0.003735351376235485, 0.0010986328125, -0.0013183592818677425, 0.0002197265566792339, 0.0017578124534338713, 0.0002197265566792339, 0.002197265625, 0.0010986328125, 0.002636718563735485, -0.0008789062267169356, 0.003955077845603228, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.002197265625, 0.0054931640625, 0.002197265625, 0.0013183592818677425, 0.00527343712747097, 0.0032958984375, 0.0013183592818677425, -0.003955077845603228, 0.0032958984375, 0.0002197265566792339, 0.0057128905318677425, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, 0.0024169920943677425, 0.0013183592818677425, 0.00747070275247097, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, 0.003076171735301614, 0.005053710658103228, 0.0028564452659338713, -0.0004394531133584678, 0.0046142577193677425, 0.0008789062267169356, 0.003076171735301614, -0.0046142577193677425, -0.00966796837747097, -0.010327148251235485, 0.0035156249068677425, 0.0068115233443677425, 0.01076660118997097, 0.02482910081744194, 0.02285156212747097, 0.02702636644244194, 0.01779785193502903, 0.0057128905318677425, -0.0068115233443677425, -0.02175292931497097, -0.03208007663488388, -0.04746093600988388, -0.03933105245232582, -0.02263183519244194, -0.007250976283103228, 0.01911620981991291, 0.03867187350988388, 0.05559081956744194, 0.0692138671875, 0.05734863132238388, 0.0340576171875, 0.004833984188735485, -0.02197265625, -0.059326171875, -0.07888183742761612, -0.08041992038488388, -0.06899414211511612, -0.03427734225988388, -0.0013183592818677425, 0.04350585862994194, 0.07207030802965164, 0.09426268935203552, 0.09755858778953552, 0.0791015625, 0.04372558370232582, -0.0041748047806322575, -0.05009765550494194, -0.09272460639476776, -0.11030273139476776, -0.11271972209215164, -0.08371581882238388, -0.03889160230755806, 0.02109374850988388, 0.07514648139476776, 0.11579589545726776, 0.13381347060203552, 0.12722167372703552, 0.09733886271715164, 0.0428466796875, -0.02548827975988388, -0.08701171725988388, -0.13337402045726776, -0.15468749403953552, -0.13974608480930328, -0.09689941257238388, -0.02680663950741291, 0.03999023512005806, 0.10942382365465164, 0.15534667670726776, 0.17226561903953552, 0.15292967855930328, 0.09382323920726776, 0.02922363206744194, -0.05031738057732582, -0.12612304091453552, -0.173583984375, -0.17885741591453552, -0.15380859375, -0.094482421875, -0.015600585378706455, 0.0736083984375, 0.14765624701976776, 0.19204100966453552, 0.20390623807907104, 0.16567382216453552, 0.08811035007238388, 0.0017578124534338713, -0.08723144233226776, -0.15688475966453552, -0.20808105170726776, -0.20610350370407104, -0.160400390625, -0.07866210490465164, 0.0120849609375, 0.11008300632238388, 0.19313964247703552, 0.23269042372703552, 0.22675780951976776, 0.16787108778953552, 0.07294921576976776, -0.02504882775247097, -0.12062987685203552, -0.2010498046875, -0.24609375, -0.23466795682907104, -0.16215820610523224, -0.06591796875, 0.04548339545726776, 0.15358886122703552, 0.22675780951976776, 0.2647705078125, 0.23291015625, 0.15974120795726776, 0.05998535081744194, -0.0615234375, -0.16281737387180328, -0.24323730170726776, -0.27092283964157104, -0.23796385526657104, -0.14919432997703552, -0.03603515401482582, 0.09316405653953552, 0.19357909262180328, 0.27531737089157104, 0.292236328125, 0.24345701932907104, 0.142822265625, 0.02153320237994194, -0.09514159709215164, -0.20676268637180328, -0.2792724668979645, -0.28740233182907104, -0.23356932401657104, -0.12810058891773224, -0.003735351376235485, 0.13029785454273224, 0.23488768935203552, 0.3062988221645355, 0.30498045682907104, 0.23312987387180328, 0.11799316108226776, -0.008349609561264515, -0.13117675483226776, -0.24873046576976776, -0.31640625, -0.30256345868110657, -0.22214354574680328, -0.09975585341453552, 0.03823241963982582, 0.16787108778953552, 0.2748779356479645, 0.33244627714157104, 0.3067382872104645, 0.21840819716453552, 0.09294433146715164, -0.04438476264476776, -0.1845703125, -0.28125, -0.3364013731479645, -0.30146482586860657, -0.19511717557907104, -0.06020507588982582, 0.07932128757238388, 0.21071776747703552, 0.3128906190395355, 0.34870603680610657, 0.301025390625, 0.19204100966453552, 0.05449218675494194, -0.09052734076976776, -0.221923828125, -0.3106933534145355, -0.34650877118110657, -0.2920165956020355, -0.16984862089157104, -0.02263183519244194, 0.129638671875, 0.25532224774360657, 0.34716796875, 0.3636474609375, 0.27839353680610657, 0.16083984076976776, 0.010107421316206455, -0.13051757216453552, -0.25642088055610657, -0.34782713651657104, -0.3515625, -0.2704834043979645, -0.12985838949680328, 0.01823730394244194, 0.16853027045726776, 0.2977294921875, 0.37749022245407104, 0.3660644292831421, 0.25554198026657104, 0.11997070163488388, -0.02812499925494194, -0.17841796576976776, -0.3043212890625, -0.375732421875, -0.3438720703125, -0.23576658964157104, -0.0911865234375, 0.06306152045726776, 0.21269530057907104, 0.33354490995407104, 0.38518065214157104, 0.3462890386581421, 0.22148436307907104, 0.08723144233226776, -0.07470703125, -0.21555174887180328, -0.3282714784145355, -0.3843017518520355, -0.33442381024360657, -0.20148925483226776, -0.05185546725988388, 0.1175537109375, 0.2583984434604645, 0.36518552899360657, 0.3919921815395355, 0.32563474774360657, 0.18413084745407104, 0.03801269456744194, -0.11821288615465164, -0.25861814618110657, -0.36628416180610657, -0.38935545086860657, -0.30256345868110657, -0.15974120795726776, -0.004833984188735485, 0.16105957329273224, 0.30036619305610657, 0.39287108182907104, 0.38627928495407104, 0.29816892743110657, 0.14699706435203552, -0.00856933556497097, -0.160400390625, -0.29729002714157104, -0.3864990174770355, -0.3702392578125, -0.27092283964157104, -0.12370605021715164, 0.0450439453125, 0.20500487089157104, 0.33662107586860657, 0.406494140625, 0.3700195252895355, 0.24675291776657104, 0.1043701171875, -0.05119628831744194, -0.20698241889476776, -0.3331054747104645, -0.39946287870407104, -0.3592529296875, -0.22829589247703552, -0.07009277492761612, 0.08833007514476776, 0.248291015625, 0.3636474609375, 0.40056151151657104, 0.3350830078125, 0.20852050185203552, 0.06306152045726776, -0.1021728515625, -0.239501953125, -0.362548828125, -0.39704588055610657, -0.3199218809604645, -0.18654784560203552, -0.02197265625, 0.13974608480930328, 0.28190916776657104, 0.37529295682907104, 0.39287108182907104, 0.30827635526657104, 0.16721190512180328, 0.01384277269244194, -0.14743651449680328, -0.28081053495407104, -0.3748534917831421, -0.37639158964157104, -0.2825683653354645, -0.13557128608226776, 0.02504882775247097, 0.18149413168430328, 0.3100341856479645, 0.3908935487270355, 0.36979979276657104, 0.25993651151657104, 0.11777343600988388, -0.02988281100988388, -0.18896484375, -0.3052001893520355, -0.3746337890625, -0.3568359315395355, -0.23884277045726776, -0.09294433146715164, 0.07338867336511612, 0.21489256620407104, 0.3326660096645355, 0.38715818524360657, 0.3348632752895355, 0.22126464545726776, 0.07778320461511612, -0.076904296875, -0.21401366591453552, -0.3320068418979645, -0.3711181581020355, -0.3260742127895355, -0.18896484375, -0.04438476264476776, 0.11557617038488388, 0.25334471464157104, 0.34716796875, 0.3768310546875, 0.3052001893520355, 0.17446288466453552, 0.03054199181497097, -0.1153564453125, -0.24477538466453552, -0.33574217557907104, -0.3590331971645355, -0.279052734375, -0.13886718451976776, -0.0028564452659338713, 0.14743651449680328, 0.2689453065395355, 0.35112303495407104, 0.34562987089157104, 0.252685546875, 0.1329345703125, -0.014501952566206455, -0.1494140625, -0.26960447430610657, -0.3337646424770355, -0.3282714784145355, -0.23532713949680328, -0.09799804538488388, 0.04636230319738388, 0.18391112983226776, 0.28959959745407104, 0.3348632752895355, 0.3021240234375, 0.20852050185203552, 0.0780029296875, -0.046142578125, -0.1724853515625, -0.2823486328125, -0.3243164122104645, -0.2858642637729645, -0.18105468153953552, -0.05690917745232582, 0.07866210490465164, 0.20126952230930328, 0.28959959745407104, 0.32145994901657104, 0.263671875, 0.17226561903953552, 0.03823241963982582, -0.08107910305261612, -0.1966552734375, -0.27619627118110657, -0.2990478575229645, -0.24345701932907104, -0.12919922173023224, -0.010107421316206455, 0.10634765028953552, 0.21621093153953552, 0.2858642637729645, 0.2801513671875, 0.2208251953125, 0.123046875, 0.0004394531133584678, -0.10898437350988388, -0.21225585043430328, -0.2627929747104645, -0.2689453065395355, -0.19863280653953552, -0.09052734076976776, 0.02329101413488388, 0.13161620497703552, 0.22587889432907104, 0.2660888731479645, 0.24609375, 0.17490233480930328, 0.08327636867761612, -0.02680663950741291, -0.13051757216453552, -0.20500487089157104, -0.2406005859375, -0.2274169921875, -0.15380859375, -0.05361327901482582, 0.04592284932732582, 0.1505126953125, 0.21533203125, 0.24016112089157104, 0.20720213651657104, 0.13688965141773224, 0.04680175706744194, -0.05009765550494194, -0.13623046875, -0.19731444120407104, -0.21884764730930328, -0.17600096762180328, -0.10634765028953552, -0.01845703087747097, 0.07316894084215164, 0.14370116591453552, 0.19709472358226776, 0.20192870497703552, 0.15908202528953552, 0.09821777045726776, 0.011206054128706455, -0.06987304240465164, -0.13601073622703552, -0.17622070014476776, -0.17841796576976776, -0.13381347060203552, -0.06899414211511612, 0.003735351376235485, 0.08063964545726776, 0.13974608480930328, 0.16633300483226776, 0.15688475966453552, 0.11777343600988388, 0.0560302734375, -0.010986328125, -0.07646483927965164, -0.12480468302965164, -0.14919432997703552, -0.13095702230930328, -0.09733886271715164, -0.03537597507238388, 0.02153320237994194, 0.08503417670726776, 0.12216796725988388, 0.13205565512180328, 0.12392577528953552, 0.08393554389476776, 0.028564453125, -0.02043456956744194, -0.07382812350988388, -0.10085448622703552, -0.10524901747703552, -0.09228515625, -0.06086425483226776, -0.01076660118997097, 0.03581542894244194, 0.06657714396715164, 0.09096679091453552, 0.09865722060203552, 0.07998047024011612, 0.05251464620232582, 0.008349609561264515, -0.02724609337747097, -0.0516357421875, -0.07602538913488388, -0.068115234375, -0.05449218675494194, -0.02658691257238388, 0.0032958984375, 0.02482910081744194, 0.04746093600988388, 0.06020507588982582, 0.052734375, 0.04460449144244194, 0.01911620981991291, -0.002636718563735485, -0.02021484263241291, -0.03251953050494194, -0.03515625, -0.02878417819738388, -0.01933593675494194, -0.003955077845603228, 0.005932617001235485, 0.015380859375, 0.01669921912252903, 0.02021484263241291, 0.01625976525247097, 0.007031249813735485, 0.003076171735301614, -0.0006591796409338713, -0.0046142577193677425, 0.0010986328125, -0.002197265625, 0.0032958984375, -0.002636718563735485, 0.006591796875, 0.00747070275247097, 0.0006591796409338713, 0.003955077845603228, 0.0028564452659338713, 0.006152343470603228, -0.0004394531133584678, -0.0008789062267169356, -0.003076171735301614, 0.003076171735301614, -0.0013183592818677425, -0.0002197265566792339, 0.0010986328125, 0.001538085867650807, 0.0068115233443677425, 0.002197265625, 0.0004394531133584678, 0.005053710658103228, 0.0006591796409338713, 0.00637206993997097, -0.0006591796409338713, 0.0046142577193677425, -0.0002197265566792339, 0.00747070275247097, 0.0004394531133584678, 0.00439453125, -0.002636718563735485, 0.003955077845603228, 0.004833984188735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 0.9)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0002197265566792339, 0.003955077845603228, -0.0028564452659338713, 0.0054931640625, -0.0028564452659338713, 0.0057128905318677425, -0.0002197265566792339, 0.003955077845603228, 0.0013183592818677425, 0.0041748047806322575, 0.003735351376235485, 0.003955077845603228, 0.00439453125, -0.0004394531133584678, 0.00527343712747097, 0.006591796875, -0.003076171735301614, -0.001977538922801614, 0.0041748047806322575, 0.005053710658103228, 0.0041748047806322575, -0.0008789062267169356, -0.0004394531133584678, 0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, 0.00527343712747097, 0.0046142577193677425, 0.003076171735301614, 0.0010986328125, 0.0017578124534338713, 0.00637206993997097, 0.0046142577193677425, 0.0024169920943677425, -0.0004394531133584678, 0.0041748047806322575, -0.002197265625, -0.001538085867650807, 0.0054931640625, -0.0013183592818677425, -0.0024169920943677425, 0.002636718563735485, 0.0028564452659338713, 0.0035156249068677425, 0.0, 0.003076171735301614, -0.0008789062267169356, 0.00527343712747097, -0.003076171735301614, -0.00439453125, -0.0017578124534338713, -0.0008789062267169356, 0.002197265625, 0.01823730394244194, 0.0263671875, 0.02922363206744194, 0.03427734225988388, 0.01955566368997097, 0.007250976283103228, -0.003735351376235485, -0.02922363206744194, -0.03647460788488388, -0.04482421651482582, -0.04548339545726776, -0.0296630859375, -0.0068115233443677425, 0.02460937388241291, 0.05031738057732582, 0.05976562201976776, 0.07338867336511612, 0.0604248046875, 0.04218749701976776, 0.011425781063735485, -0.028564453125, -0.05976562201976776, -0.08305663615465164, -0.08701171725988388, -0.07097167521715164, -0.04328612983226776, 0.0002197265566792339, 0.04833984375, 0.0802001953125, 0.11513671278953552, 0.11249999701976776, 0.09206542372703552, 0.05097655951976776, 0.0, -0.05449218675494194, -0.10107421875, -0.13007812201976776, -0.12392577528953552, -0.09865722060203552, -0.041748046875, 0.02175292931497097, 0.0758056640625, 0.12722167372703552, 0.156005859375, 0.1483154296875, 0.10612792521715164, 0.04460449144244194, -0.02680663950741291, -0.09184569865465164, -0.15227051079273224, -0.16874998807907104, -0.15974120795726776, -0.10634765028953552, -0.02790527231991291, 0.046142578125, 0.12216796725988388, 0.1724853515625, 0.19511717557907104, 0.1680908203125, 0.10788574069738388, 0.0252685546875, -0.06218261644244194, -0.13337402045726776, -0.19423827528953552, -0.20522460341453552, -0.17116698622703552, -0.1065673828125, -0.010107421316206455, 0.0791015625, 0.169189453125, 0.22587889432907104, 0.22587889432907104, 0.18149413168430328, 0.09953612834215164, 0.0087890625, -0.0966796875, -0.18171386420726776, -0.23686522245407104, -0.23466795682907104, -0.18017578125, -0.08415526896715164, 0.01801757700741291, 0.12985838949680328, 0.21511229872703552, 0.26213377714157104, 0.25664061307907104, 0.18632811307907104, 0.08942870795726776, -0.02285156212747097, -0.13645018637180328, -0.23027342557907104, -0.26740720868110657, -0.25971677899360657, -0.18654784560203552, -0.06613769382238388, 0.05009765550494194, 0.16743163764476776, 0.25554198026657104, 0.2968505918979645, 0.26081541180610657, 0.1790771484375, 0.06679687649011612, -0.05910644307732582, -0.17995604872703552, -0.26740720868110657, -0.3034423887729645, -0.26652830839157104, -0.164794921875, -0.03823241963982582, 0.09645995497703552, 0.21665038168430328, 0.30388182401657104, 0.31706541776657104, 0.27180173993110657, 0.15842284262180328, 0.03383788838982582, -0.10612792521715164, -0.22038573026657104, -0.3073974549770355, -0.32343748211860657, -0.26301267743110657, -0.13864745199680328, -0.001977538922801614, 0.13930663466453552, 0.2546630799770355, 0.3372802734375, 0.34101560711860657, 0.2529052793979645, 0.13447265326976776, -0.005932617001235485, -0.14963378012180328, -0.2612548768520355, -0.34431150555610657, -0.33354490995407104, -0.24257811903953552, -0.10722655802965164, 0.04460449144244194, 0.19094237685203552, 0.31025388836860657, 0.36079099774360657, 0.34562987089157104, 0.23444823920726776, 0.09975585341453552, -0.05009765550494194, -0.18610839545726776, -0.31486815214157104, -0.36628416180610657, -0.3381591737270355, -0.22104491293430328, -0.06855468451976776, 0.09052734076976776, 0.22873534262180328, 0.34782713651657104, 0.38496091961860657, 0.33837890625, 0.21555174887180328, 0.05624999850988388, -0.09865722060203552, -0.2406005859375, -0.34672850370407104, -0.39111328125, -0.327392578125, -0.18720702826976776, -0.03098144382238388, 0.13710936903953552, 0.2801513671875, 0.37836912274360657, 0.39484861493110657, 0.3188232481479645, 0.17116698622703552, 0.01274413987994194, -0.14084471762180328, -0.2843261659145355, -0.38298338651657104, -0.3990234136581421, -0.30036619305610657, -0.14414061605930328, 0.02241210825741291, 0.18918456137180328, 0.322998046875, 0.41374510526657104, 0.404296875, 0.2854247987270355, 0.1285400390625, -0.02592773362994194, -0.19248045980930328, -0.3328857421875, -0.4144042730331421, -0.38496091961860657, -0.26850584149360657, -0.09975585341453552, 0.07426757365465164, 0.23027342557907104, 0.3636474609375, 0.43000486493110657, 0.3864990174770355, 0.24565428495407104, 0.0889892578125, -0.07954101264476776, -0.24125975370407104, -0.36079099774360657, -0.43132323026657104, -0.3781493902206421, -0.23049315810203552, -0.05449218675494194, 0.12260741740465164, 0.2777343690395355, 0.4062744081020355, 0.4330810308456421, 0.35859373211860657, 0.21401366591453552, 0.03911132737994194, -0.12062987685203552, -0.2821289002895355, -0.39484861493110657, -0.43110349774360657, -0.3440917730331421, -0.17885741591453552, -0.0028564452659338713, 0.16655273735523224, 0.33112791180610657, 0.4273681640625, 0.42890623211860657, 0.32014158368110657, 0.16567382216453552, -0.00637206993997097, -0.17424315214157104, -0.3188232481479645, -0.4253906011581421, -0.4172607362270355, -0.3034423887729645, -0.12348632514476776, 0.04790038987994194, 0.22236327826976776, 0.3726562261581421, 0.44978025555610657, 0.4163818359375, 0.2823486328125, 0.12216796725988388, -0.0560302734375, -0.22170409560203552, -0.3614501953125, -0.4383544921875, -0.39484861493110657, -0.2502685487270355, -0.07822265475988388, 0.09821777045726776, 0.2647705078125, 0.4040771424770355, 0.44978025555610657, 0.38232421875, 0.230712890625, 0.06943359225988388, -0.10371093451976776, -0.26433104276657104, -0.3966064453125, -0.4352782964706421, -0.36650389432907104, -0.19841307401657104, -0.032958984375, 0.14128418266773224, 0.305419921875, 0.42253416776657104, 0.4429687261581421, 0.3414550721645355, 0.18940429389476776, 0.0164794921875, -0.14963378012180328, -0.3111328184604645, -0.40935057401657104, -0.4216552674770355, -0.3183837831020355, -0.15183104574680328, 0.02680663950741291, 0.19577635824680328, 0.3385986089706421, 0.4330810308456421, 0.4144042730331421, 0.29509276151657104, 0.1351318359375, -0.03317870944738388, -0.20192870497703552, -0.3331054747104645, -0.42583006620407104, -0.39814451336860657, -0.2638916075229645, -0.09602050483226776, 0.07119140774011612, 0.23752440512180328, 0.37507322430610657, 0.437255859375, 0.3869384527206421, 0.24411620199680328, 0.08767089247703552, -0.07514648139476776, -0.24235838651657104, -0.3638671636581421, -0.4166015386581421, -0.35969236493110657, -0.21621093153953552, -0.04921874776482582, 0.11667480319738388, 0.27399900555610657, 0.3924316167831421, 0.4141845703125, 0.3392578065395355, 0.19907225668430328, 0.03537597507238388, -0.123046875, -0.26740720868110657, -0.3704589605331421, -0.40144041180610657, -0.3139892518520355, -0.1636962890625, 0.0002197265566792339, 0.1658935546875, 0.3065185546875, 0.40056151151657104, 0.3858398199081421, 0.29267576336860657, 0.14150390028953552, -0.012304686941206455, -0.1680908203125, -0.2942138612270355, -0.3814452886581421, -0.3636474609375, -0.25532224774360657, -0.10700683295726776, 0.05141601338982582, 0.20456542074680328, 0.3172851502895355, 0.38078612089157104, 0.3495849370956421, 0.23554687201976776, 0.09140624850988388, -0.05559081956744194, -0.20412597060203552, -0.3172851502895355, -0.36979979276657104, -0.3284912109375, -0.19841307401657104, -0.06020507588982582, 0.09162597358226776, 0.226318359375, 0.3293701112270355, 0.3636474609375, 0.30146482586860657, 0.18083494901657104, 0.04482421651482582, -0.0966796875, -0.22456054389476776, -0.31047362089157104, -0.3342041075229645, -0.26960447430610657, -0.15095214545726776, -0.01494140550494194, 0.12106933444738388, 0.24521483480930328, 0.3183837831020355, 0.33002927899360657, 0.25422361493110657, 0.13579101860523224, 0.0057128905318677425, -0.12172850966453552, -0.2296142578125, -0.30322265625, -0.2964111268520355, -0.2274169921875, -0.1021728515625, 0.03098144382238388, 0.15358886122703552, 0.24675291776657104, 0.3043212890625, 0.28125, 0.204345703125, 0.08525390177965164, -0.03449707105755806, -0.1494140625, -0.23093260824680328, -0.2799316346645355, -0.25224608182907104, -0.17204588651657104, -0.05866698920726776, 0.05690917745232582, 0.16237792372703552, 0.23906248807907104, 0.265869140625, 0.23466795682907104, 0.14699706435203552, 0.05427245795726776, -0.06240234151482582, -0.15578612685203552, -0.22895507514476776, -0.24301756918430328, -0.20566405355930328, -0.12128905951976776, -0.02241210825741291, 0.07712402194738388, 0.1702880859375, 0.22060546278953552, 0.23137205839157104, 0.18522948026657104, 0.10964354872703552, 0.01076660118997097, -0.07316894084215164, -0.15556640923023224, -0.19709472358226776, -0.19951170682907104, -0.15864257514476776, -0.07558593899011612, 0.010986328125, 0.08920898288488388, 0.1571044921875, 0.18852537870407104, 0.18039549887180328, 0.14106445014476776, 0.06459961086511612, -0.014721679501235485, -0.08393554389476776, -0.14479979872703552, -0.17314451932907104, -0.15732420980930328, -0.10810546576976776, -0.04042968526482582, 0.03142089769244194, 0.08920898288488388, 0.1329345703125, 0.15578612685203552, 0.13688965141773224, 0.08854980021715164, 0.03823241963982582, -0.02768554538488388, -0.08085937052965164, -0.1197509765625, -0.123046875, -0.1131591796875, -0.0692138671875, -0.02021484263241291, 0.03801269456744194, 0.0823974609375, 0.10612792521715164, 0.11008300632238388, 0.08942870795726776, 0.05471191182732582, 0.015600585378706455, -0.03339843824505806, -0.06416015326976776, -0.08261718600988388, -0.08327636867761612, -0.06833495944738388, -0.02944335900247097, -0.0013183592818677425, 0.03449707105755806, 0.0538330078125, 0.06503906100988388, 0.06196288764476776, 0.04240722581744194, 0.02285156212747097, 0.0024169920943677425, -0.01713867112994194, -0.03713378682732582, -0.03559570387005806, -0.03581542894244194, -0.02109374850988388, -0.010327148251235485, 0.0041748047806322575, 0.013623046688735485, 0.02702636644244194, 0.015600585378706455, 0.01582031138241291, 0.010327148251235485, -0.0004394531133584678, 0.003076171735301614, -0.008349609561264515, -0.0002197265566792339, -0.0013183592818677425, 0.001977538922801614, 0.001977538922801614, 0.005932617001235485, 0.01076660118997097, -0.0008789062267169356, 0.0035156249068677425, 0.00637206993997097, 0.002197265625, 0.0032958984375, 0.002636718563735485, -0.0008789062267169356, 0.002197265625, 0.00439453125, 0.002197265625, -0.0006591796409338713, -0.001977538922801614, 0.003735351376235485, 0.0032958984375, 0.0017578124534338713, -0.0008789062267169356, 0.0004394531133584678, -0.001538085867650807, 0.0028564452659338713, 0.007031249813735485, 0.003076171735301614, -0.0008789062267169356, 0.0035156249068677425, 0.0017578124534338713, 0.00439453125, -0.0002197265566792339, -0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Re(V) for ('(readout_frequencies, 5.35 GHz)', '(readout_pulse_amplitudes, 1)')", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, 0.007031249813735485, -0.002197265625, 0.0013183592818677425, 0.002197265625, 0.005053710658103228, -0.0028564452659338713, 0.0046142577193677425, 0.003076171735301614, 0.005053710658103228, 0.002197265625, -0.0013183592818677425, 0.0024169920943677425, 0.00527343712747097, 0.002197265625, 0.0024169920943677425, 0.0002197265566792339, -0.0032958984375, 0.0, -0.003955077845603228, -0.001538085867650807, -0.0013183592818677425, 0.003735351376235485, -0.002636718563735485, 0.002197265625, 0.003955077845603228, 0.0057128905318677425, -0.001977538922801614, 0.0, 0.0032958984375, 0.00527343712747097, 0.0068115233443677425, 0.0006591796409338713, -0.0017578124534338713, 0.00439453125, 0.0054931640625, -0.0013183592818677425, 0.0041748047806322575, 0.0035156249068677425, -0.0035156249068677425, 0.003955077845603228, 0.0006591796409338713, 0.0032958984375, 0.0017578124534338713, 0.005053710658103228, -0.0002197265566792339, 0.00439453125, -0.00439453125, -0.0098876953125, -0.0076904296875, -0.002197265625, -0.00439453125, 0.0098876953125, 0.01735839806497097, 0.02438964694738388, 0.03010253794491291, 0.0296630859375, 0.028564453125, 0.01318359375, -0.00856933556497097, -0.02680663950741291, -0.04833984375, -0.05229492112994194, -0.050537109375, -0.0340576171875, -0.0057128905318677425, 0.02460937388241291, 0.04812011495232582, 0.06899414211511612, 0.07778320461511612, 0.06657714396715164, 0.04218749701976776, 0.00527343712747097, -0.02944335900247097, -0.07185058295726776, -0.09030761569738388, -0.09580077975988388, -0.08415526896715164, -0.04328612983226776, 0.001538085867650807, 0.05295410007238388, 0.09689941257238388, 0.12128905951976776, 0.1263427734375, 0.1021728515625, 0.04987792670726776, -0.00747070275247097, -0.06284179538488388, -0.11447753757238388, -0.14106445014476776, -0.138427734375, -0.10832519084215164, -0.05405273288488388, 0.02153320237994194, 0.08854980021715164, 0.140625, 0.17600096762180328, 0.16237792372703552, 0.11557617038488388, 0.04987792670726776, -0.03251953050494194, -0.09909667819738388, -0.16567382216453552, -0.1878662109375, -0.16853027045726776, -0.116455078125, -0.03383788838982582, 0.05734863132238388, 0.1307373046875, 0.19204100966453552, 0.21401366591453552, 0.18830566108226776, 0.1219482421875, 0.03010253794491291, -0.06240234151482582, -0.14479979872703552, -0.2120361328125, -0.22873534262180328, -0.18918456137180328, -0.1153564453125, -0.01164550706744194, 0.09052734076976776, 0.17885741591453552, 0.24675291776657104, 0.24455565214157104, 0.19797362387180328, 0.11711425334215164, 0.0008789062267169356, -0.09931640326976776, -0.19775390625, -0.25664061307907104, -0.2623535096645355, -0.20368652045726776, -0.09733886271715164, 0.013403319753706455, 0.13095702230930328, 0.23027342557907104, 0.2836669981479645, 0.2781738340854645, 0.2010498046875, 0.10151366889476776, -0.02922363206744194, -0.14765624701976776, -0.23972167074680328, -0.3043212890625, -0.2832275331020355, -0.19489745795726776, -0.07866210490465164, 0.06020507588982582, 0.18281249701976776, 0.2845458984375, 0.3276123106479645, 0.2889404296875, 0.19182127714157104, 0.07185058295726776, -0.068115234375, -0.19138182699680328, -0.29443359375, -0.3328857421875, -0.29157713055610657, -0.17709960043430328, -0.04196777194738388, 0.09536132216453552, 0.23247069120407104, 0.32563474774360657, 0.3502441346645355, 0.2920165956020355, 0.1724853515625, 0.03120117075741291, -0.11030273139476776, -0.24477538466453552, -0.33464354276657104, -0.35551756620407104, -0.29047849774360657, -0.15205077826976776, -0.003955077845603228, 0.15424804389476776, 0.2832275331020355, 0.3649657964706421, 0.3656249940395355, 0.2801513671875, 0.14501953125, -0.007250976283103228, -0.15468749403953552, -0.2920165956020355, -0.3744140565395355, -0.36540526151657104, -0.263671875, -0.11865234375, 0.03889160230755806, 0.20346678793430328, 0.33552244305610657, 0.3996826112270355, 0.3722167909145355, 0.2572998106479645, 0.10788574069738388, -0.04855956882238388, -0.20654296875, -0.34101560711860657, -0.39836424589157104, -0.3638671636581421, -0.24235838651657104, -0.07932128757238388, 0.08723144233226776, 0.24895018339157104, 0.3711181581020355, 0.4306640625, 0.3623290956020355, 0.23115234076976776, 0.07185058295726776, -0.1021728515625, -0.2515869140625, -0.38188475370407104, -0.4242919683456421, -0.35991209745407104, -0.20170897245407104, -0.03515625, 0.14545898139476776, 0.30827635526657104, 0.4249511659145355, 0.4407714605331421, 0.34782713651657104, 0.18500976264476776, 0.02614746056497097, -0.15424804389476776, -0.3019042909145355, -0.4177001714706421, -0.4271484315395355, -0.327392578125, -0.15424804389476776, 0.01735839806497097, 0.19577635824680328, 0.34760740399360657, 0.44978025555610657, 0.4363769292831421, 0.31706541776657104, 0.15117187798023224, -0.0230712890625, -0.19687499105930328, -0.3502441346645355, -0.4491210877895355, -0.4238525331020355, -0.2942138612270355, -0.11140136420726776, 0.07053222507238388, 0.24697265028953552, 0.39814451336860657, 0.44978025555610657, 0.4260497987270355, 0.27070310711860657, 0.10393065959215164, -0.0791015625, -0.2529052793979645, -0.38825681805610657, -0.44999998807907104, -0.3990234136581421, -0.23796385526657104, -0.05756835639476776, 0.12722167372703552, 0.296630859375, 0.4315429627895355, 0.44978025555610657, 0.3946288824081421, 0.23115234076976776, 0.04240722581744194, -0.13557128608226776, -0.30146482586860657, -0.4275878667831421, -0.44999998807907104, -0.3693603277206421, -0.19643554091453552, -0.014501952566206455, 0.17731933295726776, 0.34541013836860657, 0.44978025555610657, 0.44978025555610657, 0.35595703125, 0.17622070014476776, -0.0032958984375, -0.18896484375, -0.34650877118110657, -0.44999998807907104, -0.44999998807907104, -0.3282714784145355, -0.13820800185203552, 0.04416503757238388, 0.22763670980930328, 0.39396971464157104, 0.44978025555610657, 0.446044921875, 0.30058592557907104, 0.12656249105930328, -0.05734863132238388, -0.23203124105930328, -0.3843017518520355, -0.44999998807907104, -0.43000486493110657, -0.27531737089157104, -0.09184569865465164, 0.10415038466453552, 0.27685546875, 0.4231933355331421, 0.44978025555610657, 0.4194580018520355, 0.257080078125, 0.0714111328125, -0.10634765028953552, -0.2832275331020355, -0.4185791015625, -0.44999998807907104, -0.3922119140625, -0.22478026151657104, -0.03317870944738388, 0.15534667670726776, 0.3348632752895355, 0.44978025555610657, 0.44978025555610657, 0.3711181581020355, 0.19973143935203552, 0.02021484263241291, -0.15974120795726776, -0.32036131620407104, -0.4462646245956421, -0.44999998807907104, -0.34562987089157104, -0.16303710639476776, 0.02043456956744194, 0.20346678793430328, 0.36320799589157104, 0.44978025555610657, 0.44978025555610657, 0.3111328184604645, 0.14479979872703552, -0.03427734225988388, -0.213134765625, -0.3548583984375, -0.44999998807907104, -0.43022459745407104, -0.29069823026657104, -0.1087646484375, 0.0736083984375, 0.24873046576976776, 0.3974853456020355, 0.44978025555610657, 0.4144042730331421, 0.26542967557907104, 0.09470214694738388, -0.08349609375, -0.2502685487270355, -0.3856201171875, -0.4471435546875, -0.3891357183456421, -0.23027342557907104, -0.05405273288488388, 0.13007812201976776, 0.29157713055610657, 0.41791990399360657, 0.44978025555610657, 0.36540526151657104, 0.21401366591453552, 0.04218749701976776, -0.13491210341453552, -0.296630859375, -0.41264647245407104, -0.441650390625, -0.3337646424770355, -0.1702880859375, -0.006591796875, 0.1768798828125, 0.3276123106479645, 0.43132323026657104, 0.42583006620407104, 0.3111328184604645, 0.15380859375, -0.00966796837747097, -0.17709960043430328, -0.3128906190395355, -0.4097900390625, -0.4075927734375, -0.27641600370407104, -0.11579589545726776, 0.05888671800494194, 0.22060546278953552, 0.34870603680610657, 0.4242919683456421, 0.38957518339157104, 0.2605957090854645, 0.10612792521715164, -0.06437987834215164, -0.21071776747703552, -0.3403564393520355, -0.4067138433456421, -0.35639646649360657, -0.22807615995407104, -0.06547851115465164, 0.09865722060203552, 0.24521483480930328, 0.35991209745407104, 0.40803220868110657, 0.3337646424770355, 0.20039062201976776, 0.04855956882238388, -0.09953612834215164, -0.23994140326976776, -0.34870603680610657, -0.3682616949081421, -0.30036619305610657, -0.17512206733226776, -0.017578125, 0.13315428793430328, 0.26411131024360657, 0.3614501953125, 0.3579345643520355, 0.2726806700229645, 0.15095214545726776, 0.0076904296875, -0.13359375298023224, -0.26323240995407104, -0.33134764432907104, -0.3394775390625, -0.24521483480930328, -0.11140136420726776, 0.02834472618997097, 0.16523437201976776, 0.2777343690395355, 0.3385986089706421, 0.31640625, 0.22565917670726776, 0.09360351413488388, -0.0362548828125, -0.1658935546875, -0.26433104276657104, -0.30695798993110657, -0.2869628965854645, -0.19050292670726776, -0.06657714396715164, 0.05976562201976776, 0.1834716796875, 0.26806640625, 0.298828125, 0.257080078125, 0.16677245497703552, 0.04680175706744194, -0.06525878608226776, -0.17226561903953552, -0.24587401747703552, -0.2744384706020355, -0.23005370795726776, -0.1329345703125, -0.02834472618997097, 0.08876952528953552, 0.19072264432907104, 0.24763183295726776, 0.25773924589157104, 0.21005858480930328, 0.11931151896715164, 0.01669921912252903, -0.09514159709215164, -0.17182616889476776, -0.22543944418430328, -0.22785644233226776, -0.18017578125, -0.08942870795726776, 0.012524413876235485, 0.10283202677965164, 0.1812744140625, 0.21665038168430328, 0.2021484375, 0.15292967855930328, 0.07492675632238388, -0.007250976283103228, -0.09514159709215164, -0.15776367485523224, -0.19094237685203552, -0.17534178495407104, -0.11865234375, -0.05075683444738388, 0.03010253794491291, 0.10107421875, 0.15534667670726776, 0.173583984375, 0.1505126953125, 0.10590820014476776, 0.037353515625, -0.03054199181497097, -0.08833007514476776, -0.13095702230930328, -0.13996581733226776, -0.12172850966453552, -0.07382812350988388, -0.02460937388241291, 0.03647460788488388, 0.08349609375, 0.1131591796875, 0.1241455078125, 0.10261230170726776, 0.06020507588982582, 0.00856933556497097, -0.03537597507238388, -0.07207030802965164, -0.09184569865465164, -0.08657225966453552, -0.07207030802965164, -0.0384521484375, -0.0032958984375, 0.0384521484375, 0.0648193359375, 0.07756347209215164, 0.06613769382238388, 0.04855956882238388, 0.02812499925494194, 0.0017578124534338713, -0.02570800669491291, -0.03823241963982582, -0.04108886793255806, -0.04240722581744194, -0.02834472618997097, -0.009228515438735485, 0.00747070275247097, 0.02065429650247097, 0.02570800669491291, 0.02241210825741291, 0.01823730394244194, 0.006152343470603228, 0.0054931640625, -0.0013183592818677425, -0.003735351376235485, 0.0004394531133584678, 0.0006591796409338713, 0.0008789062267169356, -0.0024169920943677425, 0.006591796875, 0.00856933556497097, -0.0008789062267169356, 0.003955077845603228, -0.0010986328125, 0.0010986328125, 0.0068115233443677425, -0.0008789062267169356, -0.0041748047806322575, -0.0057128905318677425, 0.0024169920943677425, -0.0006591796409338713, 0.0006591796409338713, -0.0024169920943677425, 0.00527343712747097, 0.003076171735301614, -0.0024169920943677425, 0.004833984188735485, 0.004833984188735485, -0.002197265625, -0.0002197265566792339, 0.001977538922801614, 0.0002197265566792339, 0.003735351376235485, 0.0, 0.0002197265566792339, -0.001538085867650807, 0.002197265625, 0.001977538922801614 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "readout_acquisition, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the trace waveforms\n", "res_spectroscopy2D.plot_trace()" ] }, { "cell_type": "raw", "id": "e3bdac25", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To view the output waveforms as a heatmap, you can use the following command. For more\n", "information on other available plot types refer to\n", ":py:meth:`~keysight.qcs.programs.Program.plot_iq`" ] }, { "cell_type": "code", "execution_count": 27, "id": "67264829", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:15:05.666448Z", "iopub.status.busy": "2024-10-11T06:15:05.666047Z", "iopub.status.idle": "2024-10-11T06:15:05.847202Z", "shell.execute_reply": "2024-10-11T06:15:05.846494Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "coloraxis": "coloraxis", "hovertemplate": "readout_frequencies: %{x}

readout_pulse_amplitudes: %{y}
Abs(IQ): %{z}", "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "I/Q for I/Q Magnitude", "type": "heatmap", "x": [ "4.95 GHz", "5 GHz", "5.05 GHz", "5.1 GHz", "5.15 GHz", "5.2 GHz", "5.25 GHz", "5.3 GHz", "5.35 GHz" ], "xaxis": "x", "y": [ "0.1", "0.2", "0.3", "0.4", "0.5", "0.6", "0.7", "0.8", "0.9", "1" ], "yaxis": "y", "z": [ [ 0.030444792519509187, 0.03091855174473807, 0.030797686720697923, 0.029662506606674723, 0.030778133094310593, 0.028942022111952674, 0.030024715647418695, 0.02846725604401436, 0.029915399906188446 ], [ 0.060693120851899804, 0.06519032178766813, 0.06141687235292466, 0.05908919592485235, 0.06079263985217303, 0.05790266767068501, 0.0599615623706896, 0.05711681715499218, 0.05922510124323405 ], [ 0.09046892336484662, 0.09761113431391193, 0.09163113157330381, 0.08827294825977815, 0.09069618148041138, 0.08656801223187677, 0.08939604167469198, 0.08517169169582468, 0.08846176589483881 ], [ 0.12019642848079577, 0.12887997491919204, 0.12099362817905546, 0.11631295500105199, 0.11925651055096795, 0.11431027255510945, 0.1179392047579383, 0.11312015047916314, 0.11677422583754636 ], [ 0.14839666798430498, 0.15854306034378984, 0.14934188185070602, 0.1437381230883391, 0.1475534041908507, 0.1411132630357122, 0.14588466558233176, 0.13973262603610478, 0.1437493195295702 ], [ 0.1756110330901165, 0.1848704423973692, 0.176765223999643, 0.17025980214633285, 0.1745617803920684, 0.16720741225647917, 0.17245035938480952, 0.16523222895812814, 0.1705963289873425 ], [ 0.20201827524839758, 0.21122011336727065, 0.2028932299526333, 0.19587807539268062, 0.20092241736170663, 0.1927438979394165, 0.19885310253512029, 0.1900325946607131, 0.19651160975983886 ], [ 0.22765635982266424, 0.23597597182632257, 0.2294793898921816, 0.22137675266989718, 0.22785816057836797, 0.21780445381501207, 0.2250170815008672, 0.21543973836501012, 0.22207481793412898 ], [ 0.2537574721937401, 0.2592088715686847, 0.2547229994949873, 0.2473252884514371, 0.2526032464223007, 0.24244889281796425, 0.2502940694994265, 0.24049726559821716, 0.2475976077338995 ], [ 0.27443949528508316, 0.2787271171747724, 0.27552776253850064, 0.26856193696165437, 0.27396246308732036, 0.26480385529030975, 0.27132986259951614, 0.26237783398102715, 0.26888438972041095 ] ] } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "readout_acquisition, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "coloraxis": { "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "height": 500, "hovermode": "closest", "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "showticklabels": true, "tickangle": 0, "title": { "text": "readout_frequencies" } }, "yaxis": { "anchor": "x", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "title": { "text": "readout_pulse_amplitudes" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the IQ data as a heatmap\n", "res_spectroscopy2D.plot_iq(plot_type=\"2d\")" ] }, { "cell_type": "raw", "id": "6dcb2dc9", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "This concludes the tutorial for running resonator spectroscopy experiments, both\n", "1D and 2D, using the Keysight QCS System. For detailed information on all available\n", "arguments and functionalities, please refer to the API documentation for\n", ":py:class:`~keysight.qcs.experiments.ResonatorSpectroscopy` and\n", ":py:class:`~keysight.qcs.experiments.ResonatorSpectroscopy2D`." ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "nbsphinx,raw_mimetype,-all", "main_language": "python", "notebook_metadata_filter": "-all", "text_representation": { "extension": ".py", "format_name": "percent" } }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.6" } }, "nbformat": 4, "nbformat_minor": 5 }