{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "ec7a1373", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:45.548662Z", "iopub.status.busy": "2025-06-13T13:18:45.548253Z", "iopub.status.idle": "2025-06-13T13:18:45.553678Z", "shell.execute_reply": "2025-06-13T13:18:45.552964Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2025 Keysight Technologies Inc." ] }, { "cell_type": "raw", "id": "ff54baa5", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Error Amplification\n", "===================\n", "\n", "The Rabi experiment (:py:class:`~keysight.qcs.experiments.RabiExperiment`) is\n", "performed in order to tune the amplitude of our pulses to perform rotation gates. This\n", "step is crucial in our calibration workflow as imprecisions in its value lead to\n", "rotation angles that do not match our expectations, resulting in errors that propagate\n", "throughout our computations.\n", "\n", "The Error Amplification experiment (also referred to as ping-pong in the literature)\n", "is a simple protocol to determine the accuracy of the rotation pulse amplitude. It\n", "relies on a simple concept: any given number of :math:`\\pi` pulse pairs\n", "should get the system back to its initial state. If the effective rotation\n", "angle is not exactly :math:`\\pi`, increasing the number of :math:`\\pi` pulse pairs\n", "accumulates the errors and increases the deviation." ] }, { "cell_type": "code", "execution_count": 2, "id": "63abfabb", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:45.556859Z", "iopub.status.busy": "2025-06-13T13:18:45.556517Z", "iopub.status.idle": "2025-06-13T13:18:49.440604Z", "shell.execute_reply": "2025-06-13T13:18:49.439341Z" } }, "outputs": [], "source": [ "import numpy as np\n", "\n", "import keysight.qcs as qcs\n", "from keysight.qcs.experiments import ErrorAmplification, make_calibration_set" ] }, { "cell_type": "raw", "id": "ea7fe1cc", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We start by initializing a qubit and defining an empty channel mapper to create a new\n", "instance of the :py:class:`~keysight.qcs.experiments.ErrorAmplification` class. We\n", "use the :py:func:`~keysight.qcs.experiments.make_calibration_set` function that\n", "creates a calibration set for the given amount of qubit containing the linkers for the\n", "``RX``, ``Z`` and measurement gates." ] }, { "cell_type": "code", "execution_count": 3, "id": "236bb454", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:49.445356Z", "iopub.status.busy": "2025-06-13T13:18:49.444889Z", "iopub.status.idle": "2025-06-13T13:18:49.677487Z", "shell.execute_reply": "2025-06-13T13:18:49.676586Z" } }, "outputs": [], "source": [ "# set the following to True when connected to hardware\n", "run_on_hw = False\n", "\n", "n_qubits = 1\n", "qubits = qcs.Qudits(range(n_qubits))\n", "calibration_set = make_calibration_set(n_qubits)\n", "\n", "# generate an empty channel mapper\n", "mapper = qcs.ChannelMapper(\"127.0.0.1\")\n", "\n", "# create Error Amplification experiment\n", "error_amp_exp = ErrorAmplification(\n", " backend=mapper, calibration_set=calibration_set, n_amplifications=3, qubits=qubits\n", ")" ] }, { "cell_type": "raw", "id": "65444760", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "``n_amplifications`` is an integer that determines the maximal number of :math:`\\pi`\n", "pulse pairs sent to the driven system.\n", "For instance, ``n_amplifications`` = 3, 4 different pulse sequences are prepared (0,\n", "2, 4 and 6 :math:`\\pi` pulses).\n", "We can view the operations in the program with the following command:" ] }, { "cell_type": "code", "execution_count": 4, "id": "afb4bd9e", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:49.680973Z", "iopub.status.busy": "2025-06-13T13:18:49.680663Z", "iopub.status.idle": "2025-06-13T13:18:49.765867Z", "shell.execute_reply": "2025-06-13T13:18:49.765202Z" }, "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", "\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", "
Durationundefined
Layers1
Targets1
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", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\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", " Measure on ('qudits', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\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": [ "error_amp_exp.draw()" ] }, { "cell_type": "raw", "id": "e7de765b", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We then configure the repetitions for this experiment and the pulse\n", "amplitudes to sweep over by passing ``n_shots`` and amplitudes array as\n", "arguments of\n", ":py:meth:`~keysight.qcs.experiments.ErrorAmplification.configure_repetitions`. We need\n", "to provide the name of the amplitude variable in the calibration set that we are\n", "tuning, as we did in :py:class:`~keysight.qcs.experiments.RabiExperiment`.\n", "Note that the amplitude values swept over can be different qubits but the number of\n", "values should be the same." ] }, { "cell_type": "code", "execution_count": 5, "id": "1544dd7e", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:49.769064Z", "iopub.status.busy": "2025-06-13T13:18:49.768760Z", "iopub.status.idle": "2025-06-13T13:18:49.861920Z", "shell.execute_reply": "2025-06-13T13:18:49.860887Z" } }, "outputs": [], "source": [ "array = np.transpose([np.linspace(0.1, 1, 5)] * n_qubits)\n", "amplitudes = qcs.Array(\n", " \"amplitudes\",\n", " value=array,\n", " dtype=float,\n", ")\n", "\n", "error_amp_exp.configure_repetitions(\n", " amplitudes=amplitudes, amplitude_name=\"x180_pulse_amplitudes\", n_shots=1\n", ")" ] }, { "cell_type": "raw", "id": "d61532d3", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "Compiling this program to the waveform level using the\n", ":py:class:`~keysight.qcs.programs.ParameterizedLinker`\\s in the calibration set\n", "results in the following program:" ] }, { "cell_type": "code", "execution_count": 6, "id": "aac35768", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:49.865747Z", "iopub.status.busy": "2025-06-13T13:18:49.865419Z", "iopub.status.idle": "2025-06-13T13:18:49.940500Z", "shell.execute_reply": "2025-06-13T13:18:49.939796Z" }, "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", " \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", "
Duration285 ns
Layers1
Targets3
Repetitions\n", " Repeat with 1 repetitions\n", "
\n", " Sweep with 4 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
pulse_pair_sequenceArray(name=pairs, shape=(4, 6), dtype=float, unit=none, value=[[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1], [0, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1]])
\n", " Sweep with 5 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
angleArray(name=angles, shape=(5, 1), dtype=float, unit=none, value=[[0.6283], [2.04204], [3.45575], [4.86947], [6.28319]])
\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", "
Duration285 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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 ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationMax(Scalar(name=_implicit, value=105 ns, dtype=float, unit=s), Scalar(name=_implicit, value=105 ns, dtype=float, unit=s))
\n", "
\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", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=180 ns, dtype=float, unit=s)
\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", "
DurationScalarRef(name=readout_pulse_delay, 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", "\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=readout_pulse_phases, 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=5 ns, 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", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=180 ns, dtype=float, unit=s)
\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", "
DurationScalarRef(name=acquisition_delay, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\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=4.96308e-24 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": [ "error_amp_exp.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "ee351bae", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We use the :py:meth:`~keysight.programs.render` method to visualize this with the\n", ":py:class:`~keysight.channels.ChannelMapper`\\. The first index controls the number of\n", ":math:`\\pi` pulse pairs displayed (up to ``n_amplifications``) whereas the second one\n", "relates to the amplitude array provided when configuring the repetitions." ] }, { "cell_type": "code", "execution_count": 7, "id": "67801d0b", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:49.943736Z", "iopub.status.busy": "2025-06-13T13:18:49.943425Z", "iopub.status.idle": "2025-06-13T13:18:50.887943Z", "shell.execute_reply": "2025-06-13T13:18:50.886863Z" } }, "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": "xy_pulse, labels: (0,)", "legendgrouptitle": { "text": "xy_pulse, labels: (0,)" }, "name": "Drive pulse for xy_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0013592873771704843, 0.003898180660176664, 0.005765344182168203, 0.00648452008519948, 0.005677358411770036, 0.0031125469315200203, -0.0012560809165009642, -0.007266720224750778, -0.014545210931783382, -0.022520814549116475, -0.03046218929904869, -0.03753181182472312, -0.042855340436959544, -0.0456008503200244, -0.045061640643034515, -0.04073554327500365, -0.032393447873805964, -0.020130152614239158, -0.004391659762195335, 0.014025384831122837, 0.034004355853065237, 0.054169279193818115, 0.07297275524826988, 0.08880601485091165, 0.10012372371586946, 0.10557439146628612, 0.10412612185839974, 0.09517709493743068, 0.07864067659033383, 0.05499641725803032, 0.025300369691929572, -0.008849003918587183, -0.04538974477177189, -0.08191698213090648, -0.11583852313008312, -0.1445555890457059, -0.16565625085187066, -0.17710737397489174, -0.1774301708291291, -0.16584489156284432, -0.1423717829259836, -0.10787814339895976, -0.06406493869026811, -0.01339077121607917, 0.04106429102200503, 0.0957877825223746, 0.14706517055410892, 0.1912361303293978, 0.22495879373914132, 0.24546262527244617, 0.2507706411336562, 0.23987323747710104, 0.21283886491876053, 0.17085099790400132, 0.11616601369154646, 0.05199234649909637, -0.01770281012502829, -0.08844736845957053, -0.15556202300271507, -0.2144812457774316, -0.26107482638414237, -0.2919465671167336, -0.3046878810193127, -0.29806688307754986, -0.27213792939494325, -0.22826214149777516, -0.16903584770889543, -0.09813060557288149, -0.02005502965230364, 0.06014546532241101, 0.13723014222316918, 0.20612152960415048, 0.26225553168713617, 0.30189789095883596, 0.32240413234253407, 0.32240413234253446, 0.3018978909588371, 0.262255531687138, 0.2061215296041528, 0.13723014222317187, 0.060145465322413875, -0.020055029652300823, -0.09813060557287889, -0.16903584770889324, -0.22826214149777355, -0.2721379293949423, -0.29806688307754964, -0.3046878810193131, -0.29194656711673483, -0.26107482638414414, -0.2144812457774338, -0.1555620230027176, -0.08844736845957311, -0.017702810125030794, 0.05199234649909412, 0.11616601369154461, 0.170850997904, 0.2128388649187598, 0.23987323747710101, 0.25077064113365677, 0.24546262527244725, 0.22495879373914296, 0.1912361303293997, 0.14706517055411109, 0.09578778252237674, 0.04106429102200705, -0.013390771216077377, -0.06406493869026664, -0.10787814339895872, -0.14237178292598304, -0.16584489156284424, -0.17743017082912957, -0.1771073739748925, -0.1656562508518717, -0.14455558904570726, -0.11583852313008458, -0.081916982130908, -0.04538974477177332, -0.008849003918588439, 0.02530036969192856, 0.05499641725802959, 0.07864067659033339, 0.0951770949374306, 0.10412612185839996, 0.1055743914662866, 0.10012372371587014, 0.08880601485091245, 0.07297275524827078, 0.05416927919381902, 0.0340043558530661, 0.014025384831123585, -0.004391659762194733, -0.02013015261423873, -0.03239344787380572, -0.04073554327500364, -0.0450616406430346, -0.04560085032002461, -0.0428553404369599, -0.037531811824723475, -0.03046218929904903, -0.022520814549116832, -0.014545210931783696, -0.007266720224751046, -0.0012560809165011546, 0.0031125469315198906, 0.005677358411769971, 0.00648452008519946, 0.005765344182168226, 0.0038981806601766813, 0.001359287377170476, 0.0013592873771704859, 0.0038981806601766774, 0.005765344182168238, 0.006484520085199547, 0.005677358411770139, 0.0031125469315201604, -0.001256080916500793, -0.007266720224750586, -0.014545210931783186, -0.022520814549116294, -0.030462189299048547, -0.03753181182472304, -0.042855340436959544, -0.0456008503200245, -0.04506164064303473, -0.04073554327500398, -0.0323934478738064, -0.02013015261423969, -0.004391659762195933, 0.014025384831122208, 0.03400435585306462, 0.05416927919381755, 0.07297275524826942, 0.08880601485091134, 0.10012372371586935, 0.10557439146628624, 0.10412612185840009, 0.09517709493743128, 0.07864067659033465, 0.05499641725803132, 0.02530036969193071, -0.008849003918585977, -0.04538974477177069, -0.08191698213090537, -0.1158385231300822, -0.1445555890457052, -0.1656562508518703, -0.17710737397489174, -0.17743017082912949, -0.1658448915628451, -0.14237178292598474, -0.10787814339896122, -0.0640649386902698, -0.013390771216080994, 0.04106429102200319, 0.09578778252237286, 0.1470651705541074, 0.1912361303293966, 0.22495879373914054, 0.2454626252724459, 0.2507706411336565, 0.23987323747710185, 0.21283886491876186, 0.1708509979040031, 0.11616601369154858, 0.05199234649909871, -0.017702810125025878, -0.0884473684595682, -0.15556202300271296, -0.21448124577742989, -0.26107482638414115, -0.29194656711673295, -0.3046878810193127, -0.2980668830775505, -0.2721379293949445, -0.228262141497777, -0.1690358477088977, -0.09813060557288408, -0.020055029652306374, 0.060145465322408304, 0.13723014222316668, 0.20612152960414834, 0.26225553168713456, 0.30189789095883496, 0.32240413234253373, 0.3224041323425348, 0.3018978909588381, 0.2622555316871396, 0.20612152960415495, 0.13723014222317437, 0.06014546532241658, -0.02005502965229809, -0.0981306055728763, -0.16903584770889096, -0.22826214149777171, -0.272137929394941, -0.29806688307754897, -0.3046878810193131, -0.2919465671167355, -0.26107482638414536, -0.21448124577743552, -0.1555620230027197, -0.08844736845957545, -0.017702810125033205, 0.051992346499091784, 0.11616601369154249, 0.17085099790399821, 0.21283886491875847, 0.2398732374771002, 0.2507706411336565, 0.24546262527244753, 0.22495879373914374, 0.1912361303294009, 0.1470651705541126, 0.09578778252237849, 0.0410642910220089, -0.013390771216075553, -0.06406493869026494, -0.10787814339895727, -0.1423717829259819, -0.16584489156284346, -0.17743017082912918, -0.1771073739748925, -0.16565625085187205, -0.14455558904570795, -0.11583852313008551, -0.08191698213090912, -0.04538974477177452, -0.008849003918589645, 0.02530036969192742, 0.05499641725802859, 0.07864067659033257, 0.09517709493743, 0.10412612185839962, 0.10557439146628649, 0.10012372371587025, 0.08880601485091276, 0.07297275524827124, 0.05416927919381958, 0.034004355853066714, 0.014025384831124215, -0.004391659762194134, -0.0201301526142382, -0.032393447873805284, -0.04073554327500331, -0.04506164064303438, -0.04560085032002451, -0.0428553404369599, -0.03753181182472356, -0.03046218929904917, -0.022520814549117012, -0.014545210931783892, -0.0072667202247512375, -0.001256080916501326, 0.0031125469315197505, 0.005677358411769868, 0.006484520085199393, 0.005765344182168191, 0.003898180660176668, 0.0013592873771704746, 0.0013592873771704874, 0.0038981806601766904, 0.005765344182168275, 0.006484520085199614, 0.005677358411770243, 0.0031125469315203, -0.0012560809165006218, -0.0072667202247503945, -0.014545210931782989, -0.02252081454911611, -0.0304621892990484, -0.037531811824722955, -0.042855340436959544, -0.0456008503200246, -0.04506164064303494, -0.04073554327500431, -0.03239344787380684, -0.02013015261424022, -0.004391659762196532, 0.014025384831121576, 0.034004355853063994, 0.05416927919381699, 0.07297275524826896, 0.08880601485091105, 0.10012372371586924, 0.10557439146628635, 0.10412612185840045, 0.09517709493743186, 0.07864067659033545, 0.054996417258032324, 0.025300369691931848, -0.00884900391858477, -0.0453897447717695, -0.08191698213090426, -0.11583852313008126, -0.14455558904570454, -0.16565625085186994, -0.17710737397489174, -0.17743017082912987, -0.16584489156284588, -0.1423717829259859, -0.10787814339896268, -0.0640649386902715, -0.01339077121608282, 0.04106429102200134, 0.0957877825223711, 0.14706517055410587, 0.1912361303293954, 0.2249587937391398, 0.24546262527244564, 0.25077064113365677, 0.23987323747710268, 0.2128388649187632, 0.17085099790400488, 0.11616601369155069, 0.05199234649910105, -0.017702810125023463, -0.08844736845956587, -0.15556202300271088, -0.21448124577742816, -0.2610748263841399, -0.29194656711673234, -0.3046878810193127, -0.2980668830775512, -0.2721379293949458, -0.22826214149777882, -0.1690358477089, -0.09813060557288666, -0.020055029652309108, 0.060145465322405604, 0.13723014222316418, 0.2061215296041462, 0.2622555316871329, 0.3018978909588339, 0.32240413234253334, 0.3224041323425352, 0.3018978909588392, 0.2622555316871413, 0.20612152960415708, 0.13723014222317687, 0.06014546532241928, -0.020055029652295355, -0.09813060557287372, -0.16903584770888866, -0.22826214149776988, -0.27213792939493975, -0.2980668830775483, -0.3046878810193131, -0.2919465671167361, -0.2610748263841466, -0.21448124577743724, -0.1555620230027218, -0.08844736845957778, -0.01770281012503562, 0.051992346499089445, 0.11616601369154038, 0.17085099790399644, 0.21283886491875714, 0.23987323747709938, 0.2507706411336562, 0.24546262527244778, 0.22495879373914449, 0.1912361303294021, 0.14706517055411414, 0.09578778252238024, 0.04106429102201074, -0.013390771216073728, -0.06406493869026325, -0.10787814339895581, -0.14237178292598074, -0.16584489156284268, -0.1774301708291288, -0.1771073739748925, -0.1656562508518724, -0.14455558904570862, -0.11583852313008644, -0.08191698213091023, -0.045389744771775715, -0.008849003918590852, 0.025300369691926283, 0.054996417258027584, 0.07864067659033176, 0.09517709493742942, 0.10412612185839926, 0.10557439146628637, 0.10012372371587036, 0.08880601485091305, 0.0729727552482717, 0.05416927919382014, 0.03400435585306734, 0.014025384831124846, -0.004391659762193536, -0.02013015261423767, -0.03239344787380485, -0.04073554327500298, -0.045061640643034175, -0.04560085032002441, -0.0428553404369599, -0.03753181182472364, -0.030462189299049317, -0.022520814549117196, -0.01454521093178409, -0.007266720224751429, -0.001256080916501497, 0.003112546931519611, 0.005677358411769764, 0.006484520085199326, 0.005765344182168154, 0.003898180660176655, 0.001359287377170473, 0.0013592873771704887, 0.003898180660176704, 0.00576534418216831, 0.006484520085199681, 0.0056773584117703465, 0.00311254693152044, -0.0012560809165004505, -0.007266720224750203, -0.014545210931782793, -0.02252081454911593, -0.03046218929904826, -0.03753181182472287, -0.042855340436959544, -0.0456008503200247, -0.04506164064303515, -0.040735543275004636, -0.032393447873807275, -0.02013015261424075, -0.00439165976219713, 0.014025384831120946, 0.03400435585306338, 0.05416927919381643, 0.07297275524826852, 0.08880601485091075, 0.10012372371586914, 0.10557439146628647, 0.1041261218584008, 0.09517709493743245, 0.07864067659033627, 0.05499641725803332, 0.025300369691932983, -0.008849003918583564, -0.0453897447717683, -0.08191698213090316, -0.11583852313008032, -0.14455558904570384, -0.16565625085186958, -0.17710737397489174, -0.17743017082913026, -0.16584489156284668, -0.14237178292598704, -0.10787814339896414, -0.06406493869027317, -0.013390771216084644, 0.041064291021999495, 0.09578778252236937, 0.14706517055410434, 0.1912361303293942, 0.22495879373913902, 0.24546262527244536, 0.25077064113365705, 0.23987323747710348, 0.2128388649187645, 0.17085099790400662, 0.11616601369155281, 0.05199234649910338, -0.017702810125021052, -0.08844736845956352, -0.15556202300270877, -0.21448124577742642, -0.26107482638413865, -0.29194656711673167, -0.3046878810193127, -0.2980668830775518, -0.2721379293949471, -0.22826214149778068, -0.1690358477089023, -0.09813060557288926, -0.020055029652311842, 0.0601454653224029, 0.13723014222316168, 0.20612152960414407, 0.2622555316871313, 0.3018978909588329, 0.322404132342533, 0.3224041323425355, 0.3018978909588402, 0.2622555316871429, 0.20612152960415922, 0.13723014222317936, 0.06014546532242199, -0.02005502965229262, -0.09813060557287112, -0.16903584770888638, -0.22826214149776802, -0.27213792939493847, -0.2980668830775477, -0.3046878810193131, -0.2919465671167368, -0.26107482638414786, -0.214481245777439, -0.1555620230027239, -0.08844736845958012, -0.01770281012503803, 0.051992346499087114, 0.11616601369153826, 0.1708509979039947, 0.21283886491875584, 0.23987323747709857, 0.25077064113365594, 0.24546262527244805, 0.22495879373914526, 0.1912361303294033, 0.14706517055411567, 0.09578778252238197, 0.04106429102201259, -0.013390771216071903, -0.06406493869026157, -0.10787814339895435, -0.1423717829259796, -0.16584489156284188, -0.1774301708291284, -0.1771073739748925, -0.16565625085187277, -0.1445555890457093, -0.11583852313008738, -0.08191698213091132, -0.045389744771776916, -0.008849003918592058, 0.02530036969192515, 0.054996417258026585, 0.07864067659033094, 0.09517709493742882, 0.10412612185839891, 0.10557439146628625, 0.10012372371587046, 0.08880601485091336, 0.07297275524827214, 0.0541692791938207, 0.03400435585306796, 0.014025384831125476, -0.004391659762192937, -0.02013015261423714, -0.03239344787380441, -0.04073554327500265, -0.04506164064303396, -0.04560085032002431, -0.0428553404369599, -0.037531811824723725, -0.03046218929904946, -0.022520814549117377, -0.014545210931784286, -0.007266720224751621, -0.0012560809165016683, 0.003112546931519471, 0.0056773584117696604, 0.006484520085199259, 0.005765344182168119, 0.0038981806601766414, 0.0013592873771704718, 0.0013592873771704902, 0.003898180660176717, 0.005765344182168347, 0.006484520085199749, 0.00567735841177045, 0.0031125469315205797, -0.0012560809165002794, -0.007266720224750011, -0.014545210931782597, -0.02252081454911575, -0.030462189299048113, -0.03753181182472279, -0.042855340436959544, -0.045600850320024804, -0.04506164064303536, -0.04073554327500496, -0.03239344787380771, -0.02013015261424128, -0.0043916597621977286, 0.014025384831120315, 0.03400435585306276, 0.05416927919381587, 0.07297275524826806, 0.08880601485091044, 0.10012372371586903, 0.10557439146628658, 0.10412612185840116, 0.09517709493743305, 0.07864067659033709, 0.05499641725803433, 0.02530036969193412, -0.008849003918582359, -0.0453897447717671, -0.08191698213090205, -0.11583852313007939, -0.14455558904570318, -0.1656562508518692, -0.17710737397489174, -0.17743017082913065, -0.16584489156284746, -0.14237178292598818, -0.10787814339896559, -0.06406493869027487, -0.013390771216086469, 0.04106429102199765, 0.09578778252236762, 0.14706517055410281, 0.19123613032939302, 0.22495879373913827, 0.2454626252724451, 0.2507706411336573, 0.2398732374771043, 0.21283886491876583, 0.1708509979040084, 0.11616601369155492, 0.05199234649910572, -0.017702810125018637, -0.0884473684595612, -0.15556202300270666, -0.2144812457774247, -0.2610748263841374, -0.29194656711673106, -0.3046878810193127, -0.29806688307755247, -0.27213792939494835, -0.2282621414977825, -0.16903584770890456, -0.09813060557289184, -0.020055029652314572, 0.06014546532240019, 0.13723014222315918, 0.20612152960414193, 0.2622555316871296, 0.30189789095883185, 0.3224041323425327, 0.32240413234253584, 0.30189789095884123, 0.26225553168714455, 0.20612152960416136, 0.13723014222318186, 0.06014546532242469, -0.02005502965228989, -0.09813060557286854, -0.1690358477088841, -0.2282621414977662, -0.2721379293949372, -0.29806688307754703, -0.3046878810193131, -0.2919465671167374, -0.2610748263841491, -0.2144812457774407, -0.155562023002726, -0.08844736845958245, -0.017702810125040446, 0.051992346499084775, 0.11616601369153615, 0.1708509979039929, 0.2128388649187545, 0.23987323747709777, 0.25077064113365566, 0.2454626252724483, 0.224958793739146, 0.19123613032940448, 0.1470651705541172, 0.09578778252238372, 0.041064291022014435, -0.013390771216070078, -0.06406493869025988, -0.1078781433989529, -0.14237178292597846, -0.1658448915628411, -0.17743017082912801, -0.1771073739748925, -0.16565625085187316, -0.14455558904570998, -0.11583852313008831, -0.08191698213091243, -0.045389744771778116, -0.008849003918593263, 0.02530036969192401, 0.05499641725802558, 0.07864067659033012, 0.09517709493742822, 0.10412612185839855, 0.10557439146628614, 0.10012372371587057, 0.08880601485091366, 0.0729727552482726, 0.054169279193821265, 0.034004355853068574, 0.014025384831126107, -0.004391659762192339, -0.020130152614236608, -0.03239344787380397, -0.040735543275002326, -0.04506164064303375, -0.04560085032002421, -0.0428553404369599, -0.03753181182472381, -0.030462189299049605, -0.022520814549117557, -0.014545210931784482, -0.007266720224751813, -0.0012560809165018394, 0.003112546931519331, 0.005677358411769557, 0.006484520085199191, 0.005765344182168082, 0.0038981806601766284, 0.0013592873771704702, 0.0013592873771704917, 0.0038981806601767303, 0.005765344182168382, 0.006484520085199816, 0.005677358411770553, 0.00311254693152072, -0.0012560809165001081, -0.0072667202247498185, -0.0145452109317824, -0.02252081454911557, -0.03046218929904797, -0.037531811824722705, -0.042855340436959544, -0.0456008503200249, -0.045061640643035576, -0.04073554327500529, -0.03239344787380815, -0.020130152614241816, -0.004391659762198327, 0.014025384831119685, 0.034004355853062135, 0.054169279193815305, 0.0729727552482676, 0.08880601485091014, 0.10012372371586892, 0.1055743914662867, 0.1041261218584015, 0.09517709493743365, 0.07864067659033791, 0.05499641725803533, 0.02530036969193526, -0.008849003918581153, -0.045389744771765904, -0.08191698213090094, -0.11583852313007846, -0.14455558904570248, -0.16565625085186883, -0.17710737397489174, -0.17743017082913104, -0.16584489156284823, -0.14237178292598934, -0.10787814339896705, -0.06406493869027656, -0.013390771216088296, 0.041064291021995804, 0.09578778252236587, 0.1470651705541013, 0.19123613032939182, 0.2249587937391375, 0.24546262527244483, 0.25077064113365755, 0.23987323747710512, 0.21283886491876716, 0.17085099790401018, 0.11616601369155705, 0.051992346499108055, -0.017702810125016226, -0.08844736845955886, -0.15556202300270455, -0.21448124577742297, -0.2610748263841362, -0.2919465671167304, -0.3046878810193127, -0.29806688307755314, -0.2721379293949497, -0.22826214149778434, -0.16903584770890684, -0.09813060557289444, -0.020055029652317306, 0.06014546532239749, 0.1372301422231567, 0.2061215296041398, 0.262255531687128, 0.30189789095883085, 0.32240413234253235, 0.3224041323425362, 0.30189789095884223, 0.26225553168714616, 0.2061215296041635, 0.13723014222318436, 0.06014546532242739, -0.020055029652287157, -0.09813060557286594, -0.16903584770888183, -0.22826214149776436, -0.27213792939493586, -0.29806688307754636, -0.3046878810193131, -0.29194656711673805, -0.2610748263841503, -0.21448124577744243, -0.15556202300272812, -0.08844736845958479, -0.017702810125042857, 0.05199234649908244, 0.11616601369153402, 0.17085099790399114, 0.21283886491875317, 0.23987323747709693, 0.25077064113365544, 0.24546262527244858, 0.2249587937391468, 0.19123613032940567, 0.14706517055411872, 0.09578778252238547, 0.04106429102201628, -0.013390771216068251, -0.06406493869025819, -0.10787814339895144, -0.1423717829259773, -0.16584489156284032, -0.17743017082912763, -0.1771073739748925, -0.16565625085187352, -0.14455558904571067, -0.11583852313008924, -0.08191698213091354, -0.04538974477177931, -0.008849003918594469, 0.025300369691922873, 0.05499641725802458, 0.0786406765903293, 0.09517709493742763, 0.1041261218583982, 0.10557439146628603, 0.10012372371587068, 0.08880601485091397, 0.07297275524827306, 0.05416927919382183, 0.0340043558530692, 0.014025384831126737, -0.00439165976219174, -0.020130152614236074, -0.032393447873803535, -0.040735543275002, -0.045061640643033536, -0.04560085032002411, -0.0428553404369599, -0.03753181182472389, -0.030462189299049747, -0.022520814549117738, -0.014545210931784678, -0.007266720224752005, -0.0012560809165020107, 0.003112546931519191, 0.005677358411769454, 0.006484520085199124, 0.005765344182168047, 0.003898180660176615, 0.0013592873771704687, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" }, { "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.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0003102909330762837, 0.0008397414332047749, 0.0011106750585437254, 0.0009982967841197237, 0.0004422490989091828, -0.0005404911100212428, -0.0018536137908765594, -0.003330929073441816, -0.004756343384725494, -0.0058920371547357, -0.006511394444333858, -0.0064325121753395515, -0.005547895863492363, -0.003846267537787506, -0.0014232439526906111, 0.0015210982474673103, 0.004698208999075835, 0.007759387550131215, 0.010333657088282835, 0.012071112063713656, 0.012686800456492791, 0.01199989673065353, 0.009963221658060314, 0.006679058830676127, 0.0023986219128090806, -0.002495702305054309, -0.007524262522763275, -0.01215722326908721, -0.015870188568311572, -0.018202547808142653, -0.01881213746329774, -0.017519923175802952, -0.014339227168506908, -0.009485490929731801, -0.0033645336080638136, 0.0034604569658211785, 0.010320621219781927, 0.016507079981907116, 0.02134408766446067, 0.024262146412325984, 0.02486323155798315, 0.022970806488269022, 0.018658642300289158, 0.012254488129596421, 0.004317167026276709, -0.004411554783876365, -0.01307624913988944, -0.02079179079140593, -0.026733751397784253, -0.0302259934089402, -0.03081620183663921, -0.028331034521889138, -0.022904420295234987, -0.014975122463356602, -0.005252762558562892, 0.005345242210647258, 0.015780271078611786, 0.024994445901516726, 0.03201790922783003, 0.03607055221851219, 0.0366475546452295, 0.03357945290546985, 0.027059805007309798, 0.017636656830236592, 0.006167627836789372, -0.006257834408421605, -0.018422015496706943, -0.029098459352530394, -0.037175706997744876, -0.0417727570375455, -0.04233427629831019, -0.03869534852942543, -0.031108397031469722, -0.020228587370029714, -0.007058152305665174, 0.007145729792718505, 0.02099105663585491, 0.03308763447830117, 0.042186789236104597, 0.04731010386870898, 0.047853923903532575, 0.04365853129095853, 0.035034218424621164, 0.02274068491703582, 0.00792082147195358, -0.00800542424609696, -0.023477255664362737, -0.036946227827088396, -0.04703137949066013, -0.0526607393338332, -0.053184713933485984, -0.04844941377517193, -0.03882177576326257, -0.025163035369905096, -0.008752230774571306, 0.008833524947306515, 0.025870800690501187, 0.04065901129376803, 0.05169035837695949, 0.057803546919210115, 0.05830560819532848, 0.05304908855764641, 0.042456121288948635, 0.02748607881806671, 0.009549099020835693, -0.009626763761202726, -0.0281622454855588, -0.04421133221820652, -0.056145339033823426, -0.06271823031282552, -0.0631963968589226, -0.05743940282340706, -0.045922911900264034, -0.029700647270328367, -0.010308281335833211, 0.010382010136583483, 0.03034254676379105, 0.04758917121261617, 0.06037873968788638, 0.06738539350463012, 0.06783777821580199, 0.061603030007790764, 0.049208465758491866, 0.03179800083674907, 0.01102678157380397, -0.011096283461044404, -0.03240309987213762, -0.05077919748967383, -0.06437385304082349, -0.07178661733372983, -0.0722114348541964, -0.065523538176481, -0.05229981628358049, -0.03376986222099187, -0.011701764142560234, 0.011766764824094285, 0.034335772748857046, 0.05376882147304839, 0.06811491220542445, 0.07590453218039915, 0.07630010594948781, 0.06918545487484583, 0.05518476332731107, 0.035608449387030915, 0.012330565194273327, -0.012390808142106965, -0.03613293801705918, -0.05654624448270673, -0.07158715293029394, -0.07972288651603464, -0.08008765538479927, -0.07257432819064741, -0.05785192132170898, -0.03730650627129246, -0.012910703138464015, 0.012965950601204524, 0.03778750308647714, 0.0591005052989136, 0.07477687186760676, 0.08322661104051364, 0.08355913543287627, 0.07567678378913717, 0.06029076421267888, 0.038857331419022687, 0.013439888435706383, -0.013489922376858497, -0.0392929381446808, -0.0614215234211582, -0.07767148065396132, -0.08640187815383757, -0.08670084574793749, -0.07848057769544504, -0.06249166700153147, -0.04025480443186816, -0.013916032633393999, 0.01396065559185032, 0.04064330192726332, 0.06350013885128439, 0.08025955559089887, 0.08923615652735171, 0.08950038743468029, 0.08097464461595447, 0.06444594373045598, 0.04149341012229183, 0.01433725660790817, -0.01437629247723796, -0.04183326516529733, -0.06532814824381844, -0.08253088272902223, -0.09171826055917433, -0.09194671198105599, -0.0831491416079609, -0.06614588176202743, -0.042568260279498726, -0.014701897980660414, 0.014735192704121224, 0.042858131617524824, 0.06689833728082614, 0.08447649817778795, 0.09383839451865737, 0.09403016486169945, 0.08499548692527009, 0.06758477221746303, 0.04347511296097067, 0.015008517678741277, -0.015035939857270517, -0.043713856604275785, -0.06820450914352949, -0.0860887234818868, -0.09558819120565974, -0.0957425236399298, -0.08650639388642958, -0.06875693645350171, -0.04421038923347547, -0.015255905614283655, 0.015277347025070671, 0.0443970629699711, 0.06924150896831963, 0.08736119592459932, 0.09696074497206403, 0.09707703041795178, 0.08767589963193141, 0.06965774847341473, 0.044771187297481356, 0.015443085460126755, -0.015458461483718823, -0.04490505441121264, -0.07000524419064821, -0.08828889363853137, -0.0979506389752143, -0.0980284185071906, -0.08849938865689441, -0.07028365318370135, -0.04515529393923393, -0.015569318502933374, 0.01557856845719001, 0.04523582611786107, 0.07049270069651017, 0.08886815542463092, 0.09855396655571977, 0.09859293321350597, 0.08897361102635344, 0.07063218042441873, 0.04536119326529986, 0.015634106558553948, -0.015637193938131608, -0.04538807268510543, -0.07070195471777459, -0.08909669520126774, -0.09876834665525426, -0.09876834665525427, -0.0890966952012678, -0.07070195471777471, -0.045388072685105585, -0.01563719393813178, 0.015634106558553757, 0.045361193265299665, 0.07063218042441854, 0.0889736110263533, 0.09859293321350589, 0.09855396655571971, 0.08886815542463093, 0.07049270069651024, 0.04523582611786118, 0.015578568457190177, -0.015569318502933175, -0.045155293939233725, -0.07028365318370114, -0.08849938865689423, -0.09802841850719048, -0.09795063897521422, -0.08828889363853136, -0.07000524419064826, -0.044905054411212744, -0.01545846148371898, 0.01544308546012655, 0.04477118729748112, 0.06965774847341448, 0.08767589963193116, 0.09707703041795156, 0.09696074497206383, 0.08736119592459919, 0.0692415089683196, 0.04439706296997116, 0.015277347025070815, -0.015255905614283437, -0.04421038923347521, -0.06875693645350141, -0.08650639388642926, -0.09574252363992952, -0.0955881912056595, -0.08608872348188663, -0.06820450914352941, -0.04371385660427581, -0.015035939857270645, 0.015008517678741054, 0.04347511296097037, 0.06758477221746269, 0.08499548692526972, 0.09403016486169909, 0.09383839451865704, 0.0844764981777877, 0.06689833728082602, 0.042858131617524824, 0.01473519270412134, -0.014701897980660185, -0.04256826027949841, -0.06614588176202704, -0.08314914160796048, -0.09194671198105558, -0.09171826055917397, -0.08253088272902195, -0.06532814824381829, -0.041833265165297305, -0.014376292477238066, 0.014337256607907939, 0.04149341012229149, 0.06444594373045556, 0.08097464461595402, 0.08950038743467985, 0.0892361565273513, 0.08025955559089856, 0.06350013885128421, 0.04064330192726327, 0.013960655591850418, -0.013916032633393773, -0.04025480443186782, -0.06249166700153106, -0.07848057769544463, -0.08670084574793707, -0.0864018781538372, -0.07767148065396103, -0.06142152342115803, -0.03929293814468077, -0.013489922376858593, 0.013439888435706166, 0.03885733141902236, 0.06029076421267848, 0.07567678378913674, 0.08355913543287584, 0.08322661104051325, 0.07477687186760644, 0.059100505298913406, 0.03778750308647708, 0.012965950601204607, -0.012910703138463793, -0.03730650627129212, -0.057851921321708556, -0.07257432819064695, -0.08008765538479883, -0.07972288651603421, -0.0715871529302936, -0.056546244482706516, -0.03613293801705911, -0.012390808142107043, 0.012330565194273115, 0.035608449387030595, 0.055184763327310676, 0.0691854548748454, 0.07630010594948737, 0.07590453218039875, 0.06811491220542412, 0.05376882147304818, 0.03433577274885697, 0.011766764824094353, -0.01170176414256003, -0.03376986222099155, -0.05229981628358007, -0.06552353817648056, -0.07221143485419594, -0.07178661733372939, -0.06437385304082315, -0.050779197489673605, -0.03240309987213752, -0.011096283461044461, 0.011026781573803768, 0.03179800083674874, 0.04920846575849144, 0.061603030007790285, 0.06783777821580149, 0.06738539350462966, 0.060378739687886, 0.04758917121261591, 0.030342546763790938, 0.010382010136583533, -0.01030828133583302, -0.029700647270328055, -0.045922911900263645, -0.05743940282340664, -0.06319639685892217, -0.06271823031282513, -0.05614533903382312, -0.04421133221820632, -0.028162245485558728, -0.009626763761202778, 0.00954909902083552, 0.02748607881806643, 0.04245612128894828, 0.053049088557646014, 0.05830560819532807, 0.05780354691920973, 0.05169035837695919, 0.040659011293767845, 0.025870800690501117, 0.008833524947306564, -0.008752230774571148, -0.025163035369904847, -0.03882177576326224, -0.048449413775171576, -0.053184713933485624, -0.052660739333832876, -0.04703137949065987, -0.036946227827088236, -0.023477255664362675, -0.008005424246097003, 0.00792082147195344, 0.022740684917035597, 0.03503421842462089, 0.04365853129095824, 0.04785392390353228, 0.047310103868708715, 0.04218678923610438, 0.03308763447830102, 0.020991056635854856, 0.007145729792718545, -0.007058152305665048, -0.02022858737002951, -0.031108397031469462, -0.03869534852942514, -0.0423342762983099, -0.041772757037545225, -0.03717570699774465, -0.029098459352530248, -0.01842201549670688, -0.0062578344084216345, 0.006167627836789258, 0.017636656830236408, 0.02705980500730956, 0.03357945290546958, 0.03664755464522924, 0.036070552218511936, 0.03201790922782983, 0.024994445901516598, 0.01578027107861173, 0.005345242210647282, -0.0052527625585627935, -0.014975122463356437, -0.022904420295234772, -0.028331034521888898, -0.030816201836638975, -0.030225993408939986, -0.02673375139778408, -0.020791790791405813, -0.013076249139889388, -0.004411554783876383, 0.004317167026276626, 0.012254488129596284, 0.018658642300288984, 0.02297080648826884, 0.024863231557982965, 0.02426214641232582, 0.02134408766446054, 0.01650707998190703, 0.010320621219781891, 0.003460456965821194, -0.003364533608063752, -0.0094854909297317, -0.014339227168506778, -0.017519923175802813, -0.018812137463297605, -0.01820254780814253, -0.015870188568311475, -0.012157223269087145, -0.0075242625227632445, -0.0024957023050543145, 0.0023986219128090415, 0.006679058830676061, 0.00996322165806023, 0.01199989673065344, 0.012686800456492706, 0.01207111206371358, 0.010333657088282778, 0.007759387550131178, 0.004698208999075819, 0.0015210982474673142, -0.0014232439526905905, -0.003846267537787474, -0.005547895863492327, -0.0064325121753395186, -0.006511394444333831, -0.005892037154735681, -0.0047563433847254855, -0.0033309290734418167, -0.0018536137908765646, -0.0005404911100212481, 0.00044224909890918225, 0.0009982967841197325, 0.0011106750585437464, 0.0008397414332048089, 0.0003102909330763294, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "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.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -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": "#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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "x" } }, "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": "#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": "#00d539", "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": "-" } }, "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": [ "error_amp_exp.compiled_program.render(\n", " channel_subplots=False, sweep_index=(3, 1), lo_frequency=4.9e9, sample_rate=5.0e9\n", ")" ] }, { "cell_type": "raw", "id": "e0306cf9", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "The first index control the number of pi pulse pairs and the second one controls the\n", "amplitude." ] }, { "cell_type": "code", "execution_count": 8, "id": "abe91df4", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:50.927331Z", "iopub.status.busy": "2025-06-13T13:18:50.926681Z", "iopub.status.idle": "2025-06-13T13:18:51.101420Z", "shell.execute_reply": "2025-06-13T13:18:51.100738Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2e-10, "legendgroup": "xy_pulse, labels: (0,)", "legendgrouptitle": { "text": "xy_pulse, labels: (0,)" }, "name": "Drive pulse for xy_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004182422698986114, 0.011994402031312894, 0.01773952056051777, 0.01995236949292189, 0.017468795113139212, 0.009577067481600924, -0.003864864358463451, -0.022359139153078134, -0.04475449517471689, -0.06929481399728035, -0.09372981322784124, -0.11548249792222447, -0.13186258595987552, -0.14031030867699876, -0.13865120197856903, -0.12534013315385942, -0.09967214730402105, -0.06193893112073913, -0.013512799268297019, 0.04315503024960485, 0.1046287872401969, 0.1666747052117446, 0.2245315546100584, 0.2732492764643417, 0.30807299604882843, 0.32484428143472727, 0.3203880672566168, 0.2928525998074827, 0.24197131258564755, 0.1692197454093302, 0.07784729135979031, -0.027227704364876218, -0.13966075314390614, -0.25205225271047466, -0.3564262250156346, -0.444786427832937, -0.5097115410826767, -0.54494576607659, -0.5459389871665535, -0.5102919740395256, -0.4380670243876489, -0.33193274891988517, -0.19712288827775842, -0.041202372972562525, 0.12635166468308104, 0.29473163853037265, 0.4525082170895566, 0.5884188625519858, 0.6921809038127379, 0.7552696162229096, 0.7716019727189438, 0.7380714999295467, 0.6548888151346558, 0.5256953781661688, 0.3574338882816944, 0.15997645076646475, -0.05447018500007219, -0.27214574910635647, -0.4786523784698796, -0.6599422946997789, -0.8033071581050459, -0.8982971295899456, -0.9375011723671159, -0.9171288710078497, -0.8373474750613716, -0.7023450507623964, -0.5201103006427692, -0.3019403248396513, -0.06170778354556648, 0.18506297022278648, 0.42224659145588983, 0.6342200910896806, 0.8069400974988705, 0.9289165875656428, 0.9920127149001027, 0.9920127149001081, 0.928916587565659, 0.8069400974988964, 0.634220091089714, 0.4222465914559288, 0.18506297022282853, -0.06170778354552417, -0.3019403248396115, -0.5201103006427343, -0.7023450507623687, -0.837347475061353, -0.9171288710078409, -0.9375011723671172, -0.8982971295899574, -0.8033071581050665, -0.6599422946998069, -0.4786523784699132, -0.27214574910639316, -0.0544701850001096, 0.15997645076642908, 0.3574338882816626, 0.5256953781661429, 0.6548888151346375, 0.7380714999295366, 0.7716019727189422, 0.7552696162229162, 0.6921809038127522, 0.5884188625520064, 0.45250821708958194, 0.29473163853040074, 0.12635166468310996, -0.04120237297253455, -0.1971228882777331, -0.33193274891986396, -0.43806702438763306, -0.510291974039516, -0.54593898716655, -0.5449457660765924, -0.5097115410826843, -0.4447864278329495, -0.3564262250156506, -0.25205225271049303, -0.1396607531439253, -0.02722770436489492, 0.07784729135977318, 0.16921974540931564, 0.24197131258563617, 0.2928525998074751, 0.32038806725661306, 0.32484428143472727, 0.30807299604883187, 0.2732492764643478, 0.22453155461006677, 0.16667470521175426, 0.10462878724020719, 0.0431550302496149, -0.0135127992682878, -0.06193893112073128, -0.09967214730401491, -0.1253401331538553, -0.1386512019785667, -0.1403103086769982, -0.1318625859598766, -0.11548249792222659, -0.09372981322784406, -0.06929481399728367, -0.04475449517472027, -0.02235913915308132, -0.003864864358466144, 0.009577067481598802, 0.017468795113137734, 0.019952369492921, 0.017739520560517395, 0.011994402031312783, 0.004182422698986071, 0.004182422698986119, 0.011994402031312934, 0.01773952056051788, 0.019952369492922097, 0.017468795113139528, 0.009577067481601356, -0.0038648643584629242, -0.022359139153077544, -0.04475449517471629, -0.06929481399727978, -0.0937298132278408, -0.11548249792222422, -0.13186258595987552, -0.14031030867699906, -0.1386512019785697, -0.12534013315386042, -0.0996721473040224, -0.06193893112074077, -0.013512799268298861, 0.043155030249602905, 0.104628787240195, 0.16667470521174285, 0.224531554610057, 0.2732492764643408, 0.3080729960488281, 0.3248442814347276, 0.3203880672566179, 0.2928525998074845, 0.24197131258565005, 0.1692197454093333, 0.0778472913597938, -0.027227704364872506, -0.13966075314390247, -0.25205225271047127, -0.3564262250156317, -0.4447864278329349, -0.5097115410826756, -0.54494576607659, -0.5459389871665546, -0.5102919740395281, -0.43806702438765244, -0.3319327489198896, -0.1971228882777636, -0.04120237297256814, 0.12635166468307535, 0.2947316385303673, 0.4525082170895519, 0.5884188625519822, 0.6921809038127354, 0.7552696162229088, 0.7716019727189447, 0.7380714999295492, 0.6548888151346599, 0.5256953781661743, 0.3574338882817009, 0.15997645076647193, -0.054470185000064765, -0.2721457491063493, -0.47865237846987313, -0.6599422946997736, -0.8033071581050422, -0.8982971295899437, -0.9375011723671159, -0.9171288710078518, -0.8373474750613756, -0.7023450507624021, -0.5201103006427762, -0.30194032483965927, -0.06170778354557489, 0.18506297022277815, 0.4222465914558821, 0.6342200910896739, 0.8069400974988655, 0.9289165875656397, 0.9920127149001016, 0.9920127149001092, 0.9289165875656621, 0.8069400974989014, 0.6342200910897207, 0.4222465914559365, 0.18506297022283685, -0.06170778354551576, -0.3019403248396035, -0.5201103006427273, -0.7023450507623631, -0.837347475061349, -0.9171288710078388, -0.9375011723671172, -0.8982971295899593, -0.8033071581050703, -0.6599422946998122, -0.4786523784699197, -0.2721457491064003, -0.05447018500011702, 0.1599764507664219, 0.3574338882816561, 0.5256953781661374, 0.6548888151346334, 0.738071499929534, 0.7716019727189413, 0.755269616222917, 0.6921809038127547, 0.58841886255201, 0.4525082170895866, 0.29473163853040607, 0.12635166468311565, -0.04120237297252893, -0.19712288827772792, -0.3319327489198595, -0.4380670243876295, -0.5102919740395135, -0.5459389871665489, -0.5449457660765924, -0.5097115410826855, -0.4447864278329516, -0.35642622501565346, -0.2520522527104964, -0.13966075314392895, -0.027227704364898634, 0.07784729135976969, 0.16921974540931256, 0.24197131258563367, 0.29285259980747325, 0.32038806725661195, 0.32484428143472693, 0.3080729960488322, 0.27324927646434877, 0.22453155461006816, 0.166674705211756, 0.10462878724020909, 0.043155030249616845, -0.013512799268285958, -0.061938931120729644, -0.09967214730401357, -0.1253401331538543, -0.13865120197856604, -0.1403103086769979, -0.1318625859598766, -0.11548249792222684, -0.0937298132278445, -0.06929481399728424, -0.044754495174720875, -0.02235913915308191, -0.003864864358466671, 0.00957706748159837, 0.01746879511313742, 0.019952369492920792, 0.017739520560517284, 0.011994402031312744, 0.004182422698986066, 0.004182422698986123, 0.011994402031312976, 0.017739520560517988, 0.0199523694929223, 0.017468795113139847, 0.009577067481601786, -0.0038648643584623973, -0.022359139153076954, -0.04475449517471568, -0.06929481399727923, -0.09372981322784037, -0.11548249792222397, -0.13186258595987552, -0.1403103086769994, -0.13865120197857034, -0.12534013315386142, -0.09967214730402374, -0.0619389311207424, -0.013512799268300704, 0.04315503024960097, 0.10462878724019309, 0.16667470521174113, 0.22453155461005558, 0.27324927646433983, 0.30807299604882776, 0.32484428143472793, 0.32038806725661895, 0.2928525998074863, 0.24197131258565255, 0.16921974540933638, 0.07784729135979732, -0.027227704364868793, -0.13966075314389878, -0.2520522527104679, -0.3564262250156288, -0.4447864278329328, -0.5097115410826745, -0.54494576607659, -0.5459389871665559, -0.5102919740395305, -0.43806702438765593, -0.3319327489198941, -0.19712288827776883, -0.04120237297257375, 0.12635166468306966, 0.29473163853036194, 0.4525082170895472, 0.5884188625519785, 0.6921809038127331, 0.755269616222908, 0.7716019727189455, 0.7380714999295517, 0.654888815134664, 0.5256953781661797, 0.3574338882817074, 0.15997645076647912, -0.05447018500005734, -0.2721457491063421, -0.4786523784698667, -0.6599422946997684, -0.8033071581050384, -0.8982971295899417, -0.9375011723671159, -0.9171288710078538, -0.8373474750613795, -0.7023450507624077, -0.5201103006427832, -0.3019403248396672, -0.0617077835455833, 0.18506297022276982, 0.42224659145587445, 0.6342200910896674, 0.8069400974988605, 0.9289165875656364, 0.9920127149001005, 0.9920127149001103, 0.9289165875656653, 0.8069400974989064, 0.6342200910897272, 0.4222465914559442, 0.18506297022284518, -0.06170778354550735, -0.30194032483959554, -0.5201103006427203, -0.7023450507623574, -0.8373474750613451, -0.9171288710078368, -0.9375011723671172, -0.8982971295899613, -0.803307158105074, -0.6599422946998175, -0.47865237846992614, -0.27214574910640754, -0.054470185000124446, 0.1599764507664147, 0.3574338882816496, 0.525695378166132, 0.6548888151346293, 0.7380714999295316, 0.7716019727189405, 0.7552696162229178, 0.692180903812757, 0.5884188625520137, 0.4525082170895913, 0.29473163853041145, 0.12635166468312134, -0.04120237297252332, -0.1971228882777227, -0.331932748919855, -0.438067024387626, -0.5102919740395111, -0.5459389871665477, -0.5449457660765924, -0.5097115410826866, -0.4447864278329537, -0.35642622501565635, -0.2520522527104998, -0.13966075314393264, -0.027227704364902346, 0.07784729135976617, 0.16921974540930948, 0.24197131258563118, 0.29285259980747147, 0.3203880672566109, 0.3248442814347266, 0.30807299604883254, 0.2732492764643497, 0.22453155461006957, 0.16667470521175773, 0.104628787240211, 0.04315503024961878, -0.013512799268284116, -0.061938931120728014, -0.09967214730401222, -0.1253401331538533, -0.1386512019785654, -0.14031030867699756, -0.1318625859598766, -0.11548249792222709, -0.09372981322784493, -0.0692948139972848, -0.044754495174721486, -0.022359139153082498, -0.0038648643584671977, 0.00957706748159794, 0.0174687951131371, 0.019952369492920587, 0.017739520560517176, 0.011994402031312702, 0.004182422698986062, 0.0041824226989861275, 0.011994402031313016, 0.0177395205605181, 0.01995236949292251, 0.017468795113140166, 0.009577067481602216, -0.003864864358461871, -0.022359139153076364, -0.044754495174715074, -0.06929481399727867, -0.09372981322783992, -0.1154824979222237, -0.13186258595987552, -0.1403103086769997, -0.138651201978571, -0.12534013315386244, -0.09967214730402509, -0.061938931120744035, -0.013512799268302544, 0.043155030249599026, 0.10462878724019119, 0.1666747052117394, 0.2245315546100542, 0.2732492764643389, 0.30807299604882743, 0.3248442814347283, 0.32038806725662006, 0.2928525998074881, 0.24197131258565507, 0.16921974540933948, 0.07784729135980081, -0.027227704364865084, -0.1396607531438951, -0.25205225271046444, -0.35642622501562593, -0.4447864278329307, -0.5097115410826732, -0.54494576607659, -0.5459389871665571, -0.5102919740395329, -0.4380670243876595, -0.3319327489198986, -0.19712288827777402, -0.04120237297257937, 0.126351664683064, 0.29473163853035655, 0.45250821708954253, 0.5884188625519748, 0.6921809038127308, 0.7552696162229071, 0.7716019727189464, 0.7380714999295542, 0.6548888151346681, 0.5256953781661852, 0.35743388828171396, 0.1599764507664863, -0.054470185000049916, -0.27214574910633493, -0.4786523784698602, -0.6599422946997631, -0.8033071581050345, -0.8982971295899397, -0.9375011723671159, -0.9171288710078558, -0.8373474750613835, -0.7023450507624134, -0.5201103006427903, -0.3019403248396752, -0.06170778354559171, 0.1850629702227615, 0.42224659145586674, 0.6342200910896608, 0.8069400974988555, 0.9289165875656333, 0.9920127149000995, 0.9920127149001113, 0.9289165875656684, 0.8069400974989114, 0.6342200910897338, 0.4222465914559519, 0.1850629702228535, -0.06170778354549894, -0.30194032483958755, -0.5201103006427132, -0.7023450507623518, -0.8373474750613411, -0.9171288710078348, -0.9375011723671172, -0.8982971295899633, -0.8033071581050779, -0.6599422946998228, -0.47865237846993264, -0.2721457491064147, -0.05447018500013187, 0.1599764507664075, 0.3574338882816431, 0.5256953781661265, 0.6548888151346252, 0.738071499929529, 0.7716019727189396, 0.7552696162229187, 0.6921809038127593, 0.5884188625520174, 0.452508217089596, 0.29473163853041684, 0.126351664683127, -0.0412023729725177, -0.1971228882777175, -0.33193274891985053, -0.43806702438762246, -0.5102919740395088, -0.5459389871665464, -0.5449457660765924, -0.5097115410826878, -0.4447864278329558, -0.35642622501565924, -0.25205225271050324, -0.13966075314393633, -0.027227704364906055, 0.07784729135976268, 0.16921974540930637, 0.24197131258562865, 0.29285259980746964, 0.3203880672566098, 0.3248442814347262, 0.30807299604883287, 0.27324927646435065, 0.22453155461007096, 0.16667470521175945, 0.1046287872402129, 0.043155030249620724, -0.013512799268282276, -0.061938931120726376, -0.09967214730401087, -0.12534013315385228, -0.13865120197856473, -0.14031030867699726, -0.1318625859598766, -0.11548249792222735, -0.09372981322784538, -0.06929481399728535, -0.04475449517472209, -0.022359139153083088, -0.0038648643584677242, 0.00957706748159751, 0.01746879511313678, 0.01995236949292038, 0.017739520560517065, 0.011994402031312662, 0.004182422698986057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" }, { "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.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0003102909330762837, 0.0008397414332047749, 0.0011106750585437254, 0.0009982967841197237, 0.0004422490989091828, -0.0005404911100212428, -0.0018536137908765594, -0.003330929073441816, -0.004756343384725494, -0.0058920371547357, -0.006511394444333858, -0.0064325121753395515, -0.005547895863492363, -0.003846267537787506, -0.0014232439526906111, 0.0015210982474673103, 0.004698208999075835, 0.007759387550131215, 0.010333657088282835, 0.012071112063713656, 0.012686800456492791, 0.01199989673065353, 0.009963221658060314, 0.006679058830676127, 0.0023986219128090806, -0.002495702305054309, -0.007524262522763275, -0.01215722326908721, -0.015870188568311572, -0.018202547808142653, -0.01881213746329774, -0.017519923175802952, -0.014339227168506908, -0.009485490929731801, -0.0033645336080638136, 0.0034604569658211785, 0.010320621219781927, 0.016507079981907116, 0.02134408766446067, 0.024262146412325984, 0.02486323155798315, 0.022970806488269022, 0.018658642300289158, 0.012254488129596421, 0.004317167026276709, -0.004411554783876365, -0.01307624913988944, -0.02079179079140593, -0.026733751397784253, -0.0302259934089402, -0.03081620183663921, -0.028331034521889138, -0.022904420295234987, -0.014975122463356602, -0.005252762558562892, 0.005345242210647258, 0.015780271078611786, 0.024994445901516726, 0.03201790922783003, 0.03607055221851219, 0.0366475546452295, 0.03357945290546985, 0.027059805007309798, 0.017636656830236592, 0.006167627836789372, -0.006257834408421605, -0.018422015496706943, -0.029098459352530394, -0.037175706997744876, -0.0417727570375455, -0.04233427629831019, -0.03869534852942543, -0.031108397031469722, -0.020228587370029714, -0.007058152305665174, 0.007145729792718505, 0.02099105663585491, 0.03308763447830117, 0.042186789236104597, 0.04731010386870898, 0.047853923903532575, 0.04365853129095853, 0.035034218424621164, 0.02274068491703582, 0.00792082147195358, -0.00800542424609696, -0.023477255664362737, -0.036946227827088396, -0.04703137949066013, -0.0526607393338332, -0.053184713933485984, -0.04844941377517193, -0.03882177576326257, -0.025163035369905096, -0.008752230774571306, 0.008833524947306515, 0.025870800690501187, 0.04065901129376803, 0.05169035837695949, 0.057803546919210115, 0.05830560819532848, 0.05304908855764641, 0.042456121288948635, 0.02748607881806671, 0.009549099020835693, -0.009626763761202726, -0.0281622454855588, -0.04421133221820652, -0.056145339033823426, -0.06271823031282552, -0.0631963968589226, -0.05743940282340706, -0.045922911900264034, -0.029700647270328367, -0.010308281335833211, 0.010382010136583483, 0.03034254676379105, 0.04758917121261617, 0.06037873968788638, 0.06738539350463012, 0.06783777821580199, 0.061603030007790764, 0.049208465758491866, 0.03179800083674907, 0.01102678157380397, -0.011096283461044404, -0.03240309987213762, -0.05077919748967383, -0.06437385304082349, -0.07178661733372983, -0.0722114348541964, -0.065523538176481, -0.05229981628358049, -0.03376986222099187, -0.011701764142560234, 0.011766764824094285, 0.034335772748857046, 0.05376882147304839, 0.06811491220542445, 0.07590453218039915, 0.07630010594948781, 0.06918545487484583, 0.05518476332731107, 0.035608449387030915, 0.012330565194273327, -0.012390808142106965, -0.03613293801705918, -0.05654624448270673, -0.07158715293029394, -0.07972288651603464, -0.08008765538479927, -0.07257432819064741, -0.05785192132170898, -0.03730650627129246, -0.012910703138464015, 0.012965950601204524, 0.03778750308647714, 0.0591005052989136, 0.07477687186760676, 0.08322661104051364, 0.08355913543287627, 0.07567678378913717, 0.06029076421267888, 0.038857331419022687, 0.013439888435706383, -0.013489922376858497, -0.0392929381446808, -0.0614215234211582, -0.07767148065396132, -0.08640187815383757, -0.08670084574793749, -0.07848057769544504, -0.06249166700153147, -0.04025480443186816, -0.013916032633393999, 0.01396065559185032, 0.04064330192726332, 0.06350013885128439, 0.08025955559089887, 0.08923615652735171, 0.08950038743468029, 0.08097464461595447, 0.06444594373045598, 0.04149341012229183, 0.01433725660790817, -0.01437629247723796, -0.04183326516529733, -0.06532814824381844, -0.08253088272902223, -0.09171826055917433, -0.09194671198105599, -0.0831491416079609, -0.06614588176202743, -0.042568260279498726, -0.014701897980660414, 0.014735192704121224, 0.042858131617524824, 0.06689833728082614, 0.08447649817778795, 0.09383839451865737, 0.09403016486169945, 0.08499548692527009, 0.06758477221746303, 0.04347511296097067, 0.015008517678741277, -0.015035939857270517, -0.043713856604275785, -0.06820450914352949, -0.0860887234818868, -0.09558819120565974, -0.0957425236399298, -0.08650639388642958, -0.06875693645350171, -0.04421038923347547, -0.015255905614283655, 0.015277347025070671, 0.0443970629699711, 0.06924150896831963, 0.08736119592459932, 0.09696074497206403, 0.09707703041795178, 0.08767589963193141, 0.06965774847341473, 0.044771187297481356, 0.015443085460126755, -0.015458461483718823, -0.04490505441121264, -0.07000524419064821, -0.08828889363853137, -0.0979506389752143, -0.0980284185071906, -0.08849938865689441, -0.07028365318370135, -0.04515529393923393, -0.015569318502933374, 0.01557856845719001, 0.04523582611786107, 0.07049270069651017, 0.08886815542463092, 0.09855396655571977, 0.09859293321350597, 0.08897361102635344, 0.07063218042441873, 0.04536119326529986, 0.015634106558553948, -0.015637193938131608, -0.04538807268510543, -0.07070195471777459, -0.08909669520126774, -0.09876834665525426, -0.09876834665525427, -0.0890966952012678, -0.07070195471777471, -0.045388072685105585, -0.01563719393813178, 0.015634106558553757, 0.045361193265299665, 0.07063218042441854, 0.0889736110263533, 0.09859293321350589, 0.09855396655571971, 0.08886815542463093, 0.07049270069651024, 0.04523582611786118, 0.015578568457190177, -0.015569318502933175, -0.045155293939233725, -0.07028365318370114, -0.08849938865689423, -0.09802841850719048, -0.09795063897521422, -0.08828889363853136, -0.07000524419064826, -0.044905054411212744, -0.01545846148371898, 0.01544308546012655, 0.04477118729748112, 0.06965774847341448, 0.08767589963193116, 0.09707703041795156, 0.09696074497206383, 0.08736119592459919, 0.0692415089683196, 0.04439706296997116, 0.015277347025070815, -0.015255905614283437, -0.04421038923347521, -0.06875693645350141, -0.08650639388642926, -0.09574252363992952, -0.0955881912056595, -0.08608872348188663, -0.06820450914352941, -0.04371385660427581, -0.015035939857270645, 0.015008517678741054, 0.04347511296097037, 0.06758477221746269, 0.08499548692526972, 0.09403016486169909, 0.09383839451865704, 0.0844764981777877, 0.06689833728082602, 0.042858131617524824, 0.01473519270412134, -0.014701897980660185, -0.04256826027949841, -0.06614588176202704, -0.08314914160796048, -0.09194671198105558, -0.09171826055917397, -0.08253088272902195, -0.06532814824381829, -0.041833265165297305, -0.014376292477238066, 0.014337256607907939, 0.04149341012229149, 0.06444594373045556, 0.08097464461595402, 0.08950038743467985, 0.0892361565273513, 0.08025955559089856, 0.06350013885128421, 0.04064330192726327, 0.013960655591850418, -0.013916032633393773, -0.04025480443186782, -0.06249166700153106, -0.07848057769544463, -0.08670084574793707, -0.0864018781538372, -0.07767148065396103, -0.06142152342115803, -0.03929293814468077, -0.013489922376858593, 0.013439888435706166, 0.03885733141902236, 0.06029076421267848, 0.07567678378913674, 0.08355913543287584, 0.08322661104051325, 0.07477687186760644, 0.059100505298913406, 0.03778750308647708, 0.012965950601204607, -0.012910703138463793, -0.03730650627129212, -0.057851921321708556, -0.07257432819064695, -0.08008765538479883, -0.07972288651603421, -0.0715871529302936, -0.056546244482706516, -0.03613293801705911, -0.012390808142107043, 0.012330565194273115, 0.035608449387030595, 0.055184763327310676, 0.0691854548748454, 0.07630010594948737, 0.07590453218039875, 0.06811491220542412, 0.05376882147304818, 0.03433577274885697, 0.011766764824094353, -0.01170176414256003, -0.03376986222099155, -0.05229981628358007, -0.06552353817648056, -0.07221143485419594, -0.07178661733372939, -0.06437385304082315, -0.050779197489673605, -0.03240309987213752, -0.011096283461044461, 0.011026781573803768, 0.03179800083674874, 0.04920846575849144, 0.061603030007790285, 0.06783777821580149, 0.06738539350462966, 0.060378739687886, 0.04758917121261591, 0.030342546763790938, 0.010382010136583533, -0.01030828133583302, -0.029700647270328055, -0.045922911900263645, -0.05743940282340664, -0.06319639685892217, -0.06271823031282513, -0.05614533903382312, -0.04421133221820632, -0.028162245485558728, -0.009626763761202778, 0.00954909902083552, 0.02748607881806643, 0.04245612128894828, 0.053049088557646014, 0.05830560819532807, 0.05780354691920973, 0.05169035837695919, 0.040659011293767845, 0.025870800690501117, 0.008833524947306564, -0.008752230774571148, -0.025163035369904847, -0.03882177576326224, -0.048449413775171576, -0.053184713933485624, -0.052660739333832876, -0.04703137949065987, -0.036946227827088236, -0.023477255664362675, -0.008005424246097003, 0.00792082147195344, 0.022740684917035597, 0.03503421842462089, 0.04365853129095824, 0.04785392390353228, 0.047310103868708715, 0.04218678923610438, 0.03308763447830102, 0.020991056635854856, 0.007145729792718545, -0.007058152305665048, -0.02022858737002951, -0.031108397031469462, -0.03869534852942514, -0.0423342762983099, -0.041772757037545225, -0.03717570699774465, -0.029098459352530248, -0.01842201549670688, -0.0062578344084216345, 0.006167627836789258, 0.017636656830236408, 0.02705980500730956, 0.03357945290546958, 0.03664755464522924, 0.036070552218511936, 0.03201790922782983, 0.024994445901516598, 0.01578027107861173, 0.005345242210647282, -0.0052527625585627935, -0.014975122463356437, -0.022904420295234772, -0.028331034521888898, -0.030816201836638975, -0.030225993408939986, -0.02673375139778408, -0.020791790791405813, -0.013076249139889388, -0.004411554783876383, 0.004317167026276626, 0.012254488129596284, 0.018658642300288984, 0.02297080648826884, 0.024863231557982965, 0.02426214641232582, 0.02134408766446054, 0.01650707998190703, 0.010320621219781891, 0.003460456965821194, -0.003364533608063752, -0.0094854909297317, -0.014339227168506778, -0.017519923175802813, -0.018812137463297605, -0.01820254780814253, -0.015870188568311475, -0.012157223269087145, -0.0075242625227632445, -0.0024957023050543145, 0.0023986219128090415, 0.006679058830676061, 0.00996322165806023, 0.01199989673065344, 0.012686800456492706, 0.01207111206371358, 0.010333657088282778, 0.007759387550131178, 0.004698208999075819, 0.0015210982474673142, -0.0014232439526905905, -0.003846267537787474, -0.005547895863492327, -0.0064325121753395186, -0.006511394444333831, -0.005892037154735681, -0.0047563433847254855, -0.0033309290734418167, -0.0018536137908765646, -0.0005404911100212481, 0.00044224909890918225, 0.0009982967841197325, 0.0011106750585437464, 0.0008397414332048089, 0.0003102909330763294, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "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.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -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": "#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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "x" } }, "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": "#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": "#00d539", "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": "-" } }, "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": [ "error_amp_exp.compiled_program.render(\n", " channel_subplots=False, sweep_index=(2, 4), lo_frequency=4.9e9, sample_rate=5.0e9\n", ")" ] }, { "cell_type": "raw", "id": "4ca2f998", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "To execute this experiment, we can simply run" ] }, { "cell_type": "code", "execution_count": 9, "id": "36e4a6e2", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:51.107899Z", "iopub.status.busy": "2025-06-13T13:18:51.107567Z", "iopub.status.idle": "2025-06-13T13:18:51.189618Z", "shell.execute_reply": "2025-06-13T13:18:51.188767Z" } }, "outputs": [], "source": [ "if run_on_hw:\n", " error_amp_exp.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " error_amp_exp = qcs.load(\"ErrorAmplification.qcs\")" ] }, { "cell_type": "raw", "id": "5f1c0767", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "..note::\n", " For the purposes of this demonstration, we added a second \"ancilla\" qubit to the\n", " ErrorAmplification program and connected the physical output channels for our qubit\n", " to the digizer associated with the ancilla to allow us to capture the full pulse\n", " sequence." ] }, { "cell_type": "code", "execution_count": 10, "id": "ec8e5c3b", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:51.193245Z", "iopub.status.busy": "2025-06-13T13:18:51.192877Z", "iopub.status.idle": "2025-06-13T13:18:51.212386Z", "shell.execute_reply": "2025-06-13T13:18:51.211640Z" }, "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", "\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", "
Durationundefined
Layers1
Targets2
Repetitions\n", " Sweep with 5 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
pulse_pair_sequenceArray(name=pairs, shape=(5, 8), dtype=float, unit=none, value=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1]])
\n", " Sweep with 5 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
angleArray(name=angles, shape=(5, 1), dtype=float, unit=none, value=[[0.6283], [2.04204], [3.45575], [4.86947], [6.28319]])
\n", " Repeat with 1 repetitions\n", "
\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", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " PGATE\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=_implicit, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\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", " Measure on ('qudits', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " ancilla\n", " \n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('ancilla', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\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": [ "error_amp_exp.draw()" ] }, { "cell_type": "raw", "id": "0de4edcd", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "The compiled program in the waveform level is as follows:" ] }, { "cell_type": "code", "execution_count": 11, "id": "de66eaa8", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:51.215561Z", "iopub.status.busy": "2025-06-13T13:18:51.215255Z", "iopub.status.idle": "2025-06-13T13:18:51.261769Z", "shell.execute_reply": "2025-06-13T13:18:51.260900Z" } }, "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", " \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", "
Duration595 ns
Layers1
Targets4
Repetitions\n", " Sweep with 5 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
pulse_pair_sequenceArray(name=pairs, shape=(5, 8), dtype=float, unit=none, value=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1]])
\n", " Sweep with 5 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
angleArray(name=angles, shape=(5, 1), dtype=float, unit=none, value=[[0.6283], [2.04204], [3.45575], [4.86947], [6.28319]])
\n", " Repeat with 1 repetitions\n", "
\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", "
Duration595 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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", " RFWaveform on ('xy_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=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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 ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationMax(Scalar(name=_implicit, value=355 ns, dtype=float, unit=s), Scalar(name=_implicit, value=355 ns, dtype=float, unit=s))
\n", "
\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", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=240 ns, dtype=float, unit=s)
\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", "
DurationScalarRef(name=readout_pulse_delay, 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", "\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=readout_pulse_phases, 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=255 ns, 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", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=240 ns, dtype=float, unit=s)
\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", "
DurationScalarRef(name=acquisition_delay, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\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=350 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=350 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=4.96308e-24 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", "
DurationScalar(name=_implicit, value=350 ns, dtype=float, unit=s)
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " DCWaveform \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", "
DurationScalar(name=_implicit, value=350 ns, dtype=float, unit=s)
Amplitude1
Frequency0 Hz
EnvelopeConstantEnvelope()
Instantaneous Phase0
Post-phase0
\n", "
\n", "\n", "
\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": [ "error_amp_exp.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "7e661f63", "metadata": { "lines_to_next_cell": 0, "raw_mimetype": "text/restructuredtext" }, "source": [ "We can visualize the generated pulses directly with the following command:" ] }, { "cell_type": "code", "execution_count": 12, "id": "fe90c2b6", "metadata": { "execution": { "iopub.execute_input": "2025-06-13T13:18:51.265115Z", "iopub.status.busy": "2025-06-13T13:18:51.264803Z", "iopub.status.idle": "2025-06-13T13:18:51.882852Z", "shell.execute_reply": "2025-06-13T13:18:51.881852Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){0}', '(angle, [0.6283])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.003076171735301614, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.003076171735301614, -0.002197265625, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0010986328125, -0.0035156249068677425, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0032958984375, -0.0041748047806322575, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, 0.0004394531133584678, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.003955077845603228, -0.0024169920943677425, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0006591796409338713, -0.003076171735301614, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, 0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0032958984375, -0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.0032958984375, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0035156249068677425, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, 0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.0024169920943677425, -0.0035156249068677425, -0.0032958984375, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0002197265566792339, 0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0035156249068677425, -0.003076171735301614, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.003076171735301614, -0.0035156249068677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0035156249068677425, -0.003076171735301614, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.0004394531133584678, -0.0028564452659338713, -0.003955077845603228, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.003076171735301614, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, 0.0002197265566792339, -0.003076171735301614, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.0017578124534338713, -0.0035156249068677425, -0.0035156249068677425, -0.001977538922801614, -0.0035156249068677425, -0.0032958984375, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.003955077845603228, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, 0.0002197265566792339, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.003955077845603228, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.003076171735301614, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.003735351376235485, -0.001977538922801614, -0.0024169920943677425, -0.0032958984375, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0032958984375, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0032958984375, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, -0.001538085867650807, -0.003735351376235485, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.0035156249068677425, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0032958984375, -0.0006591796409338713, 0.0002197265566792339, -0.0002197265566792339, -0.0010986328125, -0.001538085867650807, -0.003076171735301614, -0.002636718563735485, -0.0035156249068677425, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.0006591796409338713, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.0028564452659338713, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, 0.0, 0.0, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0035156249068677425, -0.003735351376235485, -0.0035156249068677425, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.003955077845603228, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.003076171735301614, -0.003955077845603228, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, 0.0004394531133584678, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, 0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, 0.0, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.003076171735301614, -0.0008789062267169356, 0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, 0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0002197265566792339, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.003955077845603228, -0.0010986328125, 0.0, -0.0035156249068677425, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.002636718563735485, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.0032958984375, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.003955077845603228, -0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.003735351376235485, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.0032958984375, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.0028564452659338713, -0.0002197265566792339, -0.0008789062267169356, 0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, 0.0, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, 0.0, -0.0032958984375, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0032958984375, -0.0028564452659338713, -0.0004394531133584678, -0.003735351376235485, -0.0008789062267169356, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.003955077845603228, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, 0.0, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, 0.0004394531133584678, -0.0017578124534338713, -0.0002197265566792339, -0.003955077845603228, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, 0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, 0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.001538085867650807, 0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.003076171735301614, -0.0008789062267169356, 0.0, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, 0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, 0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0002197265566792339, -0.0032958984375, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0035156249068677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, 0.0, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0004394531133584678, 0.0, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, 0.0002197265566792339, -0.002636718563735485, -0.0032958984375, -0.0024169920943677425, -0.0002197265566792339, 0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.0028564452659338713, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.0035156249068677425, -0.0028564452659338713, -0.001538085867650807, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.001977538922801614, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0004394531133584678, -0.001977538922801614, -0.0004394531133584678, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0032958984375, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, 0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.0035156249068677425, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0004394531133584678, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.003076171735301614, -0.0035156249068677425, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.0032958984375, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.0006591796409338713, 0.0, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0032958984375, -0.0002197265566792339, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, 0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.0032958984375, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.0032958984375, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.0002197265566792339, -0.0035156249068677425, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, 0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, 0.0, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.003076171735301614, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, -0.003076171735301614, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0032958984375, -0.0041748047806322575, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0035156249068677425, -0.002636718563735485, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0035156249068677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, 0.0, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, 0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, 0.0, -0.003735351376235485, -0.0010986328125, -0.0013183592818677425, -0.002197265625, 0.0002197265566792339, -0.001538085867650807, -0.0035156249068677425, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, 0.0006591796409338713, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, 0.0002197265566792339, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.0032958984375, -0.0024169920943677425, -0.003076171735301614, -0.0006591796409338713, -0.0024169920943677425, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){0}', '(angle, [2.0420352248])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0002197265566792339, -0.001977538922801614, -0.001977538922801614, -0.0035156249068677425, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, 0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.0032958984375, -0.003076171735301614, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.003735351376235485, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, 0.0, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0035156249068677425, -0.0024169920943677425, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, 0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.002197265625, -0.0032958984375, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0002197265566792339, -0.003076171735301614, -0.0017578124534338713, -0.0035156249068677425, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.0032958984375, 0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, 0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.0046142577193677425, -0.003735351376235485, -0.0032958984375, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.003955077845603228, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.003735351376235485, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, 0.0, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0035156249068677425, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.0006591796409338713, -0.001538085867650807, -0.003735351376235485, -0.0017578124534338713, 0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.0035156249068677425, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.002197265625, 0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.0002197265566792339, -0.0041748047806322575, -0.0004394531133584678, -0.0006591796409338713, -0.002636718563735485, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.003735351376235485, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.003955077845603228, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.003735351376235485, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.0010986328125, -0.003955077845603228, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0035156249068677425, -0.0013183592818677425, -0.0024169920943677425, -0.003955077845603228, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.003076171735301614, -0.0008789062267169356, -0.003735351376235485, -0.0028564452659338713, -0.0002197265566792339, 0.0002197265566792339, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0032958984375, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0032958984375, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.0010986328125, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.003735351376235485, -0.0035156249068677425, -0.0028564452659338713, -0.0004394531133584678, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.003735351376235485, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.003955077845603228, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0035156249068677425, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.003955077845603228, -0.0035156249068677425, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, 0.0002197265566792339, -0.0008789062267169356, -0.0024169920943677425, 0.0002197265566792339, -0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, 0.0002197265566792339, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.0004394531133584678, 0.0008789062267169356, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.0004394531133584678, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.001977538922801614, -0.003735351376235485, -0.0032958984375, -0.0035156249068677425, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, 0.0002197265566792339, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.0002197265566792339, 0.0, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0010986328125, 0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, 0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, 0.0002197265566792339, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0006591796409338713, 0.0, 0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, 0.0, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.003735351376235485, -0.003735351376235485, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, 0.0006591796409338713, 0.0004394531133584678, -0.0008789062267169356, 0.0, -0.0004394531133584678, 0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, 0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.003076171735301614, -0.0032958984375, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.003735351376235485, 0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.003735351376235485, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.003735351376235485, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0035156249068677425, -0.00439453125, -0.0008789062267169356, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0035156249068677425, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, 0.0002197265566792339, 0.0004394531133584678, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, 0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.003955077845603228, -0.0032958984375, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.0032958984375, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.003735351376235485, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.003735351376235485, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0032958984375, -0.0035156249068677425, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0032958984375, -0.0013183592818677425, -0.0035156249068677425, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, 0.0, -0.001538085867650807, -0.002636718563735485, -0.005053710658103228, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, 0.0, -0.0032958984375, -0.0010986328125, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, 0.0002197265566792339, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0006591796409338713, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, 0.0002197265566792339, 0.0, -0.002197265625, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.003076171735301614, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0002197265566792339, -0.0035156249068677425, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0028564452659338713, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.003735351376235485, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.003735351376235485, -0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, 0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.003076171735301614, 0.0, -0.0006591796409338713, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, 0.0, -0.0028564452659338713, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0008789062267169356, 0.0004394531133584678, -0.0032958984375, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0002197265566792339, -0.0013183592818677425, -0.0046142577193677425, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.003735351376235485, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, 0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.0032958984375, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.003076171735301614, -0.001977538922801614, 0.0010986328125, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, 0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, 0.0, 0.0, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.002636718563735485, -0.0046142577193677425, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, 0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, 0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.003955077845603228, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.003076171735301614, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.0032958984375, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, 0.0, -0.002197265625, -0.003076171735301614, -0.002197265625, 0.0, -0.0028564452659338713, -0.003076171735301614, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, 0.0, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0032958984375, -0.0017578124534338713, -0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0035156249068677425, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.0024169920943677425, -0.0008789062267169356, -0.0032958984375, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.002197265625, 0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0032958984375, -0.0006591796409338713, -0.0024169920943677425, -0.003955077845603228, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, 0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, 0.0, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0041748047806322575, -0.001538085867650807, 0.0, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0032958984375, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, 0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, 0.0, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){0}', '(angle, [3.4557519189])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0032958984375, -0.0006591796409338713, -0.0002197265566792339, 0.0002197265566792339, -0.0010986328125, 0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, 0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0002197265566792339, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0035156249068677425, -0.0017578124534338713, -0.0004394531133584678, -0.0032958984375, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.003735351376235485, -0.0028564452659338713, -0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.002636718563735485, 0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.003735351376235485, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, 0.0, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.0035156249068677425, -0.0032958984375, -0.0032958984375, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.003076171735301614, -0.0017578124534338713, 0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0028564452659338713, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.003735351376235485, -0.0010986328125, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.003076171735301614, -0.0002197265566792339, -0.0010986328125, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.003955077845603228, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.0002197265566792339, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.003076171735301614, -0.003076171735301614, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0032958984375, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, 0.0, 0.0, -0.0013183592818677425, -0.001977538922801614, -0.0032958984375, -0.003735351376235485, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.0013183592818677425, -0.003955077845603228, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0028564452659338713, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, 0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.003076171735301614, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, 0.0, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, 0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.003735351376235485, -0.0032958984375, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, 0.0, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.003955077845603228, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.0028564452659338713, -0.003735351376235485, -0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, 0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.002197265625, -0.002197265625, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.003076171735301614, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0013183592818677425, 0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, 0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0010986328125, 0.0002197265566792339, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, 0.0002197265566792339, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, 0.0, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, 0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.001977538922801614, 0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.002197265625, 0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, 0.0, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, -0.003735351376235485, -0.0013183592818677425, 0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0035156249068677425, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0035156249068677425, -0.001538085867650807, -0.0004394531133584678, -0.0004394531133584678, -0.0032958984375, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, 0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.003955077845603228, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0035156249068677425, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.0032958984375, -0.0024169920943677425, -0.003735351376235485, -0.003735351376235485, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0035156249068677425, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.0032958984375, -0.0032958984375, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339, -0.0028564452659338713, -0.003735351376235485, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0024169920943677425, -0.003735351376235485, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.0046142577193677425, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.0041748047806322575, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0013183592818677425, 0.0, 0.0, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0028564452659338713, -0.0004394531133584678, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.002197265625, -0.00439453125, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.003955077845603228, -0.0013183592818677425, -0.0006591796409338713, -0.0035156249068677425, -0.002197265625, 0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, 0.0, -0.0008789062267169356, -0.003735351376235485, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.0028564452659338713, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.003076171735301614, -0.003076171735301614, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.003076171735301614, -0.0010986328125, -0.002197265625, -0.0035156249068677425, -0.0024169920943677425, -0.0041748047806322575, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0035156249068677425, -0.0041748047806322575, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0041748047806322575, -0.002636718563735485, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.0032958984375, -0.0041748047806322575, -0.001977538922801614, -0.0002197265566792339, 0.0002197265566792339, 0.0, -0.001538085867650807, -0.0032958984375, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, 0.0, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, 0.0, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, 0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.0035156249068677425, -0.0013183592818677425, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0002197265566792339, -0.003735351376235485, -0.0041748047806322575, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.003735351376235485, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0035156249068677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.0032958984375, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0035156249068677425, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0032958984375, -0.0024169920943677425, -0.0024169920943677425, -0.0035156249068677425, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.0035156249068677425, -0.0017578124534338713, -0.0046142577193677425, -0.002636718563735485, -0.0028564452659338713, -0.0032958984375, -0.0006591796409338713, -0.0035156249068677425, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0032958984375, -0.003735351376235485, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.0032958984375, -0.002636718563735485, -0.0028564452659338713, -0.0035156249068677425, -0.0032958984375, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, -0.003735351376235485, -0.0035156249068677425, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.0032958984375, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.003735351376235485, -0.002197265625, -0.001977538922801614, -0.0035156249068677425, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0010986328125, 0.0, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.003955077845603228, -0.003955077845603228, -0.0028564452659338713, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.002636718563735485, -0.0032958984375, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.003735351376235485, -0.0013183592818677425, -0.0035156249068677425, -0.0024169920943677425, -0.0041748047806322575, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.0002197265566792339, -0.003076171735301614, -0.002636718563735485, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.0035156249068677425, -0.003076171735301614, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0041748047806322575, -0.003955077845603228, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.003076171735301614, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0002197265566792339, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.003076171735301614, -0.0002197265566792339, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.003076171735301614, -0.003955077845603228, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0032958984375, -0.0010986328125, -0.0002197265566792339, -0.002197265625, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0028564452659338713, -0.0008789062267169356, 0.0, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0032958984375, -0.0024169920943677425, -0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0028564452659338713, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.00439453125, -0.003955077845603228, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, 0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){0}', '(angle, [4.8694686131])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.0010986328125, 0.0002197265566792339, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.0028564452659338713, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0006591796409338713, 0.0, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, 0.0, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0032958984375, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, 0.0, 0.0, 0.0002197265566792339, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, 0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0008789062267169356, -0.0028564452659338713, 0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, 0.0010986328125, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0035156249068677425, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, 0.0, -0.0004394531133584678, 0.0008789062267169356, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, 0.0, 0.0, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.003735351376235485, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, 0.0, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, 0.0002197265566792339, -0.0004394531133584678, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, 0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0010986328125, 0.0, -0.0010986328125, 0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, 0.0002197265566792339, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0002197265566792339, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, 0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0035156249068677425, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0028564452659338713, -0.002636718563735485, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.0032958984375, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, 0.0, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, 0.0004394531133584678, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0010986328125, 0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0035156249068677425, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0035156249068677425, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0024169920943677425, -0.001538085867650807, 0.0004394531133584678, -0.003076171735301614, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0032958984375, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, -0.0010986328125, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, 0.0, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.002197265625, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.003076171735301614, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.0032958984375, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, 0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, 0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.0032958984375, -0.0032958984375, -0.0002197265566792339, -0.0008789062267169356, 0.0, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.0035156249068677425, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, 0.0006591796409338713, -0.0004394531133584678, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.002197265625, 0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0008789062267169356, -0.003076171735301614, -0.003955077845603228, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, 0.0, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.003955077845603228, -0.002197265625, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, 0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0006591796409338713, 0.0, 0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0032958984375, -0.0006591796409338713, -0.0017578124534338713, 0.0, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0032958984375, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, 0.0, -0.0002197265566792339, -0.003955077845603228, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, 0.0, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, -0.0028564452659338713, -0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, 0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0041748047806322575, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.003955077845603228, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.002197265625, -0.002197265625, -0.001538085867650807, 0.0002197265566792339, -0.0002197265566792339, -0.002197265625, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0028564452659338713, -0.0035156249068677425, -0.002197265625, -0.001977538922801614, -0.003955077845603228, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0035156249068677425, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.001538085867650807, 0.0006591796409338713, 0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, 0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0032958984375, -0.0035156249068677425, -0.0024169920943677425, -0.0024169920943677425, -0.003735351376235485, -0.002197265625, -0.002197265625, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.003735351376235485, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, 0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0032958984375, -0.003735351376235485, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, 0.0004394531133584678, -0.0008789062267169356, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, 0.0, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0035156249068677425, -0.003735351376235485, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.0002197265566792339, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0002197265566792339, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.003955077845603228, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.0032958984375, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0008789062267169356, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, 0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, 0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, 0.0002197265566792339, -0.0008789062267169356, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, -0.0035156249068677425, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.0002197265566792339, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0002197265566792339, -0.0004394531133584678, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.003735351376235485, -0.0032958984375, -0.0008789062267169356, -0.001538085867650807, 0.0, -0.0024169920943677425, -0.0028564452659338713, 0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, 0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.003735351376235485, -0.0035156249068677425, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0032958984375, -0.0028564452659338713, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, 0.0, -0.001977538922801614, -0.001538085867650807, 0.0006591796409338713, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.002197265625, -0.003955077845603228, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.003076171735301614, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, 0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0010986328125, 0.0, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, -0.002197265625, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0035156249068677425, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.003076171735301614, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){0}', '(angle, [6.2831853072])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.003076171735301614, -0.0017578124534338713, -0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, 0.0002197265566792339, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, 0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0041748047806322575, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.003735351376235485, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, 0.0, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, 0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0004394531133584678, -0.001977538922801614, 0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, 0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, 0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.0006591796409338713, -0.0004394531133584678, -0.003076171735301614, 0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.002197265625, 0.0, 0.0, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, 0.0, -0.0008789062267169356, -0.0035156249068677425, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, 0.0, 0.0002197265566792339, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, 0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.003735351376235485, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, 0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.003076171735301614, -0.0006591796409338713, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.0035156249068677425, -0.001977538922801614, 0.0, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, 0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, 0.0, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.003076171735301614, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, 0.0002197265566792339, -0.0008789062267169356, -0.0032958984375, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, 0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, 0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, 0.0, -0.0013183592818677425, -0.0035156249068677425, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, 0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, 0.0, -0.0010986328125, -0.0008789062267169356, 0.0, -0.0004394531133584678, 0.0002197265566792339, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, 0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0004394531133584678, 0.0, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0035156249068677425, -0.003955077845603228, -0.0032958984375, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0004394531133584678, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.003735351376235485, -0.002197265625, -0.0006591796409338713, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0008789062267169356, -0.003735351376235485, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, 0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, 0.0002197265566792339, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0017578124534338713, 0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, 0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.0004394531133584678, -0.0002197265566792339, -0.00439453125, -0.0035156249068677425, -0.003076171735301614, -0.0041748047806322575, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.003955077845603228, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.002197265625, 0.0, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, 0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.00439453125, -0.0035156249068677425, 0.0, -0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.0028564452659338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, -0.0010986328125, -0.002636718563735485, -0.003076171735301614, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, 0.0004394531133584678, -0.0013183592818677425, 0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.003735351376235485, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, 0.0006591796409338713, 0.0, 0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0002197265566792339, 0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, 0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, 0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, 0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0032958984375, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, 0.0008789062267169356, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0006591796409338713, 0.0004394531133584678, -0.001538085867650807, 0.0, -0.002636718563735485, -0.0028564452659338713, -0.0035156249068677425, -0.0008789062267169356, 0.0002197265566792339, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0035156249068677425, 0.0, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, 0.0, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.0004394531133584678, -0.0002197265566792339, -0.002636718563735485, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.001538085867650807, 0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0035156249068677425, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.003955077845603228, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, 0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.003735351376235485, -0.0028564452659338713, -0.0010986328125, -0.003735351376235485, -0.001977538922801614, -0.0010986328125, -0.0035156249068677425, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0032958984375, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0002197265566792339, -0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.0032958984375, -0.0028564452659338713, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.0032958984375, -0.0035156249068677425, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, 0.0, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.00439453125, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0032958984375, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.0035156249068677425, -0.0004394531133584678, 0.0004394531133584678, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0032958984375, -0.0035156249068677425, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.002197265625, 0.0004394531133584678, -0.002636718563735485, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, 0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0004394531133584678, 0.0002197265566792339, -0.0032958984375, -0.002197265625, -0.0035156249068677425, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.003076171735301614, -0.0002197265566792339, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0004394531133584678, -0.0028564452659338713, 0.0, -0.001538085867650807, -0.003076171735301614, 0.0006591796409338713, 0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, 0.0, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.0002197265566792339, -0.0008789062267169356, 0.0002197265566792339, 0.0002197265566792339, -0.003076171735301614, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, 0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0002197265566792339, 0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, 0.0002197265566792339, -0.0006591796409338713, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.003076171735301614, -0.0017578124534338713, 0.0004394531133584678, -0.0035156249068677425, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, 0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, 0.0002197265566792339, 0.0002197265566792339, -0.002197265625, 0.0004394531133584678, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, 0.0, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, 0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.0006591796409338713, -0.0028564452659338713, -0.0010986328125, 0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0035156249068677425, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, 0.001538085867650807, -0.0006591796409338713, -0.003076171735301614, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.002636718563735485, -0.0008789062267169356, -0.0006591796409338713, -0.003955077845603228, -0.003955077845603228, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, 0.0, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.0032958984375, -0.0004394531133584678, -0.003076171735301614, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, 0.0002197265566792339, 0.0, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){1}', '(angle, [0.6283])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, 0.0, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.0028564452659338713, -0.003735351376235485, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0032958984375, -0.002197265625, -0.0002197265566792339, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, 0.0, -0.0028564452659338713, -0.001538085867650807, -0.0035156249068677425, -0.0035156249068677425, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0035156249068677425, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, 0.0002197265566792339, -0.0032958984375, -0.0032958984375, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, 0.0, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0035156249068677425, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.003735351376235485, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.003735351376235485, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, 0.0, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.003076171735301614, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, 0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.0032958984375, -0.002636718563735485, -0.0035156249068677425, -0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0032958984375, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0002197265566792339, -0.003955077845603228, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.002197265625, 0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.0035156249068677425, -0.002197265625, -0.003735351376235485, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.003735351376235485, -0.002197265625, -0.0008789062267169356, 0.0, 0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, 0.0, -0.001977538922801614, -0.0032958984375, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.003735351376235485, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0035156249068677425, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.0008789062267169356, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.003076171735301614, -0.001977538922801614, -0.0006591796409338713, 0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, 0.0, -0.002197265625, -0.0017578124534338713, -0.0041748047806322575, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, 0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, 0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, 0.0, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.0035156249068677425, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.0004394531133584678, -0.003076171735301614, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.003076171735301614, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, 0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0035156249068677425, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, 0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0035156249068677425, -0.003076171735301614, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, 0.0, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0028564452659338713, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, 0.0004394531133584678, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.0032958984375, -0.0024169920943677425, -0.0006591796409338713, 0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, 0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, 0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, 0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.0032958984375, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.002197265625, -0.0035156249068677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, 0.0006591796409338713, 0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.0002197265566792339, -0.0028564452659338713, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, 0.0, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0002197265566792339, -0.0008789062267169356, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0041748047806322575, -0.0028564452659338713, -0.002636718563735485, -0.0035156249068677425, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.004833984188735485, -0.003735351376235485, -0.006152343470603228, -0.00637206993997097, -0.008129882626235485, -0.009448242373764515, -0.0087890625, -0.009228515438735485, -0.0098876953125, -0.012304686941206455, -0.011425781063735485, -0.012304686941206455, -0.010327148251235485, -0.011206054128706455, -0.011425781063735485, -0.009448242373764515, -0.00966796837747097, -0.00527343712747097, -0.003735351376235485, -0.0032958984375, 0.0002197265566792339, 0.0041748047806322575, 0.0054931640625, 0.009228515438735485, 0.01274413987994194, 0.0142822265625, 0.01801757700741291, 0.01999511756002903, 0.02109374850988388, 0.02329101413488388, 0.02614746056497097, 0.02768554538488388, 0.02768554538488388, 0.028564453125, 0.02878417819738388, 0.02680663950741291, 0.02548827975988388, 0.02241210825741291, 0.02021484263241291, 0.01691894419491291, 0.01406249962747097, 0.009008788503706455, 0.0032958984375, -0.0032958984375, -0.007031249813735485, -0.00966796837747097, -0.01779785193502903, -0.02351074106991291, -0.02614746056497097, -0.03361816331744194, -0.0384521484375, -0.041748046875, -0.0450439453125, -0.04570312425494194, -0.04746093600988388, -0.05097655951976776, -0.05075683444738388, -0.04768066108226776, -0.04658202826976776, -0.04548339545726776, -0.0406494140625, -0.0384521484375, -0.03361816331744194, -0.02614746056497097, -0.0208740234375, -0.01604003831744194, -0.009448242373764515, -0.0017578124534338713, 0.003735351376235485, 0.01164550706744194, 0.01625976525247097, 0.02329101413488388, 0.02790527231991291, 0.03208007663488388, 0.03515625, 0.03999023512005806, 0.04328612983226776, 0.04372558370232582, 0.0450439453125, 0.04526367038488388, 0.04416503757238388, 0.04240722581744194, 0.03977050632238388, 0.03537597507238388, 0.03273925557732582, 0.028564453125, 0.02351074106991291, 0.01933593675494194, 0.013403319753706455, 0.009228515438735485, 0.004833984188735485, -0.001538085867650807, -0.005053710658103228, -0.00966796837747097, -0.0142822265625, -0.01911620981991291, -0.02263183519244194, -0.02241210825741291, -0.0274658203125, -0.0296630859375, -0.02812499925494194, -0.028564453125, -0.02834472618997097, -0.02878417819738388, -0.02614746056497097, -0.02504882775247097, -0.02153320237994194, -0.019775390625, -0.017578125, -0.01582031138241291, -0.012304686941206455, -0.01054687425494194, -0.007250976283103228, -0.00439453125, -0.0028564452659338713, -0.0013183592818677425, 0.0024169920943677425, 0.002197265625, 0.003076171735301614, 0.00527343712747097, 0.005932617001235485, 0.005932617001235485, 0.005053710658103228, 0.004833984188735485, 0.0054931640625, 0.004833984188735485, 0.00527343712747097, 0.0024169920943677425, 0.002636718563735485, 0.0032958984375, 0.001977538922801614, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.0035156249068677425, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.005932617001235485, -0.0057128905318677425, -0.004833984188735485, -0.00439453125, -0.00747070275247097, -0.008349609561264515, -0.00966796837747097, -0.009228515438735485, -0.01054687425494194, -0.01186523400247097, -0.00966796837747097, -0.01076660118997097, -0.011425781063735485, -0.0087890625, -0.01054687425494194, -0.00747070275247097, -0.006152343470603228, -0.0046142577193677425, -0.001538085867650807, 0.001538085867650807, 0.003955077845603228, 0.0068115233443677425, 0.008129882626235485, 0.01186523400247097, 0.0142822265625, 0.01713867112994194, 0.01955566368997097, 0.02197265625, 0.02548827975988388, 0.02702636644244194, 0.028564453125, 0.02834472618997097, 0.02812499925494194, 0.0274658203125, 0.02702636644244194, 0.0263671875, 0.02263183519244194, 0.02153320237994194, 0.01735839806497097, 0.01164550706744194, 0.009228515438735485, 0.0046142577193677425, 0.0002197265566792339, -0.0046142577193677425, -0.01164550706744194, -0.01625976525247097, -0.02131347544491291, -0.02900390513241291, -0.03317870944738388, -0.03757324069738388, -0.04152831807732582, -0.0439453125, -0.04680175706744194, -0.050537109375, -0.05097655951976776, -0.04921874776482582, -0.04790038987994194, -0.04768066108226776, -0.04680175706744194, -0.04108886793255806, -0.037353515625, -0.032958984375, -0.0274658203125, -0.02373046800494194, -0.0142822265625, -0.00966796837747097, -0.001538085867650807, 0.0057128905318677425, 0.010107421316206455, 0.017578125, 0.02153320237994194, 0.02834472618997097, 0.03317870944738388, 0.03669433668255806, 0.03933105245232582, 0.04262695088982582, 0.04306640475988388, 0.04218749701976776, 0.04306640475988388, 0.04306640475988388, 0.04108886793255806, 0.04020996019244194, 0.0362548828125, 0.03361816331744194, 0.02768554538488388, 0.02219238132238388, 0.0186767578125, 0.012524413876235485, 0.00856933556497097, 0.003076171735301614, -0.0013183592818677425, -0.005932617001235485, -0.01076660118997097, -0.01625976525247097, -0.017578125, -0.01955566368997097, -0.02131347544491291, -0.02570800669491291, -0.02922363206744194, -0.02878417819738388, -0.02790527231991291, -0.02790527231991291, -0.02790527231991291, -0.02680663950741291, -0.02460937388241291, -0.0230712890625, -0.02065429650247097, -0.01669921912252903, -0.01494140550494194, -0.013403319753706455, -0.01076660118997097, -0.007250976283103228, -0.0054931640625, -0.0024169920943677425, 0.0002197265566792339, 0.0002197265566792339, 0.001977538922801614, 0.003735351376235485, 0.0054931640625, 0.0076904296875, 0.005053710658103228, 0.004833984188735485, 0.005053710658103228, 0.00439453125, 0.003735351376235485, 0.0041748047806322575, 0.0035156249068677425, 0.0028564452659338713, 0.0017578124534338713, 0.0010986328125, 0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.003955077845603228, -0.0028564452659338713, -0.0024169920943677425, -0.003955077845603228, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.003735351376235485, -0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.003076171735301614, 0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0032958984375, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0032958984375, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, 0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, 0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, 0.0002197265566792339, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, 0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0032958984375, 0.0004394531133584678, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, 0.0, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.003076171735301614, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.003076171735301614, -0.0032958984375, -0.001977538922801614, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0006591796409338713, -0.0006591796409338713, -0.0004394531133584678, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, 0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, -0.0032958984375, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, 0.0, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, 0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.00439453125, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.003735351376235485, 0.0002197265566792339, -0.002636718563735485, -0.0013183592818677425, 0.0002197265566792339, -0.0008789062267169356, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.0002197265566792339, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.003735351376235485, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, 0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, 0.0002197265566792339, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.003076171735301614, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.002636718563735485, -0.0032958984375, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0032958984375, -0.0035156249068677425, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0035156249068677425, -0.0032958984375, -0.003076171735301614, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.0002197265566792339, 0.0, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.002636718563735485, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0035156249068677425, -0.003735351376235485, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){1}', '(angle, [2.0420352248])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.003955077845603228, -0.001538085867650807, -0.001538085867650807, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.003955077845603228, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.003955077845603228, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, 0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0006591796409338713, 0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0010986328125, 0.0002197265566792339, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.003955077845603228, -0.003735351376235485, -0.002197265625, 0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.0032958984375, -0.003735351376235485, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0004394531133584678, -0.0028564452659338713, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, 0.0, 0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, 0.0, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, 0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, 0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0028564452659338713, -0.001977538922801614, 0.0002197265566792339, -0.0002197265566792339, -0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.0002197265566792339, -0.002197265625, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, 0.0002197265566792339, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.003076171735301614, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, 0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.003735351376235485, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.003076171735301614, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, 0.0, -0.0008789062267169356, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, -0.002197265625, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.0032958984375, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0010986328125, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.0032958984375, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.0002197265566792339, -0.0002197265566792339, 0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0035156249068677425, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.003076171735301614, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0032958984375, -0.001538085867650807, -0.002636718563735485, -0.0032958984375, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.0032958984375, -0.0032958984375, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.003955077845603228, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0035156249068677425, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.003955077845603228, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.003076171735301614, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.003076171735301614, -0.0028564452659338713, -0.003076171735301614, -0.002197265625, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, 0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.003076171735301614, -0.003955077845603228, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.0008789062267169356, 0.0004394531133584678, 0.0002197265566792339, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0013183592818677425, 0.0, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0002197265566792339, 0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, 0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0010986328125, 0.0, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, 0.0, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0032958984375, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0041748047806322575, -0.001538085867650807, -0.0002197265566792339, 0.0, -0.0010986328125, -0.0013183592818677425, 0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.003735351376235485, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.002197265625, 0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, 0.0004394531133584678, -0.003076171735301614, -0.003955077845603228, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.003955077845603228, -0.0008789062267169356, -0.003076171735301614, -0.0008789062267169356, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0032958984375, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0028564452659338713, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0054931640625, -0.003955077845603228, -0.0076904296875, -0.01164550706744194, -0.0120849609375, -0.015380859375, -0.01955566368997097, -0.02065429650247097, -0.024169921875, -0.02482910081744194, -0.02922363206744194, -0.03032226487994194, -0.0318603515625, -0.03208007663488388, -0.03076171875, -0.03098144382238388, -0.02724609337747097, -0.02504882775247097, -0.02219238132238388, -0.01669921912252903, -0.008129882626235485, -0.0017578124534338713, 0.0054931640625, 0.0142822265625, 0.02285156212747097, 0.03208007663488388, 0.04086913913488388, 0.05075683444738388, 0.0604248046875, 0.06679687649011612, 0.07514648139476776, 0.0823974609375, 0.0867919921875, 0.09096679091453552, 0.09426268935203552, 0.094482421875, 0.09426268935203552, 0.08920898288488388, 0.08657225966453552, 0.07954101264476776, 0.06789550930261612, 0.05756835639476776, 0.04636230319738388, 0.03076171875, 0.01713867112994194, 0.001977538922801614, -0.0142822265625, -0.03339843824505806, -0.04877929389476776, -0.0692138671875, -0.08283691108226776, -0.09755858778953552, -0.11293944716453552, -0.12612304091453552, -0.13776855170726776, -0.1461181640625, -0.151611328125, -0.156005859375, -0.156005859375, -0.1505126953125, -0.14699706435203552, -0.13820800185203552, -0.12810058891773224, -0.11557617038488388, -0.09975585341453552, -0.08327636867761612, -0.06350097805261612, -0.0439453125, -0.02460937388241291, -0.003076171735301614, 0.01801757700741291, 0.037353515625, 0.05646972358226776, 0.0758056640625, 0.09228515625, 0.10832519084215164, 0.11909179389476776, 0.13095702230930328, 0.1395263671875, 0.1439208984375, 0.14677734673023224, 0.14545898139476776, 0.14523924887180328, 0.13820800185203552, 0.13095702230930328, 0.11997070163488388, 0.10898437350988388, 0.0933837890625, 0.0802001953125, 0.0648193359375, 0.04790038987994194, 0.02922363206744194, 0.015600585378706455, -0.001538085867650807, -0.01691894419491291, -0.02944335900247097, -0.04328612983226776, -0.05712890625, -0.06525878608226776, -0.07448730617761612, -0.07976073771715164, -0.08393554389476776, -0.08701171725988388, -0.08767089247703552, -0.08876952528953552, -0.085693359375, -0.08041992038488388, -0.07470703125, -0.06833495944738388, -0.06108398362994194, -0.05449218675494194, -0.04548339545726776, -0.0362548828125, -0.02900390513241291, -0.02263183519244194, -0.01406249962747097, -0.0068115233443677425, 0.0002197265566792339, 0.0054931640625, 0.0098876953125, 0.01582031138241291, 0.01911620981991291, 0.02373046800494194, 0.02065429650247097, 0.02043456956744194, 0.02197265625, 0.02109374850988388, 0.0186767578125, 0.01779785193502903, 0.0142822265625, 0.0142822265625, 0.0098876953125, 0.007031249813735485, 0.0057128905318677425, 0.005053710658103228, 0.0008789062267169356, -0.001977538922801614, 0.0002197265566792339, -0.002636718563735485, -0.0032958984375, -0.003955077845603228, -0.0035156249068677425, -0.005932617001235485, -0.0041748047806322575, -0.005932617001235485, -0.008129882626235485, -0.0087890625, -0.011425781063735485, -0.01384277269244194, -0.015380859375, -0.01823730394244194, -0.02065429650247097, -0.02460937388241291, -0.02548827975988388, -0.02900390513241291, -0.0318603515625, -0.03164062276482582, -0.03251953050494194, -0.03032226487994194, -0.02768554538488388, -0.02658691257238388, -0.024169921875, -0.019775390625, -0.01318359375, -0.009008788503706455, -0.0013183592818677425, 0.006591796875, 0.0142822265625, 0.02373046800494194, 0.03076171875, 0.03933105245232582, 0.05229492112994194, 0.0604248046875, 0.06591796875, 0.0758056640625, 0.08107910305261612, 0.08767089247703552, 0.09162597358226776, 0.09250488132238388, 0.09602050483226776, 0.09536132216453552, 0.08964843302965164, 0.08591308444738388, 0.07734374701976776, 0.0703125, 0.05778808519244194, 0.04658202826976776, 0.03229980543255806, 0.0186767578125, -0.0002197265566792339, -0.01713867112994194, -0.03317870944738388, -0.05031738057732582, -0.06789550930261612, -0.08305663615465164, -0.09953612834215164, -0.11249999701976776, -0.12656249105930328, -0.13710936903953552, -0.14479979872703552, -0.15139159560203552, -0.15446777641773224, -0.15644530951976776, -0.15249022841453552, -0.14699706435203552, -0.13930663466453552, -0.12832030653953552, -0.11491698771715164, -0.09821777045726776, -0.081298828125, -0.06284179538488388, -0.0406494140625, -0.0230712890625, -0.002197265625, 0.01779785193502903, 0.03911132737994194, 0.05734863132238388, 0.0758056640625, 0.09206542372703552, 0.10744628310203552, 0.12106933444738388, 0.1307373046875, 0.13710936903953552, 0.14304198324680328, 0.14677734673023224, 0.1461181640625, 0.1439208984375, 0.13864745199680328, 0.1307373046875, 0.11953124403953552, 0.10832519084215164, 0.09250488132238388, 0.07932128757238388, 0.0626220703125, 0.046142578125, 0.03032226487994194, 0.01494140550494194, -0.0013183592818677425, -0.017578125, -0.03251953050494194, -0.04372558370232582, -0.05756835639476776, -0.06613769382238388, -0.0736083984375, -0.07756347209215164, -0.08393554389476776, -0.08833007514476776, -0.08833007514476776, -0.08723144233226776, -0.08349609375, -0.08173827826976776, -0.07426757365465164, -0.06877440959215164, -0.0626220703125, -0.05515136569738388, -0.04702148213982582, -0.03801269456744194, -0.0296630859375, -0.02131347544491291, -0.0142822265625, -0.0068115233443677425, -0.0006591796409338713, 0.005932617001235485, 0.012524413876235485, 0.01669921912252903, 0.01779785193502903, 0.02065429650247097, 0.02219238132238388, 0.02285156212747097, 0.02285156212747097, 0.02065429650247097, 0.02043456956744194, 0.01823730394244194, 0.015380859375, 0.014721679501235485, 0.01076660118997097, 0.0076904296875, 0.005932617001235485, 0.0046142577193677425, 0.001977538922801614, 0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0054931640625, -0.0046142577193677425, -0.001977538922801614, -0.0041748047806322575, -0.0028564452659338713, -0.003735351376235485, -0.0032958984375, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, 0.0004394531133584678, 0.0, -0.0002197265566792339, -0.0006591796409338713, -0.002636718563735485, 0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, 0.0004394531133584678, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, 0.0002197265566792339, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, 0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, 0.0006591796409338713, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, 0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.001538085867650807, 0.0, 0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, 0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, 0.0004394531133584678, -0.001538085867650807, -0.0010986328125, 0.0, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, 0.0, 0.0, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0013183592818677425, -0.0035156249068677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, 0.0004394531133584678, 0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, 0.0, -0.0010986328125, -0.0004394531133584678, -0.0028564452659338713, -0.0024169920943677425, 0.0, -0.0013183592818677425, -0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, 0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, 0.0002197265566792339, 0.0, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.0035156249068677425, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.0010986328125, -0.0032958984375, -0.0024169920943677425, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0035156249068677425, -0.0024169920943677425, -0.0002197265566792339, -0.0028564452659338713, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.003735351376235485, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0010986328125, 0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, 0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0035156249068677425, -0.0013183592818677425, 0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, 0.0, -0.0010986328125, -0.003955077845603228, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.003735351376235485, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, 0.0010986328125, -0.0004394531133584678, -0.0028564452659338713, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, 0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.0028564452659338713, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.003735351376235485, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){1}', '(angle, [3.4557519189])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.0032958984375, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, 0.0, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0035156249068677425, -0.0032958984375, -0.00439453125, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0032958984375, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, 0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, 0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, 0.0002197265566792339, -0.0028564452659338713, -0.0028564452659338713, 0.0, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.003955077845603228, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.002636718563735485, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.003076171735301614, -0.0032958984375, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.003955077845603228, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.001977538922801614, -0.003735351376235485, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0028564452659338713, -0.001977538922801614, -0.0032958984375, -0.003735351376235485, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, 0.0002197265566792339, -0.002197265625, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.003735351376235485, -0.003076171735301614, -0.0024169920943677425, -0.0028564452659338713, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0032958984375, -0.0024169920943677425, -0.0035156249068677425, -0.0024169920943677425, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, 0.0008789062267169356, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.003955077845603228, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.003076171735301614, -0.0032958984375, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.0024169920943677425, -0.0032958984375, -0.003955077845603228, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0046142577193677425, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, 0.0008789062267169356, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, 0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.002636718563735485, -0.0035156249068677425, -0.0017578124534338713, -0.003735351376235485, -0.002636718563735485, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, 0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0041748047806322575, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.0010986328125, 0.0, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.0035156249068677425, -0.0035156249068677425, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, 0.0002197265566792339, -0.002636718563735485, -0.003076171735301614, 0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, -0.003735351376235485, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.003076171735301614, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.0004394531133584678, -0.0008789062267169356, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0035156249068677425, -0.0035156249068677425, -0.0032958984375, -0.0010986328125, -0.002197265625, -0.002197265625, 0.0, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.003076171735301614, -0.002197265625, 0.0004394531133584678, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, 0.0, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.003735351376235485, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, 0.0, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0035156249068677425, -0.002197265625, 0.0, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.003076171735301614, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.003076171735301614, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.0032958984375, -0.0010986328125, 0.0008789062267169356, 0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.003076171735301614, -0.0046142577193677425, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.003076171735301614, -0.003955077845603228, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, 0.0, -0.001538085867650807, 0.0, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, 0.0, -0.0008789062267169356, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0035156249068677425, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.003076171735301614, -0.0006591796409338713, 0.0, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, 0.0006591796409338713, -0.0006591796409338713, -0.003735351376235485, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0004394531133584678, -0.0004394531133584678, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, 0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0035156249068677425, -0.003735351376235485, -0.001977538922801614, -0.0004394531133584678, 0.0004394531133584678, -0.0028564452659338713, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0032958984375, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, 0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0032958984375, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, 0.003076171735301614, -0.0004394531133584678, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0057128905318677425, -0.008349609561264515, -0.0120849609375, -0.01669921912252903, -0.01999511756002903, -0.02570800669491291, -0.03010253794491291, -0.0362548828125, -0.0384521484375, -0.04372558370232582, -0.0472412109375, -0.050537109375, -0.052734375, -0.05141601338982582, -0.05207519233226776, -0.04833984375, -0.04482421651482582, -0.0406494140625, -0.03229980543255806, -0.02395019493997097, -0.015380859375, -0.0024169920943677425, 0.01186523400247097, 0.02548827975988388, 0.03779296949505806, 0.05471191182732582, 0.07053222507238388, 0.0845947265625, 0.10129394382238388, 0.11579589545726776, 0.12700195610523224, 0.13710936903953552, 0.14919432997703552, 0.15468749403953552, 0.1593017578125, 0.15952147543430328, 0.15776367485523224, 0.14985351264476776, 0.14304198324680328, 0.13117675483226776, 0.11491698771715164, 0.09645995497703552, 0.07668457180261612, 0.054931640625, 0.02944335900247097, 0.00439453125, -0.02373046800494194, -0.05141601338982582, -0.07492675632238388, -0.10744628310203552, -0.13029785454273224, -0.15864257514476776, -0.18105468153953552, -0.2010498046875, -0.22148436307907104, -0.23488768935203552, -0.24543456733226776, -0.2524658143520355, -0.2535644471645355, -0.24609375, -0.23928222060203552, -0.22499999403953552, -0.20808105170726776, -0.18303221464157104, -0.15754394233226776, -0.12875975668430328, -0.09843749552965164, -0.06877440959215164, -0.03955078125, -0.003735351376235485, 0.02724609337747097, 0.06108398362994194, 0.08942870795726776, 0.11733397841453552, 0.14436034858226776, 0.17182616889476776, 0.1922607421875, 0.21115721762180328, 0.22609862685203552, 0.23466795682907104, 0.23906248807907104, 0.23994140326976776, 0.23752440512180328, 0.22785644233226776, 0.21335448324680328, 0.19841307401657104, 0.17929686605930328, 0.15446777641773224, 0.13205565512180328, 0.10195311903953552, 0.07888183742761612, 0.05251464620232582, 0.02482910081744194, -0.001538085867650807, -0.024169921875, -0.0472412109375, -0.06833495944738388, -0.08942870795726776, -0.10524901747703552, -0.12019042670726776, -0.13051757216453552, -0.13974608480930328, -0.14501953125, -0.14545898139476776, -0.14677734673023224, -0.14084471762180328, -0.13359375298023224, -0.12612304091453552, -0.11491698771715164, -0.10151366889476776, -0.08920898288488388, -0.07602538913488388, -0.06350097805261612, -0.0472412109375, -0.03581542894244194, -0.02065429650247097, -0.008129882626235485, 0.002197265625, 0.010986328125, 0.01999511756002903, 0.0274658203125, 0.03054199181497097, 0.03691406175494194, 0.03911132737994194, 0.03889160230755806, 0.03911132737994194, 0.037353515625, 0.032958984375, 0.03076171875, 0.02900390513241291, 0.02351074106991291, 0.01845703087747097, 0.015380859375, 0.010107421316206455, 0.005932617001235485, 0.003076171735301614, 0.0002197265566792339, -0.002636718563735485, -0.00439453125, -0.00527343712747097, -0.00527343712747097, -0.0057128905318677425, -0.006591796875, -0.007910155691206455, -0.009008788503706455, -0.010107421316206455, -0.01384277269244194, -0.01955566368997097, -0.0208740234375, -0.02570800669491291, -0.02988281100988388, -0.0340576171875, -0.03955078125, -0.04416503757238388, -0.04526367038488388, -0.0472412109375, -0.05229492112994194, -0.05119628831744194, -0.05031738057732582, -0.0472412109375, -0.04438476264476776, -0.03713378682732582, -0.03164062276482582, -0.02241210825741291, -0.013623046688735485, 0.0006591796409338713, 0.00966796837747097, 0.02460937388241291, 0.03823241963982582, 0.05624999850988388, 0.07009277492761612, 0.08437499403953552, 0.10063476115465164, 0.11381835490465164, 0.1263427734375, 0.13930663466453552, 0.14743651449680328, 0.1527099609375, 0.15974120795726776, 0.15798339247703552, 0.15864257514476776, 0.15073241293430328, 0.14238281548023224, 0.13051757216453552, 0.11667480319738388, 0.09733886271715164, 0.07492675632238388, 0.05207519233226776, 0.03032226487994194, 0.0017578124534338713, -0.02153320237994194, -0.05097655951976776, -0.07624511420726776, -0.10502929240465164, -0.13095702230930328, -0.15908202528953552, -0.18061523139476776, -0.20302733778953552, -0.21884764730930328, -0.23466795682907104, -0.24653320014476776, -0.25202634930610657, -0.25554198026657104, -0.24851073324680328, -0.239501953125, -0.22126464545726776, -0.20610350370407104, -0.18391112983226776, -0.15798339247703552, -0.13139648735523224, -0.10129394382238388, -0.068115234375, -0.03889160230755806, -0.00439453125, 0.02482910081744194, 0.05976562201976776, 0.08920898288488388, 0.11623534560203552, 0.14523924887180328, 0.16984862089157104, 0.19291990995407104, 0.2109375, 0.22478026151657104, 0.23378905653953552, 0.24125975370407104, 0.24147948622703552, 0.23774413764476776, 0.22653807699680328, 0.2120361328125, 0.195556640625, 0.1768798828125, 0.1527099609375, 0.13029785454273224, 0.10458984225988388, 0.07756347209215164, 0.0516357421875, 0.02900390513241291, 0.0010986328125, -0.02438964694738388, -0.05119628831744194, -0.07097167521715164, -0.08942870795726776, -0.1043701171875, -0.11931151896715164, -0.13249512016773224, -0.13930663466453552, -0.1439208984375, -0.1439208984375, -0.14501953125, -0.14194335043430328, -0.13469238579273224, -0.12810058891773224, -0.1153564453125, -0.103271484375, -0.09074706584215164, -0.07646483927965164, -0.063720703125, -0.0494384765625, -0.03427734225988388, -0.02065429650247097, -0.011206054128706455, 0.0024169920943677425, 0.012304686941206455, 0.02043456956744194, 0.02724609337747097, 0.03142089769244194, 0.0362548828125, 0.03889160230755806, 0.03955078125, 0.03933105245232582, 0.03559570387005806, 0.03361816331744194, 0.03142089769244194, 0.0263671875, 0.02504882775247097, 0.01911620981991291, 0.01582031138241291, 0.010986328125, 0.00637206993997097, 0.002636718563735485, 0.0, 0.0, -0.00439453125, -0.005932617001235485, -0.005053710658103228, -0.0057128905318677425, -0.0046142577193677425, -0.004833984188735485, -0.004833984188735485, -0.005053710658103228, -0.0046142577193677425, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, 0.0006591796409338713, 0.0002197265566792339, 0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, 0.0, 0.0004394531133584678, 0.0010986328125, -0.0010986328125, -0.0024169920943677425, 0.0002197265566792339, -0.0006591796409338713, 0.0004394531133584678, -0.0008789062267169356, -0.0004394531133584678, -0.0006591796409338713, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, 0.0, 0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0006591796409338713, -0.003076171735301614, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.001538085867650807, 0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, 0.0, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, 0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, 0.0, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0032958984375, -0.0028564452659338713, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.0032958984375, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.0024169920943677425, 0.0008789062267169356, -0.0002197265566792339, 0.0002197265566792339, -0.0013183592818677425, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.0006591796409338713, -0.001538085867650807, 0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.002636718563735485, -0.0035156249068677425, -0.0008789062267169356, -0.0013183592818677425, -0.0041748047806322575, -0.0028564452659338713, -0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, -0.0028564452659338713, -0.002636718563735485, 0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, 0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, 0.0, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0002197265566792339, -0.003735351376235485, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0035156249068677425, -0.0017578124534338713, -0.003735351376235485, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.003955077845603228, -0.0024169920943677425, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.002636718563735485, -0.0013183592818677425, -0.0032958984375, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0002197265566792339, -0.0017578124534338713, 0.0, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0028564452659338713, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0041748047806322575, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, 0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.002636718563735485, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0032958984375, -0.002636718563735485, -0.0035156249068677425, -0.001538085867650807, -0.003735351376235485, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, 0.0, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.0041748047806322575, 0.0, -0.0006591796409338713, -0.003955077845603228, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, 0.0002197265566792339, -0.002197265625, -0.0017578124534338713, 0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0035156249068677425, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.00439453125, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0032958984375, -0.0002197265566792339, -0.002636718563735485, -0.002197265625, 0.0, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.002197265625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){1}', '(angle, [4.8694686131])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.003076171735301614, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, 0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, -0.0002197265566792339, 0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, 0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0006591796409338713, -0.0006591796409338713, -0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, 0.0004394531133584678, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0035156249068677425, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0032958984375, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.0032958984375, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, 0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, 0.0, -0.002197265625, -0.003735351376235485, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.003735351376235485, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.003076171735301614, -0.003076171735301614, -0.0004394531133584678, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.0032958984375, -0.0032958984375, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, 0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.003076171735301614, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0002197265566792339, -0.001977538922801614, -0.003076171735301614, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.0006591796409338713, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, 0.0004394531133584678, -0.0008789062267169356, -0.0035156249068677425, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.0006591796409338713, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, 0.0, 0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, 0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0035156249068677425, -0.002197265625, -0.0004394531133584678, -0.0024169920943677425, 0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, 0.0006591796409338713, -0.001538085867650807, -0.0010986328125, 0.0, -0.002197265625, -0.002636718563735485, -0.002636718563735485, 0.0, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.003735351376235485, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.002197265625, -0.0035156249068677425, -0.0006591796409338713, -0.0017578124534338713, -0.003076171735301614, -0.0002197265566792339, -0.0028564452659338713, -0.0006591796409338713, -0.0006591796409338713, -0.0032958984375, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, 0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, 0.0, -0.0006591796409338713, -0.002636718563735485, -0.0006591796409338713, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, 0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0004394531133584678, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.0032958984375, -0.002197265625, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, 0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0002197265566792339, -0.0028564452659338713, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.002636718563735485, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0032958984375, -0.002636718563735485, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, 0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.003955077845603228, -0.003955077845603228, -0.002636718563735485, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.002636718563735485, -0.003735351376235485, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0035156249068677425, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, -0.0010986328125, 0.0, -0.001538085867650807, -0.002197265625, -0.003735351376235485, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.003076171735301614, -0.003955077845603228, -0.0017578124534338713, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, 0.0004394531133584678, 0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0032958984375, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0032958984375, -0.0028564452659338713, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0032958984375, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.0035156249068677425, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, 0.0, -0.001538085867650807, -0.001977538922801614, 0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.003735351376235485, -0.0013183592818677425, -0.001538085867650807, -0.0035156249068677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, 0.0, -0.0028564452659338713, -0.003955077845603228, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0035156249068677425, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0032958984375, -0.003076171735301614, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.003735351376235485, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, 0.0, -0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, 0.0, 0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, 0.0002197265566792339, -0.0035156249068677425, -0.00439453125, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0032958984375, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.005932617001235485, -0.007031249813735485, -0.01164550706744194, -0.0164794921875, -0.02285156212747097, -0.02834472618997097, -0.03427734225988388, -0.04328612983226776, -0.04812011495232582, -0.054931640625, -0.06174316257238388, -0.06745605170726776, -0.06965331733226776, -0.0703125, -0.07272949069738388, -0.072509765625, -0.06943359225988388, -0.06328124552965164, -0.05778808519244194, -0.046142578125, -0.03361816331744194, -0.01955566368997097, -0.0035156249068677425, 0.0142822265625, 0.03603515401482582, 0.05624999850988388, 0.07624511420726776, 0.0955810546875, 0.11733397841453552, 0.13930663466453552, 0.160400390625, 0.17600096762180328, 0.19248045980930328, 0.20654296875, 0.21511229872703552, 0.21928709745407104, 0.22148436307907104, 0.21796874701976776, 0.20895995199680328, 0.19577635824680328, 0.17973631620407104, 0.15754394233226776, 0.13139648735523224, 0.10722655802965164, 0.0758056640625, 0.04570312425494194, 0.011425781063735485, -0.02504882775247097, -0.06459961086511612, -0.09492187201976776, -0.1318359375, -0.16743163764476776, -0.20126952230930328, -0.2340087890625, -0.2645507752895355, -0.2865234315395355, -0.309814453125, -0.32673338055610657, -0.3348632752895355, -0.33574217557907104, -0.32695311307907104, -0.31640625, -0.29487302899360657, -0.2726806700229645, -0.2406005859375, -0.21159666776657104, -0.17424315214157104, -0.13469238579273224, -0.09536132216453552, -0.05361327901482582, -0.01274413987994194, 0.02790527231991291, 0.0703125, 0.10700683295726776, 0.14919432997703552, 0.18391112983226776, 0.21884764730930328, 0.24763183295726776, 0.2748779356479645, 0.2986083924770355, 0.31267088651657104, 0.32475584745407104, 0.3251953125, 0.3218994140625, 0.3084960877895355, 0.29289549589157104, 0.26542967557907104, 0.239501953125, 0.21071776747703552, 0.17951659858226776, 0.14523924887180328, 0.10788574069738388, 0.07163085788488388, 0.03955078125, 0.0024169920943677425, -0.02834472618997097, -0.06328124552965164, -0.0911865234375, -0.11733397841453552, -0.13996581733226776, -0.16193847358226776, -0.17885741591453552, -0.19138182699680328, -0.19973143935203552, -0.2032470703125, -0.20083007216453552, -0.19863280653953552, -0.18896484375, -0.17380370199680328, -0.15996094048023224, -0.14633788168430328, -0.12612304091453552, -0.1043701171875, -0.0867919921875, -0.06723632663488388, -0.04877929389476776, -0.02702636644244194, -0.0120849609375, 0.0032958984375, 0.017578125, 0.03032226487994194, 0.04020996019244194, 0.04438476264476776, 0.05207519233226776, 0.05405273288488388, 0.05756835639476776, 0.05646972358226776, 0.05405273288488388, 0.04899902269244194, 0.04482421651482582, 0.03999023512005806, 0.03471679612994194, 0.02812499925494194, 0.02043456956744194, 0.01384277269244194, 0.010107421316206455, 0.0054931640625, 0.0010986328125, -0.003076171735301614, -0.00637206993997097, -0.009008788503706455, -0.0076904296875, -0.008349609561264515, -0.007031249813735485, -0.0098876953125, -0.012524413876235485, -0.01582031138241291, -0.01801757700741291, -0.02438964694738388, -0.0296630859375, -0.0384521484375, -0.04416503757238388, -0.04987792670726776, -0.05361327901482582, -0.05910644307732582, -0.06525878608226776, -0.06899414211511612, -0.06877440959215164, -0.0703125, -0.06965331733226776, -0.0670166015625, -0.06108398362994194, -0.05295410007238388, -0.04240722581744194, -0.0318603515625, -0.017578125, 0.0004394531133584678, 0.01691894419491291, 0.03669433668255806, 0.05756835639476776, 0.07976073771715164, 0.09953612834215164, 0.11997070163488388, 0.1395263671875, 0.160400390625, 0.17775878310203552, 0.19313964247703552, 0.20588378608226776, 0.21401366591453552, 0.2197265625, 0.22236327826976776, 0.2197265625, 0.208740234375, 0.19621580839157104, 0.17951659858226776, 0.15974120795726776, 0.13271483778953552, 0.10678710788488388, 0.07734374701976776, 0.04460449144244194, 0.007910155691206455, -0.0230712890625, -0.0604248046875, -0.0955810546875, -0.13645018637180328, -0.16633300483226776, -0.20390623807907104, -0.23312987387180328, -0.2649902403354645, -0.28850096464157104, -0.3109130859375, -0.33024901151657104, -0.33684080839157104, -0.340576171875, -0.32893064618110657, -0.31794431805610657, -0.29729002714157104, -0.2713623046875, -0.24147948622703552, -0.20852050185203552, -0.17402343451976776, -0.13491210341453552, -0.09382323920726776, -0.05537109076976776, -0.01406249962747097, 0.0296630859375, 0.07382812350988388, 0.10744628310203552, 0.14897461235523224, 0.18369139730930328, 0.21950682997703552, 0.2493896484375, 0.2759765684604645, 0.29838865995407104, 0.3144287168979645, 0.32563474774360657, 0.3251953125, 0.3243164122104645, 0.30827635526657104, 0.2900390625, 0.26630857586860657, 0.24169921875, 0.21071776747703552, 0.17929686605930328, 0.14414061605930328, 0.10810546576976776, 0.07426757365465164, 0.04196777194738388, 0.0032958984375, -0.02944335900247097, -0.06328124552965164, -0.09250488132238388, -0.11865234375, -0.14084471762180328, -0.16501463949680328, -0.17929686605930328, -0.19401854276657104, -0.2021484375, -0.20610350370407104, -0.20390623807907104, -0.19775390625, -0.18918456137180328, -0.17600096762180328, -0.16259765625, -0.14523924887180328, -0.12502440810203552, -0.10480956733226776, -0.08613280951976776, -0.0648193359375, -0.04482421651482582, -0.02878417819738388, -0.013403319753706455, 0.0024169920943677425, 0.01823730394244194, 0.03032226487994194, 0.03911132737994194, 0.04680175706744194, 0.05251464620232582, 0.05559081956744194, 0.05712890625, 0.05559081956744194, 0.05537109076976776, 0.05009765550494194, 0.04548339545726776, 0.03999023512005806, 0.03559570387005806, 0.02702636644244194, 0.02263183519244194, 0.01582031138241291, 0.009228515438735485, 0.00527343712747097, 0.0002197265566792339, -0.0024169920943677425, -0.004833984188735485, -0.00747070275247097, -0.005932617001235485, -0.0068115233443677425, -0.005932617001235485, -0.006152343470603228, -0.0068115233443677425, -0.0046142577193677425, -0.00527343712747097, -0.0046142577193677425, -0.0041748047806322575, -0.0032958984375, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, 0.0006591796409338713, -0.0008789062267169356, 0.0002197265566792339, 0.0013183592818677425, 0.0, 0.0002197265566792339, 0.0008789062267169356, 0.0017578124534338713, 0.0010986328125, 0.0008789062267169356, -0.0006591796409338713, 0.002197265625, 0.0008789062267169356, 0.0006591796409338713, -0.0006591796409338713, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0028564452659338713, -0.0032958984375, -0.0035156249068677425, -0.0032958984375, -0.002197265625, -0.0032958984375, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.003076171735301614, -0.0035156249068677425, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.003735351376235485, -0.0008789062267169356, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, 0.0002197265566792339, -0.001977538922801614, -0.002636718563735485, 0.0002197265566792339, 0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.003076171735301614, 0.0, -0.002197265625, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.0032958984375, -0.0035156249068677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.003735351376235485, -0.002636718563735485, -0.002197265625, -0.003735351376235485, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.003076171735301614, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, 0.0, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.003735351376235485, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.003735351376235485, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, 0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0035156249068677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0002197265566792339, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.0002197265566792339, 0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.0024169920943677425, 0.0, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.003735351376235485, -0.003076171735301614, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.0028564452659338713, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0041748047806322575, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.003955077845603228, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, 0.0, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0041748047806322575, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0032958984375, -0.003955077845603228, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.002636718563735485, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.0028564452659338713, -0.003076171735301614, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.0010986328125, -0.002197265625, -0.003735351376235485, -0.0006591796409338713, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.003735351376235485, -0.003076171735301614, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.003076171735301614, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, 0.0002197265566792339, -0.0028564452659338713, -0.0028564452659338713, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, 0.0, -0.001538085867650807, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){1}', '(angle, [6.2831853072])')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, 0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.002197265625, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0035156249068677425, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, 0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, 0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0032958984375, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.0032958984375, -0.0028564452659338713, -0.0002197265566792339, -0.003076171735301614, 0.0, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, 0.0, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.0028564452659338713, -0.001977538922801614, 0.0006591796409338713, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, 0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0028564452659338713, 0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, 0.0, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, 0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, 0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, 0.0, 0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, 0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, 0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.002636718563735485, 0.0, 0.0006591796409338713, -0.001538085867650807, -0.0002197265566792339, -0.002197265625, -0.0028564452659338713, 0.0002197265566792339, 0.0002197265566792339, -0.0008789062267169356, 0.0006591796409338713, -0.0017578124534338713, 0.0, -0.0013183592818677425, 0.0, -0.0010986328125, -0.002197265625, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.00439453125, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.002197265625, 0.0002197265566792339, -0.0028564452659338713, -0.0004394531133584678, -0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, 0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.0028564452659338713, 0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, 0.0, -0.001977538922801614, -0.0004394531133584678, 0.0002197265566792339, 0.0002197265566792339, 0.0002197265566792339, -0.0006591796409338713, 0.0002197265566792339, 0.0004394531133584678, 0.0, -0.0032958984375, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0032958984375, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0010986328125, 0.0, -0.002636718563735485, -0.0013183592818677425, 0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, 0.0, -0.0010986328125, -0.0017578124534338713, 0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0035156249068677425, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.003735351376235485, -0.0013183592818677425, 0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.0013183592818677425, -0.0028564452659338713, 0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, 0.0002197265566792339, 0.0004394531133584678, 0.0004394531133584678, 0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, 0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, 0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, 0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, 0.0006591796409338713, -0.001538085867650807, 0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.0004394531133584678, 0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.0004394531133584678, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0006591796409338713, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0032958984375, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, 0.0, -0.001538085867650807, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0035156249068677425, -0.001538085867650807, -0.0024169920943677425, 0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, 0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, 0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, 0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, 0.0, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, -0.003076171735301614, -0.0010986328125, -0.0006591796409338713, 0.0, 0.0006591796409338713, -0.0013183592818677425, 0.0002197265566792339, -0.001977538922801614, -0.003076171735301614, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, 0.0002197265566792339, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, 0.0, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, 0.0, 0.0, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, 0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, 0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, 0.0, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, 0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, 0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, 0.0, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0002197265566792339, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0024169920943677425, -0.003735351376235485, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, 0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, 0.0006591796409338713, -0.0017578124534338713, 0.0, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, 0.0002197265566792339, -0.0017578124534338713, 0.0, 0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, 0.0010986328125, -0.001977538922801614, 0.0, -0.0017578124534338713, -0.0004394531133584678, -0.0006591796409338713, -0.007031249813735485, -0.009228515438735485, -0.014501952566206455, -0.02065429650247097, -0.02878417819738388, -0.03537597507238388, -0.04372558370232582, -0.05229492112994194, -0.06306152045726776, -0.07009277492761612, -0.07558593899011612, -0.08371581882238388, -0.087890625, -0.09096679091453552, -0.09294433146715164, -0.090087890625, -0.08657225966453552, -0.07998047024011612, -0.06965331733226776, -0.05778808519244194, -0.04020996019244194, -0.02438964694738388, -0.0032958984375, 0.01889648474752903, 0.04548339545726776, 0.07097167521715164, 0.0955810546875, 0.12062987685203552, 0.14985351264476776, 0.17402343451976776, 0.19951170682907104, 0.221923828125, 0.24213866889476776, 0.26103514432907104, 0.2704834043979645, 0.27751463651657104, 0.2781738340854645, 0.27290037274360657, 0.26081541180610657, 0.24697265028953552, 0.22214354574680328, 0.1966552734375, 0.16787108778953552, 0.13535155355930328, 0.09843749552965164, 0.06108398362994194, 0.01669921912252903, -0.02219238132238388, -0.06767577677965164, -0.10393065959215164, -0.1483154296875, -0.19072264432907104, -0.22785644233226776, -0.2667480409145355, -0.3062988221645355, -0.3381591737270355, -0.3645263612270355, -0.38737791776657104, -0.4034179449081421, -0.406494140625, -0.39594724774360657, -0.3812255859375, -0.3528808355331421, -0.32695311307907104, -0.29289549589157104, -0.252685546875, -0.20742186903953552, -0.1669921875, -0.11711425334215164, -0.072509765625, -0.02329101413488388, 0.024169921875, 0.072509765625, 0.11799316108226776, 0.16501463949680328, 0.20566405355930328, 0.2502685487270355, 0.28828123211860657, 0.3240966796875, 0.3515625, 0.3759521245956421, 0.39287108182907104, 0.39594724774360657, 0.393310546875, 0.3777099549770355, 0.3590331971645355, 0.3287109434604645, 0.2986083924770355, 0.25883787870407104, 0.22587889432907104, 0.18083494901657104, 0.13798828423023224, 0.094482421875, 0.05624999850988388, 0.00856933556497097, -0.03120117075741291, -0.07229004055261612, -0.10700683295726776, -0.14370116591453552, -0.17402343451976776, -0.20258788764476776, -0.22346191108226776, -0.2427978515625, -0.2557617127895355, -0.26081541180610657, -0.26191404461860657, -0.252685546875, -0.24477538466453552, -0.226318359375, -0.20852050185203552, -0.18369139730930328, -0.15864257514476776, -0.1351318359375, -0.1087646484375, -0.081298828125, -0.05866698920726776, -0.03493652120232582, -0.01318359375, 0.007250976283103228, 0.02570800669491291, 0.03977050632238388, 0.05317382514476776, 0.06459961086511612, 0.0692138671875, 0.072509765625, 0.07602538913488388, 0.07558593899011612, 0.07316894084215164, 0.068115234375, 0.0615234375, 0.05251464620232582, 0.04790038987994194, 0.03801269456744194, 0.03010253794491291, 0.02131347544491291, 0.012524413876235485, 0.006152343470603228, 0.0006591796409338713, -0.003735351376235485, -0.00637206993997097, -0.008129882626235485, -0.0076904296875, -0.007250976283103228, -0.009448242373764515, -0.012524413876235485, -0.015380859375, -0.01999511756002903, -0.02395019493997097, -0.03164062276482582, -0.04042968526482582, -0.04658202826976776, -0.05690917745232582, -0.06416015326976776, -0.07119140774011612, -0.0791015625, -0.08415526896715164, -0.08745116740465164, -0.09228515625, -0.09052734076976776, -0.0889892578125, -0.08635253459215164, -0.0780029296875, -0.06679687649011612, -0.05756835639476776, -0.04086913913488388, -0.02131347544491291, 0.0006591796409338713, 0.02109374850988388, 0.04877929389476776, 0.07229004055261612, 0.0977783203125, 0.1263427734375, 0.15512694418430328, 0.177978515625, 0.204345703125, 0.2274169921875, 0.24807128310203552, 0.26411131024360657, 0.2744384706020355, 0.283447265625, 0.2803710997104645, 0.2801513671875, 0.26433104276657104, 0.24763183295726776, 0.22565917670726776, 0.19841307401657104, 0.1702880859375, 0.13601073622703552, 0.09492187201976776, 0.06064452975988388, 0.01669921912252903, -0.0230712890625, -0.06877440959215164, -0.10920409858226776, -0.15314941108226776, -0.19423827528953552, -0.23554687201976776, -0.2722412049770355, -0.3095947206020355, -0.34541013836860657, -0.3702392578125, -0.3955078125, -0.41022947430610657, -0.4141845703125, -0.4010009765625, -0.3864990174770355, -0.358154296875, -0.33002927899360657, -0.2933349609375, -0.2568603456020355, -0.21071776747703552, -0.16962890326976776, -0.12041015177965164, -0.07229004055261612, -0.02570800669491291, 0.02285156212747097, 0.07163085788488388, 0.11821288615465164, 0.16831053793430328, 0.20676268637180328, 0.25004881620407104, 0.2898193299770355, 0.3221191465854645, 0.3539794683456421, 0.3779296875, 0.39594724774360657, 0.39924314618110657, 0.39726561307907104, 0.38298338651657104, 0.3623290956020355, 0.3320068418979645, 0.2999267578125, 0.2590576112270355, 0.22280272841453552, 0.18105468153953552, 0.14128418266773224, 0.09580077975988388, 0.05515136569738388, 0.007910155691206455, -0.0296630859375, -0.07426757365465164, -0.1131591796875, -0.14458008110523224, -0.17622070014476776, -0.20456542074680328, -0.22697752714157104, -0.24565428495407104, -0.25773924589157104, -0.2627929747104645, -0.2627929747104645, -0.25664061307907104, -0.24785155057907104, -0.22653807699680328, -0.20917968451976776, -0.18588866293430328, -0.16281737387180328, -0.13535155355930328, -0.11030273139476776, -0.08151855319738388, -0.059326171875, -0.03691406175494194, -0.01296386681497097, 0.0076904296875, 0.02592773362994194, 0.04130859300494194, 0.05317382514476776, 0.06350097805261612, 0.07119140774011612, 0.07624511420726776, 0.07602538913488388, 0.0758056640625, 0.07272949069738388, 0.06569824367761612, 0.06196288764476776, 0.0538330078125, 0.04746093600988388, 0.03955078125, 0.03098144382238388, 0.02065429650247097, 0.0142822265625, 0.008349609561264515, 0.001538085867650807, -0.0032958984375, -0.006591796875, -0.007031249813735485, -0.009008788503706455, -0.0087890625, -0.007250976283103228, -0.004833984188735485, -0.007250976283103228, -0.005053710658103228, -0.0054931640625, -0.004833984188735485, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0010986328125, 0.001538085867650807, 0.0002197265566792339, 0.001538085867650807, 0.0004394531133584678, 0.0028564452659338713, 0.002197265625, 0.0004394531133584678, 0.0008789062267169356, 0.001538085867650807, 0.002197265625, 0.0006591796409338713, 0.0017578124534338713, 0.002197265625, 0.001538085867650807, 0.0002197265566792339, 0.0004394531133584678, 0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, 0.0004394531133584678, -0.0006591796409338713, -0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, 0.0, 0.0002197265566792339, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0032958984375, -0.00439453125, -0.0006591796409338713, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0006591796409338713, -0.002636718563735485, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.0024169920943677425, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.003735351376235485, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.003076171735301614, -0.003076171735301614, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.003955077845603228, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.0028564452659338713, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, 0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.003735351376235485, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, 0.0, 0.0, -0.0010986328125, -0.003076171735301614, 0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.003955077845603228, -0.001538085867650807, -0.0010986328125, -0.0032958984375, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, 0.0002197265566792339, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0010986328125, 0.0, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0035156249068677425, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.003955077845603228, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0035156249068677425, -0.003076171735301614, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, 0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0035156249068677425, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0017578124534338713, -0.003076171735301614, 0.0, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0035156249068677425, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0035156249068677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, 0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.002197265625 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){2}', '(angle, [0.6283])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.002197265625, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.003076171735301614, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.003955077845603228, 0.0004394531133584678, -0.0017578124534338713, -0.0032958984375, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.003955077845603228, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.0010986328125, -0.003735351376235485, -0.0002197265566792339, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0032958984375, -0.0010986328125, -0.002197265625, 0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, 0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.0035156249068677425, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, 0.0002197265566792339, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, 0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, 0.0004394531133584678, -0.002636718563735485, -0.0032958984375, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.0002197265566792339, 0.0, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.0035156249068677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, 0.0, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.002636718563735485, -0.001538085867650807, 0.0006591796409338713, -0.003735351376235485, -0.0028564452659338713, -0.0010986328125, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0032958984375, -0.0032958984375, -0.0024169920943677425, 0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0035156249068677425, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0032958984375, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, 0.0, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, 0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0035156249068677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, 0.0004394531133584678, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.001977538922801614, 0.0002197265566792339, -0.0013183592818677425, 0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0002197265566792339, -0.0035156249068677425, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0035156249068677425, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, 0.0004394531133584678, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, 0.0, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, 0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, 0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, 0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, 0.001538085867650807, 0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, 0.0, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, 0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.003735351376235485, -0.003076171735301614, -0.003955077845603228, -0.0068115233443677425, -0.0087890625, -0.009448242373764515, -0.009008788503706455, -0.009228515438735485, -0.01054687425494194, -0.010107421316206455, -0.009448242373764515, -0.010327148251235485, -0.009008788503706455, -0.009008788503706455, -0.00966796837747097, -0.00637206993997097, -0.005053710658103228, -0.0041748047806322575, -0.0013183592818677425, 0.0010986328125, 0.003735351376235485, 0.006152343470603228, 0.00856933556497097, 0.012304686941206455, 0.015600585378706455, 0.01823730394244194, 0.01999511756002903, 0.02197265625, 0.02395019493997097, 0.024169921875, 0.0274658203125, 0.02944335900247097, 0.0296630859375, 0.02988281100988388, 0.02768554538488388, 0.0263671875, 0.02175292931497097, 0.0208740234375, 0.01669921912252903, 0.013403319753706455, 0.00856933556497097, 0.0035156249068677425, -0.0006591796409338713, -0.00637206993997097, -0.0120849609375, -0.017578125, -0.02197265625, -0.0263671875, -0.03361816331744194, -0.03691406175494194, -0.04042968526482582, -0.04548339545726776, -0.04680175706744194, -0.04833984375, -0.04965820163488388, -0.04833984375, -0.04899902269244194, -0.04702148213982582, -0.04482421651482582, -0.04350585862994194, -0.03757324069738388, -0.03208007663488388, -0.0252685546875, -0.01999511756002903, -0.014501952566206455, -0.009008788503706455, -0.002197265625, 0.003955077845603228, 0.01164550706744194, 0.01779785193502903, 0.02263183519244194, 0.02922363206744194, 0.03120117075741291, 0.03757324069738388, 0.03999023512005806, 0.04262695088982582, 0.04416503757238388, 0.0450439453125, 0.0450439453125, 0.04306640475988388, 0.04328612983226776, 0.04086913913488388, 0.03581542894244194, 0.03273925557732582, 0.0274658203125, 0.0252685546875, 0.01779785193502903, 0.012304686941206455, 0.009228515438735485, 0.0041748047806322575, 0.0, -0.00856933556497097, -0.0120849609375, -0.01516113243997097, -0.01911620981991291, -0.02065429650247097, -0.02285156212747097, -0.02658691257238388, -0.0296630859375, -0.03032226487994194, -0.028564453125, -0.02944335900247097, -0.02768554538488388, -0.02614746056497097, -0.02373046800494194, -0.02241210825741291, -0.019775390625, -0.01823730394244194, -0.01384277269244194, -0.012524413876235485, -0.0098876953125, -0.008349609561264515, -0.0041748047806322575, -0.0024169920943677425, -0.0006591796409338713, 0.0013183592818677425, 0.0017578124534338713, 0.0028564452659338713, 0.00527343712747097, 0.006591796875, 0.00747070275247097, 0.0076904296875, 0.007031249813735485, 0.006152343470603228, 0.0046142577193677425, 0.005053710658103228, 0.005053710658103228, 0.0032958984375, 0.0013183592818677425, 0.0, -0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.002636718563735485, -0.004833984188735485, -0.00527343712747097, -0.006591796875, -0.008129882626235485, -0.0076904296875, -0.00747070275247097, -0.007910155691206455, -0.0098876953125, -0.010327148251235485, -0.009008788503706455, -0.009008788503706455, -0.00856933556497097, -0.009228515438735485, -0.009448242373764515, -0.0076904296875, -0.005932617001235485, -0.003735351376235485, -0.0028564452659338713, -0.0006591796409338713, 0.001977538922801614, 0.003955077845603228, 0.007031249813735485, 0.010107421316206455, 0.011425781063735485, 0.01406249962747097, 0.01735839806497097, 0.02021484263241291, 0.02241210825741291, 0.02614746056497097, 0.02614746056497097, 0.0274658203125, 0.02812499925494194, 0.02768554538488388, 0.02944335900247097, 0.02790527231991291, 0.0263671875, 0.02373046800494194, 0.01911620981991291, 0.01713867112994194, 0.013403319753706455, 0.0087890625, 0.0041748047806322575, -0.0008789062267169356, -0.0035156249068677425, -0.01054687425494194, -0.01713867112994194, -0.02329101413488388, -0.02768554538488388, -0.03164062276482582, -0.03889160230755806, -0.04108886793255806, -0.0439453125, -0.04746093600988388, -0.04877929389476776, -0.04965820163488388, -0.05075683444738388, -0.0494384765625, -0.04658202826976776, -0.04306640475988388, -0.04086913913488388, -0.03493652120232582, -0.0318603515625, -0.0252685546875, -0.02131347544491291, -0.015380859375, -0.0076904296875, -0.002636718563735485, 0.00439453125, 0.011206054128706455, 0.01933593675494194, 0.02395019493997097, 0.02900390513241291, 0.032958984375, 0.0362548828125, 0.0406494140625, 0.04262695088982582, 0.04328612983226776, 0.0428466796875, 0.04350585862994194, 0.0439453125, 0.04108886793255806, 0.041748046875, 0.03779296949505806, 0.03317870944738388, 0.02878417819738388, 0.02351074106991291, 0.01933593675494194, 0.01516113243997097, 0.008129882626235485, 0.0046142577193677425, -0.001538085867650807, -0.006152343470603228, -0.010327148251235485, -0.015380859375, -0.01801757700741291, -0.02109374850988388, -0.02329101413488388, -0.02614746056497097, -0.02702636644244194, -0.02702636644244194, -0.03054199181497097, -0.02812499925494194, -0.02504882775247097, -0.0263671875, -0.024169921875, -0.02373046800494194, -0.01955566368997097, -0.01669921912252903, -0.015380859375, -0.012524413876235485, -0.0098876953125, -0.007910155691206455, -0.003735351376235485, -0.0032958984375, -0.001977538922801614, 0.0008789062267169356, 0.003735351376235485, 0.0035156249068677425, 0.00527343712747097, 0.00637206993997097, 0.005932617001235485, 0.0057128905318677425, 0.00439453125, 0.0054931640625, 0.0032958984375, 0.0046142577193677425, 0.0032958984375, 0.0028564452659338713, 0.002636718563735485, 0.0004394531133584678, -0.0006591796409338713, -0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, -0.002197265625, -0.002636718563735485, -0.0035156249068677425, -0.0024169920943677425, -0.0008789062267169356, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.0035156249068677425, -0.0054931640625, -0.0046142577193677425, -0.005932617001235485, -0.00637206993997097, -0.006591796875, -0.00856933556497097, -0.010107421316206455, -0.009008788503706455, -0.0087890625, -0.010107421316206455, -0.010986328125, -0.010327148251235485, -0.010986328125, -0.009008788503706455, -0.009008788503706455, -0.00637206993997097, -0.005053710658103228, -0.0028564452659338713, -0.0002197265566792339, 0.0008789062267169356, 0.002636718563735485, 0.00527343712747097, 0.010107421316206455, 0.012524413876235485, 0.015600585378706455, 0.01691894419491291, 0.01845703087747097, 0.02285156212747097, 0.02680663950741291, 0.02482910081744194, 0.02614746056497097, 0.0263671875, 0.02812499925494194, 0.02658691257238388, 0.02570800669491291, 0.0263671875, 0.02373046800494194, 0.02131347544491291, 0.01713867112994194, 0.01318359375, 0.008129882626235485, 0.0013183592818677425, -0.0010986328125, -0.0041748047806322575, -0.01164550706744194, -0.01604003831744194, -0.02131347544491291, -0.02548827975988388, -0.03142089769244194, -0.03691406175494194, -0.04152831807732582, -0.04548339545726776, -0.04812011495232582, -0.04987792670726776, -0.0494384765625, -0.0494384765625, -0.05009765550494194, -0.04768066108226776, -0.04350585862994194, -0.04108886793255806, -0.037353515625, -0.032958984375, -0.02658691257238388, -0.02197265625, -0.01494140550494194, -0.00966796837747097, -0.0008789062267169356, 0.0057128905318677425, 0.0120849609375, 0.01801757700741291, 0.02219238132238388, 0.02790527231991291, 0.03208007663488388, 0.03537597507238388, 0.03955078125, 0.04372558370232582, 0.0439453125, 0.04438476264476776, 0.04438476264476776, 0.04416503757238388, 0.04196777194738388, 0.04042968526482582, 0.03691406175494194, 0.0340576171875, 0.02790527231991291, 0.02460937388241291, 0.01955566368997097, 0.01318359375, 0.010107421316206455, 0.002197265625, -0.0017578124534338713, -0.0054931640625, -0.012524413876235485, -0.014721679501235485, -0.01933593675494194, -0.02131347544491291, -0.0230712890625, -0.02438964694738388, -0.02900390513241291, -0.02944335900247097, -0.02922363206744194, -0.02922363206744194, -0.02878417819738388, -0.02680663950741291, -0.0252685546875, -0.024169921875, -0.0208740234375, -0.01779785193502903, -0.015380859375, -0.012304686941206455, -0.009448242373764515, -0.008129882626235485, -0.004833984188735485, -0.003735351376235485, 0.0002197265566792339, 0.0024169920943677425, 0.0035156249068677425, 0.003076171735301614, 0.004833984188735485, 0.00637206993997097, 0.00637206993997097, 0.005053710658103228, 0.0057128905318677425, 0.0068115233443677425, 0.005053710658103228, 0.003955077845603228, 0.003076171735301614, 0.0032958984375, 0.001538085867650807, 0.0008789062267169356, 0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.003076171735301614, -0.0006591796409338713, -0.0032958984375, -0.002636718563735485, -0.003735351376235485, -0.004833984188735485, -0.00439453125, -0.004833984188735485, -0.004833984188735485, -0.008349609561264515, -0.0098876953125, -0.009228515438735485, -0.011206054128706455, -0.00856933556497097, -0.00966796837747097, -0.010327148251235485, -0.01054687425494194, -0.009448242373764515, -0.00856933556497097, -0.007250976283103228, -0.0068115233443677425, -0.0054931640625, -0.00439453125, -0.0010986328125, 0.0004394531133584678, 0.002197265625, 0.0068115233443677425, 0.0098876953125, 0.01296386681497097, 0.0142822265625, 0.01801757700741291, 0.01911620981991291, 0.02285156212747097, 0.02351074106991291, 0.02548827975988388, 0.0274658203125, 0.0296630859375, 0.02790527231991291, 0.028564453125, 0.02724609337747097, 0.02373046800494194, 0.02329101413488388, 0.02131347544491291, 0.017578125, 0.0120849609375, 0.00856933556497097, 0.004833984188735485, -0.0013183592818677425, -0.0054931640625, -0.012524413876235485, -0.0164794921875, -0.02153320237994194, -0.0274658203125, -0.03054199181497097, -0.03669433668255806, -0.03955078125, -0.04372558370232582, -0.0472412109375, -0.04877929389476776, -0.05031738057732582, -0.050537109375, -0.04899902269244194, -0.04636230319738388, -0.0450439453125, -0.04196777194738388, -0.03713378682732582, -0.03208007663488388, -0.02570800669491291, -0.02175292931497097, -0.0186767578125, -0.009008788503706455, -0.0010986328125, 0.003076171735301614, 0.01186523400247097, 0.01713867112994194, 0.0230712890625, 0.02944335900247097, 0.032958984375, 0.03669433668255806, 0.03955078125, 0.04218749701976776, 0.0439453125, 0.04438476264476776, 0.0428466796875, 0.04240722581744194, 0.04108886793255806, 0.04042968526482582, 0.0362548828125, 0.032958984375, 0.02878417819738388, 0.02285156212747097, 0.01845703087747097, 0.01516113243997097, 0.009448242373764515, 0.005053710658103228, -0.001977538922801614, -0.006152343470603228, -0.012524413876235485, -0.01625976525247097, -0.01779785193502903, -0.02065429650247097, -0.02438964694738388, -0.0263671875, -0.02878417819738388, -0.02768554538488388, -0.02834472618997097, -0.028564453125, -0.02658691257238388, -0.02680663950741291, -0.02702636644244194, -0.02329101413488388, -0.01955566368997097, -0.0186767578125, -0.01735839806497097, -0.01494140550494194, -0.010986328125, -0.007250976283103228, -0.0046142577193677425, -0.003735351376235485, 0.0002197265566792339, 0.0, 0.003735351376235485, 0.0024169920943677425, 0.0041748047806322575, 0.005932617001235485, 0.0054931640625, 0.005932617001235485, 0.0046142577193677425, 0.0054931640625, 0.004833984188735485, 0.0028564452659338713, 0.00439453125, 0.002636718563735485, 0.001977538922801614, 0.0010986328125, 0.0006591796409338713, 0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0002197265566792339, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.0046142577193677425, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, 0.0002197265566792339, 0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, 0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.003735351376235485, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.002197265625, -0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, 0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0046142577193677425, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, 0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.0035156249068677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.0002197265566792339, 0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.0028564452659338713, -0.0035156249068677425, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.003735351376235485, -0.0004394531133584678, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, 0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.0002197265566792339, -0.0008789062267169356, -0.0032958984375, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, 0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, 0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0004394531133584678, -0.0028564452659338713, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, 0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0006591796409338713, -0.0013183592818677425, -0.0035156249068677425, -0.0002197265566792339, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0041748047806322575, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.002636718563735485, -0.0004394531133584678, -0.0008789062267169356, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, 0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0028564452659338713, -0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, 0.0, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, 0.0002197265566792339, 0.0004394531133584678, -0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, 0.0006591796409338713, -0.002197265625, 0.0010986328125, -0.0006591796409338713, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0010986328125, 0.0, 0.0002197265566792339, -0.003076171735301614, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, 0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){2}', '(angle, [2.0420352248])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, -0.002636718563735485, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.0002197265566792339, 0.0, 0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, 0.0, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, 0.0004394531133584678, -0.0006591796409338713, 0.0, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, -0.0028564452659338713, -0.0028564452659338713, -0.0032958984375, 0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, -0.002636718563735485, -0.0032958984375, -0.0028564452659338713, 0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0032958984375, -0.002197265625, 0.0006591796409338713, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, 0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, 0.0, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, -0.0002197265566792339, 0.0, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, 0.0004394531133584678, -0.0028564452659338713, -0.0032958984375, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.002197265625, 0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, 0.0006591796409338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, 0.0, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0032958984375, -0.0008789062267169356, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, 0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0035156249068677425, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, 0.0, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, 0.0002197265566792339, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, 0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, 0.0, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.002636718563735485, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0035156249068677425, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.0032958984375, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, 0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.003955077845603228, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.0002197265566792339, 0.0006591796409338713, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.0032958984375, -0.0028564452659338713, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, 0.0, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, 0.0004394531133584678, -0.0013183592818677425, -0.0032958984375, -0.0017578124534338713, -0.0024169920943677425, 0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0024169920943677425, -0.003955077845603228, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, 0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0006591796409338713, -0.0041748047806322575, -0.0032958984375, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.0032958984375, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, 0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, 0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, 0.0004394531133584678, -0.0008789062267169356, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0004394531133584678, -0.001977538922801614, 0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.002197265625, 0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0032958984375, 0.0, -0.002636718563735485, -0.0032958984375, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0002197265566792339, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.003076171735301614, -0.0028564452659338713, -0.003955077845603228, -0.002197265625, 0.0, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0004394531133584678, -0.0017578124534338713, -0.0032958984375, -0.002197265625, -0.0010986328125, -0.0035156249068677425, -0.002636718563735485, -0.002197265625, -0.0041748047806322575, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.0008789062267169356, -0.003735351376235485, -0.0032958984375, -0.0046142577193677425, -0.006152343470603228, -0.00856933556497097, -0.010327148251235485, -0.01274413987994194, -0.01582031138241291, -0.01669921912252903, -0.02153320237994194, -0.02658691257238388, -0.02724609337747097, -0.0274658203125, -0.03076171875, -0.03010253794491291, -0.03164062276482582, -0.03229980543255806, -0.0296630859375, -0.02878417819738388, -0.02592773362994194, -0.0208740234375, -0.014501952566206455, -0.009008788503706455, -0.001538085867650807, 0.004833984188735485, 0.01406249962747097, 0.02482910081744194, 0.0340576171875, 0.04042968526482582, 0.04877929389476776, 0.05998535081744194, 0.06789550930261612, 0.07558593899011612, 0.081298828125, 0.08854980021715164, 0.09316405653953552, 0.09426268935203552, 0.09470214694738388, 0.09360351413488388, 0.0911865234375, 0.08876952528953552, 0.07712402194738388, 0.06965331733226776, 0.05712890625, 0.046142578125, 0.0318603515625, 0.01889648474752903, -0.0010986328125, -0.01494140550494194, -0.03120117075741291, -0.04921874776482582, -0.06767577677965164, -0.08261718600988388, -0.09931640326976776, -0.11249999701976776, -0.12788085639476776, -0.13666991889476776, -0.142822265625, -0.15205077826976776, -0.15446777641773224, -0.15512694418430328, -0.15402831137180328, -0.14677734673023224, -0.13798828423023224, -0.12678222358226776, -0.11447753757238388, -0.09843749552965164, -0.08261718600988388, -0.06328124552965164, -0.04130859300494194, -0.02219238132238388, -0.001538085867650807, 0.01604003831744194, 0.0384521484375, 0.05778808519244194, 0.0736083984375, 0.09140624850988388, 0.10612792521715164, 0.11909179389476776, 0.13051757216453552, 0.1395263671875, 0.14479979872703552, 0.14743651449680328, 0.14589843153953552, 0.14304198324680328, 0.13710936903953552, 0.13051757216453552, 0.11909179389476776, 0.10854491591453552, 0.09514159709215164, 0.08151855319738388, 0.06328124552965164, 0.04636230319738388, 0.02834472618997097, 0.015600585378706455, -0.0028564452659338713, -0.015600585378706455, -0.02922363206744194, -0.04262695088982582, -0.05471191182732582, -0.06437987834215164, -0.07404784858226776, -0.07976073771715164, -0.08481445163488388, -0.08723144233226776, -0.08767089247703552, -0.08547362685203552, -0.08547362685203552, -0.0823974609375, -0.07382812350988388, -0.06833495944738388, -0.0615234375, -0.05427245795726776, -0.04526367038488388, -0.03603515401482582, -0.02790527231991291, -0.02065429650247097, -0.013403319753706455, -0.008129882626235485, -0.0010986328125, 0.005932617001235485, 0.01186523400247097, 0.014721679501235485, 0.01823730394244194, 0.02263183519244194, 0.02241210825741291, 0.02329101413488388, 0.02329101413488388, 0.02285156212747097, 0.01999511756002903, 0.01779785193502903, 0.01691894419491291, 0.01296386681497097, 0.01054687425494194, 0.00966796837747097, 0.005932617001235485, 0.0013183592818677425, 0.0, -0.0010986328125, -0.001977538922801614, -0.0035156249068677425, -0.005053710658103228, -0.0028564452659338713, -0.003735351376235485, -0.004833984188735485, -0.003735351376235485, -0.00439453125, -0.00747070275247097, -0.0087890625, -0.01054687425494194, -0.011206054128706455, -0.017578125, -0.01823730394244194, -0.02219238132238388, -0.024169921875, -0.02504882775247097, -0.02724609337747097, -0.028564453125, -0.03054199181497097, -0.03032226487994194, -0.03098144382238388, -0.02900390513241291, -0.02460937388241291, -0.02351074106991291, -0.019775390625, -0.01604003831744194, -0.009228515438735485, -0.0004394531133584678, 0.007910155691206455, 0.014721679501235485, 0.02219238132238388, 0.03208007663488388, 0.04372558370232582, 0.05097655951976776, 0.0604248046875, 0.06525878608226776, 0.07382812350988388, 0.08217773586511612, 0.0889892578125, 0.0911865234375, 0.09382323920726776, 0.09580077975988388, 0.0955810546875, 0.09096679091453552, 0.08481445163488388, 0.07668457180261612, 0.07009277492761612, 0.05778808519244194, 0.04833984375, 0.02988281100988388, 0.01625976525247097, 0.0013183592818677425, -0.01625976525247097, -0.03361816331744194, -0.04812011495232582, -0.06679687649011612, -0.08283691108226776, -0.09953612834215164, -0.11337890475988388, -0.12678222358226776, -0.13688965141773224, -0.14545898139476776, -0.15183104574680328, -0.15358886122703552, -0.15402831137180328, -0.15336914360523224, -0.14677734673023224, -0.13930663466453552, -0.12744140625, -0.11271972209215164, -0.098876953125, -0.08151855319738388, -0.06503906100988388, -0.04416503757238388, -0.02395019493997097, -0.001977538922801614, 0.01911620981991291, 0.03911132737994194, 0.05800781026482582, 0.07668457180261612, 0.09140624850988388, 0.10634765028953552, 0.11909179389476776, 0.13249512016773224, 0.14040526747703552, 0.14238281548023224, 0.14655761420726776, 0.14743651449680328, 0.14633788168430328, 0.13754881918430328, 0.129638671875, 0.11821288615465164, 0.10788574069738388, 0.09404296427965164, 0.07954101264476776, 0.0604248046875, 0.04921874776482582, 0.03098144382238388, 0.0142822265625, -0.0024169920943677425, -0.01516113243997097, -0.02988281100988388, -0.04262695088982582, -0.05515136569738388, -0.06350097805261612, -0.07207030802965164, -0.07932128757238388, -0.08503417670726776, -0.087890625, -0.08833007514476776, -0.08723144233226776, -0.0845947265625, -0.08173827826976776, -0.07536620646715164, -0.06877440959215164, -0.06174316257238388, -0.052734375, -0.04548339545726776, -0.03889160230755806, -0.02988281100988388, -0.01999511756002903, -0.012304686941206455, -0.0068115233443677425, 0.0008789062267169356, 0.0046142577193677425, 0.010986328125, 0.0164794921875, 0.017578125, 0.02065429650247097, 0.024169921875, 0.02131347544491291, 0.02131347544491291, 0.02395019493997097, 0.02021484263241291, 0.01735839806497097, 0.01582031138241291, 0.01318359375, 0.01054687425494194, 0.0098876953125, 0.005053710658103228, 0.003076171735301614, 0.0024169920943677425, -0.0010986328125, -0.0028564452659338713, -0.0035156249068677425, -0.0032958984375, -0.0041748047806322575, -0.005053710658103228, -0.003955077845603228, -0.00439453125, -0.005053710658103228, -0.00747070275247097, -0.008349609561264515, -0.01164550706744194, -0.014501952566206455, -0.01516113243997097, -0.01625976525247097, -0.02263183519244194, -0.02482910081744194, -0.02548827975988388, -0.02724609337747097, -0.02944335900247097, -0.03010253794491291, -0.03142089769244194, -0.03076171875, -0.02944335900247097, -0.0252685546875, -0.0230712890625, -0.02065429650247097, -0.014721679501235485, -0.00966796837747097, -0.0013183592818677425, 0.007031249813735485, 0.015380859375, 0.02219238132238388, 0.032958984375, 0.04372558370232582, 0.05009765550494194, 0.06064452975988388, 0.06613769382238388, 0.07492675632238388, 0.08173827826976776, 0.08723144233226776, 0.09030761569738388, 0.09645995497703552, 0.094482421875, 0.09250488132238388, 0.08964843302965164, 0.08854980021715164, 0.07888183742761612, 0.06899414211511612, 0.05844726413488388, 0.046142578125, 0.03032226487994194, 0.01801757700741291, 0.0, -0.01669921912252903, -0.03361816331744194, -0.04987792670726776, -0.06767577677965164, -0.08415526896715164, -0.10019531100988388, -0.11162108927965164, -0.12788085639476776, -0.13645018637180328, -0.14545898139476776, -0.15205077826976776, -0.15446777641773224, -0.15644530951976776, -0.15139159560203552, -0.14501953125, -0.13908691704273224, -0.12875975668430328, -0.11469726264476776, -0.09865722060203552, -0.08107910305261612, -0.06306152045726776, -0.0428466796875, -0.02460937388241291, -0.0041748047806322575, 0.01582031138241291, 0.03889160230755806, 0.05866698920726776, 0.07470703125, 0.09052734076976776, 0.10678710788488388, 0.11997070163488388, 0.12941893935203552, 0.13886718451976776, 0.142822265625, 0.1461181640625, 0.14589843153953552, 0.14436034858226776, 0.13710936903953552, 0.13051757216453552, 0.11887206882238388, 0.10854491591453552, 0.09470214694738388, 0.07888183742761612, 0.06064452975988388, 0.04658202826976776, 0.03142089769244194, 0.01494140550494194, -0.0010986328125, -0.01735839806497097, -0.03317870944738388, -0.0428466796875, -0.05537109076976776, -0.06350097805261612, -0.07404784858226776, -0.08063964545726776, -0.08437499403953552, -0.08635253459215164, -0.08745116740465164, -0.08701171725988388, -0.085693359375, -0.08085937052965164, -0.0758056640625, -0.06877440959215164, -0.06130370870232582, -0.052734375, -0.04548339545726776, -0.0362548828125, -0.0296630859375, -0.0208740234375, -0.012524413876235485, -0.00637206993997097, 0.0, 0.003735351376235485, 0.01318359375, 0.01384277269244194, 0.01691894419491291, 0.02021484263241291, 0.02329101413488388, 0.02263183519244194, 0.02153320237994194, 0.02131347544491291, 0.01845703087747097, 0.01713867112994194, 0.01669921912252903, 0.01274413987994194, 0.01164550706744194, 0.009228515438735485, 0.00637206993997097, 0.002636718563735485, 0.0010986328125, -0.0004394531133584678, -0.002197265625, -0.0032958984375, -0.00527343712747097, -0.005932617001235485, -0.003955077845603228, -0.0032958984375, -0.005053710658103228, -0.0057128905318677425, -0.005932617001235485, -0.009228515438735485, -0.01274413987994194, -0.013623046688735485, -0.01669921912252903, -0.01933593675494194, -0.02219238132238388, -0.02482910081744194, -0.02680663950741291, -0.028564453125, -0.02878417819738388, -0.03054199181497097, -0.0296630859375, -0.03142089769244194, -0.0296630859375, -0.02504882775247097, -0.02219238132238388, -0.01999511756002903, -0.01494140550494194, -0.008349609561264515, -0.0004394531133584678, 0.0076904296875, 0.01604003831744194, 0.02373046800494194, 0.03164062276482582, 0.04130859300494194, 0.05009765550494194, 0.05910644307732582, 0.06679687649011612, 0.07646483927965164, 0.08305663615465164, 0.08701171725988388, 0.09052734076976776, 0.09514159709215164, 0.094482421875, 0.09360351413488388, 0.08920898288488388, 0.08767089247703552, 0.07932128757238388, 0.06877440959215164, 0.05756835639476776, 0.04768066108226776, 0.0318603515625, 0.01845703087747097, 0.002197265625, -0.014721679501235485, -0.0340576171875, -0.05075683444738388, -0.06767577677965164, -0.08349609375, -0.09975585341453552, -0.11557617038488388, -0.12656249105930328, -0.13666991889476776, -0.1439208984375, -0.151611328125, -0.15402831137180328, -0.15512694418430328, -0.15512694418430328, -0.14919432997703552, -0.13666991889476776, -0.12810058891773224, -0.1142578125, -0.098876953125, -0.08173827826976776, -0.06328124552965164, -0.04372558370232582, -0.02548827975988388, -0.0028564452659338713, 0.01735839806497097, 0.03647460788488388, 0.05690917745232582, 0.07338867336511612, 0.08986815810203552, 0.10810546576976776, 0.12041015177965164, 0.13095702230930328, 0.1395263671875, 0.14194335043430328, 0.14523924887180328, 0.14479979872703552, 0.14260253310203552, 0.13798828423023224, 0.13007812201976776, 0.11843261122703552, 0.107666015625, 0.09294433146715164, 0.07976073771715164, 0.06437987834215164, 0.04746093600988388, 0.02812499925494194, 0.01406249962747097, -0.0017578124534338713, -0.017578125, -0.03120117075741291, -0.0439453125, -0.054931640625, -0.06503906100988388, -0.07448730617761612, -0.07998047024011612, -0.08481445163488388, -0.0867919921875, -0.08811035007238388, -0.08635253459215164, -0.08261718600988388, -0.08063964545726776, -0.07492675632238388, -0.06833495944738388, -0.06196288764476776, -0.05295410007238388, -0.04526367038488388, -0.03647460788488388, -0.02768554538488388, -0.02241210825741291, -0.01384277269244194, -0.0054931640625, 0.0013183592818677425, 0.005932617001235485, 0.010986328125, 0.014501952566206455, 0.01713867112994194, 0.02043456956744194, 0.02395019493997097, 0.02065429650247097, 0.0208740234375, 0.02219238132238388, 0.0186767578125, 0.017578125, 0.01582031138241291, 0.01274413987994194, 0.010986328125, 0.009448242373764515, 0.004833984188735485, 0.0028564452659338713, 0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.004833984188735485, -0.0028564452659338713, -0.0035156249068677425, -0.0035156249068677425, -0.0035156249068677425, -0.001538085867650807, -0.0035156249068677425, -0.003955077845603228, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.002197265625, -0.0010986328125, 0.0004394531133584678, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, 0.0002197265566792339, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, 0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0028564452659338713, -0.0035156249068677425, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, -0.0002197265566792339, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, 0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0032958984375, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, 0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, 0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.0032958984375, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.003735351376235485, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.003735351376235485, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0002197265566792339, 0.0002197265566792339, -0.0002197265566792339, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.003076171735301614, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, 0.0002197265566792339, -0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, 0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, 0.0004394531133584678, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, 0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, 0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.003735351376235485, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, 0.0002197265566792339, 0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, 0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, 0.0, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, 0.0002197265566792339, -0.0010986328125, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, 0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.003076171735301614, -0.0028564452659338713, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.00439453125, -0.003735351376235485, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0002197265566792339, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, 0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.003735351376235485, -0.0017578124534338713, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){2}', '(angle, [3.4557519189])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0028564452659338713, -0.0032958984375, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0032958984375, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, 0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0028564452659338713, 0.0, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.003735351376235485, -0.001977538922801614, -0.001538085867650807, -0.0032958984375, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, -0.0028564452659338713, -0.0013183592818677425, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.003735351376235485, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0035156249068677425, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0035156249068677425, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.0032958984375, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0002197265566792339, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0010986328125, -0.003735351376235485, -0.0017578124534338713, 0.0002197265566792339, 0.0004394531133584678, -0.003955077845603228, -0.0035156249068677425, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, 0.0, -0.0010986328125, -0.001538085867650807, 0.0002197265566792339, 0.0, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.003735351376235485, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.003735351376235485, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0035156249068677425, -0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.003735351376235485, -0.0032958984375, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, 0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.003076171735301614, 0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0041748047806322575, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, 0.0, 0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0035156249068677425, 0.0, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.0032958984375, -0.0010986328125, -0.003735351376235485, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, 0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0032958984375, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0006591796409338713, 0.0, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.0002197265566792339, -0.0004394531133584678, -0.003076171735301614, -0.0013183592818677425, -0.0032958984375, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, 0.0004394531133584678, -0.001538085867650807, -0.0032958984375, -0.0008789062267169356, -0.0013183592818677425, -0.003735351376235485, -0.0024169920943677425, -0.001538085867650807, 0.0, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.0032958984375, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0035156249068677425, -0.0041748047806322575, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, 0.0, -0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.003735351376235485, -0.002197265625, 0.0008789062267169356, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, -0.0006591796409338713, -0.0035156249068677425, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.0035156249068677425, -0.0028564452659338713, -0.001977538922801614, -0.0041748047806322575, -0.0035156249068677425, -0.0035156249068677425, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0032958984375, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0035156249068677425, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.0032958984375, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0032958984375, -0.0028564452659338713, -0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.003076171735301614, -0.0017578124534338713, -0.003955077845603228, -0.0032958984375, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.0028564452659338713, -0.0002197265566792339, -0.003076171735301614, 0.0, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, 0.0, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, 0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.006591796875, -0.0087890625, -0.010327148251235485, -0.01582031138241291, -0.0208740234375, -0.02658691257238388, -0.03164062276482582, -0.03581542894244194, -0.03955078125, -0.04372558370232582, -0.04658202826976776, -0.05141601338982582, -0.05141601338982582, -0.052734375, -0.050537109375, -0.050537109375, -0.04482421651482582, -0.03911132737994194, -0.03383788838982582, -0.02395019493997097, -0.014501952566206455, -0.0028564452659338713, 0.010107421316206455, 0.02460937388241291, 0.04086913913488388, 0.05471191182732582, 0.06987304240465164, 0.08547362685203552, 0.10063476115465164, 0.11337890475988388, 0.12875975668430328, 0.13798828423023224, 0.14963378012180328, 0.15402831137180328, 0.15798339247703552, 0.15996094048023224, 0.15644530951976776, 0.15007324516773224, 0.1439208984375, 0.13029785454273224, 0.1153564453125, 0.09624022990465164, 0.07712402194738388, 0.05734863132238388, 0.03208007663488388, 0.003076171735301614, -0.02263183519244194, -0.05295410007238388, -0.07712402194738388, -0.10678710788488388, -0.12875975668430328, -0.15754394233226776, -0.18105468153953552, -0.2010498046875, -0.22148436307907104, -0.23532713949680328, -0.24477538466453552, -0.2518066465854645, -0.2551025450229645, -0.24697265028953552, -0.23972167074680328, -0.2230224609375, -0.20500487089157104, -0.18544921278953552, -0.1614990234375, -0.12985838949680328, -0.10261230170726776, -0.07119140774011612, -0.04262695088982582, -0.0068115233443677425, 0.02614746056497097, 0.05778808519244194, 0.09096679091453552, 0.11667480319738388, 0.14458008110523224, 0.17072753608226776, 0.19072264432907104, 0.21269530057907104, 0.22543944418430328, 0.23488768935203552, 0.24125975370407104, 0.24038085341453552, 0.2373046875, 0.22675780951976776, 0.21687011420726776, 0.19775390625, 0.17819823324680328, 0.15402831137180328, 0.13117675483226776, 0.10546875, 0.07888183742761612, 0.05009765550494194, 0.0274658203125, 0.0008789062267169356, -0.02351074106991291, -0.04790038987994194, -0.06789550930261612, -0.08986815810203552, -0.10590820014476776, -0.12019042670726776, -0.12985838949680328, -0.13798828423023224, -0.14414061605930328, -0.14545898139476776, -0.14655761420726776, -0.14128418266773224, -0.13447265326976776, -0.12700195610523224, -0.11557617038488388, -0.103271484375, -0.08986815810203552, -0.07602538913488388, -0.06306152045726776, -0.04702148213982582, -0.03361816331744194, -0.01955566368997097, -0.008129882626235485, 0.002197265625, 0.012304686941206455, 0.01999511756002903, 0.02658691257238388, 0.03251953050494194, 0.03779296949505806, 0.037353515625, 0.03757324069738388, 0.03823241963982582, 0.03757324069738388, 0.03317870944738388, 0.03098144382238388, 0.0263671875, 0.02285156212747097, 0.01823730394244194, 0.01516113243997097, 0.011425781063735485, 0.007250976283103228, 0.0032958984375, -0.0004394531133584678, -0.001538085867650807, -0.003955077845603228, -0.004833984188735485, -0.0054931640625, -0.0046142577193677425, -0.006152343470603228, -0.00747070275247097, -0.00966796837747097, -0.011206054128706455, -0.014501952566206455, -0.017578125, -0.02241210825741291, -0.02680663950741291, -0.03054199181497097, -0.03581542894244194, -0.03911132737994194, -0.0428466796875, -0.04768066108226776, -0.04746093600988388, -0.04899902269244194, -0.05031738057732582, -0.04790038987994194, -0.04790038987994194, -0.04570312425494194, -0.03867187350988388, -0.03251953050494194, -0.02285156212747097, -0.013403319753706455, -0.001977538922801614, 0.011425781063735485, 0.02812499925494194, 0.04042968526482582, 0.054931640625, 0.0714111328125, 0.08635253459215164, 0.09953612834215164, 0.11337890475988388, 0.12568359076976776, 0.13557128608226776, 0.14743651449680328, 0.15512694418430328, 0.15974120795726776, 0.16018065810203552, 0.15732420980930328, 0.1527099609375, 0.14479979872703552, 0.13117675483226776, 0.11733397841453552, 0.09843749552965164, 0.07844237983226776, 0.05581054463982582, 0.0318603515625, 0.0046142577193677425, -0.02065429650247097, -0.0516357421875, -0.07734374701976776, -0.10678710788488388, -0.13139648735523224, -0.158203125, -0.18083494901657104, -0.2010498046875, -0.22126464545726776, -0.23576658964157104, -0.24697265028953552, -0.2513671815395355, -0.2535644471645355, -0.24916991591453552, -0.24016112089157104, -0.22412109375, -0.2076416015625, -0.18479003012180328, -0.16083984076976776, -0.13117675483226776, -0.10239257663488388, -0.06965331733226776, -0.03911132737994194, -0.007031249813735485, 0.02373046800494194, 0.05756835639476776, 0.08745116740465164, 0.11733397841453552, 0.14436034858226776, 0.1702880859375, 0.19094237685203552, 0.21159666776657104, 0.22587889432907104, 0.2362060546875, 0.24213866889476776, 0.24082030355930328, 0.23818358778953552, 0.22697752714157104, 0.21555174887180328, 0.19731444120407104, 0.17929686605930328, 0.15512694418430328, 0.13227538764476776, 0.10568847507238388, 0.0791015625, 0.05075683444738388, 0.02790527231991291, 0.0006591796409338713, -0.02285156212747097, -0.0494384765625, -0.06745605170726776, -0.08942870795726776, -0.10546875, -0.11997070163488388, -0.13051757216453552, -0.13908691704273224, -0.14348144829273224, -0.1461181640625, -0.14479979872703552, -0.14040526747703552, -0.1351318359375, -0.12546385824680328, -0.11513671278953552, -0.10261230170726776, -0.08876952528953552, -0.07602538913488388, -0.06196288764476776, -0.04768066108226776, -0.03229980543255806, -0.02263183519244194, -0.01054687425494194, 0.003735351376235485, 0.01274413987994194, 0.02065429650247097, 0.0274658203125, 0.03339843824505806, 0.03515625, 0.03603515401482582, 0.04020996019244194, 0.03823241963982582, 0.03801269456744194, 0.03383788838982582, 0.03098144382238388, 0.02812499925494194, 0.02351074106991291, 0.01889648474752903, 0.0142822265625, 0.00966796837747097, 0.006152343470603228, 0.003955077845603228, 0.0006591796409338713, -0.0028564452659338713, -0.004833984188735485, -0.00637206993997097, -0.005932617001235485, -0.005932617001235485, -0.006152343470603228, -0.008349609561264515, -0.0087890625, -0.01186523400247097, -0.014721679501235485, -0.01911620981991291, -0.02263183519244194, -0.02702636644244194, -0.0296630859375, -0.03427734225988388, -0.03955078125, -0.04262695088982582, -0.04680175706744194, -0.04768066108226776, -0.050537109375, -0.04987792670726776, -0.04790038987994194, -0.04570312425494194, -0.0428466796875, -0.03779296949505806, -0.03208007663488388, -0.02329101413488388, -0.0142822265625, 0.0006591796409338713, 0.010986328125, 0.02614746056497097, 0.0406494140625, 0.05449218675494194, 0.06899414211511612, 0.08437499403953552, 0.10107421875, 0.11381835490465164, 0.12656249105930328, 0.13798828423023224, 0.14677734673023224, 0.15095214545726776, 0.15886230766773224, 0.16018065810203552, 0.15732420980930328, 0.15029296278953552, 0.14370116591453552, 0.12985838949680328, 0.11557617038488388, 0.09580077975988388, 0.0780029296875, 0.05339355394244194, 0.0296630859375, 0.002636718563735485, -0.02109374850988388, -0.05317382514476776, -0.07514648139476776, -0.10349120944738388, -0.13205565512180328, -0.158203125, -0.17929686605930328, -0.20302733778953552, -0.22104491293430328, -0.23466795682907104, -0.24807128310203552, -0.2524658143520355, -0.2537841796875, -0.24916991591453552, -0.2373046875, -0.2230224609375, -0.20588378608226776, -0.1845703125, -0.15974120795726776, -0.13095702230930328, -0.10195311903953552, -0.0692138671875, -0.03933105245232582, -0.0068115233443677425, 0.0252685546875, 0.05976562201976776, 0.08920898288488388, 0.11579589545726776, 0.14545898139476776, 0.17072753608226776, 0.19050292670726776, 0.21005858480930328, 0.22478026151657104, 0.235107421875, 0.24082030355930328, 0.24125975370407104, 0.23642577230930328, 0.228515625, 0.21467284858226776, 0.19753417372703552, 0.17709960043430328, 0.1549072265625, 0.13205565512180328, 0.10458984225988388, 0.08041992038488388, 0.05229492112994194, 0.02878417819738388, -0.0010986328125, -0.02482910081744194, -0.04812011495232582, -0.06965331733226776, -0.08701171725988388, -0.10480956733226776, -0.1197509765625, -0.13161620497703552, -0.13864745199680328, -0.14501953125, -0.14655761420726776, -0.14633788168430328, -0.14084471762180328, -0.13315428793430328, -0.12568359076976776, -0.11623534560203552, -0.10305175185203552, -0.09052734076976776, -0.07624511420726776, -0.0615234375, -0.04746093600988388, -0.03427734225988388, -0.02285156212747097, -0.00966796837747097, 0.0035156249068677425, 0.0098876953125, 0.01779785193502903, 0.02812499925494194, 0.03229980543255806, 0.03493652120232582, 0.03691406175494194, 0.04042968526482582, 0.03801269456744194, 0.03669433668255806, 0.03229980543255806, 0.03010253794491291, 0.02724609337747097, 0.02373046800494194, 0.01955566368997097, 0.013623046688735485, 0.010986328125, 0.007031249813735485, 0.0041748047806322575, 0.0010986328125, -0.0017578124534338713, -0.004833984188735485, -0.006591796875, -0.00637206993997097, -0.0054931640625, -0.00527343712747097, -0.008129882626235485, -0.01054687425494194, -0.010986328125, -0.01406249962747097, -0.01823730394244194, -0.02065429650247097, -0.02724609337747097, -0.03120117075741291, -0.037353515625, -0.04042968526482582, -0.04416503757238388, -0.04680175706744194, -0.05031738057732582, -0.05141601338982582, -0.0516357421875, -0.05141601338982582, -0.0472412109375, -0.04636230319738388, -0.037353515625, -0.0318603515625, -0.0230712890625, -0.013623046688735485, -0.0017578124534338713, 0.00966796837747097, 0.0252685546875, 0.04152831807732582, 0.05756835639476776, 0.07053222507238388, 0.08503417670726776, 0.0999755859375, 0.11293944716453552, 0.12612304091453552, 0.1395263671875, 0.14743651449680328, 0.15424804389476776, 0.1593017578125, 0.16083984076976776, 0.15754394233226776, 0.15183104574680328, 0.1439208984375, 0.13161620497703552, 0.116455078125, 0.0966796875, 0.07734374701976776, 0.05361327901482582, 0.03164062276482582, 0.004833984188735485, -0.0230712890625, -0.05075683444738388, -0.07514648139476776, -0.1043701171875, -0.129638671875, -0.15644530951976776, -0.17951659858226776, -0.20061033964157104, -0.21928709745407104, -0.23686522245407104, -0.24697265028953552, -0.2515869140625, -0.2562011778354645, -0.24895018339157104, -0.24191893637180328, -0.22412109375, -0.20456542074680328, -0.18171386420726776, -0.15798339247703552, -0.13139648735523224, -0.10371093451976776, -0.07053222507238388, -0.04020996019244194, -0.00439453125, 0.02482910081744194, 0.05800781026482582, 0.090087890625, 0.11821288615465164, 0.14501953125, 0.17160643637180328, 0.19138182699680328, 0.21027831733226776, 0.22412109375, 0.23554687201976776, 0.24147948622703552, 0.2406005859375, 0.23862303793430328, 0.22653807699680328, 0.21335448324680328, 0.19731444120407104, 0.17709960043430328, 0.15446777641773224, 0.1318359375, 0.10458984225988388, 0.0802001953125, 0.0516357421875, 0.02614746056497097, 0.0010986328125, -0.02285156212747097, -0.04812011495232582, -0.06855468451976776, -0.0889892578125, -0.10568847507238388, -0.11931151896715164, -0.1318359375, -0.13820800185203552, -0.1461181640625, -0.147216796875, -0.14523924887180328, -0.14084471762180328, -0.13447265326976776, -0.12502440810203552, -0.1153564453125, -0.1021728515625, -0.08613280951976776, -0.07602538913488388, -0.06218261644244194, -0.04855956882238388, -0.03339843824505806, -0.02021484263241291, -0.008129882626235485, 0.002636718563735485, 0.011206054128706455, 0.02197265625, 0.02812499925494194, 0.03229980543255806, 0.03515625, 0.03713378682732582, 0.04042968526482582, 0.03889160230755806, 0.03603515401482582, 0.03339843824505806, 0.02988281100988388, 0.02614746056497097, 0.02395019493997097, 0.02065429650247097, 0.01406249962747097, 0.01186523400247097, 0.0076904296875, 0.002636718563735485, 0.0002197265566792339, -0.001977538922801614, -0.003955077845603228, -0.0054931640625, -0.007250976283103228, -0.004833984188735485, -0.004833984188735485, -0.005053710658103228, -0.0046142577193677425, -0.0046142577193677425, -0.003735351376235485, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.003955077845603228, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, 0.0006591796409338713, 0.0006591796409338713, 0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, 0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.0013183592818677425, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.003955077845603228, -0.0041748047806322575, -0.002197265625, -0.0035156249068677425, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0035156249068677425, -0.003076171735301614, -0.0008789062267169356, -0.0032958984375, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.003735351376235485, -0.003076171735301614, -0.001977538922801614, -0.0032958984375, -0.0028564452659338713, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, 0.0004394531133584678, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, 0.0, -0.002197265625, -0.002636718563735485, -0.0032958984375, -0.0032958984375, -0.002197265625, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.0028564452659338713, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.003955077845603228, -0.0013183592818677425, -0.0010986328125, 0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, 0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0028564452659338713, -0.0010986328125, 0.0, -0.003076171735301614, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, 0.0002197265566792339, -0.001538085867650807, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0006591796409338713, -0.0008789062267169356, -0.0032958984375, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0004394531133584678, -0.0017578124534338713, 0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, -0.0002197265566792339, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, -0.002636718563735485, 0.0, -0.0013183592818677425, -0.0017578124534338713, 0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.0032958984375, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0035156249068677425, -0.0032958984375, -0.0013183592818677425, -0.001538085867650807, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, 0.0, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0002197265566792339, -0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, 0.0, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0004394531133584678, 0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.001538085867650807, 0.0006591796409338713, -0.0028564452659338713, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0006591796409338713, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0028564452659338713, -0.0028564452659338713, -0.0004394531133584678, -0.0008789062267169356, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, 0.0, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.002636718563735485, 0.0, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, 0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){2}', '(angle, [4.8694686131])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.0032958984375, -0.002197265625, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.003955077845603228, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, 0.0, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0035156249068677425, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.003955077845603228, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, 0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, 0.0006591796409338713, -0.002197265625, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, 0.0, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, 0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.002636718563735485, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, 0.0004394531133584678, -0.0010986328125, -0.0035156249068677425, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, -0.001977538922801614, 0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.002636718563735485, -0.003955077845603228, -0.0028564452659338713, -0.001977538922801614, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, 0.0002197265566792339, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, 0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0004394531133584678, -0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, 0.0002197265566792339, 0.0, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, 0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, 0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, 0.0002197265566792339, 0.0006591796409338713, -0.0032958984375, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.0035156249068677425, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, 0.0002197265566792339, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, 0.0, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, 0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0028564452659338713, -0.0035156249068677425, -0.0010986328125, -0.0035156249068677425, -0.002636718563735485, -0.0006591796409338713, -0.002636718563735485, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0035156249068677425, -0.0004394531133584678, -0.0013183592818677425, -0.0041748047806322575, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.0010986328125, -0.002197265625, -0.0006591796409338713, -0.0002197265566792339, 0.0, -0.0008789062267169356, -0.0010986328125, 0.0010986328125, 0.0006591796409338713, -0.0010986328125, -0.0032958984375, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, 0.0, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, 0.0002197265566792339, 0.0, -0.0004394531133584678, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, 0.0, -0.0013183592818677425, 0.0, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0041748047806322575, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, 0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0010986328125, 0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, 0.0, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.0004394531133584678, -0.0002197265566792339, -0.0028564452659338713, -0.0004394531133584678, -0.0010986328125, 0.0, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.00439453125, -0.00856933556497097, -0.01274413987994194, -0.0164794921875, -0.02153320237994194, -0.028564453125, -0.03537597507238388, -0.04196777194738388, -0.04768066108226776, -0.05471191182732582, -0.06174316257238388, -0.06613769382238388, -0.06943359225988388, -0.07272949069738388, -0.07404784858226776, -0.07119140774011612, -0.06789550930261612, -0.06328124552965164, -0.05668945237994194, -0.04570312425494194, -0.03339843824505806, -0.02021484263241291, -0.0008789062267169356, 0.01384277269244194, 0.0362548828125, 0.05317382514476776, 0.07492675632238388, 0.09711913764476776, 0.11887206882238388, 0.1395263671875, 0.15776367485523224, 0.17556151747703552, 0.19313964247703552, 0.20566405355930328, 0.21357421576976776, 0.22038573026657104, 0.22016601264476776, 0.21730956435203552, 0.21115721762180328, 0.19753417372703552, 0.17885741591453552, 0.15996094048023224, 0.1351318359375, 0.10964354872703552, 0.07514648139476776, 0.04460449144244194, 0.0087890625, -0.02219238132238388, -0.05998535081744194, -0.09470214694738388, -0.13271483778953552, -0.16721190512180328, -0.20126952230930328, -0.23247069120407104, -0.261474609375, -0.28937986493110657, -0.3089355528354645, -0.3271728456020355, -0.33464354276657104, -0.3403564393520355, -0.32915037870407104, -0.3188232481479645, -0.29487302899360657, -0.2737793028354645, -0.24367675185203552, -0.20961913466453552, -0.17731933295726776, -0.13601073622703552, -0.09755858778953552, -0.05537109076976776, -0.01164550706744194, 0.02658691257238388, 0.06965331733226776, 0.10634765028953552, 0.14897461235523224, 0.18325194716453552, 0.21774901449680328, 0.24873046576976776, 0.27421873807907104, 0.29926756024360657, 0.3131103515625, 0.32233884930610657, 0.3284912109375, 0.3216796815395355, 0.3095947206020355, 0.2911376953125, 0.2667480409145355, 0.24345701932907104, 0.20895995199680328, 0.17819823324680328, 0.14501953125, 0.11184081435203552, 0.07558593899011612, 0.04020996019244194, 0.004833984188735485, -0.02944335900247097, -0.06240234151482582, -0.08745116740465164, -0.1175537109375, -0.13996581733226776, -0.16259765625, -0.17841796576976776, -0.18962401151657104, -0.19863280653953552, -0.20236815512180328, -0.20083007216453552, -0.19577635824680328, -0.18808592855930328, -0.17314451932907104, -0.1614990234375, -0.14260253310203552, -0.12436523288488388, -0.10393065959215164, -0.08635253459215164, -0.06394042819738388, -0.04702148213982582, -0.02922363206744194, -0.012304686941206455, 0.005053710658103228, 0.01889648474752903, 0.03054199181497097, 0.03955078125, 0.04746093600988388, 0.05207519233226776, 0.0560302734375, 0.05559081956744194, 0.05559081956744194, 0.0538330078125, 0.04855956882238388, 0.04526367038488388, 0.03977050632238388, 0.0340576171875, 0.0274658203125, 0.02131347544491291, 0.01582031138241291, 0.00966796837747097, 0.00439453125, -0.0008789062267169356, -0.003076171735301614, -0.00637206993997097, -0.00637206993997097, -0.007910155691206455, -0.0057128905318677425, -0.006152343470603228, -0.0098876953125, -0.013623046688735485, -0.0142822265625, -0.01999511756002903, -0.02504882775247097, -0.02944335900247097, -0.03779296949505806, -0.041748046875, -0.04987792670726776, -0.0538330078125, -0.059326171875, -0.06547851115465164, -0.06657714396715164, -0.0692138671875, -0.07053222507238388, -0.07009277492761612, -0.06569824367761612, -0.06108398362994194, -0.0538330078125, -0.04526367038488388, -0.0318603515625, -0.0186767578125, -0.0004394531133584678, 0.01604003831744194, 0.03559570387005806, 0.05668945237994194, 0.07778320461511612, 0.09931640326976776, 0.12106933444738388, 0.13908691704273224, 0.15886230766773224, 0.17622070014476776, 0.193359375, 0.20654296875, 0.21621093153953552, 0.2208251953125, 0.22258299589157104, 0.22016601264476776, 0.2098388671875, 0.19951170682907104, 0.17731933295726776, 0.15776367485523224, 0.13579101860523224, 0.10788574069738388, 0.07624511420726776, 0.04658202826976776, 0.00856933556497097, -0.0230712890625, -0.06416015326976776, -0.09689941257238388, -0.1318359375, -0.16721190512180328, -0.2032470703125, -0.23444823920726776, -0.2623535096645355, -0.2880615293979645, -0.31157225370407104, -0.3287109434604645, -0.3374999761581421, -0.3396972417831421, -0.3304687440395355, -0.3197021484375, -0.298828125, -0.27399900555610657, -0.24367675185203552, -0.2120361328125, -0.17424315214157104, -0.13754881918430328, -0.09755858778953552, -0.0582275390625, -0.013403319753706455, 0.02592773362994194, 0.06987304240465164, 0.10964354872703552, 0.14787597954273224, 0.18391112983226776, 0.21840819716453552, 0.24960936605930328, 0.27399900555610657, 0.2975097596645355, 0.3166259825229645, 0.32585448026657104, 0.32563474774360657, 0.3232177793979645, 0.30805662274360657, 0.29179686307907104, 0.2682861387729645, 0.24323730170726776, 0.21269530057907104, 0.18061523139476776, 0.14458008110523224, 0.10920409858226776, 0.0714111328125, 0.03867187350988388, 0.003955077845603228, -0.02702636644244194, -0.06174316257238388, -0.09250488132238388, -0.1197509765625, -0.13996581733226776, -0.16215820610523224, -0.17973631620407104, -0.19182127714157104, -0.19973143935203552, -0.20126952230930328, -0.2032470703125, -0.19643554091453552, -0.19050292670726776, -0.1768798828125, -0.15952147543430328, -0.14194335043430328, -0.12656249105930328, -0.10590820014476776, -0.08701171725988388, -0.06789550930261612, -0.0472412109375, -0.02768554538488388, -0.012304686941206455, 0.0046142577193677425, 0.017578125, 0.0296630859375, 0.03911132737994194, 0.04438476264476776, 0.0516357421875, 0.05427245795726776, 0.05712890625, 0.05690917745232582, 0.05339355394244194, 0.04965820163488388, 0.0472412109375, 0.04020996019244194, 0.0318603515625, 0.02724609337747097, 0.02175292931497097, 0.01516113243997097, 0.0087890625, 0.005053710658103228, 0.0006591796409338713, -0.0024169920943677425, -0.00637206993997097, -0.0076904296875, -0.005932617001235485, -0.008129882626235485, -0.0054931640625, -0.0076904296875, -0.01318359375, -0.01274413987994194, -0.02043456956744194, -0.02241210825741291, -0.0296630859375, -0.03669433668255806, -0.04152831807732582, -0.04790038987994194, -0.05405273288488388, -0.05954589694738388, -0.06503906100988388, -0.06855468451976776, -0.07009277492761612, -0.0703125, -0.06943359225988388, -0.06613769382238388, -0.06064452975988388, -0.05251464620232582, -0.0428466796875, -0.03098144382238388, -0.01823730394244194, -0.0008789062267169356, 0.01582031138241291, 0.037353515625, 0.05515136569738388, 0.07932128757238388, 0.0977783203125, 0.11931151896715164, 0.14018554985523224, 0.1593017578125, 0.1768798828125, 0.19291990995407104, 0.20786131918430328, 0.2164306640625, 0.22280272841453552, 0.22258299589157104, 0.21884764730930328, 0.21137695014476776, 0.19753417372703552, 0.18105468153953552, 0.16105957329273224, 0.1351318359375, 0.10898437350988388, 0.07734374701976776, 0.0450439453125, 0.009448242373764515, -0.0252685546875, -0.06306152045726776, -0.09624022990465164, -0.13315428793430328, -0.1680908203125, -0.20280760526657104, -0.23466795682907104, -0.26520994305610657, -0.2911376953125, -0.31047362089157104, -0.32805174589157104, -0.3372802734375, -0.3414550721645355, -0.33112791180610657, -0.32014158368110657, -0.29597166180610657, -0.2755371034145355, -0.243896484375, -0.21115721762180328, -0.17270506918430328, -0.13688965141773224, -0.09492187201976776, -0.05712890625, -0.010986328125, 0.02570800669491291, 0.0714111328125, 0.10964354872703552, 0.147216796875, 0.18522948026657104, 0.22038573026657104, 0.24873046576976776, 0.27751463651657104, 0.3001464903354645, 0.3153076171875, 0.3282714784145355, 0.3260742127895355, 0.3227783143520355, 0.30915525555610657, 0.2935546934604645, 0.2669677734375, 0.24191893637180328, 0.21225585043430328, 0.17973631620407104, 0.14458008110523224, 0.10810546576976776, 0.07207030802965164, 0.0406494140625, 0.002636718563735485, -0.02768554538488388, -0.06218261644244194, -0.09184569865465164, -0.11909179389476776, -0.14348144829273224, -0.16347655653953552, -0.17885741591453552, -0.19182127714157104, -0.2010498046875, -0.20412597060203552, -0.20390623807907104, -0.19797362387180328, -0.18896484375, -0.17600096762180328, -0.16237792372703552, -0.14304198324680328, -0.1263427734375, -0.10722655802965164, -0.0867919921875, -0.0648193359375, -0.04636230319738388, -0.028564453125, -0.01186523400247097, 0.003076171735301614, 0.01801757700741291, 0.03120117075741291, 0.03955078125, 0.04636230319738388, 0.050537109375, 0.05624999850988388, 0.0582275390625, 0.05559081956744194, 0.05471191182732582, 0.050537109375, 0.04570312425494194, 0.04020996019244194, 0.03449707105755806, 0.0274658203125, 0.02351074106991291, 0.015600585378706455, 0.009448242373764515, 0.005932617001235485, 0.0013183592818677425, -0.0024169920943677425, -0.00527343712747097, -0.006591796875, -0.006591796875, -0.0057128905318677425, -0.008129882626235485, -0.01054687425494194, -0.010107421316206455, -0.015600585378706455, -0.0186767578125, -0.02460937388241291, -0.03076171875, -0.0362548828125, -0.04328612983226776, -0.04965820163488388, -0.0538330078125, -0.0604248046875, -0.06591796875, -0.06899414211511612, -0.0714111328125, -0.0703125, -0.0692138671875, -0.06657714396715164, -0.06108398362994194, -0.05317382514476776, -0.0450439453125, -0.03164062276482582, -0.01669921912252903, -0.0004394531133584678, 0.01604003831744194, 0.03537597507238388, 0.05515136569738388, 0.07866210490465164, 0.09909667819738388, 0.11997070163488388, 0.140625, 0.15974120795726776, 0.17775878310203552, 0.19423827528953552, 0.20742186903953552, 0.21599119901657104, 0.22258299589157104, 0.22324217855930328, 0.221923828125, 0.2120361328125, 0.19709472358226776, 0.18105468153953552, 0.16018065810203552, 0.13381347060203552, 0.10942382365465164, 0.0780029296875, 0.04702148213982582, 0.010327148251235485, -0.02329101413488388, -0.06350097805261612, -0.09602050483226776, -0.134033203125, -0.16721190512180328, -0.20478515326976776, -0.23576658964157104, -0.26433104276657104, -0.2924560606479645, -0.3131103515625, -0.3306884765625, -0.3396972417831421, -0.34123533964157104, -0.33222654461860657, -0.3205810487270355, -0.2975097596645355, -0.2737793028354645, -0.24235838651657104, -0.21181640028953552, -0.17270506918430328, -0.13776855170726776, -0.09645995497703552, -0.05471191182732582, -0.01186523400247097, 0.02658691257238388, 0.06943359225988388, 0.10854491591453552, 0.14919432997703552, 0.1834716796875, 0.21950682997703552, 0.24895018339157104, 0.27509763836860657, 0.30058592557907104, 0.3144287168979645, 0.32563474774360657, 0.3271728456020355, 0.3240966796875, 0.3095947206020355, 0.2924560606479645, 0.26740720868110657, 0.24257811903953552, 0.21005858480930328, 0.17885741591453552, 0.14436034858226776, 0.1109619140625, 0.0736083984375, 0.03933105245232582, 0.00439453125, -0.0274658203125, -0.0604248046875, -0.09228515625, -0.11843261122703552, -0.14238281548023224, -0.16325683891773224, -0.18039549887180328, -0.193359375, -0.1988525390625, -0.20346678793430328, -0.20500487089157104, -0.19907225668430328, -0.18962401151657104, -0.17578125, -0.16105957329273224, -0.14194335043430328, -0.12480468302965164, -0.10590820014476776, -0.08525390177965164, -0.06591796875, -0.0450439453125, -0.02944335900247097, -0.013623046688735485, 0.0054931640625, 0.01801757700741291, 0.02922363206744194, 0.04042968526482582, 0.04746093600988388, 0.0516357421875, 0.054931640625, 0.05844726413488388, 0.05690917745232582, 0.05361327901482582, 0.04965820163488388, 0.04570312425494194, 0.04020996019244194, 0.03515625, 0.02900390513241291, 0.0208740234375, 0.01691894419491291, 0.01164550706744194, 0.0054931640625, 0.0, -0.003955077845603228, -0.00527343712747097, -0.00747070275247097, -0.00747070275247097, -0.0054931640625, -0.0057128905318677425, -0.006591796875, -0.005932617001235485, -0.00637206993997097, -0.005053710658103228, -0.005053710658103228, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.003735351376235485, -0.002197265625, -0.0010986328125, 0.0006591796409338713, 0.0008789062267169356, 0.0008789062267169356, 0.0017578124534338713, 0.002197265625, 0.0008789062267169356, 0.0002197265566792339, 0.001538085867650807, -0.0002197265566792339, -0.0002197265566792339, 0.0, 0.0004394531133584678, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, 0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.002636718563735485, -0.0032958984375, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, 0.0, 0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.0032958984375, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0017578124534338713, 0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0032958984375, -0.003076171735301614, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0028564452659338713, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.0004394531133584678, -0.002197265625, -0.0035156249068677425, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0002197265566792339, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.003735351376235485, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0035156249068677425, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.002636718563735485, -0.0004394531133584678, 0.0004394531133584678, -0.002197265625, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, 0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, 0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, 0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0035156249068677425, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0032958984375, -0.003076171735301614, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0032958984375, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.003735351376235485, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.0032958984375, -0.001977538922801614, -0.0006591796409338713, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, 0.0, -0.001977538922801614, 0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.003735351376235485, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, 0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, 0.0, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0004394531133584678, 0.0, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0028564452659338713, -0.0041748047806322575, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, 0.0, -0.001977538922801614, -0.0032958984375, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.0035156249068677425, 0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 0, ... ]){2}', '(angle, [6.2831853072])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0035156249068677425, -0.0028564452659338713, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0035156249068677425, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.0002197265566792339, -0.0024169920943677425, -0.0035156249068677425, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.003076171735301614, -0.001977538922801614, -0.003955077845603228, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, 0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, 0.0004394531133584678, -0.001538085867650807, -0.0002197265566792339, -0.002636718563735485, -0.003076171735301614, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.0035156249068677425, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.002636718563735485, 0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0035156249068677425, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.00439453125, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0013183592818677425, 0.0, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0010986328125, -0.002197265625, 0.0, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, 0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.002636718563735485, -0.0008789062267169356, -0.003076171735301614, -0.002636718563735485, 0.0002197265566792339, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, 0.0, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0006591796409338713, 0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, 0.0002197265566792339, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, 0.0, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.003955077845603228, -0.0035156249068677425, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, 0.0004394531133584678, -0.0032958984375, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.003076171735301614, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.003735351376235485, -0.0028564452659338713, -0.0004394531133584678, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, 0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, 0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0035156249068677425, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, 0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.0035156249068677425, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, 0.0, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0035156249068677425, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0032958984375, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0032958984375, -0.0008789062267169356, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, 0.0004394531133584678, 0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, 0.0004394531133584678, 0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.002636718563735485, 0.0, -0.0002197265566792339, -0.001977538922801614, -0.0028564452659338713, -0.0035156249068677425, 0.0, -0.0010986328125, -0.001977538922801614, 0.0, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.0004394531133584678, -0.0002197265566792339, -0.002197265625, -0.0017578124534338713, 0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.006152343470603228, -0.008129882626235485, -0.0142822265625, -0.01889648474752903, -0.0263671875, -0.03691406175494194, -0.04548339545726776, -0.05317382514476776, -0.0615234375, -0.06943359225988388, -0.07866210490465164, -0.08327636867761612, -0.08942870795726776, -0.09272460639476776, -0.09250488132238388, -0.09140624850988388, -0.087890625, -0.081298828125, -0.072509765625, -0.05800781026482582, -0.041748046875, -0.02351074106991291, -0.001538085867650807, 0.01735839806497097, 0.04328612983226776, 0.06899414211511612, 0.09624022990465164, 0.12062987685203552, 0.14809569716453552, 0.17600096762180328, 0.19929198920726776, 0.22016601264476776, 0.24257811903953552, 0.25861814618110657, 0.2700439393520355, 0.2781738340854645, 0.27685546875, 0.27399900555610657, 0.2605957090854645, 0.2449951171875, 0.22258299589157104, 0.19929198920726776, 0.1669921875, 0.1351318359375, 0.09689941257238388, 0.06240234151482582, 0.02065429650247097, -0.02021484263241291, -0.063720703125, -0.10371093451976776, -0.15007324516773224, -0.19050292670726776, -0.23356932401657104, -0.2678466737270355, -0.3056396543979645, -0.33662107586860657, -0.36320799589157104, -0.3891357183456421, -0.4012206792831421, -0.4078124761581421, -0.39506834745407104, -0.3812255859375, -0.3557372987270355, -0.3260742127895355, -0.29069823026657104, -0.25202634930610657, -0.20961913466453552, -0.16874998807907104, -0.12128905951976776, -0.07382812350988388, -0.02329101413488388, 0.0186767578125, 0.07053222507238388, 0.11579589545726776, 0.16259765625, 0.20566405355930328, 0.2493896484375, 0.2869628965854645, 0.32014158368110657, 0.35112303495407104, 0.3744140565395355, 0.39177244901657104, 0.39704588055610657, 0.39396971464157104, 0.3770507574081421, 0.3572753667831421, 0.327392578125, 0.298828125, 0.2605957090854645, 0.22390136122703552, 0.18039549887180328, 0.13864745199680328, 0.09514159709215164, 0.05778808519244194, 0.012304686941206455, -0.02988281100988388, -0.07053222507238388, -0.10832519084215164, -0.14458008110523224, -0.173583984375, -0.20126952230930328, -0.22148436307907104, -0.24125975370407104, -0.25554198026657104, -0.26191404461860657, -0.2623535096645355, -0.25422361493110657, -0.24367675185203552, -0.22390136122703552, -0.20566405355930328, -0.18479003012180328, -0.1614990234375, -0.13359375298023224, -0.10898437350988388, -0.08327636867761612, -0.05844726413488388, -0.03449707105755806, -0.01274413987994194, 0.0068115233443677425, 0.0274658203125, 0.03955078125, 0.05317382514476776, 0.06108398362994194, 0.06789550930261612, 0.07316894084215164, 0.07448730617761612, 0.07514648139476776, 0.07185058295726776, 0.06525878608226776, 0.06130370870232582, 0.05251464620232582, 0.046142578125, 0.03713378682732582, 0.02944335900247097, 0.01999511756002903, 0.01494140550494194, 0.006152343470603228, 0.0010986328125, -0.0028564452659338713, -0.0068115233443677425, -0.0076904296875, -0.0068115233443677425, -0.00747070275247097, -0.0098876953125, -0.012524413876235485, -0.01713867112994194, -0.02065429650247097, -0.024169921875, -0.0318603515625, -0.03933105245232582, -0.04702148213982582, -0.05537109076976776, -0.063720703125, -0.06965331733226776, -0.07778320461511612, -0.08481445163488388, -0.08920898288488388, -0.09162597358226776, -0.09096679091453552, -0.09030761569738388, -0.08503417670726776, -0.07734374701976776, -0.06767577677965164, -0.054931640625, -0.03823241963982582, -0.0208740234375, -0.0002197265566792339, 0.02329101413488388, 0.04899902269244194, 0.06877440959215164, 0.10063476115465164, 0.12700195610523224, 0.15183104574680328, 0.1790771484375, 0.20302733778953552, 0.22587889432907104, 0.24785155057907104, 0.2649902403354645, 0.2759765684604645, 0.28168943524360657, 0.2825683653354645, 0.2777343690395355, 0.26411131024360657, 0.24631346762180328, 0.22763670980930328, 0.20061033964157104, 0.16874998807907104, 0.13601073622703552, 0.09711913764476776, 0.06174316257238388, 0.01801757700741291, -0.02263183519244194, -0.068115234375, -0.10854491591453552, -0.15336914360523224, -0.19094237685203552, -0.23642577230930328, -0.2735595703125, -0.30915525555610657, -0.34431150555610657, -0.37089842557907104, -0.39484861493110657, -0.4062744081020355, -0.41374510526657104, -0.4001220464706421, -0.3843017518520355, -0.3590331971645355, -0.33002927899360657, -0.2924560606479645, -0.25927734375, -0.2109375, -0.16721190512180328, -0.12172850966453552, -0.07382812350988388, -0.02285156212747097, 0.02285156212747097, 0.07294921576976776, 0.11513671278953552, 0.1669921875, 0.20698241889476776, 0.2502685487270355, 0.2909179627895355, 0.32585448026657104, 0.35529783368110657, 0.3768310546875, 0.3957275152206421, 0.39990234375, 0.39814451336860657, 0.3810058534145355, 0.36210936307907104, 0.3306884765625, 0.29948729276657104, 0.2603759765625, 0.22390136122703552, 0.18083494901657104, 0.140625, 0.09580077975988388, 0.0560302734375, 0.011206054128706455, -0.03032226487994194, -0.07119140774011612, -0.11008300632238388, -0.14545898139476776, -0.17402343451976776, -0.2054443359375, -0.22873534262180328, -0.24455565214157104, -0.257080078125, -0.2601562440395355, -0.26433104276657104, -0.25773924589157104, -0.24697265028953552, -0.22653807699680328, -0.20808105170726776, -0.1856689453125, -0.16193847358226776, -0.1373291015625, -0.11052245646715164, -0.08393554389476776, -0.0604248046875, -0.03581542894244194, -0.015380859375, 0.007250976283103228, 0.02504882775247097, 0.04042968526482582, 0.05405273288488388, 0.0615234375, 0.0703125, 0.0736083984375, 0.07448730617761612, 0.07338867336511612, 0.07207030802965164, 0.06591796875, 0.06174316257238388, 0.05295410007238388, 0.04460449144244194, 0.03669433668255806, 0.02988281100988388, 0.02109374850988388, 0.01318359375, 0.0068115233443677425, 0.002636718563735485, -0.003735351376235485, -0.008129882626235485, -0.0098876953125, -0.009008788503706455, -0.00747070275247097, -0.009228515438735485, -0.012304686941206455, -0.0142822265625, -0.01911620981991291, -0.0230712890625, -0.03427734225988388, -0.03757324069738388, -0.04812011495232582, -0.054931640625, -0.063720703125, -0.07229004055261612, -0.0780029296875, -0.0845947265625, -0.08964843302965164, -0.0911865234375, -0.09162597358226776, -0.09140624850988388, -0.0867919921875, -0.07976073771715164, -0.06899414211511612, -0.05515136569738388, -0.03801269456744194, -0.02043456956744194, 0.0002197265566792339, 0.02175292931497097, 0.04899902269244194, 0.07185058295726776, 0.09843749552965164, 0.12480468302965164, 0.15380859375, 0.18017578125, 0.20698241889476776, 0.22917479276657104, 0.2471923828125, 0.26542967557907104, 0.2781738340854645, 0.2843261659145355, 0.2832275331020355, 0.2799316346645355, 0.26652830839157104, 0.24960936605930328, 0.2274169921875, 0.20083007216453552, 0.16721190512180328, 0.13601073622703552, 0.09733886271715164, 0.06108398362994194, 0.01999511756002903, -0.02219238132238388, -0.06943359225988388, -0.10832519084215164, -0.15556640923023224, -0.19379882514476776, -0.23576658964157104, -0.27421873807907104, -0.3122314512729645, -0.34541013836860657, -0.37309569120407104, -0.39814451336860657, -0.41132810711860657, -0.4144042730331421, -0.4012206792831421, -0.3886962831020355, -0.3616698980331421, -0.33134764432907104, -0.2968505918979645, -0.25444334745407104, -0.21379393339157104, -0.17050780355930328, -0.11953124403953552, -0.07448730617761612, -0.02395019493997097, 0.02460937388241291, 0.07470703125, 0.11733397841453552, 0.16787108778953552, 0.21159666776657104, 0.2535644471645355, 0.29179686307907104, 0.32585448026657104, 0.35551756620407104, 0.3788085877895355, 0.39594724774360657, 0.40275877714157104, 0.40034177899360657, 0.38276365399360657, 0.36101073026657104, 0.33112791180610657, 0.30146482586860657, 0.2616943418979645, 0.22499999403953552, 0.18105468153953552, 0.13864745199680328, 0.0977783203125, 0.05537109076976776, 0.010107421316206455, -0.03142089769244194, -0.07646483927965164, -0.10744628310203552, -0.14699706435203552, -0.17578125, -0.20522460341453552, -0.22675780951976776, -0.243896484375, -0.2581787109375, -0.26411131024360657, -0.2660888731479645, -0.25773924589157104, -0.24895018339157104, -0.22807615995407104, -0.20895995199680328, -0.18742674589157104, -0.16193847358226776, -0.13645018637180328, -0.10942382365465164, -0.08305663615465164, -0.05998535081744194, -0.03757324069738388, -0.014501952566206455, 0.0076904296875, 0.0252685546875, 0.04042968526482582, 0.05185546725988388, 0.06240234151482582, 0.06943359225988388, 0.07492675632238388, 0.07668457180261612, 0.07382812350988388, 0.07119140774011612, 0.06679687649011612, 0.06130370870232582, 0.0538330078125, 0.04680175706744194, 0.03647460788488388, 0.02790527231991291, 0.02021484263241291, 0.01318359375, 0.00747070275247097, 0.001977538922801614, -0.003735351376235485, -0.007031249813735485, -0.00747070275247097, -0.00856933556497097, -0.01164550706744194, -0.00856933556497097, -0.010986328125, -0.01604003831744194, -0.019775390625, -0.02395019493997097, -0.03120117075741291, -0.03999023512005806, -0.04658202826976776, -0.05427245795726776, -0.06350097805261612, -0.07163085788488388, -0.08063964545726776, -0.08613280951976776, -0.08876952528953552, -0.09228515625, -0.09426268935203552, -0.08986815810203552, -0.08481445163488388, -0.07844237983226776, -0.068115234375, -0.05581054463982582, -0.03801269456744194, -0.02131347544491291, 0.0017578124534338713, 0.02241210825741291, 0.04921874776482582, 0.07316894084215164, 0.0999755859375, 0.12612304091453552, 0.15468749403953552, 0.18017578125, 0.20654296875, 0.22983397543430328, 0.24982909858226776, 0.2656494081020355, 0.2770752012729645, 0.28520506620407104, 0.28564453125, 0.28125, 0.26806640625, 0.24982909858226776, 0.22719725966453552, 0.2010498046875, 0.16787108778953552, 0.13623046875, 0.0977783203125, 0.06130370870232582, 0.01604003831744194, -0.02351074106991291, -0.06943359225988388, -0.10898437350988388, -0.15380859375, -0.19467772543430328, -0.23796385526657104, -0.27619627118110657, -0.3106933534145355, -0.3458496034145355, -0.3755126893520355, -0.39814451336860657, -0.41044920682907104, -0.4177001714706421, -0.40385740995407104, -0.388916015625, -0.35969236493110657, -0.3331054747104645, -0.2931152284145355, -0.2557617127895355, -0.21401366591453552, -0.17006835341453552, -0.11953124403953552, -0.07382812350988388, -0.02219238132238388, 0.024169921875, 0.07229004055261612, 0.11821288615465164, 0.1658935546875, 0.21159666776657104, 0.2515869140625, 0.28850096464157104, 0.3265136778354645, 0.35419920086860657, 0.3770507574081421, 0.3955078125, 0.40056151151657104, 0.39990234375, 0.3814452886581421, 0.3616698980331421, 0.331787109375, 0.298828125, 0.26301267743110657, 0.2230224609375, 0.18061523139476776, 0.14084471762180328, 0.09228515625, 0.05361327901482582, 0.008129882626235485, -0.02988281100988388, -0.07294921576976776, -0.11118163913488388, -0.14633788168430328, -0.17753905057907104, -0.2054443359375, -0.22939452528953552, -0.24807128310203552, -0.25971677899360657, -0.2625732421875, -0.2645507752895355, -0.2568603456020355, -0.24873046576976776, -0.2296142578125, -0.2098388671875, -0.18588866293430328, -0.16193847358226776, -0.13710936903953552, -0.11052245646715164, -0.08547362685203552, -0.05998535081744194, -0.03559570387005806, -0.01318359375, 0.008129882626235485, 0.02548827975988388, 0.04306640475988388, 0.0538330078125, 0.06218261644244194, 0.06965331733226776, 0.0736083984375, 0.07712402194738388, 0.07316894084215164, 0.07382812350988388, 0.06745605170726776, 0.06064452975988388, 0.05427245795726776, 0.04658202826976776, 0.0362548828125, 0.0296630859375, 0.02241210825741291, 0.01582031138241291, 0.006152343470603228, -0.0006591796409338713, -0.0024169920943677425, -0.00747070275247097, -0.009008788503706455, -0.00966796837747097, -0.010107421316206455, -0.00966796837747097, -0.007250976283103228, -0.006591796875, -0.007031249813735485, -0.004833984188735485, -0.0035156249068677425, -0.004833984188735485, -0.0032958984375, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, 0.0010986328125, 0.0010986328125, 0.0010986328125, 0.0013183592818677425, 0.0013183592818677425, 0.0017578124534338713, 0.0017578124534338713, 0.0017578124534338713, 0.0013183592818677425, 0.0006591796409338713, 0.0017578124534338713, 0.0002197265566792339, 0.0, -0.0008789062267169356, 0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0002197265566792339, -0.0010986328125, -0.0041748047806322575, -0.0028564452659338713, -0.0035156249068677425, -0.003735351376235485, -0.003735351376235485, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.0032958984375, -0.0035156249068677425, -0.0041748047806322575, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.0004394531133584678, -0.003955077845603228, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.0008789062267169356, -0.003076171735301614, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.002197265625, -0.003735351376235485, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.00439453125, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.005053710658103228, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.0035156249068677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.003955077845603228, -0.0041748047806322575, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, 0.0004394531133584678, 0.0002197265566792339, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.0032958984375, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0010986328125, 0.0, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, 0.0002197265566792339, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.002636718563735485, -0.0032958984375, -0.003735351376235485, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0035156249068677425, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0032958984375, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.003955077845603228, -0.003076171735301614, -0.0008789062267169356, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.0032958984375, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0032958984375, -0.003735351376235485, -0.0035156249068677425, -0.002636718563735485, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0028564452659338713, -0.0008789062267169356, -0.0032958984375, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.001977538922801614, -0.0035156249068677425, -0.002197265625, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0024169920943677425, -0.0002197265566792339, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0035156249068677425, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0032958984375, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.003076171735301614, -0.0035156249068677425, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, 0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.0035156249068677425, -0.0041748047806322575, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.003076171735301614, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.002197265625, 0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.002636718563735485, -0.0006591796409338713, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0041748047806322575, -0.003735351376235485, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 1, ... ])', '(angle, [0.6283])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0002197265566792339, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.0035156249068677425, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, 0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, 0.0, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0041748047806322575, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, 0.0006591796409338713, -0.0004394531133584678, 0.0, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.0006591796409338713, -0.0006591796409338713, -0.003955077845603228, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.0032958984375, -0.0035156249068677425, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, 0.0010986328125, -0.0008789062267169356, -0.003735351376235485, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, 0.0004394531133584678, 0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, 0.0, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0032958984375, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, 0.0, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.002636718563735485, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.0006591796409338713, 0.0, 0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, 0.0, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, 0.0004394531133584678, -0.0017578124534338713, 0.0004394531133584678, 0.0, -0.0010986328125, 0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.0028564452659338713, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, 0.0, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.0028564452659338713, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.0008789062267169356, -0.003955077845603228, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0032958984375, -0.002636718563735485, -0.0010986328125, -0.003076171735301614, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0032958984375, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.0032958984375, -0.0035156249068677425, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.003735351376235485, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, 0.0004394531133584678, -0.0004394531133584678, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.003076171735301614, -0.0041748047806322575, -0.001977538922801614, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0032958984375, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.003076171735301614, -0.0006591796409338713, -0.0002197265566792339, -0.0017578124534338713, 0.0, -0.0008789062267169356, -0.0032958984375, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.0035156249068677425, -0.0068115233443677425, -0.00747070275247097, -0.009448242373764515, -0.008349609561264515, -0.00966796837747097, -0.010986328125, -0.01054687425494194, -0.010986328125, -0.01076660118997097, -0.009448242373764515, -0.010327148251235485, -0.009228515438735485, -0.008349609561264515, -0.009448242373764515, -0.0068115233443677425, -0.003735351376235485, -0.001538085867650807, 0.0004394531133584678, 0.0041748047806322575, 0.005932617001235485, 0.00966796837747097, 0.010986328125, 0.01384277269244194, 0.0164794921875, 0.01955566368997097, 0.02285156212747097, 0.024169921875, 0.0263671875, 0.02724609337747097, 0.02812499925494194, 0.0274658203125, 0.02878417819738388, 0.02658691257238388, 0.02482910081744194, 0.02197265625, 0.019775390625, 0.01713867112994194, 0.014721679501235485, 0.009228515438735485, 0.005053710658103228, -0.0002197265566792339, -0.00637206993997097, -0.010986328125, -0.01713867112994194, -0.02109374850988388, -0.02724609337747097, -0.03229980543255806, -0.03713378682732582, -0.03999023512005806, -0.04240722581744194, -0.04812011495232582, -0.04965820163488388, -0.0494384765625, -0.04899902269244194, -0.04921874776482582, -0.04768066108226776, -0.04460449144244194, -0.04086913913488388, -0.03691406175494194, -0.03251953050494194, -0.02812499925494194, -0.02241210825741291, -0.015380859375, -0.0087890625, -0.003076171735301614, 0.0054931640625, 0.010986328125, 0.01691894419491291, 0.02219238132238388, 0.02680663950741291, 0.03229980543255806, 0.0384521484375, 0.03933105245232582, 0.04240722581744194, 0.04306640475988388, 0.04570312425494194, 0.04350585862994194, 0.04460449144244194, 0.04086913913488388, 0.03911132737994194, 0.03757324069738388, 0.03208007663488388, 0.02768554538488388, 0.02438964694738388, 0.01845703087747097, 0.013623046688735485, 0.0076904296875, 0.004833984188735485, -0.0024169920943677425, -0.00637206993997097, -0.009448242373764515, -0.014721679501235485, -0.01911620981991291, -0.0208740234375, -0.0252685546875, -0.0274658203125, -0.0274658203125, -0.0296630859375, -0.02922363206744194, -0.02724609337747097, -0.02834472618997097, -0.02658691257238388, -0.02395019493997097, -0.02263183519244194, -0.01999511756002903, -0.01691894419491291, -0.01625976525247097, -0.01186523400247097, -0.01186523400247097, -0.0068115233443677425, -0.0068115233443677425, -0.00439453125, -0.0006591796409338713, -0.001538085867650807, 0.001538085867650807, 0.0035156249068677425, 0.0035156249068677425, 0.0046142577193677425, 0.004833984188735485, 0.00527343712747097, 0.0054931640625, 0.006591796875, 0.003955077845603228, 0.0028564452659338713, 0.00439453125, 0.0035156249068677425, 0.0017578124534338713, 0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0004394531133584678, -0.0035156249068677425, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.00439453125, -0.0032958984375, -0.00637206993997097, -0.007031249813735485, -0.00637206993997097, -0.0087890625, -0.010107421316206455, -0.01076660118997097, -0.01076660118997097, -0.01186523400247097, -0.01076660118997097, -0.01274413987994194, -0.01054687425494194, -0.008349609561264515, -0.00856933556497097, -0.008129882626235485, -0.0054931640625, -0.00527343712747097, -0.0010986328125, 0.0004394531133584678, 0.0032958984375, 0.0057128905318677425, 0.010107421316206455, 0.01318359375, 0.01318359375, 0.01691894419491291, 0.0186767578125, 0.02131347544491291, 0.02329101413488388, 0.0263671875, 0.02702636644244194, 0.02878417819738388, 0.02834472618997097, 0.02812499925494194, 0.02548827975988388, 0.02504882775247097, 0.02263183519244194, 0.0208740234375, 0.01713867112994194, 0.013403319753706455, 0.0076904296875, 0.003735351376235485, -0.0008789062267169356, -0.0046142577193677425, -0.01186523400247097, -0.01691894419491291, -0.02285156212747097, -0.02702636644244194, -0.03142089769244194, -0.03669433668255806, -0.04108886793255806, -0.04482421651482582, -0.04658202826976776, -0.04702148213982582, -0.04899902269244194, -0.05009765550494194, -0.04855956882238388, -0.04877929389476776, -0.04548339545726776, -0.0406494140625, -0.03515625, -0.03208007663488388, -0.02702636644244194, -0.02175292931497097, -0.01604003831744194, -0.01076660118997097, -0.003735351376235485, 0.0035156249068677425, 0.01076660118997097, 0.017578125, 0.024169921875, 0.02834472618997097, 0.03164062276482582, 0.03647460788488388, 0.03911132737994194, 0.041748046875, 0.04372558370232582, 0.04570312425494194, 0.04262695088982582, 0.04218749701976776, 0.04086913913488388, 0.03911132737994194, 0.03691406175494194, 0.03273925557732582, 0.02878417819738388, 0.0252685546875, 0.01779785193502903, 0.013403319753706455, 0.007910155691206455, 0.0032958984375, -0.0024169920943677425, -0.0068115233443677425, -0.010327148251235485, -0.013403319753706455, -0.01779785193502903, -0.02109374850988388, -0.02395019493997097, -0.02548827975988388, -0.0274658203125, -0.03098144382238388, -0.02922363206744194, -0.02680663950741291, -0.028564453125, -0.02724609337747097, -0.02482910081744194, -0.0230712890625, -0.02065429650247097, -0.01845703087747097, -0.01604003831744194, -0.0120849609375, -0.009008788503706455, -0.00747070275247097, -0.0041748047806322575, -0.003076171735301614, -0.002197265625, 0.0008789062267169356, 0.003955077845603228, 0.005053710658103228, 0.005053710658103228, 0.00439453125, 0.006591796875, 0.005053710658103228, 0.003735351376235485, 0.004833984188735485, 0.004833984188735485, 0.0054931640625, 0.003076171735301614, 0.003076171735301614, 0.001977538922801614, 0.001977538922801614, -0.0006591796409338713, -0.0032958984375, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0032958984375, -0.0041748047806322575, -0.0035156249068677425, -0.0046142577193677425, -0.00439453125, -0.0068115233443677425, -0.00637206993997097, -0.007031249813735485, -0.010107421316206455, -0.010107421316206455, -0.009008788503706455, -0.0098876953125, -0.009448242373764515, -0.009448242373764515, -0.01054687425494194, -0.011206054128706455, -0.008129882626235485, -0.007250976283103228, -0.00747070275247097, -0.0046142577193677425, -0.0035156249068677425, -0.002636718563735485, 0.0010986328125, 0.003076171735301614, 0.005053710658103228, 0.008349609561264515, 0.0120849609375, 0.014501952566206455, 0.01735839806497097, 0.01999511756002903, 0.02131347544491291, 0.0230712890625, 0.0252685546875, 0.02680663950741291, 0.02988281100988388, 0.02900390513241291, 0.02768554538488388, 0.0263671875, 0.02460937388241291, 0.02153320237994194, 0.01999511756002903, 0.0164794921875, 0.013623046688735485, 0.008129882626235485, 0.0035156249068677425, -0.0017578124534338713, -0.003076171735301614, -0.01274413987994194, -0.01713867112994194, -0.02241210825741291, -0.02790527231991291, -0.03339843824505806, -0.03713378682732582, -0.04130859300494194, -0.04350585862994194, -0.04680175706744194, -0.04921874776482582, -0.04899902269244194, -0.0494384765625, -0.05031738057732582, -0.04790038987994194, -0.04482421651482582, -0.04152831807732582, -0.03691406175494194, -0.03273925557732582, -0.02812499925494194, -0.02197265625, -0.014721679501235485, -0.008349609561264515, -0.002636718563735485, 0.0057128905318677425, 0.011425781063735485, 0.0164794921875, 0.02263183519244194, 0.0274658203125, 0.03208007663488388, 0.03779296949505806, 0.03955078125, 0.04196777194738388, 0.04328612983226776, 0.04680175706744194, 0.04592284932732582, 0.0439453125, 0.04020996019244194, 0.04086913913488388, 0.0362548828125, 0.03427734225988388, 0.028564453125, 0.02285156212747097, 0.01779785193502903, 0.013623046688735485, 0.009228515438735485, 0.003735351376235485, -0.0013183592818677425, -0.00439453125, -0.009228515438735485, -0.014501952566206455, -0.0186767578125, -0.02043456956744194, -0.02285156212747097, -0.02548827975988388, -0.02878417819738388, -0.0274658203125, -0.02834472618997097, -0.02834472618997097, -0.02702636644244194, -0.02548827975988388, -0.02460937388241291, -0.02395019493997097, -0.01889648474752903, -0.01801757700741291, -0.01494140550494194, -0.012304686941206455, -0.010327148251235485, -0.00856933556497097, -0.00637206993997097, -0.0032958984375, -0.0008789062267169356, -0.0002197265566792339, 0.002636718563735485, 0.003735351376235485, 0.006152343470603228, 0.007031249813735485, 0.00439453125, 0.005053710658103228, 0.00439453125, 0.005053710658103228, 0.006152343470603228, 0.003955077845603228, 0.003076171735301614, 0.0028564452659338713, 0.0008789062267169356, 0.003076171735301614, 0.0013183592818677425, 0.001538085867650807, 0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0041748047806322575, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.003955077845603228, -0.0035156249068677425, -0.0041748047806322575, -0.004833984188735485, -0.004833984188735485, -0.005932617001235485, -0.007031249813735485, -0.006591796875, -0.00747070275247097, -0.0087890625, -0.00966796837747097, -0.01076660118997097, -0.010107421316206455, -0.009448242373764515, -0.01054687425494194, -0.01164550706744194, -0.0098876953125, -0.00856933556497097, -0.007250976283103228, -0.004833984188735485, -0.003735351376235485, -0.0006591796409338713, 0.0013183592818677425, 0.0041748047806322575, 0.0076904296875, 0.00856933556497097, 0.010986328125, 0.0142822265625, 0.01779785193502903, 0.01845703087747097, 0.02197265625, 0.024169921875, 0.02570800669491291, 0.0263671875, 0.02900390513241291, 0.0274658203125, 0.02702636644244194, 0.02812499925494194, 0.02614746056497097, 0.0230712890625, 0.019775390625, 0.015600585378706455, 0.01318359375, 0.009228515438735485, 0.003735351376235485, -0.0013183592818677425, -0.007031249813735485, -0.01384277269244194, -0.0164794921875, -0.02153320237994194, -0.02790527231991291, -0.03251953050494194, -0.03581542894244194, -0.0428466796875, -0.04460449144244194, -0.04592284932732582, -0.04833984375, -0.05119628831744194, -0.04921874776482582, -0.04658202826976776, -0.04680175706744194, -0.04570312425494194, -0.041748046875, -0.037353515625, -0.03251953050494194, -0.02614746056497097, -0.02219238132238388, -0.0142822265625, -0.008349609561264515, -0.001977538922801614, 0.0017578124534338713, 0.00966796837747097, 0.01669921912252903, 0.02351074106991291, 0.028564453125, 0.03208007663488388, 0.03537597507238388, 0.03889160230755806, 0.04438476264476776, 0.0428466796875, 0.04416503757238388, 0.04328612983226776, 0.04350585862994194, 0.0428466796875, 0.04130859300494194, 0.03603515401482582, 0.03361816331744194, 0.02702636644244194, 0.0230712890625, 0.01735839806497097, 0.01296386681497097, 0.0087890625, 0.002197265625, -0.002197265625, -0.0076904296875, -0.010986328125, -0.014721679501235485, -0.01845703087747097, -0.02021484263241291, -0.02241210825741291, -0.02592773362994194, -0.02570800669491291, -0.02944335900247097, -0.02922363206744194, -0.02658691257238388, -0.028564453125, -0.02482910081744194, -0.024169921875, -0.02285156212747097, -0.02131347544491291, -0.01845703087747097, -0.014501952566206455, -0.01274413987994194, -0.010107421316206455, -0.00856933556497097, -0.005932617001235485, -0.0028564452659338713, -0.0004394531133584678, 0.0006591796409338713, 0.002197265625, 0.003735351376235485, 0.00527343712747097, 0.0046142577193677425, 0.00527343712747097, 0.005932617001235485, 0.0046142577193677425, 0.0046142577193677425, 0.0035156249068677425, 0.0032958984375, 0.0024169920943677425, 0.0017578124534338713, 0.001538085867650807, 0.002197265625, 0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.003076171735301614, -0.0054931640625, -0.0032958984375, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.003735351376235485, -0.003955077845603228, -0.0041748047806322575, -0.004833984188735485, -0.0054931640625, -0.007031249813735485, -0.008349609561264515, -0.00856933556497097, -0.007250976283103228, -0.009228515438735485, -0.009448242373764515, -0.009448242373764515, -0.011206054128706455, -0.0120849609375, -0.0087890625, -0.010107421316206455, -0.007910155691206455, -0.008129882626235485, -0.009228515438735485, -0.007250976283103228, -0.00439453125, -0.0013183592818677425, 0.002197265625, 0.0041748047806322575, 0.006591796875, 0.0087890625, 0.0120849609375, 0.0142822265625, 0.0186767578125, 0.01955566368997097, 0.02153320237994194, 0.02351074106991291, 0.02570800669491291, 0.02592773362994194, 0.02790527231991291, 0.02878417819738388, 0.02900390513241291, 0.02790527231991291, 0.0263671875, 0.02329101413488388, 0.02043456956744194, 0.017578125, 0.01296386681497097, 0.009008788503706455, 0.0024169920943677425, -0.0006591796409338713, -0.0041748047806322575, -0.0120849609375, -0.01691894419491291, -0.02263183519244194, -0.02790527231991291, -0.03449707105755806, -0.03955078125, -0.04262695088982582, -0.04372558370232582, -0.04833984375, -0.05009765550494194, -0.05031738057732582, -0.0494384765625, -0.04921874776482582, -0.04746093600988388, -0.04526367038488388, -0.04108886793255806, -0.037353515625, -0.03273925557732582, -0.02768554538488388, -0.02153320237994194, -0.015600585378706455, -0.0076904296875, 0.0, 0.004833984188735485, 0.01054687425494194, 0.01845703087747097, 0.02263183519244194, 0.02768554538488388, 0.03208007663488388, 0.03801269456744194, 0.03933105245232582, 0.04328612983226776, 0.04438476264476776, 0.04526367038488388, 0.04328612983226776, 0.04328612983226776, 0.041748046875, 0.03757324069738388, 0.03449707105755806, 0.03317870944738388, 0.02790527231991291, 0.02263183519244194, 0.01779785193502903, 0.013403319753706455, 0.0076904296875, 0.00439453125, -0.0008789062267169356, -0.006152343470603228, -0.011425781063735485, -0.015380859375, -0.01691894419491291, -0.01911620981991291, -0.02438964694738388, -0.02702636644244194, -0.02790527231991291, -0.0296630859375, -0.02878417819738388, -0.02680663950741291, -0.02790527231991291, -0.02482910081744194, -0.02285156212747097, -0.0230712890625, -0.01801757700741291, -0.01801757700741291, -0.01582031138241291, -0.012304686941206455, -0.010107421316206455, -0.007250976283103228, -0.0057128905318677425, -0.0024169920943677425, -0.001538085867650807, 0.0010986328125, 0.003076171735301614, 0.0046142577193677425, 0.0054931640625, 0.004833984188735485, 0.004833984188735485, 0.003955077845603228, 0.0046142577193677425, 0.0057128905318677425, 0.0054931640625, 0.006152343470603228, 0.003076171735301614, 0.003076171735301614, 0.003076171735301614, 0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, -0.0035156249068677425, -0.0008789062267169356, -0.0024169920943677425, -0.003955077845603228, -0.0041748047806322575, -0.00439453125, -0.00637206993997097, -0.00637206993997097, -0.00856933556497097, -0.00966796837747097, -0.009008788503706455, -0.01054687425494194, -0.009228515438735485, -0.01186523400247097, -0.01164550706744194, -0.010327148251235485, -0.010327148251235485, -0.009448242373764515, -0.00856933556497097, -0.006591796875, -0.006152343470603228, -0.002197265625, -0.0002197265566792339, 0.001538085867650807, 0.0035156249068677425, 0.00747070275247097, 0.01054687425494194, 0.01296386681497097, 0.014721679501235485, 0.01735839806497097, 0.02197265625, 0.02197265625, 0.02351074106991291, 0.02614746056497097, 0.02680663950741291, 0.02614746056497097, 0.0274658203125, 0.02768554538488388, 0.02680663950741291, 0.02570800669491291, 0.02241210825741291, 0.01933593675494194, 0.01713867112994194, 0.01296386681497097, 0.0098876953125, 0.003735351376235485, -0.0013183592818677425, -0.00747070275247097, -0.01274413987994194, -0.015380859375, -0.0230712890625, -0.0274658203125, -0.03229980543255806, -0.037353515625, -0.0428466796875, -0.04416503757238388, -0.04702148213982582, -0.04833984375, -0.05097655951976776, -0.0494384765625, -0.04702148213982582, -0.046142578125, -0.04416503757238388, -0.04152831807732582, -0.03801269456744194, -0.03273925557732582, -0.02834472618997097, -0.02153320237994194, -0.0142822265625, -0.010107421316206455, -0.003735351376235485, 0.005053710658103228, 0.011206054128706455, 0.01779785193502903, 0.02175292931497097, 0.0274658203125, 0.03273925557732582, 0.03581542894244194, 0.03911132737994194, 0.0439453125, 0.04350585862994194, 0.04306640475988388, 0.04460449144244194, 0.04526367038488388, 0.04108886793255806, 0.03933105245232582, 0.03603515401482582, 0.03251953050494194, 0.02790527231991291, 0.02285156212747097, 0.01889648474752903, 0.01384277269244194, 0.009228515438735485, 0.003735351376235485, -0.0024169920943677425, -0.0057128905318677425, -0.009228515438735485, -0.01582031138241291, -0.01779785193502903, -0.02021484263241291, -0.024169921875, -0.02724609337747097, -0.02900390513241291, -0.02812499925494194, -0.02812499925494194, -0.02812499925494194, -0.02658691257238388, -0.02658691257238388, -0.02548827975988388, -0.0230712890625, -0.02043456956744194, -0.01823730394244194, -0.01604003831744194, -0.0120849609375, -0.010107421316206455, -0.008349609561264515, -0.0057128905318677425, -0.001977538922801614, -0.0008789062267169356, 0.0004394531133584678, 0.001538085867650807, 0.002636718563735485, 0.00527343712747097, 0.006152343470603228, 0.005053710658103228, 0.0054931640625, 0.005053710658103228, 0.003735351376235485, 0.0046142577193677425, 0.005053710658103228, 0.003076171735301614, 0.002636718563735485, 0.0024169920943677425, 0.0024169920943677425, 0.0, 0.002197265625, 0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, 0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.001538085867650807, -0.0010986328125, 0.0, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, 0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, -0.0002197265566792339, -0.0006591796409338713, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, 0.0, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.0035156249068677425, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.003076171735301614, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, 0.0, 0.0002197265566792339, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.003955077845603228, -0.0006591796409338713, -0.0004394531133584678, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, 0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.003076171735301614, -0.002197265625, -0.0032958984375, -0.002636718563735485, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, 0.0, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0032958984375, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0002197265566792339, -0.0006591796409338713, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.003955077845603228, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.003076171735301614, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, 0.0, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0032958984375, 0.0, -0.0004394531133584678, -0.0008789062267169356, 0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, 0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, 0.0, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0035156249068677425, 0.0, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, 0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.0032958984375, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.002636718563735485, -0.001538085867650807, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, 0.0, 0.0002197265566792339, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, -0.0004394531133584678, -0.0024169920943677425, -0.0004394531133584678, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0035156249068677425, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.003076171735301614, -0.0032958984375, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0002197265566792339, -0.0024169920943677425, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0002197265566792339, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.001977538922801614, 0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, 0.0, -0.0004394531133584678, 0.0006591796409338713, -0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 1, ... ])', '(angle, [2.0420352248])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, 0.0004394531133584678, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0024169920943677425, 0.0, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.003955077845603228, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0035156249068677425, -0.0017578124534338713, -0.0002197265566792339, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, 0.0002197265566792339, -0.0024169920943677425, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, 0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0032958984375, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0032958984375, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.003955077845603228, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, 0.0, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, 0.0, -0.002636718563735485, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, 0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0028564452659338713, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, -0.003076171735301614, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, 0.0, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.003076171735301614, -0.001977538922801614, -0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, 0.0, -0.0024169920943677425, -0.0010986328125, 0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.003076171735301614, -0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, -0.003735351376235485, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, 0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, 0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.002197265625, -0.0035156249068677425, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, 0.0006591796409338713, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.0006591796409338713, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0032958984375, -0.002636718563735485, -0.001538085867650807, -0.003955077845603228, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.004833984188735485, -0.0046142577193677425, -0.0057128905318677425, -0.00856933556497097, -0.012524413876235485, -0.01582031138241291, -0.01845703087747097, -0.02153320237994194, -0.0230712890625, -0.0252685546875, -0.02878417819738388, -0.02922363206744194, -0.02944335900247097, -0.03076171875, -0.03032226487994194, -0.0296630859375, -0.02724609337747097, -0.02614746056497097, -0.02021484263241291, -0.014721679501235485, -0.010327148251235485, -0.0008789062267169356, 0.006152343470603228, 0.014721679501235485, 0.02373046800494194, 0.03339843824505806, 0.0406494140625, 0.05141601338982582, 0.05998535081744194, 0.06745605170726776, 0.07514648139476776, 0.08151855319738388, 0.087890625, 0.09250488132238388, 0.0966796875, 0.09645995497703552, 0.0955810546875, 0.08964843302965164, 0.08833007514476776, 0.07866210490465164, 0.07009277492761612, 0.05756835639476776, 0.04526367038488388, 0.02922363206744194, 0.01823730394244194, 0.0006591796409338713, -0.0164794921875, -0.03449707105755806, -0.050537109375, -0.068115234375, -0.08151855319738388, -0.10019531100988388, -0.11403807997703552, -0.125244140625, -0.13864745199680328, -0.14567871391773224, -0.15249022841453552, -0.15380859375, -0.15578612685203552, -0.15073241293430328, -0.14545898139476776, -0.1373291015625, -0.12612304091453552, -0.1142578125, -0.10019531100988388, -0.08151855319738388, -0.06328124552965164, -0.04262695088982582, -0.02438964694738388, -0.0028564452659338713, 0.01933593675494194, 0.03823241963982582, 0.05624999850988388, 0.07602538913488388, 0.08964843302965164, 0.10832519084215164, 0.12128905951976776, 0.12897948920726776, 0.13908691704273224, 0.14260253310203552, 0.14743651449680328, 0.1461181640625, 0.14501953125, 0.13579101860523224, 0.13139648735523224, 0.11953124403953552, 0.10700683295726776, 0.09272460639476776, 0.07954101264476776, 0.06284179538488388, 0.04702148213982582, 0.02900390513241291, 0.01604003831744194, -0.001977538922801614, -0.01604003831744194, -0.03010253794491291, -0.04196777194738388, -0.0560302734375, -0.06635741889476776, -0.07470703125, -0.08151855319738388, -0.08657225966453552, -0.08745116740465164, -0.08854980021715164, -0.08635253459215164, -0.08525390177965164, -0.08173827826976776, -0.07624511420726776, -0.0703125, -0.06196288764476776, -0.05251464620232582, -0.04438476264476776, -0.03933105245232582, -0.02900390513241291, -0.01933593675494194, -0.013403319753706455, -0.005932617001235485, 0.0013183592818677425, 0.005932617001235485, 0.0120849609375, 0.015600585378706455, 0.01779785193502903, 0.02219238132238388, 0.019775390625, 0.02351074106991291, 0.02153320237994194, 0.02131347544491291, 0.02043456956744194, 0.01779785193502903, 0.0164794921875, 0.013403319753706455, 0.008349609561264515, 0.0076904296875, 0.006152343470603228, 0.00527343712747097, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0035156249068677425, -0.003955077845603228, -0.002636718563735485, -0.003735351376235485, -0.0035156249068677425, -0.00439453125, -0.0057128905318677425, -0.007910155691206455, -0.007910155691206455, -0.010327148251235485, -0.01406249962747097, -0.015600585378706455, -0.0186767578125, -0.02131347544491291, -0.02504882775247097, -0.02592773362994194, -0.0274658203125, -0.028564453125, -0.02944335900247097, -0.02988281100988388, -0.03054199181497097, -0.03010253794491291, -0.02812499925494194, -0.02460937388241291, -0.01999511756002903, -0.013623046688735485, -0.009008788503706455, -0.0002197265566792339, 0.00527343712747097, 0.01406249962747097, 0.02460937388241291, 0.02988281100988388, 0.04042968526482582, 0.05141601338982582, 0.05998535081744194, 0.06591796875, 0.07602538913488388, 0.08305663615465164, 0.08920898288488388, 0.09184569865465164, 0.0966796875, 0.09470214694738388, 0.09470214694738388, 0.09052734076976776, 0.08657225966453552, 0.07712402194738388, 0.0703125, 0.0582275390625, 0.04680175706744194, 0.03098144382238388, 0.01801757700741291, -0.0010986328125, -0.01494140550494194, -0.0340576171875, -0.04899902269244194, -0.0670166015625, -0.08415526896715164, -0.10041503608226776, -0.11359862983226776, -0.12546385824680328, -0.13447265326976776, -0.14458008110523224, -0.15205077826976776, -0.15468749403953552, -0.15380859375, -0.15249022841453552, -0.14743651449680328, -0.13908691704273224, -0.12722167372703552, -0.11447753757238388, -0.09909667819738388, -0.08371581882238388, -0.06284179538488388, -0.04372558370232582, -0.024169921875, -0.0028564452659338713, 0.01823730394244194, 0.03823241963982582, 0.05668945237994194, 0.07624511420726776, 0.09162597358226776, 0.10700683295726776, 0.1197509765625, 0.13007812201976776, 0.13886718451976776, 0.1439208984375, 0.14787597954273224, 0.14567871391773224, 0.14414061605930328, 0.13798828423023224, 0.13029785454273224, 0.12062987685203552, 0.10898437350988388, 0.09404296427965164, 0.08063964545726776, 0.0626220703125, 0.04899902269244194, 0.03010253794491291, 0.0142822265625, -0.0006591796409338713, -0.01625976525247097, -0.03032226487994194, -0.04372558370232582, -0.05668945237994194, -0.0648193359375, -0.0736083984375, -0.07888183742761612, -0.0845947265625, -0.087890625, -0.0889892578125, -0.08854980021715164, -0.08525390177965164, -0.07998047024011612, -0.07624511420726776, -0.07097167521715164, -0.06064452975988388, -0.05185546725988388, -0.04680175706744194, -0.03713378682732582, -0.02988281100988388, -0.02131347544491291, -0.012524413876235485, -0.001977538922801614, 0.001538085867650807, 0.005932617001235485, 0.010986328125, 0.01691894419491291, 0.01779785193502903, 0.019775390625, 0.02153320237994194, 0.02131347544491291, 0.02373046800494194, 0.02197265625, 0.01911620981991291, 0.01691894419491291, 0.01691894419491291, 0.01516113243997097, 0.012524413876235485, 0.008129882626235485, 0.006152343470603228, 0.002197265625, 0.003076171735301614, 0.0010986328125, -0.0035156249068677425, -0.002636718563735485, -0.004833984188735485, -0.0046142577193677425, -0.0035156249068677425, -0.003735351376235485, -0.003076171735301614, -0.005053710658103228, -0.0076904296875, -0.0087890625, -0.009228515438735485, -0.01384277269244194, -0.01735839806497097, -0.01999511756002903, -0.02241210825741291, -0.02438964694738388, -0.02592773362994194, -0.028564453125, -0.0296630859375, -0.03010253794491291, -0.03229980543255806, -0.02944335900247097, -0.02812499925494194, -0.02768554538488388, -0.02219238132238388, -0.01955566368997097, -0.013403319753706455, -0.0087890625, -0.0013183592818677425, 0.008349609561264515, 0.015380859375, 0.02263183519244194, 0.03229980543255806, 0.04328612983226776, 0.04987792670726776, 0.0604248046875, 0.06679687649011612, 0.07536620646715164, 0.0802001953125, 0.087890625, 0.09140624850988388, 0.09470214694738388, 0.09536132216453552, 0.0933837890625, 0.090087890625, 0.08613280951976776, 0.07866210490465164, 0.07053222507238388, 0.05910644307732582, 0.04592284932732582, 0.03098144382238388, 0.01801757700741291, -0.0006591796409338713, -0.015600585378706455, -0.03098144382238388, -0.04855956882238388, -0.06789550930261612, -0.08261718600988388, -0.10019531100988388, -0.112060546875, -0.12678222358226776, -0.1373291015625, -0.1461181640625, -0.14985351264476776, -0.15402831137180328, -0.15468749403953552, -0.15139159560203552, -0.14677734673023224, -0.13645018637180328, -0.12766112387180328, -0.11447753757238388, -0.09909667819738388, -0.08305663615465164, -0.06218261644244194, -0.04482421651482582, -0.02197265625, -0.002636718563735485, 0.01823730394244194, 0.04086913913488388, 0.05624999850988388, 0.07536620646715164, 0.09162597358226776, 0.107666015625, 0.120849609375, 0.12985838949680328, 0.13996581733226776, 0.14370116591453552, 0.14743651449680328, 0.14589843153953552, 0.14458008110523224, 0.13557128608226776, 0.13095702230930328, 0.11777343600988388, 0.10700683295726776, 0.094482421875, 0.08151855319738388, 0.06218261644244194, 0.04702148213982582, 0.02944335900247097, 0.01384277269244194, -0.0013183592818677425, -0.01625976525247097, -0.03054199181497097, -0.0428466796875, -0.0560302734375, -0.06284179538488388, -0.0758056640625, -0.08063964545726776, -0.08393554389476776, -0.08591308444738388, -0.0889892578125, -0.087890625, -0.08371581882238388, -0.08085937052965164, -0.07514648139476776, -0.06899414211511612, -0.0626220703125, -0.05515136569738388, -0.04680175706744194, -0.03713378682732582, -0.02834472618997097, -0.02109374850988388, -0.01296386681497097, -0.0054931640625, 0.001538085867650807, 0.0087890625, 0.01186523400247097, 0.015380859375, 0.01779785193502903, 0.01999511756002903, 0.02329101413488388, 0.02329101413488388, 0.02153320237994194, 0.02241210825741291, 0.02021484263241291, 0.01911620981991291, 0.01691894419491291, 0.0142822265625, 0.010107421316206455, 0.00747070275247097, 0.0057128905318677425, 0.005053710658103228, 0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0035156249068677425, -0.0032958984375, -0.003076171735301614, -0.003955077845603228, -0.00439453125, -0.00527343712747097, -0.007031249813735485, -0.0057128905318677425, -0.0098876953125, -0.010327148251235485, -0.012304686941206455, -0.015380859375, -0.01604003831744194, -0.02131347544491291, -0.02460937388241291, -0.0263671875, -0.02790527231991291, -0.02878417819738388, -0.02988281100988388, -0.0318603515625, -0.03164062276482582, -0.02724609337747097, -0.0263671875, -0.02285156212747097, -0.01999511756002903, -0.01516113243997097, -0.008129882626235485, -0.0024169920943677425, 0.005932617001235485, 0.01494140550494194, 0.024169921875, 0.03361816331744194, 0.0406494140625, 0.05207519233226776, 0.06108398362994194, 0.06657714396715164, 0.0758056640625, 0.08327636867761612, 0.08833007514476776, 0.08942870795726776, 0.09404296427965164, 0.09426268935203552, 0.09470214694738388, 0.09162597358226776, 0.085693359375, 0.07734374701976776, 0.07053222507238388, 0.05866698920726776, 0.04438476264476776, 0.03208007663488388, 0.01735839806497097, -0.0010986328125, -0.01494140550494194, -0.03383788838982582, -0.0494384765625, -0.06855468451976776, -0.08283691108226776, -0.09931640326976776, -0.11337890475988388, -0.12766112387180328, -0.1373291015625, -0.14545898139476776, -0.15139159560203552, -0.15556640923023224, -0.15578612685203552, -0.15095214545726776, -0.14809569716453552, -0.13798828423023224, -0.12810058891773224, -0.1142578125, -0.09821777045726776, -0.08261718600988388, -0.06306152045726776, -0.04482421651482582, -0.02285156212747097, -0.0035156249068677425, 0.0142822265625, 0.03669433668255806, 0.05646972358226776, 0.07624511420726776, 0.09096679091453552, 0.10634765028953552, 0.12019042670726776, 0.13007812201976776, 0.13974608480930328, 0.14479979872703552, 0.147216796875, 0.14567871391773224, 0.14326171576976776, 0.13666991889476776, 0.13139648735523224, 0.12062987685203552, 0.10678710788488388, 0.09426268935203552, 0.07822265475988388, 0.06218261644244194, 0.04877929389476776, 0.03098144382238388, 0.014721679501235485, -0.002197265625, -0.017578125, -0.03251953050494194, -0.04306640475988388, -0.0560302734375, -0.06591796875, -0.07382812350988388, -0.07976073771715164, -0.08327636867761612, -0.08635253459215164, -0.08920898288488388, -0.08657225966453552, -0.08591308444738388, -0.08195800334215164, -0.07514648139476776, -0.0692138671875, -0.0604248046875, -0.0538330078125, -0.0450439453125, -0.03647460788488388, -0.03010253794491291, -0.01889648474752903, -0.01274413987994194, -0.008129882626235485, 0.0017578124534338713, 0.0054931640625, 0.011425781063735485, 0.0164794921875, 0.017578125, 0.02219238132238388, 0.02065429650247097, 0.02351074106991291, 0.02285156212747097, 0.02263183519244194, 0.0208740234375, 0.01735839806497097, 0.014501952566206455, 0.015600585378706455, 0.01186523400247097, 0.00747070275247097, 0.005932617001235485, 0.003076171735301614, 0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.0046142577193677425, -0.0046142577193677425, -0.0041748047806322575, -0.0032958984375, -0.0046142577193677425, -0.0057128905318677425, -0.0087890625, -0.009228515438735485, -0.010327148251235485, -0.01296386681497097, -0.01494140550494194, -0.0186767578125, -0.02197265625, -0.02482910081744194, -0.0252685546875, -0.02812499925494194, -0.028564453125, -0.03098144382238388, -0.03032226487994194, -0.02988281100988388, -0.02944335900247097, -0.02680663950741291, -0.02351074106991291, -0.01845703087747097, -0.01318359375, -0.009228515438735485, -0.0010986328125, 0.0076904296875, 0.01582031138241291, 0.02285156212747097, 0.03361816331744194, 0.03999023512005806, 0.04877929389476776, 0.0615234375, 0.06767577677965164, 0.07492675632238388, 0.0802001953125, 0.08723144233226776, 0.0911865234375, 0.09404296427965164, 0.09536132216453552, 0.09426268935203552, 0.08986815810203552, 0.085693359375, 0.07932128757238388, 0.06987304240465164, 0.05712890625, 0.046142578125, 0.03142089769244194, 0.01955566368997097, -0.0004394531133584678, -0.014501952566206455, -0.0340576171875, -0.04965820163488388, -0.06789550930261612, -0.08305663615465164, -0.09843749552965164, -0.11293944716453552, -0.12502440810203552, -0.13535155355930328, -0.14677734673023224, -0.15227051079273224, -0.15336914360523224, -0.1549072265625, -0.15380859375, -0.14589843153953552, -0.13798828423023224, -0.12897948920726776, -0.11337890475988388, -0.10019531100988388, -0.08217773586511612, -0.06416015326976776, -0.04416503757238388, -0.02351074106991291, -0.00439453125, 0.017578125, 0.03801269456744194, 0.05712890625, 0.0736083984375, 0.09272460639476776, 0.10546875, 0.11821288615465164, 0.12941893935203552, 0.1395263671875, 0.142822265625, 0.14501953125, 0.14523924887180328, 0.14479979872703552, 0.13754881918430328, 0.13029785454273224, 0.11865234375, 0.10854491591453552, 0.09426268935203552, 0.07998047024011612, 0.0626220703125, 0.04833984375, 0.03032226487994194, 0.013623046688735485, -0.001977538922801614, -0.015380859375, -0.0296630859375, -0.0439453125, -0.05624999850988388, -0.06437987834215164, -0.07404784858226776, -0.07932128757238388, -0.0845947265625, -0.08657225966453552, -0.0889892578125, -0.0867919921875, -0.085693359375, -0.08107910305261612, -0.07514648139476776, -0.06987304240465164, -0.0626220703125, -0.054931640625, -0.04460449144244194, -0.037353515625, -0.02944335900247097, -0.02065429650247097, -0.013403319753706455, -0.005053710658103228, -0.0006591796409338713, 0.007031249813735485, 0.010986328125, 0.01406249962747097, 0.01845703087747097, 0.01889648474752903, 0.0208740234375, 0.02329101413488388, 0.02153320237994194, 0.02065429650247097, 0.02065429650247097, 0.017578125, 0.01494140550494194, 0.014721679501235485, 0.01076660118997097, 0.008129882626235485, 0.0054931640625, 0.0017578124534338713, 0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0032958984375, -0.003955077845603228, -0.0041748047806322575, -0.003735351376235485, -0.0041748047806322575, -0.0057128905318677425, -0.00637206993997097, -0.006591796875, -0.009228515438735485, -0.012524413876235485, -0.01296386681497097, -0.01691894419491291, -0.0208740234375, -0.02175292931497097, -0.02395019493997097, -0.02790527231991291, -0.02680663950741291, -0.0296630859375, -0.02988281100988388, -0.028564453125, -0.03076171875, -0.02790527231991291, -0.0263671875, -0.02482910081744194, -0.0186767578125, -0.013403319753706455, -0.008129882626235485, -0.0017578124534338713, 0.004833984188735485, 0.0142822265625, 0.02351074106991291, 0.03251953050494194, 0.0406494140625, 0.05031738057732582, 0.06108398362994194, 0.06635741889476776, 0.07514648139476776, 0.0823974609375, 0.08964843302965164, 0.09184569865465164, 0.0955810546875, 0.09316405653953552, 0.09536132216453552, 0.0889892578125, 0.08657225966453552, 0.07888183742761612, 0.07009277492761612, 0.05668945237994194, 0.04548339545726776, 0.03120117075741291, 0.015380859375, -0.0006591796409338713, -0.0164794921875, -0.03339843824505806, -0.04965820163488388, -0.06723632663488388, -0.08283691108226776, -0.10085448622703552, -0.11381835490465164, -0.1263427734375, -0.13645018637180328, -0.14501953125, -0.15227051079273224, -0.15380859375, -0.1549072265625, -0.15183104574680328, -0.14809569716453552, -0.1395263671875, -0.12766112387180328, -0.11469726264476776, -0.09843749552965164, -0.08151855319738388, -0.06394042819738388, -0.0428466796875, -0.02241210825741291, -0.0004394531133584678, 0.017578125, 0.03757324069738388, 0.05624999850988388, 0.07514648139476776, 0.09228515625, 0.10788574069738388, 0.1175537109375, 0.12832030653953552, 0.13996581733226776, 0.14304198324680328, 0.14633788168430328, 0.14458008110523224, 0.14304198324680328, 0.13886718451976776, 0.13007812201976776, 0.11887206882238388, 0.10986328125, 0.09404296427965164, 0.0791015625, 0.06328124552965164, 0.04790038987994194, 0.028564453125, 0.013403319753706455, -0.001538085867650807, -0.014721679501235485, -0.03142089769244194, -0.04196777194738388, -0.05515136569738388, -0.06591796875, -0.07470703125, -0.07844237983226776, -0.08481445163488388, -0.08854980021715164, -0.08833007514476776, -0.087890625, -0.08481445163488388, -0.081298828125, -0.07558593899011612, -0.06855468451976776, -0.0626220703125, -0.054931640625, -0.04592284932732582, -0.03911132737994194, -0.02768554538488388, -0.02021484263241291, -0.013403319753706455, -0.006152343470603228, 0.0, 0.006152343470603228, 0.01274413987994194, 0.01691894419491291, 0.02065429650247097, 0.02219238132238388, 0.01999511756002903, 0.02109374850988388, 0.02131347544491291, 0.02263183519244194, 0.02043456956744194, 0.01955566368997097, 0.01625976525247097, 0.01318359375, 0.010327148251235485, 0.008129882626235485, 0.005932617001235485, 0.0035156249068677425, 0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.0035156249068677425, -0.003955077845603228, -0.003735351376235485, -0.003955077845603228, -0.0028564452659338713, -0.002197265625, -0.0046142577193677425, -0.0032958984375, -0.003076171735301614, -0.0028564452659338713, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, 0.002636718563735485, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.003076171735301614, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.003735351376235485, -0.002636718563735485, -0.0002197265566792339, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.0041748047806322575, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0008789062267169356, -0.0032958984375, -0.0028564452659338713, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.0035156249068677425, -0.001977538922801614, -0.0010986328125, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0032958984375, -0.002636718563735485, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0032958984375, -0.003955077845603228, -0.0017578124534338713, -0.0041748047806322575, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.003735351376235485, -0.0024169920943677425, -0.0032958984375, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.002197265625, -0.003735351376235485, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0032958984375, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.003955077845603228, -0.001538085867650807, -0.0008789062267169356, 0.0006591796409338713, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, 0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0032958984375, -0.003076171735301614, -0.003076171735301614, -0.001538085867650807, -0.0035156249068677425, -0.0028564452659338713, -0.003076171735301614, -0.0024169920943677425, -0.0024169920943677425, -0.0004394531133584678, -0.0032958984375, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.003955077845603228, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.003955077845603228, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.003955077845603228, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, 0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0008789062267169356, 0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0032958984375, -0.0010986328125, 0.0002197265566792339, -0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, 0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, -0.0002197265566792339, -0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.001977538922801614, 0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.0032958984375, -0.0010986328125, 0.0, -0.0004394531133584678, 0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.0028564452659338713, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0028564452659338713, -0.0008789062267169356, 0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0006591796409338713, -0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 1, ... ])', '(angle, [3.4557519189])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.002197265625, 0.0, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, 0.0004394531133584678, -0.0004394531133584678, 0.0, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, 0.0002197265566792339, -0.003076171735301614, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, 0.0008789062267169356, -0.0028564452659338713, 0.0004394531133584678, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.0035156249068677425, -0.001538085867650807, -0.0035156249068677425, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, 0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.001538085867650807, 0.0, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.0004394531133584678, 0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, 0.0002197265566792339, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, 0.0, -0.0008789062267169356, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, 0.0002197265566792339, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0006591796409338713, -0.0006591796409338713, -0.003076171735301614, -0.0032958984375, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, 0.0, -0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, 0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, 0.0004394531133584678, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.002197265625, 0.0, 0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, 0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, 0.0, -0.0002197265566792339, -0.0010986328125, -0.0004394531133584678, 0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.002636718563735485, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, 0.0002197265566792339, 0.0004394531133584678, -0.0006591796409338713, 0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.002197265625, 0.0002197265566792339, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.0002197265566792339, 0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0035156249068677425, -0.0054931640625, -0.0087890625, -0.0098876953125, -0.015600585378706455, -0.02043456956744194, -0.02570800669491291, -0.028564453125, -0.03383788838982582, -0.03889160230755806, -0.04526367038488388, -0.0472412109375, -0.04965820163488388, -0.04899902269244194, -0.05229492112994194, -0.05229492112994194, -0.04877929389476776, -0.04526367038488388, -0.03977050632238388, -0.032958984375, -0.02329101413488388, -0.0142822265625, -0.002636718563735485, 0.009448242373764515, 0.02548827975988388, 0.0406494140625, 0.0560302734375, 0.07097167521715164, 0.08613280951976776, 0.10151366889476776, 0.11403807997703552, 0.12722167372703552, 0.140625, 0.14853514730930328, 0.1549072265625, 0.15996094048023224, 0.15996094048023224, 0.15886230766773224, 0.15095214545726776, 0.14414061605930328, 0.13139648735523224, 0.11733397841453552, 0.09580077975988388, 0.07998047024011612, 0.0538330078125, 0.03032226487994194, 0.0035156249068677425, -0.02043456956744194, -0.05339355394244194, -0.076904296875, -0.10612792521715164, -0.13139648735523224, -0.15556640923023224, -0.17995604872703552, -0.19907225668430328, -0.22016601264476776, -0.23642577230930328, -0.248291015625, -0.25092771649360657, -0.25422361493110657, -0.24675291776657104, -0.23862303793430328, -0.22346191108226776, -0.20478515326976776, -0.18435057997703552, -0.160400390625, -0.13007812201976776, -0.10349120944738388, -0.07119140774011612, -0.04020996019244194, -0.004833984188735485, 0.0252685546875, 0.05866698920726776, 0.08854980021715164, 0.11865234375, 0.14348144829273224, 0.17138671875, 0.19248045980930328, 0.21027831733226776, 0.22499999403953552, 0.2340087890625, 0.24213866889476776, 0.24104003608226776, 0.2373046875, 0.23005370795726776, 0.21599119901657104, 0.19753417372703552, 0.17995604872703552, 0.15666504204273224, 0.13227538764476776, 0.10612792521715164, 0.08217773586511612, 0.05405273288488388, 0.02614746056497097, -0.0008789062267169356, -0.02241210825741291, -0.04812011495232582, -0.06833495944738388, -0.08876952528953552, -0.10458984225988388, -0.11777343600988388, -0.13161620497703552, -0.138427734375, -0.14458008110523224, -0.1439208984375, -0.14348144829273224, -0.1395263671875, -0.13359375298023224, -0.12568359076976776, -0.11491698771715164, -0.10371093451976776, -0.0889892578125, -0.0758056640625, -0.06174316257238388, -0.04855956882238388, -0.03383788838982582, -0.01911620981991291, -0.0087890625, 0.002197265625, 0.012524413876235485, 0.0208740234375, 0.0263671875, 0.03339843824505806, 0.03911132737994194, 0.03779296949505806, 0.041748046875, 0.03889160230755806, 0.03669433668255806, 0.03515625, 0.03229980543255806, 0.02614746056497097, 0.02285156212747097, 0.01955566368997097, 0.01669921912252903, 0.01186523400247097, 0.007031249813735485, 0.001977538922801614, 0.0002197265566792339, -0.0028564452659338713, -0.0054931640625, -0.003955077845603228, -0.007031249813735485, -0.007250976283103228, -0.004833984188735485, -0.0076904296875, -0.0076904296875, -0.011425781063735485, -0.014501952566206455, -0.01713867112994194, -0.02065429650247097, -0.02658691257238388, -0.02944335900247097, -0.03251953050494194, -0.03779296949505806, -0.04372558370232582, -0.04438476264476776, -0.04921874776482582, -0.04987792670726776, -0.04965820163488388, -0.04987792670726776, -0.04680175706744194, -0.0428466796875, -0.0384521484375, -0.03164062276482582, -0.02197265625, -0.012304686941206455, -0.0008789062267169356, 0.011206054128706455, 0.028564453125, 0.04020996019244194, 0.05427245795726776, 0.07119140774011612, 0.08591308444738388, 0.10151366889476776, 0.11447753757238388, 0.12722167372703552, 0.1395263671875, 0.14743651449680328, 0.15402831137180328, 0.15974120795726776, 0.15996094048023224, 0.158203125, 0.15205077826976776, 0.14260253310203552, 0.1318359375, 0.11733397841453552, 0.09953612834215164, 0.0791015625, 0.05471191182732582, 0.03032226487994194, 0.00527343712747097, -0.02131347544491291, -0.05009765550494194, -0.07624511420726776, -0.10502929240465164, -0.129638671875, -0.15666504204273224, -0.1790771484375, -0.20170897245407104, -0.21884764730930328, -0.23466795682907104, -0.24697265028953552, -0.2507080137729645, -0.25312498211860657, -0.24785155057907104, -0.23972167074680328, -0.221923828125, -0.20566405355930328, -0.1834716796875, -0.15974120795726776, -0.13051757216453552, -0.09975585341453552, -0.07075195014476776, -0.04042968526482582, -0.00439453125, 0.0263671875, 0.05800781026482582, 0.08833007514476776, 0.1153564453125, 0.14501953125, 0.16831053793430328, 0.19028319418430328, 0.2098388671875, 0.22565917670726776, 0.23576658964157104, 0.24016112089157104, 0.24038085341453552, 0.23972167074680328, 0.22829589247703552, 0.21401366591453552, 0.19819335639476776, 0.17863768339157104, 0.15468749403953552, 0.13139648735523224, 0.10612792521715164, 0.08063964545726776, 0.052734375, 0.02768554538488388, 0.0010986328125, -0.02285156212747097, -0.0494384765625, -0.06745605170726776, -0.08745116740465164, -0.10458984225988388, -0.11843261122703552, -0.129638671875, -0.13754881918430328, -0.14304198324680328, -0.14699706435203552, -0.14458008110523224, -0.14018554985523224, -0.1318359375, -0.12502440810203552, -0.11469726264476776, -0.10239257663488388, -0.0889892578125, -0.07602538913488388, -0.06174316257238388, -0.04570312425494194, -0.03515625, -0.02021484263241291, -0.007910155691206455, 0.003076171735301614, 0.01296386681497097, 0.02197265625, 0.02812499925494194, 0.03142089769244194, 0.03801269456744194, 0.03867187350988388, 0.0406494140625, 0.03999023512005806, 0.03757324069738388, 0.03427734225988388, 0.03120117075741291, 0.02658691257238388, 0.02482910081744194, 0.01999511756002903, 0.01384277269244194, 0.010986328125, 0.0076904296875, 0.003735351376235485, -0.0002197265566792339, -0.003955077845603228, -0.00439453125, -0.005932617001235485, -0.003076171735301614, -0.0057128905318677425, -0.006152343470603228, -0.00637206993997097, -0.008129882626235485, -0.010327148251235485, -0.0142822265625, -0.01713867112994194, -0.02065429650247097, -0.02460937388241291, -0.02878417819738388, -0.03603515401482582, -0.03911132737994194, -0.04240722581744194, -0.04350585862994194, -0.04592284932732582, -0.04965820163488388, -0.050537109375, -0.04921874776482582, -0.04526367038488388, -0.0428466796875, -0.03911132737994194, -0.03142089769244194, -0.02285156212747097, -0.01186523400247097, 0.0004394531133584678, 0.01186523400247097, 0.02768554538488388, 0.03999023512005806, 0.05515136569738388, 0.07053222507238388, 0.08613280951976776, 0.10063476115465164, 0.11601562052965164, 0.12788085639476776, 0.13645018637180328, 0.14545898139476776, 0.15314941108226776, 0.16083984076976776, 0.15974120795726776, 0.15688475966453552, 0.15117187798023224, 0.14414061605930328, 0.13249512016773224, 0.11667480319738388, 0.0977783203125, 0.07998047024011612, 0.0538330078125, 0.03054199181497097, 0.0046142577193677425, -0.02109374850988388, -0.04790038987994194, -0.076904296875, -0.10480956733226776, -0.13029785454273224, -0.15798339247703552, -0.17841796576976776, -0.20280760526657104, -0.21928709745407104, -0.23312987387180328, -0.24653320014476776, -0.25048828125, -0.2540039122104645, -0.24675291776657104, -0.23906248807907104, -0.22236327826976776, -0.20566405355930328, -0.18281249701976776, -0.16083984076976776, -0.13117675483226776, -0.10371093451976776, -0.07053222507238388, -0.03867187350988388, -0.008349609561264515, 0.02570800669491291, 0.05800781026482582, 0.08723144233226776, 0.11733397841453552, 0.14655761420726776, 0.17072753608226776, 0.19182127714157104, 0.21027831733226776, 0.22653807699680328, 0.23664550483226776, 0.24213866889476776, 0.24125975370407104, 0.23818358778953552, 0.22675780951976776, 0.21511229872703552, 0.1966552734375, 0.17885741591453552, 0.15578612685203552, 0.13205565512180328, 0.10480956733226776, 0.08173827826976776, 0.05405273288488388, 0.03010253794491291, 0.0008789062267169356, -0.02175292931497097, -0.04636230319738388, -0.06789550930261612, -0.08811035007238388, -0.10568847507238388, -0.11953124403953552, -0.13139648735523224, -0.14018554985523224, -0.14458008110523224, -0.14633788168430328, -0.1439208984375, -0.14128418266773224, -0.134033203125, -0.12458495795726776, -0.11469726264476776, -0.10261230170726776, -0.09096679091453552, -0.07646483927965164, -0.06108398362994194, -0.04680175706744194, -0.03317870944738388, -0.0230712890625, -0.0098876953125, 0.0035156249068677425, 0.011206054128706455, 0.01955566368997097, 0.02658691257238388, 0.03076171875, 0.03581542894244194, 0.03933105245232582, 0.03955078125, 0.03823241963982582, 0.03801269456744194, 0.03515625, 0.03251953050494194, 0.028564453125, 0.02482910081744194, 0.0186767578125, 0.014721679501235485, 0.010107421316206455, 0.00856933556497097, 0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.003735351376235485, -0.006152343470603228, -0.004833984188735485, -0.0046142577193677425, -0.0054931640625, -0.0076904296875, -0.009008788503706455, -0.010327148251235485, -0.01406249962747097, -0.01735839806497097, -0.02021484263241291, -0.02504882775247097, -0.0296630859375, -0.03427734225988388, -0.03911132737994194, -0.04240722581744194, -0.04592284932732582, -0.04965820163488388, -0.04987792670726776, -0.04987792670726776, -0.04790038987994194, -0.04746093600988388, -0.04262695088982582, -0.03801269456744194, -0.03273925557732582, -0.02153320237994194, -0.01384277269244194, -0.0002197265566792339, 0.010986328125, 0.02460937388241291, 0.0406494140625, 0.0560302734375, 0.0703125, 0.08437499403953552, 0.0999755859375, 0.11491698771715164, 0.12656249105930328, 0.13710936903953552, 0.14809569716453552, 0.15534667670726776, 0.16083984076976776, 0.15952147543430328, 0.15842284262180328, 0.15292967855930328, 0.14545898139476776, 0.13161620497703552, 0.11689452826976776, 0.0955810546875, 0.07778320461511612, 0.054931640625, 0.03229980543255806, 0.00527343712747097, -0.02109374850988388, -0.05207519233226776, -0.07492675632238388, -0.10700683295726776, -0.13205565512180328, -0.15688475966453552, -0.18061523139476776, -0.2021484375, -0.2197265625, -0.23444823920726776, -0.24565428495407104, -0.2513671815395355, -0.25334471464157104, -0.24807128310203552, -0.24191893637180328, -0.22412109375, -0.208740234375, -0.1812744140625, -0.15798339247703552, -0.13161620497703552, -0.10349120944738388, -0.07119140774011612, -0.03933105245232582, -0.00637206993997097, 0.024169921875, 0.0582275390625, 0.08613280951976776, 0.11931151896715164, 0.14458008110523224, 0.16874998807907104, 0.19094237685203552, 0.20939940214157104, 0.22456054389476776, 0.2340087890625, 0.24104003608226776, 0.24104003608226776, 0.23906248807907104, 0.22719725966453552, 0.21555174887180328, 0.1988525390625, 0.17841796576976776, 0.15622557699680328, 0.13227538764476776, 0.10678710788488388, 0.08217773586511612, 0.05251464620232582, 0.02834472618997097, 0.0008789062267169356, -0.02021484263241291, -0.04680175706744194, -0.06679687649011612, -0.08811035007238388, -0.10546875, -0.11865234375, -0.13029785454273224, -0.138427734375, -0.14479979872703552, -0.14655761420726776, -0.1439208984375, -0.140625, -0.13359375298023224, -0.12480468302965164, -0.1142578125, -0.10173339396715164, -0.087890625, -0.07602538913488388, -0.06284179538488388, -0.046142578125, -0.03493652120232582, -0.019775390625, -0.0098876953125, 0.001977538922801614, 0.01076660118997097, 0.02043456956744194, 0.03010253794491291, 0.0318603515625, 0.03537597507238388, 0.03823241963982582, 0.04020996019244194, 0.03691406175494194, 0.03911132737994194, 0.03603515401482582, 0.03142089769244194, 0.0274658203125, 0.024169921875, 0.01955566368997097, 0.0164794921875, 0.010327148251235485, 0.0068115233443677425, 0.002636718563735485, 0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.005053710658103228, -0.0057128905318677425, -0.005053710658103228, -0.0054931640625, -0.00747070275247097, -0.0068115233443677425, -0.010986328125, -0.01296386681497097, -0.01735839806497097, -0.02197265625, -0.0263671875, -0.02834472618997097, -0.03427734225988388, -0.03911132737994194, -0.04438476264476776, -0.04592284932732582, -0.04768066108226776, -0.04921874776482582, -0.04965820163488388, -0.04899902269244194, -0.04658202826976776, -0.04416503757238388, -0.03757324069738388, -0.03032226487994194, -0.02285156212747097, -0.01164550706744194, -0.0017578124534338713, 0.01186523400247097, 0.02592773362994194, 0.03911132737994194, 0.05668945237994194, 0.07009277492761612, 0.08591308444738388, 0.10085448622703552, 0.11469726264476776, 0.1263427734375, 0.13864745199680328, 0.14743651449680328, 0.15424804389476776, 0.15996094048023224, 0.1614990234375, 0.1571044921875, 0.151611328125, 0.14436034858226776, 0.13161620497703552, 0.11491698771715164, 0.09580077975988388, 0.07822265475988388, 0.054931640625, 0.03098144382238388, 0.0032958984375, -0.02065429650247097, -0.05097655951976776, -0.07536620646715164, -0.10458984225988388, -0.13161620497703552, -0.15666504204273224, -0.1790771484375, -0.19929198920726776, -0.21950682997703552, -0.2340087890625, -0.24697265028953552, -0.2513671815395355, -0.25202634930610657, -0.24807128310203552, -0.2406005859375, -0.22368162870407104, -0.20632323622703552, -0.1845703125, -0.15886230766773224, -0.129638671875, -0.10239257663488388, -0.06855468451976776, -0.03889160230755806, -0.0054931640625, 0.02724609337747097, 0.05778808519244194, 0.08876952528953552, 0.11777343600988388, 0.14479979872703552, 0.17182616889476776, 0.191162109375, 0.21159666776657104, 0.22324217855930328, 0.2340087890625, 0.24104003608226776, 0.23994140326976776, 0.23928222060203552, 0.228515625, 0.21708983182907104, 0.19797362387180328, 0.17951659858226776, 0.156005859375, 0.13315428793430328, 0.10568847507238388, 0.0780029296875, 0.05361327901482582, 0.02702636644244194, 0.0006591796409338713, -0.02395019493997097, -0.05097655951976776, -0.06877440959215164, -0.08657225966453552, -0.1043701171875, -0.11887206882238388, -0.129638671875, -0.13886718451976776, -0.14545898139476776, -0.14436034858226776, -0.14458008110523224, -0.14084471762180328, -0.13425292074680328, -0.12392577528953552, -0.11469726264476776, -0.10129394382238388, -0.09030761569738388, -0.07426757365465164, -0.06020507588982582, -0.04702148213982582, -0.032958984375, -0.02065429650247097, -0.009228515438735485, 0.0017578124534338713, 0.010327148251235485, 0.02043456956744194, 0.02658691257238388, 0.03098144382238388, 0.03669433668255806, 0.03823241963982582, 0.03823241963982582, 0.037353515625, 0.03713378682732582, 0.03383788838982582, 0.03032226487994194, 0.02878417819738388, 0.02263183519244194, 0.01779785193502903, 0.01625976525247097, 0.010327148251235485, 0.0076904296875, 0.0041748047806322575, 0.0010986328125, -0.0013183592818677425, -0.0054931640625, -0.00637206993997097, -0.005932617001235485, -0.0057128905318677425, -0.00527343712747097, -0.005932617001235485, -0.00966796837747097, -0.009448242373764515, -0.013403319753706455, -0.01845703087747097, -0.0208740234375, -0.02614746056497097, -0.0296630859375, -0.03581542894244194, -0.03801269456744194, -0.04306640475988388, -0.0472412109375, -0.04965820163488388, -0.05141601338982582, -0.05141601338982582, -0.04855956882238388, -0.04768066108226776, -0.04416503757238388, -0.03889160230755806, -0.03208007663488388, -0.02197265625, -0.01494140550494194, -0.001977538922801614, 0.01076660118997097, 0.02570800669491291, 0.03911132737994194, 0.05471191182732582, 0.0692138671875, 0.08525390177965164, 0.09975585341453552, 0.1131591796875, 0.12875975668430328, 0.13666991889476776, 0.14677734673023224, 0.1549072265625, 0.15842284262180328, 0.16083984076976776, 0.15952147543430328, 0.15205077826976776, 0.14348144829273224, 0.13205565512180328, 0.116455078125, 0.0977783203125, 0.07888183742761612, 0.05449218675494194, 0.02988281100988388, 0.0032958984375, -0.02285156212747097, -0.0516357421875, -0.0758056640625, -0.10524901747703552, -0.12985838949680328, -0.15908202528953552, -0.17885741591453552, -0.19973143935203552, -0.21884764730930328, -0.23356932401657104, -0.24653320014476776, -0.24960936605930328, -0.25224608182907104, -0.2471923828125, -0.23906248807907104, -0.22324217855930328, -0.20632323622703552, -0.18369139730930328, -0.16083984076976776, -0.13205565512180328, -0.10239257663488388, -0.07075195014476776, -0.03867187350988388, -0.00637206993997097, 0.0252685546875, 0.05976562201976776, 0.08745116740465164, 0.1175537109375, 0.14414061605930328, 0.16853027045726776, 0.19204100966453552, 0.21005858480930328, 0.22412109375, 0.23378905653953552, 0.24125975370407104, 0.24038085341453552, 0.23752440512180328, 0.22609862685203552, 0.21489256620407104, 0.19797362387180328, 0.17863768339157104, 0.156005859375, 0.13205565512180328, 0.10546875, 0.081298828125, 0.0538330078125, 0.02900390513241291, -0.0006591796409338713, -0.02219238132238388, -0.0472412109375, -0.06833495944738388, -0.08876952528953552, -0.10305175185203552, -0.11777343600988388, -0.13029785454273224, -0.138427734375, -0.14348144829273224, -0.14633788168430328, -0.14545898139476776, -0.13996581733226776, -0.13491210341453552, -0.12700195610523224, -0.11557617038488388, -0.10283202677965164, -0.08854980021715164, -0.07668457180261612, -0.0615234375, -0.04812011495232582, -0.0340576171875, -0.01999511756002903, -0.0098876953125, 0.0013183592818677425, 0.011425781063735485, 0.019775390625, 0.02834472618997097, 0.03120117075741291, 0.03559570387005806, 0.03977050632238388, 0.03999023512005806, 0.03933105245232582, 0.037353515625, 0.03339843824505806, 0.03273925557732582, 0.028564453125, 0.02548827975988388, 0.0186767578125, 0.015380859375, 0.010107421316206455, 0.0076904296875, 0.003735351376235485, 0.0017578124534338713, -0.0010986328125, -0.004833984188735485, -0.004833984188735485, -0.00527343712747097, -0.00527343712747097, -0.0046142577193677425, -0.00439453125, -0.00527343712747097, -0.0041748047806322575, -0.0041748047806322575, -0.002636718563735485, -0.0008789062267169356, -0.0028564452659338713, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, 0.0013183592818677425, 0.0013183592818677425, 0.0, 0.0002197265566792339, 0.0013183592818677425, 0.0, -0.002197265625, 0.0002197265566792339, 0.0010986328125, -0.0004394531133584678, 0.0006591796409338713, 0.0002197265566792339, -0.0006591796409338713, 0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0010986328125, 0.0, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, 0.0, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0002197265566792339, -0.0013183592818677425, 0.0004394531133584678, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.003735351376235485, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.0002197265566792339, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.003076171735301614, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0035156249068677425, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, 0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, 0.0, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, 0.0, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0035156249068677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, 0.0004394531133584678, -0.0002197265566792339, -0.0002197265566792339, -0.0017578124534338713, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0008789062267169356, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0004394531133584678, -0.002636718563735485, -0.0006591796409338713, 0.0002197265566792339, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, -0.0002197265566792339, 0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0004394531133584678, -0.0006591796409338713, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, 0.0002197265566792339, -0.0006591796409338713, -0.00439453125, -0.0002197265566792339, -0.002636718563735485, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0028564452659338713, 0.0, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.001538085867650807, 0.0, 0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, 0.0008789062267169356, -0.001977538922801614, -0.0010986328125, 0.0, -0.0035156249068677425, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0032958984375, -0.001538085867650807, 0.0002197265566792339, -0.0008789062267169356, -0.003076171735301614, -0.002636718563735485, -0.0008789062267169356, 0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0006591796409338713, 0.0, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, 0.0, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0008789062267169356, -0.003076171735301614, 0.0, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, 0.0, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.001538085867650807, 0.0, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0035156249068677425, -0.0028564452659338713, 0.0, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0035156249068677425, -0.0010986328125, -0.0032958984375, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 1, ... ])', '(angle, [4.8694686131])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, 0.0002197265566792339, -0.0010986328125, -0.0032958984375, -0.003076171735301614, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.0002197265566792339, 0.0, -0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, 0.0, 0.0, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, 0.001538085867650807, -0.001977538922801614, -0.0002197265566792339, -0.002636718563735485, -0.0035156249068677425, -0.002636718563735485, -0.0010986328125, 0.0002197265566792339, -0.0028564452659338713, 0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.0028564452659338713, -0.0004394531133584678, -0.0032958984375, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.002636718563735485, -0.001538085867650807, -0.0035156249068677425, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, 0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, 0.0002197265566792339, 0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, 0.0, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, 0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.0002197265566792339, -0.002636718563735485, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0008789062267169356, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0028564452659338713, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.002636718563735485, -0.0032958984375, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0010986328125, 0.0002197265566792339, 0.0, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, 0.0004394531133584678, -0.0004394531133584678, -0.0028564452659338713, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.003076171735301614, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, -0.0010986328125, 0.0, -0.0008789062267169356, -0.002197265625, 0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.001538085867650807, 0.0, -0.0004394531133584678, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, 0.0, -0.002197265625, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, 0.0008789062267169356, -0.0004394531133584678, 0.0, 0.0, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, -0.0032958984375, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.003076171735301614, -0.0017578124534338713, -0.003076171735301614, -0.0004394531133584678, 0.0004394531133584678, 0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, 0.0, -0.002197265625, -0.001977538922801614, -0.001977538922801614, 0.0, -0.0024169920943677425, 0.0, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0032958984375, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0028564452659338713, -0.0041748047806322575, -0.00747070275247097, -0.012304686941206455, -0.01625976525247097, -0.02109374850988388, -0.02834472618997097, -0.03449707105755806, -0.04262695088982582, -0.04899902269244194, -0.05471191182732582, -0.0626220703125, -0.06591796875, -0.06877440959215164, -0.07163085788488388, -0.07185058295726776, -0.07229004055261612, -0.06965331733226776, -0.06174316257238388, -0.05559081956744194, -0.04592284932732582, -0.03317870944738388, -0.01999511756002903, -0.0004394531133584678, 0.01494140550494194, 0.03559570387005806, 0.05449218675494194, 0.07624511420726776, 0.09624022990465164, 0.11821288615465164, 0.1373291015625, 0.15952147543430328, 0.17731933295726776, 0.1922607421875, 0.20478515326976776, 0.21665038168430328, 0.22170409560203552, 0.22390136122703552, 0.21774901449680328, 0.21027831733226776, 0.19863280653953552, 0.17973631620407104, 0.15908202528953552, 0.13337402045726776, 0.10612792521715164, 0.07734374701976776, 0.04526367038488388, 0.01054687425494194, -0.0230712890625, -0.0615234375, -0.0955810546875, -0.13271483778953552, -0.16677245497703552, -0.20126952230930328, -0.23269042372703552, -0.2603759765625, -0.28937986493110657, -0.31025388836860657, -0.3271728456020355, -0.3353027403354645, -0.33793944120407104, -0.33134764432907104, -0.31926268339157104, -0.2968505918979645, -0.27290037274360657, -0.24433593451976776, -0.2120361328125, -0.17380370199680328, -0.13798828423023224, -0.09755858778953552, -0.05537109076976776, -0.01274413987994194, 0.0263671875, 0.06833495944738388, 0.10568847507238388, 0.14787597954273224, 0.18303221464157104, 0.21818846464157104, 0.24807128310203552, 0.2755371034145355, 0.298828125, 0.31267088651657104, 0.3249755799770355, 0.3251953125, 0.3218994140625, 0.30585935711860657, 0.2909179627895355, 0.26806640625, 0.24169921875, 0.21049803495407104, 0.17841796576976776, 0.14326171576976776, 0.1109619140625, 0.07448730617761612, 0.04152831807732582, 0.0057128905318677425, -0.02702636644244194, -0.06130370870232582, -0.09140624850988388, -0.11711425334215164, -0.14084471762180328, -0.16413573920726776, -0.17951659858226776, -0.19204100966453552, -0.20017088949680328, -0.2021484375, -0.20412597060203552, -0.195556640625, -0.18918456137180328, -0.17380370199680328, -0.16083984076976776, -0.14436034858226776, -0.12436523288488388, -0.10568847507238388, -0.0867919921875, -0.06284179538488388, -0.04658202826976776, -0.02922363206744194, -0.012524413876235485, 0.0041748047806322575, 0.01735839806497097, 0.02922363206744194, 0.03757324069738388, 0.04768066108226776, 0.05075683444738388, 0.05361327901482582, 0.05646972358226776, 0.05712890625, 0.05207519233226776, 0.05075683444738388, 0.046142578125, 0.03999023512005806, 0.03493652120232582, 0.02878417819738388, 0.02175292931497097, 0.01582031138241291, 0.009008788503706455, 0.0054931640625, -0.0008789062267169356, -0.0017578124534338713, -0.0057128905318677425, -0.00747070275247097, -0.0054931640625, -0.0054931640625, -0.0068115233443677425, -0.009448242373764515, -0.011206054128706455, -0.013623046688735485, -0.01823730394244194, -0.02504882775247097, -0.03164062276482582, -0.0362548828125, -0.04350585862994194, -0.05009765550494194, -0.05537109076976776, -0.06108398362994194, -0.06635741889476776, -0.06855468451976776, -0.06943359225988388, -0.07075195014476776, -0.07009277492761612, -0.06547851115465164, -0.06174316257238388, -0.05317382514476776, -0.0428466796875, -0.03054199181497097, -0.01691894419491291, -0.0004394531133584678, 0.017578125, 0.03603515401482582, 0.05624999850988388, 0.07712402194738388, 0.09602050483226776, 0.12019042670726776, 0.14018554985523224, 0.16105957329273224, 0.17709960043430328, 0.19204100966453552, 0.20588378608226776, 0.21511229872703552, 0.22126464545726776, 0.22104491293430328, 0.21774901449680328, 0.21115721762180328, 0.19621580839157104, 0.1790771484375, 0.1593017578125, 0.13359375298023224, 0.10920409858226776, 0.07712402194738388, 0.046142578125, 0.01054687425494194, -0.0230712890625, -0.06284179538488388, -0.0977783203125, -0.13645018637180328, -0.16765137016773224, -0.20478515326976776, -0.23269042372703552, -0.263671875, -0.29179686307907104, -0.3109130859375, -0.32783201336860657, -0.3374999761581421, -0.3394775390625, -0.33112791180610657, -0.3205810487270355, -0.2964111268520355, -0.2744384706020355, -0.24367675185203552, -0.21489256620407104, -0.1746826171875, -0.13886718451976776, -0.09602050483226776, -0.05646972358226776, -0.0120849609375, 0.0274658203125, 0.07053222507238388, 0.10986328125, 0.14809569716453552, 0.18193358182907104, 0.21994628012180328, 0.24960936605930328, 0.2781738340854645, 0.29948729276657104, 0.3139892518520355, 0.32585448026657104, 0.32475584745407104, 0.32255858182907104, 0.30827635526657104, 0.29289549589157104, 0.2689453065395355, 0.24345701932907104, 0.21137695014476776, 0.17929686605930328, 0.14545898139476776, 0.11184081435203552, 0.07492675632238388, 0.03977050632238388, 0.007250976283103228, -0.028564453125, -0.06064452975988388, -0.08964843302965164, -0.11931151896715164, -0.14128418266773224, -0.164794921875, -0.18149413168430328, -0.19379882514476776, -0.20126952230930328, -0.20236815512180328, -0.20346678793430328, -0.19599609076976776, -0.18962401151657104, -0.17753905057907104, -0.1593017578125, -0.14194335043430328, -0.12546385824680328, -0.10502929240465164, -0.08591308444738388, -0.06591796875, -0.04921874776482582, -0.02834472618997097, -0.01164550706744194, 0.00527343712747097, 0.01625976525247097, 0.02768554538488388, 0.04108886793255806, 0.04570312425494194, 0.05097655951976776, 0.05405273288488388, 0.05624999850988388, 0.054931640625, 0.05449218675494194, 0.05097655951976776, 0.04438476264476776, 0.04042968526482582, 0.03449707105755806, 0.02812499925494194, 0.02197265625, 0.015600585378706455, 0.010986328125, 0.0057128905318677425, 0.0008789062267169356, -0.0035156249068677425, -0.0068115233443677425, -0.00637206993997097, -0.007031249813735485, -0.007250976283103228, -0.00856933556497097, -0.009448242373764515, -0.011206054128706455, -0.015380859375, -0.019775390625, -0.02219238132238388, -0.02988281100988388, -0.03713378682732582, -0.04460449144244194, -0.04812011495232582, -0.05471191182732582, -0.05998535081744194, -0.06459961086511612, -0.06899414211511612, -0.07053222507238388, -0.07163085788488388, -0.06899414211511612, -0.0648193359375, -0.06020507588982582, -0.05229492112994194, -0.04482421651482582, -0.03098144382238388, -0.01604003831744194, 0.0008789062267169356, 0.015600585378706455, 0.03603515401482582, 0.05581054463982582, 0.07778320461511612, 0.09689941257238388, 0.11931151896715164, 0.1417236328125, 0.16083984076976776, 0.17863768339157104, 0.19357909262180328, 0.20412597060203552, 0.21555174887180328, 0.22236327826976776, 0.22214354574680328, 0.21950682997703552, 0.21027831733226776, 0.19775390625, 0.17995604872703552, 0.15842284262180328, 0.13271483778953552, 0.10964354872703552, 0.07624511420726776, 0.04548339545726776, 0.009448242373764515, -0.02373046800494194, -0.06416015326976776, -0.0966796875, -0.13469238579273224, -0.16633300483226776, -0.20412597060203552, -0.23422850668430328, -0.263671875, -0.28959959745407104, -0.3128906190395355, -0.3315673768520355, -0.3385986089706421, -0.3427734375, -0.33244627714157104, -0.3194824159145355, -0.2957519590854645, -0.2733398377895355, -0.24411620199680328, -0.21115721762180328, -0.17292480170726776, -0.13535155355930328, -0.09470214694738388, -0.05646972358226776, -0.01274413987994194, 0.02614746056497097, 0.0714111328125, 0.10722655802965164, 0.14853514730930328, 0.18413084745407104, 0.2197265625, 0.24873046576976776, 0.2766357362270355, 0.29926756024360657, 0.3144287168979645, 0.32893064618110657, 0.33002927899360657, 0.3238769471645355, 0.30915525555610657, 0.2933349609375, 0.26850584149360657, 0.24147948622703552, 0.21071776747703552, 0.1790771484375, 0.14304198324680328, 0.11008300632238388, 0.07294921576976776, 0.03933105245232582, 0.00439453125, -0.02680663950741291, -0.06306152045726776, -0.09206542372703552, -0.11909179389476776, -0.142822265625, -0.16435547173023224, -0.17995604872703552, -0.19248045980930328, -0.2021484375, -0.2021484375, -0.20500487089157104, -0.20017088949680328, -0.1900634765625, -0.1746826171875, -0.16193847358226776, -0.14545898139476776, -0.12656249105930328, -0.10480956733226776, -0.08481445163488388, -0.06569824367761612, -0.04680175706744194, -0.02658691257238388, -0.01164550706744194, 0.003735351376235485, 0.0186767578125, 0.02900390513241291, 0.04086913913488388, 0.04768066108226776, 0.05141601338982582, 0.05295410007238388, 0.05427245795726776, 0.05581054463982582, 0.05339355394244194, 0.0494384765625, 0.04526367038488388, 0.03823241963982582, 0.03449707105755806, 0.02768554538488388, 0.02131347544491291, 0.01691894419491291, 0.0087890625, 0.003735351376235485, -0.0008789062267169356, -0.001977538922801614, -0.0054931640625, -0.006591796875, -0.007031249813735485, -0.006152343470603228, -0.00747070275247097, -0.008349609561264515, -0.0142822265625, -0.0164794921875, -0.02043456956744194, -0.02504882775247097, -0.02988281100988388, -0.03801269456744194, -0.04328612983226776, -0.04833984375, -0.05515136569738388, -0.06196288764476776, -0.06459961086511612, -0.06855468451976776, -0.07185058295726776, -0.07097167521715164, -0.06877440959215164, -0.06525878608226776, -0.05954589694738388, -0.05185546725988388, -0.04350585862994194, -0.03229980543255806, -0.01779785193502903, 0.0006591796409338713, 0.014721679501235485, 0.03669433668255806, 0.05624999850988388, 0.07866210490465164, 0.09865722060203552, 0.12019042670726776, 0.14018554985523224, 0.15908202528953552, 0.17753905057907104, 0.19401854276657104, 0.20654296875, 0.21599119901657104, 0.22170409560203552, 0.22390136122703552, 0.21884764730930328, 0.2109375, 0.19753417372703552, 0.17951659858226776, 0.15842284262180328, 0.13381347060203552, 0.1087646484375, 0.07558593899011612, 0.0439453125, 0.0098876953125, -0.02482910081744194, -0.063720703125, -0.09843749552965164, -0.13491210341453552, -0.16896972060203552, -0.20368652045726776, -0.23488768935203552, -0.26762694120407104, -0.29289549589157104, -0.314208984375, -0.3306884765625, -0.3381591737270355, -0.3407958745956421, -0.33354490995407104, -0.3199218809604645, -0.29509276151657104, -0.27290037274360657, -0.24147948622703552, -0.20939940214157104, -0.17424315214157104, -0.13754881918430328, -0.09689941257238388, -0.05624999850988388, -0.01384277269244194, 0.02329101413488388, 0.06767577677965164, 0.10634765028953552, 0.14875487983226776, 0.18325194716453552, 0.21840819716453552, 0.24873046576976776, 0.2757568359375, 0.2999267578125, 0.3153076171875, 0.32563474774360657, 0.32783201336860657, 0.3232177793979645, 0.30827635526657104, 0.2920165956020355, 0.2682861387729645, 0.24257811903953552, 0.21159666776657104, 0.1790771484375, 0.14370116591453552, 0.10920409858226776, 0.07338867336511612, 0.04020996019244194, 0.0028564452659338713, -0.02878417819738388, -0.06086425483226776, -0.09184569865465164, -0.11865234375, -0.140625, -0.16325683891773224, -0.18061523139476776, -0.19423827528953552, -0.199951171875, -0.20302733778953552, -0.20412597060203552, -0.19819335639476776, -0.19028319418430328, -0.17556151747703552, -0.16083984076976776, -0.14436034858226776, -0.1263427734375, -0.10678710788488388, -0.0867919921875, -0.06525878608226776, -0.04746093600988388, -0.028564453125, -0.01384277269244194, 0.0035156249068677425, 0.019775390625, 0.03142089769244194, 0.03867187350988388, 0.0472412109375, 0.05317382514476776, 0.05734863132238388, 0.05778808519244194, 0.05471191182732582, 0.05295410007238388, 0.04899902269244194, 0.04570312425494194, 0.03955078125, 0.03427734225988388, 0.02878417819738388, 0.02285156212747097, 0.015600585378706455, 0.007250976283103228, 0.006152343470603228, 0.001538085867650807, -0.002636718563735485, -0.006591796875, -0.0068115233443677425, -0.007910155691206455, -0.00747070275247097, -0.00856933556497097, -0.009448242373764515, -0.011425781063735485, -0.01691894419491291, -0.019775390625, -0.02482910081744194, -0.03098144382238388, -0.03581542894244194, -0.04262695088982582, -0.04899902269244194, -0.05515136569738388, -0.06108398362994194, -0.06437987834215164, -0.06855468451976776, -0.06899414211511612, -0.07075195014476776, -0.0703125, -0.0670166015625, -0.0626220703125, -0.054931640625, -0.04592284932732582, -0.03317870944738388, -0.0186767578125, -0.001538085867650807, 0.01669921912252903, 0.03603515401482582, 0.05537109076976776, 0.07668457180261612, 0.0977783203125, 0.1197509765625, 0.14194335043430328, 0.15798339247703552, 0.17556151747703552, 0.19379882514476776, 0.20566405355930328, 0.21599119901657104, 0.22280272841453552, 0.22280272841453552, 0.21818846464157104, 0.21027831733226776, 0.19753417372703552, 0.18017578125, 0.15974120795726776, 0.13315428793430328, 0.10612792521715164, 0.07734374701976776, 0.04790038987994194, 0.010107421316206455, -0.02548827975988388, -0.06196288764476776, -0.09580077975988388, -0.13535155355930328, -0.1669921875, -0.20258788764476776, -0.23686522245407104, -0.26542967557907104, -0.2902587950229645, -0.3128906190395355, -0.3306884765625, -0.3385986089706421, -0.3418945074081421, -0.33222654461860657, -0.3194824159145355, -0.2986083924770355, -0.2744384706020355, -0.24301756918430328, -0.21291503310203552, -0.17556151747703552, -0.13601073622703552, -0.09755858778953552, -0.0560302734375, -0.011425781063735485, 0.02768554538488388, 0.07053222507238388, 0.10612792521715164, 0.14897461235523224, 0.18105468153953552, 0.2186279296875, 0.24895018339157104, 0.27751463651657104, 0.2997070252895355, 0.3139892518520355, 0.3251953125, 0.32805174589157104, 0.3232177793979645, 0.30827635526657104, 0.29267576336860657, 0.26872557401657104, 0.24411620199680328, 0.213134765625, 0.17973631620407104, 0.14523924887180328, 0.11030273139476776, 0.07558593899011612, 0.03867187350988388, 0.0035156249068677425, -0.02702636644244194, -0.0604248046875, -0.09074706584215164, -0.11821288615465164, -0.14018554985523224, -0.16083984076976776, -0.17951659858226776, -0.19248045980930328, -0.20039062201976776, -0.20346678793430328, -0.20456542074680328, -0.19709472358226776, -0.18962401151657104, -0.17556151747703552, -0.16193847358226776, -0.14348144829273224, -0.12656249105930328, -0.10590820014476776, -0.085693359375, -0.06591796875, -0.04702148213982582, -0.02944335900247097, -0.011206054128706455, 0.005932617001235485, 0.01801757700741291, 0.03032226487994194, 0.03955078125, 0.04592284932732582, 0.05295410007238388, 0.054931640625, 0.05668945237994194, 0.05581054463982582, 0.05427245795726776, 0.05009765550494194, 0.04658202826976776, 0.03977050632238388, 0.03471679612994194, 0.02812499925494194, 0.02131347544491291, 0.01494140550494194, 0.009008788503706455, 0.003735351376235485, -0.0008789062267169356, -0.0032958984375, -0.0032958984375, -0.006591796875, -0.008129882626235485, -0.007250976283103228, -0.009448242373764515, -0.010107421316206455, -0.012524413876235485, -0.015380859375, -0.01955566368997097, -0.02658691257238388, -0.02944335900247097, -0.03647460788488388, -0.041748046875, -0.04965820163488388, -0.054931640625, -0.05976562201976776, -0.06459961086511612, -0.06877440959215164, -0.07075195014476776, -0.0714111328125, -0.07009277492761612, -0.06569824367761612, -0.06020507588982582, -0.0516357421875, -0.04416503757238388, -0.03054199181497097, -0.017578125, -0.001977538922801614, 0.01669921912252903, 0.03691406175494194, 0.05734863132238388, 0.07712402194738388, 0.09689941257238388, 0.120849609375, 0.13996581733226776, 0.160400390625, 0.17731933295726776, 0.19270019233226776, 0.2076416015625, 0.21533203125, 0.22170409560203552, 0.2230224609375, 0.21884764730930328, 0.21049803495407104, 0.19775390625, 0.17995604872703552, 0.15886230766773224, 0.13381347060203552, 0.10810546576976776, 0.07668457180261612, 0.04416503757238388, 0.007910155691206455, -0.02592773362994194, -0.06416015326976776, -0.09689941257238388, -0.13535155355930328, -0.169189453125, -0.20258788764476776, -0.23576658964157104, -0.2669677734375, -0.29179686307907104, -0.31464841961860657, -0.3306884765625, -0.3392578065395355, -0.34233397245407104, -0.3320068418979645, -0.3197021484375, -0.2999267578125, -0.274658203125, -0.24257811903953552, -0.21225585043430328, -0.17490233480930328, -0.1395263671875, -0.09799804538488388, -0.05778808519244194, -0.014501952566206455, 0.02570800669491291, 0.0703125, 0.10832519084215164, 0.14963378012180328, 0.18479003012180328, 0.2186279296875, 0.24895018339157104, 0.2748779356479645, 0.2997070252895355, 0.31354978680610657, 0.3271728456020355, 0.3271728456020355, 0.32343748211860657, 0.3095947206020355, 0.29179686307907104, 0.2682861387729645, 0.24169921875, 0.21269530057907104, 0.18105468153953552, 0.14479979872703552, 0.10920409858226776, 0.0736083984375, 0.03955078125, 0.001538085867650807, -0.02680663950741291, -0.06284179538488388, -0.09030761569738388, -0.11865234375, -0.14238281548023224, -0.1636962890625, -0.18039549887180328, -0.1922607421875, -0.20126952230930328, -0.20390623807907104, -0.20478515326976776, -0.19687499105930328, -0.19094237685203552, -0.1768798828125, -0.16018065810203552, -0.14216308295726776, -0.12744140625, -0.10678710788488388, -0.08657225966453552, -0.06789550930261612, -0.04833984375, -0.02922363206744194, -0.01384277269244194, 0.005053710658103228, 0.01691894419491291, 0.03054199181497097, 0.03999023512005806, 0.04658202826976776, 0.05097655951976776, 0.05339355394244194, 0.05559081956744194, 0.05427245795726776, 0.05515136569738388, 0.05031738057732582, 0.046142578125, 0.03977050632238388, 0.03273925557732582, 0.028564453125, 0.02021484263241291, 0.01406249962747097, 0.009228515438735485, 0.003735351376235485, 0.0004394531133584678, -0.002636718563735485, -0.00527343712747097, -0.00527343712747097, -0.007910155691206455, -0.005932617001235485, -0.006152343470603228, -0.006591796875, -0.0057128905318677425, -0.0057128905318677425, -0.0041748047806322575, -0.0032958984375, -0.003955077845603228, -0.0032958984375, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, 0.0008789062267169356, 0.002197265625, -0.0006591796409338713, 0.001538085867650807, 0.0008789062267169356, 0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.0006591796409338713, -0.0004394531133584678, 0.0004394531133584678, 0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.003735351376235485, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.0035156249068677425, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0035156249068677425, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.003955077845603228, -0.002197265625, -0.0032958984375, -0.001538085867650807, -0.002636718563735485, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.003955077845603228, -0.0004394531133584678, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.003076171735301614, -0.002197265625, -0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, 0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0035156249068677425, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0004394531133584678, -0.003076171735301614, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.003076171735301614, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.003735351376235485, -0.0024169920943677425, -0.003735351376235485, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0035156249068677425, -0.0035156249068677425, -0.0002197265566792339, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, 0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0035156249068677425, -0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.0013183592818677425, -0.0035156249068677425, -0.0004394531133584678, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0035156249068677425, -0.0032958984375, -0.0028564452659338713, -0.0006591796409338713, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.003735351376235485, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, -0.0032958984375, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, 0.0006591796409338713, -0.0028564452659338713, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.003076171735301614, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, 0.0, 0.0, -0.001977538922801614, -0.0035156249068677425, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, -0.0032958984375, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.003955077845603228, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, 0.0, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0046142577193677425, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0041748047806322575, -0.0032958984375, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.0024169920943677425, -0.003735351376235485, -0.0008789062267169356, -0.0041748047806322575, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.003735351376235485, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, 0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0041748047806322575, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.003076171735301614, -0.0013183592818677425, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.002636718563735485, 0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [0, 0, 1, ... ])', '(angle, [6.2831853072])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0013183592818677425, -0.0010986328125, -0.0032958984375, -0.002636718563735485, -0.001977538922801614, -0.0006591796409338713, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.002636718563735485, 0.0004394531133584678, 0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, 0.0, -0.003076171735301614, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, 0.0, -0.0008789062267169356, -0.0008789062267169356, -0.0002197265566792339, -0.0032958984375, -0.003076171735301614, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, 0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, 0.0, 0.0, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.003076171735301614, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0024169920943677425, 0.0, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.0004394531133584678, -0.002636718563735485, -0.0035156249068677425, -0.0006591796409338713, 0.0, 0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, 0.0, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, 0.0008789062267169356, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.003076171735301614, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0028564452659338713, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0017578124534338713, 0.0006591796409338713, -0.0028564452659338713, -0.0006591796409338713, -0.003076171735301614, -0.003735351376235485, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.001538085867650807, 0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.003955077845603228, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.002636718563735485, -0.0006591796409338713, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0024169920943677425, -0.0035156249068677425, -0.0028564452659338713, 0.0, -0.0010986328125, -0.003076171735301614, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, 0.0, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.003735351376235485, -0.0010986328125, -0.002636718563735485, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0035156249068677425, -0.0024169920943677425, -0.003076171735301614, -0.0032958984375, 0.0013183592818677425, -0.0010986328125, -0.003076171735301614, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.003735351376235485, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, 0.0004394531133584678, -0.0013183592818677425, -0.003955077845603228, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.003735351376235485, -0.003076171735301614, -0.0035156249068677425, -0.0032958984375, -0.0035156249068677425, -0.0002197265566792339, -0.002197265625, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.003955077845603228, -0.0010986328125, 0.0002197265566792339, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0017578124534338713, -0.0002197265566792339, -0.0002197265566792339, -0.0024169920943677425, -0.003955077845603228, -0.005932617001235485, -0.01054687425494194, -0.01406249962747097, -0.01889648474752903, -0.02768554538488388, -0.03691406175494194, -0.04460449144244194, -0.052734375, -0.06350097805261612, -0.06943359225988388, -0.07844237983226776, -0.08283691108226776, -0.08854980021715164, -0.09272460639476776, -0.0933837890625, -0.08986815810203552, -0.08767089247703552, -0.07998047024011612, -0.06899414211511612, -0.05690917745232582, -0.04086913913488388, -0.0252685546875, -0.004833984188735485, 0.01955566368997097, 0.0439453125, 0.06943359225988388, 0.09492187201976776, 0.11997070163488388, 0.14875487983226776, 0.17446288466453552, 0.19687499105930328, 0.22456054389476776, 0.24169921875, 0.25883787870407104, 0.26872557401657104, 0.27729490399360657, 0.2777343690395355, 0.2735595703125, 0.2605957090854645, 0.24609375, 0.22148436307907104, 0.19907225668430328, 0.16633300483226776, 0.13425292074680328, 0.09733886271715164, 0.06064452975988388, 0.01955566368997097, -0.02021484263241291, -0.06569824367761612, -0.10700683295726776, -0.15205077826976776, -0.1900634765625, -0.23334960639476776, -0.26872557401657104, -0.30366209149360657, -0.3372802734375, -0.36628416180610657, -0.388916015625, -0.4018798768520355, -0.40825194120407104, -0.39287108182907104, -0.3812255859375, -0.35332030057907104, -0.3249755799770355, -0.287841796875, -0.2529052793979645, -0.20720213651657104, -0.16611327230930328, -0.11931151896715164, -0.07185058295726776, -0.02021484263241291, 0.0252685546875, 0.06987304240465164, 0.11733397841453552, 0.16545410454273224, 0.2054443359375, 0.24851073324680328, 0.287841796875, 0.3218994140625, 0.34980466961860657, 0.3759521245956421, 0.39287108182907104, 0.39726561307907104, 0.39616698026657104, 0.3799072206020355, 0.3592529296875, 0.32673338055610657, 0.2975097596645355, 0.25883787870407104, 0.22170409560203552, 0.18039549887180328, 0.14128418266773224, 0.0933837890625, 0.05317382514476776, 0.0098876953125, -0.032958984375, -0.07097167521715164, -0.107666015625, -0.14589843153953552, -0.17424315214157104, -0.2032470703125, -0.2252197265625, -0.24038085341453552, -0.2546630799770355, -0.2594970762729645, -0.261474609375, -0.25444334745407104, -0.24433593451976776, -0.22499999403953552, -0.20939940214157104, -0.18193358182907104, -0.15974120795726776, -0.13535155355930328, -0.11074218153953552, -0.08305663615465164, -0.05866698920726776, -0.03713378682732582, -0.01406249962747097, 0.007031249813735485, 0.02570800669491291, 0.03977050632238388, 0.05229492112994194, 0.06174316257238388, 0.0692138671875, 0.07448730617761612, 0.0758056640625, 0.072509765625, 0.07053222507238388, 0.06503906100988388, 0.06240234151482582, 0.05295410007238388, 0.04790038987994194, 0.03713378682732582, 0.02812499925494194, 0.02175292931497097, 0.014501952566206455, 0.00747070275247097, 0.0002197265566792339, -0.001538085867650807, -0.005053710658103228, -0.00747070275247097, -0.01054687425494194, -0.009008788503706455, -0.009448242373764515, -0.011425781063735485, -0.01318359375, -0.01955566368997097, -0.02702636644244194, -0.03229980543255806, -0.03757324069738388, -0.04746093600988388, -0.05515136569738388, -0.06350097805261612, -0.07272949069738388, -0.07712402194738388, -0.08371581882238388, -0.0889892578125, -0.09162597358226776, -0.09140624850988388, -0.08920898288488388, -0.08503417670726776, -0.07756347209215164, -0.06943359225988388, -0.05537109076976776, -0.04020996019244194, -0.02241210825741291, 0.001538085867650807, 0.02263183519244194, 0.04812011495232582, 0.07229004055261612, 0.0977783203125, 0.12348632514476776, 0.15336914360523224, 0.17775878310203552, 0.2054443359375, 0.22939452528953552, 0.24697265028953552, 0.2656494081020355, 0.27641600370407104, 0.28388670086860657, 0.28168943524360657, 0.27949216961860657, 0.263671875, 0.24653320014476776, 0.228515625, 0.20148925483226776, 0.16721190512180328, 0.138427734375, 0.09909667819738388, 0.05954589694738388, 0.01933593675494194, -0.02175292931497097, -0.06855468451976776, -0.1087646484375, -0.15183104574680328, -0.19423827528953552, -0.2362060546875, -0.27312010526657104, -0.30915525555610657, -0.3427734375, -0.37199705839157104, -0.3946288824081421, -0.40583494305610657, -0.4117675721645355, -0.39924314618110657, -0.38627928495407104, -0.35595703125, -0.33002927899360657, -0.2931152284145355, -0.2540039122104645, -0.21159666776657104, -0.169189453125, -0.12062987685203552, -0.07382812350988388, -0.02285156212747097, 0.02263183519244194, 0.07426757365465164, 0.11821288615465164, 0.16523437201976776, 0.20742186903953552, 0.2515869140625, 0.287841796875, 0.3216796815395355, 0.35551756620407104, 0.3777099549770355, 0.3955078125, 0.4007812440395355, 0.397705078125, 0.3814452886581421, 0.3614501953125, 0.3306884765625, 0.2997070252895355, 0.2627929747104645, 0.22170409560203552, 0.18083494901657104, 0.13886718451976776, 0.09580077975988388, 0.05668945237994194, 0.00856933556497097, -0.03142089769244194, -0.07382812350988388, -0.10810546576976776, -0.14523924887180328, -0.17402343451976776, -0.20192870497703552, -0.22719725966453552, -0.24147948622703552, -0.25664061307907104, -0.2625732421875, -0.2638916075229645, -0.2546630799770355, -0.24631346762180328, -0.22785644233226776, -0.20830076932907104, -0.18588866293430328, -0.1614990234375, -0.13381347060203552, -0.10942382365465164, -0.0845947265625, -0.06086425483226776, -0.03537597507238388, -0.01296386681497097, 0.009448242373764515, 0.0252685546875, 0.04152831807732582, 0.05405273288488388, 0.06240234151482582, 0.0703125, 0.07185058295726776, 0.07668457180261612, 0.07404784858226776, 0.07053222507238388, 0.06679687649011612, 0.06218261644244194, 0.05295410007238388, 0.046142578125, 0.03559570387005806, 0.028564453125, 0.02153320237994194, 0.01384277269244194, 0.006152343470603228, 0.0013183592818677425, -0.0035156249068677425, -0.00856933556497097, -0.009228515438735485, -0.0098876953125, -0.00747070275247097, -0.008349609561264515, -0.0098876953125, -0.0164794921875, -0.02043456956744194, -0.02373046800494194, -0.03032226487994194, -0.04020996019244194, -0.04965820163488388, -0.05427245795726776, -0.06130370870232582, -0.07185058295726776, -0.07866210490465164, -0.085693359375, -0.090087890625, -0.08986815810203552, -0.09140624850988388, -0.08920898288488388, -0.08525390177965164, -0.07822265475988388, -0.06657714396715164, -0.052734375, -0.03801269456744194, -0.02175292931497097, -0.0028564452659338713, 0.02219238132238388, 0.05075683444738388, 0.07272949069738388, 0.1021728515625, 0.12744140625, 0.15468749403953552, 0.1812744140625, 0.20698241889476776, 0.2274169921875, 0.2493896484375, 0.26411131024360657, 0.2759765684604645, 0.2869628965854645, 0.2836669981479645, 0.28168943524360657, 0.26630857586860657, 0.25048828125, 0.22587889432907104, 0.2021484375, 0.16787108778953552, 0.1373291015625, 0.09580077975988388, 0.05910644307732582, 0.01823730394244194, -0.02109374850988388, -0.06657714396715164, -0.107666015625, -0.15314941108226776, -0.19533690810203552, -0.23774413764476776, -0.27312010526657104, -0.3095947206020355, -0.3473876714706421, -0.37309569120407104, -0.3952880799770355, -0.40869140625, -0.4150634706020355, -0.40253904461860657, -0.3880370855331421, -0.35771483182907104, -0.3284912109375, -0.29399412870407104, -0.25664061307907104, -0.21335448324680328, -0.16896972060203552, -0.11865234375, -0.07404784858226776, -0.02241210825741291, 0.0230712890625, 0.0703125, 0.11513671278953552, 0.16633300483226776, 0.20786131918430328, 0.2524658143520355, 0.29069823026657104, 0.3240966796875, 0.3570556640625, 0.3788085877895355, 0.39814451336860657, 0.4018798768520355, 0.40034177899360657, 0.3814452886581421, 0.36210936307907104, 0.3304687440395355, 0.298828125, 0.26213377714157104, 0.22434081137180328, 0.1812744140625, 0.13930663466453552, 0.09492187201976776, 0.05581054463982582, 0.005932617001235485, -0.0318603515625, -0.06987304240465164, -0.1065673828125, -0.14545898139476776, -0.17666015028953552, -0.204345703125, -0.22785644233226776, -0.24741210043430328, -0.2605957090854645, -0.26103514432907104, -0.26433104276657104, -0.257080078125, -0.24807128310203552, -0.22917479276657104, -0.208740234375, -0.18522948026657104, -0.16018065810203552, -0.13491210341453552, -0.10964354872703552, -0.08525390177965164, -0.06064452975988388, -0.03471679612994194, -0.01274413987994194, 0.0076904296875, 0.0252685546875, 0.04108886793255806, 0.05251464620232582, 0.06328124552965164, 0.07163085788488388, 0.07404784858226776, 0.07624511420726776, 0.07382812350988388, 0.072509765625, 0.06613769382238388, 0.06218261644244194, 0.05471191182732582, 0.04658202826976776, 0.03779296949505806, 0.02834472618997097, 0.01955566368997097, 0.01384277269244194, 0.006591796875, 0.0008789062267169356, -0.003955077845603228, -0.008349609561264515, -0.00856933556497097, -0.008349609561264515, -0.0087890625, -0.01076660118997097, -0.0120849609375, -0.015380859375, -0.02131347544491291, -0.02570800669491291, -0.03142089769244194, -0.0406494140625, -0.04768066108226776, -0.054931640625, -0.06525878608226776, -0.072509765625, -0.07888183742761612, -0.08371581882238388, -0.09052734076976776, -0.09404296427965164, -0.09316405653953552, -0.090087890625, -0.08745116740465164, -0.07932128757238388, -0.06965331733226776, -0.05427245795726776, -0.03757324069738388, -0.02065429650247097, 0.0006591796409338713, 0.02438964694738388, 0.04790038987994194, 0.07272949069738388, 0.10107421875, 0.1263427734375, 0.15512694418430328, 0.18083494901657104, 0.20632323622703552, 0.22917479276657104, 0.25048828125, 0.265869140625, 0.2777343690395355, 0.287841796875, 0.2836669981479645, 0.28059080243110657, 0.26542967557907104, 0.25048828125, 0.22478026151657104, 0.19863280653953552, 0.17050780355930328, 0.13381347060203552, 0.09645995497703552, 0.06064452975988388, 0.01735839806497097, -0.0230712890625, -0.06987304240465164, -0.10898437350988388, -0.15380859375, -0.19248045980930328, -0.24038085341453552, -0.27861326932907104, -0.31157225370407104, -0.3451904058456421, -0.3744140565395355, -0.39616698026657104, -0.4111083745956421, -0.4161621034145355, -0.4031982421875, -0.388916015625, -0.3594726324081421, -0.33112791180610657, -0.2942138612270355, -0.2548828125, -0.21225585043430328, -0.16567382216453552, -0.11997070163488388, -0.07119140774011612, -0.02043456956744194, 0.0230712890625, 0.07404784858226776, 0.11711425334215164, 0.16677245497703552, 0.20961913466453552, 0.2535644471645355, 0.2891601622104645, 0.3251953125, 0.3557372987270355, 0.3792480230331421, 0.3963867127895355, 0.4010009765625, 0.3996826112270355, 0.38298338651657104, 0.36298826336860657, 0.33332517743110657, 0.30278319120407104, 0.2612548768520355, 0.2252197265625, 0.1812744140625, 0.13820800185203552, 0.09514159709215164, 0.05405273288488388, 0.0087890625, -0.03164062276482582, -0.0758056640625, -0.11074218153953552, -0.14677734673023224, -0.17709960043430328, -0.20390623807907104, -0.22895507514476776, -0.24609375, -0.25773924589157104, -0.2638916075229645, -0.26630857586860657, -0.25664061307907104, -0.24543456733226776, -0.22917479276657104, -0.21071776747703552, -0.18720702826976776, -0.16391600668430328, -0.13469238579273224, -0.11008300632238388, -0.08437499403953552, -0.05866698920726776, -0.0362548828125, -0.01406249962747097, 0.007250976283103228, 0.02482910081744194, 0.04020996019244194, 0.05405273288488388, 0.06196288764476776, 0.06965331733226776, 0.07382812350988388, 0.07712402194738388, 0.07426757365465164, 0.072509765625, 0.06635741889476776, 0.06328124552965164, 0.052734375, 0.046142578125, 0.03823241963982582, 0.03032226487994194, 0.0208740234375, 0.01318359375, 0.0068115233443677425, 0.0006591796409338713, -0.002636718563735485, -0.006152343470603228, -0.00966796837747097, -0.009228515438735485, -0.00747070275247097, -0.008129882626235485, -0.01318359375, -0.014721679501235485, -0.02065429650247097, -0.02460937388241291, -0.03251953050494194, -0.03801269456744194, -0.04790038987994194, -0.05624999850988388, -0.06350097805261612, -0.0714111328125, -0.08107910305261612, -0.08591308444738388, -0.0911865234375, -0.09140624850988388, -0.09294433146715164, -0.09096679091453552, -0.0867919921875, -0.07932128757238388, -0.06965331733226776, -0.0560302734375, -0.03911132737994194, -0.0208740234375, 0.0010986328125, 0.02219238132238388, 0.0494384765625, 0.07382812350988388, 0.09821777045726776, 0.12546385824680328, 0.15622557699680328, 0.182373046875, 0.20412597060203552, 0.22873534262180328, 0.25048828125, 0.2669677734375, 0.27619627118110657, 0.2845458984375, 0.2847656309604645, 0.2788330018520355, 0.26740720868110657, 0.2515869140625, 0.228515625, 0.20236815512180328, 0.16896972060203552, 0.13776855170726776, 0.09733886271715164, 0.0615234375, 0.01999511756002903, -0.02373046800494194, -0.07097167521715164, -0.10854491591453552, -0.15512694418430328, -0.19599609076976776, -0.23532713949680328, -0.27685546875, -0.3122314512729645, -0.3451904058456421, -0.3733154237270355, -0.39616698026657104, -0.4139648377895355, -0.41682127118110657, -0.40275877714157104, -0.38957518339157104, -0.3612304627895355, -0.3326660096645355, -0.2913574278354645, -0.2562011778354645, -0.21181640028953552, -0.16677245497703552, -0.12106933444738388, -0.07229004055261612, -0.02285156212747097, 0.0230712890625, 0.07338867336511612, 0.11821288615465164, 0.16853027045726776, 0.20939940214157104, 0.25224608182907104, 0.29157713055610657, 0.32365721464157104, 0.3561767339706421, 0.3799072206020355, 0.39704588055610657, 0.4034179449081421, 0.4001220464706421, 0.37968748807907104, 0.3614501953125, 0.3315673768520355, 0.30146482586860657, 0.2647705078125, 0.22478026151657104, 0.1790771484375, 0.14194335043430328, 0.0933837890625, 0.0516357421875, 0.007910155691206455, -0.03361816331744194, -0.07426757365465164, -0.1109619140625, -0.1461181640625, -0.17534178495407104, -0.20566405355930328, -0.22829589247703552, -0.24455565214157104, -0.25861814618110657, -0.26411131024360657, -0.26806640625, -0.25664061307907104, -0.2471923828125, -0.22917479276657104, -0.21005858480930328, -0.18500976264476776, -0.16413573920726776, -0.13666991889476776, -0.11228027194738388, -0.08591308444738388, -0.05998535081744194, -0.03427734225988388, -0.01406249962747097, 0.007031249813735485, 0.02504882775247097, 0.04108886793255806, 0.05251464620232582, 0.06240234151482582, 0.06987304240465164, 0.07316894084215164, 0.07756347209215164, 0.07536620646715164, 0.07185058295726776, 0.06657714396715164, 0.06108398362994194, 0.05295410007238388, 0.046142578125, 0.03581542894244194, 0.0274658203125, 0.019775390625, 0.01274413987994194, 0.006591796875, 0.0, -0.004833984188735485, -0.0076904296875, -0.008349609561264515, -0.008129882626235485, -0.008129882626235485, -0.011425781063735485, -0.01186523400247097, -0.01669921912252903, -0.02021484263241291, -0.02614746056497097, -0.03559570387005806, -0.0406494140625, -0.04855956882238388, -0.05559081956744194, -0.06416015326976776, -0.07316894084215164, -0.07954101264476776, -0.08437499403953552, -0.087890625, -0.0933837890625, -0.09316405653953552, -0.09052734076976776, -0.08481445163488388, -0.07844237983226776, -0.068115234375, -0.05690917745232582, -0.03999023512005806, -0.02241210825741291, -0.0004394531133584678, 0.02175292931497097, 0.04855956882238388, 0.072509765625, 0.0999755859375, 0.12678222358226776, 0.15292967855930328, 0.17863768339157104, 0.20522460341453552, 0.22829589247703552, 0.2493896484375, 0.2669677734375, 0.27751463651657104, 0.28630369901657104, 0.28190916776657104, 0.2801513671875, 0.26520994305610657, 0.24763183295726776, 0.22829589247703552, 0.20061033964157104, 0.16765137016773224, 0.13908691704273224, 0.09843749552965164, 0.06086425483226776, 0.01582031138241291, -0.02395019493997097, -0.06877440959215164, -0.11052245646715164, -0.15688475966453552, -0.19577635824680328, -0.2362060546875, -0.27421873807907104, -0.31245115399360657, -0.34760740399360657, -0.3726562261581421, -0.3974853456020355, -0.41022947430610657, -0.4166015386581421, -0.40275877714157104, -0.38737791776657104, -0.35991209745407104, -0.33222654461860657, -0.29377439618110657, -0.2546630799770355, -0.21181640028953552, -0.16831053793430328, -0.12062987685203552, -0.07448730617761612, -0.02504882775247097, 0.02438964694738388, 0.07470703125, 0.11843261122703552, 0.16523437201976776, 0.20830076932907104, 0.25092771649360657, 0.28718259930610657, 0.32695311307907104, 0.35661619901657104, 0.3777099549770355, 0.39726561307907104, 0.40166014432907104, 0.40144041180610657, 0.38408201932907104, 0.36298826336860657, 0.3306884765625, 0.29948729276657104, 0.26301267743110657, 0.22346191108226776, 0.18149413168430328, 0.1395263671875, 0.09272460639476776, 0.054931640625, 0.0068115233443677425, -0.03229980543255806, -0.076904296875, -0.10942382365465164, -0.14523924887180328, -0.17556151747703552, -0.20632323622703552, -0.22719725966453552, -0.24609375, -0.2601562440395355, -0.26191404461860657, -0.263671875, -0.25773924589157104, -0.24763183295726776, -0.22917479276657104, -0.21005858480930328, -0.18522948026657104, -0.16259765625, -0.13623046875, -0.10832519084215164, -0.08327636867761612, -0.06086425483226776, -0.03647460788488388, -0.013623046688735485, 0.007031249813735485, 0.02460937388241291, 0.04196777194738388, 0.05537109076976776, 0.06394042819738388, 0.0703125, 0.07382812350988388, 0.07778320461511612, 0.07426757365465164, 0.0736083984375, 0.06745605170726776, 0.0604248046875, 0.05339355394244194, 0.04658202826976776, 0.03713378682732582, 0.02900390513241291, 0.02065429650247097, 0.01296386681497097, 0.0057128905318677425, 0.0013183592818677425, -0.003735351376235485, -0.00856933556497097, -0.00966796837747097, -0.010107421316206455, -0.010107421316206455, -0.009008788503706455, -0.007250976283103228, -0.008349609561264515, -0.0068115233443677425, -0.003735351376235485, -0.004833984188735485, -0.00527343712747097, -0.003955077845603228, -0.002636718563735485, -0.002197265625, 0.0002197265566792339, 0.0, 0.0004394531133584678, 0.0002197265566792339, 0.0008789062267169356, 0.002636718563735485, 0.001538085867650807, 0.001538085867650807, 0.0013183592818677425, 0.0008789062267169356, 0.0006591796409338713, 0.0004394531133584678, -0.0006591796409338713, -0.0004394531133584678, 0.0002197265566792339, 0.0006591796409338713, 0.0006591796409338713, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0035156249068677425, -0.003076171735301614, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.003735351376235485, -0.0010986328125, -0.003076171735301614, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0032958984375, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.0028564452659338713, -0.0010986328125, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0032958984375, -0.0035156249068677425, -0.0024169920943677425, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.0017578124534338713, -0.0024169920943677425, -0.00439453125, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.0028564452659338713, -0.0008789062267169356, -0.0010986328125, -0.0035156249068677425, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0032958984375, -0.001538085867650807, -0.0008789062267169356, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0032958984375, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.002197265625, -0.0035156249068677425, -0.003955077845603228, -0.0013183592818677425, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0035156249068677425, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0013183592818677425, 0.0, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, 0.0, -0.0017578124534338713, -0.0035156249068677425, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0032958984375, -0.0024169920943677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.0002197265566792339, 0.0, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0032958984375, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0004394531133584678, -0.003076171735301614, -0.0032958984375, -0.0024169920943677425, -0.003735351376235485, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.003076171735301614, -0.0041748047806322575, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0032958984375, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0032958984375, -0.0017578124534338713, -0.003955077845603228, -0.0028564452659338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.0028564452659338713, -0.0041748047806322575, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.003076171735301614, -0.003076171735301614, -0.0008789062267169356, -0.001977538922801614, -0.003955077845603228, -0.002636718563735485, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.003955077845603228, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.003735351376235485, -0.0028564452659338713, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, -0.003076171735301614, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.003735351376235485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, -0.0017578124534338713, -0.0013183592818677425, -0.0035156249068677425, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0035156249068677425, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0028564452659338713, -0.0002197265566792339, 0.0, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.0006591796409338713, -0.003735351376235485, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.003735351376235485, -0.0024169920943677425, -0.001977538922801614, -0.0032958984375, -0.0032958984375, -0.0032958984375, -0.002636718563735485, -0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [1, 1, 1, ... ])', '(angle, [0.6283])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.0035156249068677425, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0032958984375, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.0054931640625, -0.00527343712747097, -0.0054931640625, -0.0057128905318677425, -0.00856933556497097, -0.009448242373764515, -0.010107421316206455, -0.009008788503706455, -0.009228515438735485, -0.01054687425494194, -0.010986328125, -0.0098876953125, -0.010107421316206455, -0.010327148251235485, -0.0098876953125, -0.0087890625, -0.007250976283103228, -0.00527343712747097, -0.005053710658103228, -0.001538085867650807, 0.0010986328125, 0.0028564452659338713, 0.006152343470603228, 0.009228515438735485, 0.01164550706744194, 0.0142822265625, 0.01713867112994194, 0.02043456956744194, 0.0208740234375, 0.02329101413488388, 0.02614746056497097, 0.02724609337747097, 0.02768554538488388, 0.02614746056497097, 0.028564453125, 0.02812499925494194, 0.02548827975988388, 0.02263183519244194, 0.02065429650247097, 0.01516113243997097, 0.01274413987994194, 0.008129882626235485, 0.0032958984375, -0.0010986328125, -0.006152343470603228, -0.011425781063735485, -0.01801757700741291, -0.02329101413488388, -0.02658691257238388, -0.03273925557732582, -0.03779296949505806, -0.04196777194738388, -0.04350585862994194, -0.04460449144244194, -0.04790038987994194, -0.05009765550494194, -0.05141601338982582, -0.04855956882238388, -0.04636230319738388, -0.04306640475988388, -0.041748046875, -0.03603515401482582, -0.03251953050494194, -0.02570800669491291, -0.02065429650247097, -0.015600585378706455, -0.009448242373764515, -0.0013183592818677425, 0.0046142577193677425, 0.011425781063735485, 0.0164794921875, 0.02241210825741291, 0.02680663950741291, 0.03251953050494194, 0.0362548828125, 0.03823241963982582, 0.04108886793255806, 0.04152831807732582, 0.04372558370232582, 0.04306640475988388, 0.0428466796875, 0.04108886793255806, 0.0384521484375, 0.03471679612994194, 0.03229980543255806, 0.02944335900247097, 0.0252685546875, 0.01823730394244194, 0.01406249962747097, 0.009228515438735485, 0.0032958984375, -0.0017578124534338713, -0.004833984188735485, -0.010107421316206455, -0.01274413987994194, -0.01801757700741291, -0.02219238132238388, -0.02438964694738388, -0.02614746056497097, -0.02702636644244194, -0.02790527231991291, -0.02724609337747097, -0.02878417819738388, -0.02790527231991291, -0.02680663950741291, -0.024169921875, -0.0230712890625, -0.01999511756002903, -0.01911620981991291, -0.015380859375, -0.01296386681497097, -0.00966796837747097, -0.00747070275247097, -0.0032958984375, -0.001538085867650807, -0.0008789062267169356, 0.0008789062267169356, 0.001538085867650807, 0.0041748047806322575, 0.00527343712747097, 0.00747070275247097, 0.006591796875, 0.00439453125, 0.0054931640625, 0.0046142577193677425, 0.0035156249068677425, 0.0054931640625, 0.0041748047806322575, 0.002636718563735485, 0.0008789062267169356, 0.0, -0.0004394531133584678, 0.0008789062267169356, 0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.001538085867650807, -0.0032958984375, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, -0.003955077845603228, -0.005053710658103228, -0.00439453125, -0.005932617001235485, -0.0068115233443677425, -0.007031249813735485, -0.00966796837747097, -0.00966796837747097, -0.01054687425494194, -0.012304686941206455, -0.010327148251235485, -0.01054687425494194, -0.010986328125, -0.008349609561264515, -0.007910155691206455, -0.008129882626235485, -0.008349609561264515, -0.00527343712747097, -0.00439453125, -0.001538085867650807, 0.0006591796409338713, 0.0046142577193677425, 0.007910155691206455, 0.009008788503706455, 0.012304686941206455, 0.01406249962747097, 0.01779785193502903, 0.019775390625, 0.02395019493997097, 0.02438964694738388, 0.0274658203125, 0.02702636644244194, 0.02614746056497097, 0.02790527231991291, 0.02768554538488388, 0.0274658203125, 0.02482910081744194, 0.0230712890625, 0.01933593675494194, 0.015380859375, 0.01186523400247097, 0.00856933556497097, 0.003955077845603228, 0.0004394531133584678, -0.0068115233443677425, -0.0120849609375, -0.01604003831744194, -0.02153320237994194, -0.028564453125, -0.0318603515625, -0.037353515625, -0.04042968526482582, -0.04350585862994194, -0.04680175706744194, -0.04987792670726776, -0.04855956882238388, -0.0494384765625, -0.04877929389476776, -0.04790038987994194, -0.04438476264476776, -0.04240722581744194, -0.03823241963982582, -0.032958984375, -0.02658691257238388, -0.02021484263241291, -0.01604003831744194, -0.008349609561264515, -0.0006591796409338713, 0.005053710658103228, 0.01076660118997097, 0.01669921912252903, 0.02351074106991291, 0.02614746056497097, 0.03142089769244194, 0.03647460788488388, 0.03911132737994194, 0.04152831807732582, 0.04372558370232582, 0.04526367038488388, 0.04482421651482582, 0.04416503757238388, 0.04306640475988388, 0.04086913913488388, 0.03559570387005806, 0.03229980543255806, 0.03076171875, 0.02504882775247097, 0.017578125, 0.01406249962747097, 0.00856933556497097, 0.003735351376235485, -0.001538085867650807, -0.0054931640625, -0.010107421316206455, -0.01494140550494194, -0.017578125, -0.02219238132238388, -0.02460937388241291, -0.02570800669491291, -0.02702636644244194, -0.02724609337747097, -0.0274658203125, -0.028564453125, -0.02658691257238388, -0.02548827975988388, -0.02373046800494194, -0.02241210825741291, -0.01933593675494194, -0.01735839806497097, -0.015600585378706455, -0.01406249962747097, -0.01054687425494194, -0.008349609561264515, -0.005932617001235485, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, 0.0017578124534338713, 0.0032958984375, 0.005932617001235485, 0.005932617001235485, 0.00527343712747097, 0.006591796875, 0.00637206993997097, 0.005053710658103228, 0.003955077845603228, 0.00439453125, 0.001977538922801614, 0.0024169920943677425, 0.0013183592818677425, 0.0002197265566792339, 0.001538085867650807, 0.0, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.00527343712747097, -0.006152343470603228, -0.002636718563735485, -0.0041748047806322575, -0.00747070275247097, -0.007910155691206455, -0.00747070275247097, -0.008349609561264515, -0.009228515438735485, -0.009448242373764515, -0.010107421316206455, -0.0098876953125, -0.009228515438735485, -0.008349609561264515, -0.009008788503706455, -0.009448242373764515, -0.007031249813735485, -0.00637206993997097, -0.0054931640625, -0.0032958984375, -0.002197265625, 0.0006591796409338713, 0.0041748047806322575, 0.006591796875, 0.009448242373764515, 0.01164550706744194, 0.01384277269244194, 0.01669921912252903, 0.01999511756002903, 0.02197265625, 0.02351074106991291, 0.024169921875, 0.02482910081744194, 0.0274658203125, 0.028564453125, 0.02878417819738388, 0.02702636644244194, 0.02548827975988388, 0.02285156212747097, 0.02043456956744194, 0.01735839806497097, 0.01274413987994194, 0.008129882626235485, 0.0041748047806322575, -0.003076171735301614, -0.00527343712747097, -0.010986328125, -0.0164794921875, -0.02153320237994194, -0.02812499925494194, -0.03317870944738388, -0.03581542894244194, -0.0406494140625, -0.04548339545726776, -0.0472412109375, -0.04833984375, -0.05009765550494194, -0.05097655951976776, -0.04877929389476776, -0.04658202826976776, -0.0450439453125, -0.04130859300494194, -0.03801269456744194, -0.0318603515625, -0.02768554538488388, -0.02241210825741291, -0.01494140550494194, -0.01054687425494194, -0.001977538922801614, 0.00637206993997097, 0.01164550706744194, 0.01582031138241291, 0.02329101413488388, 0.02724609337747097, 0.0318603515625, 0.03515625, 0.03823241963982582, 0.04086913913488388, 0.04328612983226776, 0.0439453125, 0.04306640475988388, 0.04328612983226776, 0.04108886793255806, 0.0384521484375, 0.0362548828125, 0.03383788838982582, 0.02812499925494194, 0.02263183519244194, 0.01779785193502903, 0.01274413987994194, 0.00856933556497097, 0.0017578124534338713, -0.002197265625, -0.00747070275247097, -0.01076660118997097, -0.013623046688735485, -0.01691894419491291, -0.02109374850988388, -0.024169921875, -0.02724609337747097, -0.02724609337747097, -0.0274658203125, -0.02768554538488388, -0.02702636644244194, -0.02834472618997097, -0.02790527231991291, -0.02438964694738388, -0.02395019493997097, -0.02153320237994194, -0.01713867112994194, -0.01516113243997097, -0.013403319753706455, -0.009008788503706455, -0.007250976283103228, -0.005053710658103228, -0.0041748047806322575, -0.001538085867650807, 0.0004394531133584678, 0.002197265625, 0.0041748047806322575, 0.0046142577193677425, 0.005053710658103228, 0.006591796875, 0.003955077845603228, 0.004833984188735485, 0.0054931640625, 0.004833984188735485, 0.003955077845603228, 0.0032958984375, 0.0028564452659338713, 0.001977538922801614, 0.0004394531133584678, 0.0006591796409338713, -0.0002197265566792339, 0.0, -0.002636718563735485, -0.002197265625, -0.0032958984375, -0.002197265625, -0.003076171735301614, -0.0032958984375, -0.003076171735301614, -0.003735351376235485, -0.0028564452659338713, -0.003076171735301614, -0.0017578124534338713, -0.0046142577193677425, -0.00747070275247097, -0.007910155691206455, -0.0076904296875, -0.010327148251235485, -0.0087890625, -0.0087890625, -0.010986328125, -0.010107421316206455, -0.010107421316206455, -0.01054687425494194, -0.010107421316206455, -0.0087890625, -0.009008788503706455, -0.00856933556497097, -0.0076904296875, -0.0057128905318677425, -0.00439453125, -0.0017578124534338713, 0.0, 0.0032958984375, 0.005932617001235485, 0.01054687425494194, 0.01054687425494194, 0.01406249962747097, 0.01779785193502903, 0.02043456956744194, 0.02109374850988388, 0.02263183519244194, 0.02570800669491291, 0.02548827975988388, 0.02768554538488388, 0.02724609337747097, 0.02724609337747097, 0.02724609337747097, 0.02482910081744194, 0.02395019493997097, 0.02131347544491291, 0.01735839806497097, 0.01296386681497097, 0.009448242373764515, 0.0028564452659338713, -0.0010986328125, -0.005053710658103228, -0.01054687425494194, -0.01779785193502903, -0.02197265625, -0.02724609337747097, -0.0340576171875, -0.0362548828125, -0.03999023512005806, -0.04482421651482582, -0.04790038987994194, -0.04812011495232582, -0.04877929389476776, -0.05075683444738388, -0.04899902269244194, -0.04702148213982582, -0.0450439453125, -0.04108886793255806, -0.03889160230755806, -0.03361816331744194, -0.02790527231991291, -0.02153320237994194, -0.01691894419491291, -0.0098876953125, 0.0002197265566792339, 0.003955077845603228, 0.010986328125, 0.0164794921875, 0.02395019493997097, 0.02988281100988388, 0.03273925557732582, 0.03691406175494194, 0.03999023512005806, 0.0406494140625, 0.04240722581744194, 0.04460449144244194, 0.04372558370232582, 0.04306640475988388, 0.04218749701976776, 0.0406494140625, 0.03471679612994194, 0.032958984375, 0.03032226487994194, 0.02241210825741291, 0.01735839806497097, 0.013403319753706455, 0.009448242373764515, 0.003955077845603228, -0.003735351376235485, -0.00637206993997097, -0.00966796837747097, -0.01494140550494194, -0.0186767578125, -0.02131347544491291, -0.02460937388241291, -0.02702636644244194, -0.02702636644244194, -0.02922363206744194, -0.02922363206744194, -0.02878417819738388, -0.02834472618997097, -0.02702636644244194, -0.02263183519244194, -0.02373046800494194, -0.02065429650247097, -0.01735839806497097, -0.015380859375, -0.01384277269244194, -0.00966796837747097, -0.008349609561264515, -0.0046142577193677425, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, 0.003955077845603228, 0.00439453125, 0.005053710658103228, 0.0054931640625, 0.0054931640625, 0.0054931640625, 0.00527343712747097, 0.004833984188735485, 0.0028564452659338713, 0.0046142577193677425, 0.00439453125, 0.0002197265566792339, 0.0006591796409338713, 0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.0002197265566792339, -0.0028564452659338713, -0.0024169920943677425, -0.0002197265566792339, -0.003076171735301614, -0.0035156249068677425, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, -0.003735351376235485, -0.003076171735301614, -0.006591796875, -0.007031249813735485, -0.007031249813735485, -0.007910155691206455, -0.007910155691206455, -0.01054687425494194, -0.01076660118997097, -0.0087890625, -0.01054687425494194, -0.010986328125, -0.0120849609375, -0.012524413876235485, -0.010327148251235485, -0.009448242373764515, -0.00747070275247097, -0.004833984188735485, -0.0024169920943677425, -0.0010986328125, 0.0010986328125, 0.003735351376235485, 0.006591796875, 0.0098876953125, 0.012524413876235485, 0.014501952566206455, 0.017578125, 0.0186767578125, 0.02197265625, 0.02373046800494194, 0.02395019493997097, 0.02504882775247097, 0.02812499925494194, 0.02724609337747097, 0.02944335900247097, 0.02812499925494194, 0.02504882775247097, 0.02263183519244194, 0.01889648474752903, 0.015600585378706455, 0.01164550706744194, 0.0087890625, 0.005053710658103228, -0.0006591796409338713, -0.00747070275247097, -0.01186523400247097, -0.01691894419491291, -0.02241210825741291, -0.02768554538488388, -0.03339843824505806, -0.03647460788488388, -0.04042968526482582, -0.04680175706744194, -0.04746093600988388, -0.04899902269244194, -0.04987792670726776, -0.04877929389476776, -0.04833984375, -0.04680175706744194, -0.04416503757238388, -0.04042968526482582, -0.037353515625, -0.032958984375, -0.0263671875, -0.02131347544491291, -0.01625976525247097, -0.008129882626235485, -0.0024169920943677425, 0.0032958984375, 0.010327148251235485, 0.01669921912252903, 0.02219238132238388, 0.02680663950741291, 0.032958984375, 0.03647460788488388, 0.03933105245232582, 0.04152831807732582, 0.04240722581744194, 0.04372558370232582, 0.04350585862994194, 0.04306640475988388, 0.04152831807732582, 0.03823241963982582, 0.03581542894244194, 0.03383788838982582, 0.02812499925494194, 0.02373046800494194, 0.019775390625, 0.01494140550494194, 0.0087890625, 0.0041748047806322575, -0.0024169920943677425, -0.006152343470603228, -0.01076660118997097, -0.0164794921875, -0.01801757700741291, -0.02175292931497097, -0.02351074106991291, -0.02548827975988388, -0.028564453125, -0.02790527231991291, -0.02812499925494194, -0.02878417819738388, -0.02614746056497097, -0.02504882775247097, -0.02438964694738388, -0.02219238132238388, -0.02153320237994194, -0.01779785193502903, -0.01604003831744194, -0.013623046688735485, -0.010327148251235485, -0.006591796875, -0.0057128905318677425, -0.0024169920943677425, -0.0017578124534338713, 0.0010986328125, 0.002636718563735485, 0.002636718563735485, 0.003955077845603228, 0.0032958984375, 0.0068115233443677425, 0.005932617001235485, 0.005932617001235485, 0.0057128905318677425, 0.00527343712747097, 0.003735351376235485, 0.003735351376235485, 0.0028564452659338713, 0.003076171735301614, 0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0004394531133584678, -0.0032958984375, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.003735351376235485, -0.001977538922801614, -0.0028564452659338713, -0.0035156249068677425, -0.003735351376235485, -0.003735351376235485, -0.005053710658103228, -0.003735351376235485, -0.0057128905318677425, -0.006152343470603228, -0.007031249813735485, -0.0087890625, -0.0087890625, -0.010327148251235485, -0.011425781063735485, -0.012524413876235485, -0.010107421316206455, -0.009448242373764515, -0.00966796837747097, -0.00966796837747097, -0.009448242373764515, -0.007910155691206455, -0.007031249813735485, -0.00439453125, -0.00439453125, -0.0004394531133584678, 0.0002197265566792339, 0.005053710658103228, 0.00527343712747097, 0.010986328125, 0.0120849609375, 0.014501952566206455, 0.0164794921875, 0.01845703087747097, 0.02175292931497097, 0.02373046800494194, 0.02548827975988388, 0.02570800669491291, 0.02922363206744194, 0.02790527231991291, 0.02922363206744194, 0.02812499925494194, 0.0263671875, 0.02504882775247097, 0.0208740234375, 0.01669921912252903, 0.011206054128706455, 0.0076904296875, 0.0046142577193677425, -0.0006591796409338713, -0.0068115233443677425, -0.013623046688735485, -0.0186767578125, -0.02197265625, -0.02658691257238388, -0.03142089769244194, -0.03889160230755806, -0.04086913913488388, -0.04350585862994194, -0.04833984375, -0.04702148213982582, -0.04833984375, -0.05009765550494194, -0.04833984375, -0.04877929389476776, -0.04372558370232582, -0.04020996019244194, -0.037353515625, -0.0340576171875, -0.0274658203125, -0.02197265625, -0.014501952566206455, -0.009448242373764515, -0.0002197265566792339, 0.005932617001235485, 0.0120849609375, 0.01625976525247097, 0.0230712890625, 0.0274658203125, 0.03317870944738388, 0.03559570387005806, 0.03889160230755806, 0.04306640475988388, 0.04482421651482582, 0.04460449144244194, 0.04526367038488388, 0.04306640475988388, 0.04196777194738388, 0.03911132737994194, 0.0362548828125, 0.03120117075741291, 0.02834472618997097, 0.02438964694738388, 0.01801757700741291, 0.01186523400247097, 0.0087890625, 0.002197265625, -0.002197265625, -0.008129882626235485, -0.010986328125, -0.01318359375, -0.01933593675494194, -0.0208740234375, -0.02373046800494194, -0.0263671875, -0.02614746056497097, -0.02812499925494194, -0.02614746056497097, -0.028564453125, -0.02878417819738388, -0.02614746056497097, -0.02285156212747097, -0.02153320237994194, -0.02153320237994194, -0.01823730394244194, -0.0142822265625, -0.01318359375, -0.00966796837747097, -0.009008788503706455, -0.00439453125, -0.002197265625, -0.002197265625, 0.0017578124534338713, 0.0013183592818677425, 0.002197265625, 0.0046142577193677425, 0.00527343712747097, 0.00527343712747097, 0.0054931640625, 0.00527343712747097, 0.0046142577193677425, 0.0041748047806322575, 0.0041748047806322575, 0.0041748047806322575, 0.002197265625, 0.001977538922801614, 0.001977538922801614, 0.0006591796409338713, -0.0006591796409338713, 0.0, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.0035156249068677425, -0.0032958984375, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0035156249068677425, -0.003955077845603228, -0.0054931640625, -0.006152343470603228, -0.006591796875, -0.008349609561264515, -0.009228515438735485, -0.009008788503706455, -0.009228515438735485, -0.011425781063735485, -0.010986328125, -0.009008788503706455, -0.01076660118997097, -0.00966796837747097, -0.0087890625, -0.009008788503706455, -0.006591796875, -0.006152343470603228, -0.003955077845603228, -0.0004394531133584678, 0.0, 0.0035156249068677425, 0.0054931640625, 0.01054687425494194, 0.0120849609375, 0.01604003831744194, 0.01669921912252903, 0.01933593675494194, 0.02241210825741291, 0.02504882775247097, 0.02658691257238388, 0.02702636644244194, 0.0263671875, 0.02900390513241291, 0.02944335900247097, 0.02812499925494194, 0.0252685546875, 0.024169921875, 0.019775390625, 0.01604003831744194, 0.013403319753706455, 0.009448242373764515, 0.0046142577193677425, 0.0002197265566792339, -0.00527343712747097, -0.012304686941206455, -0.017578125, -0.02329101413488388, -0.02878417819738388, -0.03339843824505806, -0.03779296949505806, -0.04130859300494194, -0.04306640475988388, -0.0472412109375, -0.04855956882238388, -0.0494384765625, -0.04877929389476776, -0.0494384765625, -0.04702148213982582, -0.04460449144244194, -0.04196777194738388, -0.03691406175494194, -0.03273925557732582, -0.02768554538488388, -0.02197265625, -0.01494140550494194, -0.00856933556497097, -0.001977538922801614, 0.004833984188735485, 0.011206054128706455, 0.01691894419491291, 0.02197265625, 0.02702636644244194, 0.03208007663488388, 0.03669433668255806, 0.03933105245232582, 0.04240722581744194, 0.04438476264476776, 0.04262695088982582, 0.04372558370232582, 0.04482421651482582, 0.03999023512005806, 0.0406494140625, 0.03603515401482582, 0.03251953050494194, 0.02790527231991291, 0.02351074106991291, 0.01691894419491291, 0.0120849609375, 0.009008788503706455, 0.0028564452659338713, -0.0008789062267169356, -0.006152343470603228, -0.010327148251235485, -0.015380859375, -0.01955566368997097, -0.02175292931497097, -0.02285156212747097, -0.0263671875, -0.02900390513241291, -0.02790527231991291, -0.02724609337747097, -0.03098144382238388, -0.02768554538488388, -0.02724609337747097, -0.02482910081744194, -0.02175292931497097, -0.02153320237994194, -0.01845703087747097, -0.01516113243997097, -0.012304686941206455, -0.00966796837747097, -0.007910155691206455, -0.005932617001235485, -0.0032958984375, -0.0006591796409338713, 0.0006591796409338713, 0.0024169920943677425, 0.0032958984375, 0.005053710658103228, 0.005053710658103228, 0.0057128905318677425, 0.005053710658103228, 0.003735351376235485, 0.00439453125, 0.005932617001235485, 0.00439453125, 0.003076171735301614, 0.002197265625, 0.0035156249068677425, 0.003076171735301614, 0.0008789062267169356, 0.0006591796409338713, 0.0, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0035156249068677425, -0.0035156249068677425, -0.0046142577193677425, -0.0046142577193677425, -0.0046142577193677425, -0.005932617001235485, -0.0076904296875, -0.008129882626235485, -0.0098876953125, -0.00966796837747097, -0.010986328125, -0.010327148251235485, -0.011206054128706455, -0.01186523400247097, -0.00966796837747097, -0.008349609561264515, -0.008129882626235485, -0.009228515438735485, -0.009008788503706455, -0.00637206993997097, -0.00527343712747097, -0.0013183592818677425, 0.0002197265566792339, 0.0035156249068677425, 0.0054931640625, 0.009228515438735485, 0.01076660118997097, 0.01516113243997097, 0.01735839806497097, 0.02043456956744194, 0.02131347544491291, 0.02373046800494194, 0.02724609337747097, 0.02702636644244194, 0.02702636644244194, 0.028564453125, 0.02812499925494194, 0.02724609337747097, 0.02504882775247097, 0.02241210825741291, 0.019775390625, 0.01625976525247097, 0.01318359375, 0.00856933556497097, 0.003076171735301614, -0.0006591796409338713, -0.00637206993997097, -0.01274413987994194, -0.0164794921875, -0.02131347544491291, -0.02724609337747097, -0.03251953050494194, -0.0384521484375, -0.04306640475988388, -0.04460449144244194, -0.04702148213982582, -0.04658202826976776, -0.04965820163488388, -0.050537109375, -0.04921874776482582, -0.04658202826976776, -0.04372558370232582, -0.04086913913488388, -0.03537597507238388, -0.03273925557732582, -0.02702636644244194, -0.02153320237994194, -0.015380859375, -0.008349609561264515, -0.0013183592818677425, 0.0046142577193677425, 0.010327148251235485, 0.015600585378706455, 0.02241210825741291, 0.0274658203125, 0.0318603515625, 0.03581542894244194, 0.04108886793255806, 0.04218749701976776, 0.04328612983226776, 0.04328612983226776, 0.04460449144244194, 0.04372558370232582, 0.041748046875, 0.03933105245232582, 0.03713378682732582, 0.03361816331744194, 0.02790527231991291, 0.02373046800494194, 0.01779785193502903, 0.012524413876235485, 0.0076904296875, 0.004833984188735485, -0.0028564452659338713, -0.006591796875, -0.01054687425494194, -0.014501952566206455, -0.01911620981991291, -0.02241210825741291, -0.02438964694738388, -0.0263671875, -0.02658691257238388, -0.02768554538488388, -0.03054199181497097, -0.02922363206744194, -0.02790527231991291, -0.02768554538488388, -0.024169921875, -0.02153320237994194, -0.02043456956744194, -0.01845703087747097, -0.014501952566206455, -0.014721679501235485, -0.009008788503706455, -0.007910155691206455, -0.0057128905318677425, -0.0028564452659338713, -0.0010986328125, 0.0010986328125, 0.001538085867650807, 0.0017578124534338713, 0.00439453125, 0.0054931640625, 0.0057128905318677425, 0.0041748047806322575, 0.007910155691206455, 0.005053710658103228, 0.0032958984375, 0.004833984188735485, 0.00527343712747097, 0.002197265625, 0.0017578124534338713, 0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, 0.0002197265566792339, -0.002197265625, -0.0017578124534338713, -0.0032958984375, -0.003735351376235485, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.0028564452659338713, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.003735351376235485, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, -0.005053710658103228, -0.0032958984375, -0.0008789062267169356, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.003735351376235485, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.0013183592818677425, -0.0004394531133584678, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.003076171735301614, 0.0, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0002197265566792339, -0.001977538922801614, -0.002636718563735485, -0.0024169920943677425, 0.0004394531133584678, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.003076171735301614, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.003735351376235485, -0.0028564452659338713, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.0013183592818677425, 0.0, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.0035156249068677425, -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, 0.0002197265566792339, -0.0010986328125, 0.0002197265566792339, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, 0.0, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.0032958984375, -0.0017578124534338713, -0.003735351376235485, -0.0046142577193677425, -0.0028564452659338713, -0.0028564452659338713, -0.0035156249068677425, -0.003076171735301614, -0.0035156249068677425, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.003076171735301614, -0.0035156249068677425, -0.0010986328125, -0.0002197265566792339, -0.0024169920943677425, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0032958984375, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0035156249068677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0010986328125, 0.0, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0035156249068677425, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.0002197265566792339, -0.001538085867650807, -0.0006591796409338713, 0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, -0.0017578124534338713, -0.0032958984375, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0004394531133584678, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.003076171735301614, -0.002197265625, -0.003735351376235485, -0.002636718563735485, 0.0004394531133584678, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, -0.003076171735301614, -0.0002197265566792339, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.0035156249068677425, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0006591796409338713, 0.0, -0.002636718563735485, -0.003076171735301614, 0.0, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0035156249068677425, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.003076171735301614, -0.002636718563735485, -0.0002197265566792339, -0.001538085867650807, -0.003735351376235485, -0.0024169920943677425, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0032958984375, -0.0017578124534338713, -0.0006591796409338713, -0.0032958984375, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [1, 1, 1, ... ])', '(angle, [2.0420352248])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0002197265566792339, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.002197265625, 0.0002197265566792339, -0.0004394531133584678, 0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0006591796409338713, 0.0, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.0035156249068677425, -0.0057128905318677425, -0.007031249813735485, -0.00856933556497097, -0.01318359375, -0.015600585378706455, -0.01823730394244194, -0.02153320237994194, -0.024169921875, -0.02944335900247097, -0.02790527231991291, -0.03010253794491291, -0.0318603515625, -0.032958984375, -0.03229980543255806, -0.02922363206744194, -0.02812499925494194, -0.02460937388241291, -0.02109374850988388, -0.01604003831744194, -0.00966796837747097, -0.0017578124534338713, 0.00439453125, 0.013623046688735485, 0.0230712890625, 0.03251953050494194, 0.04042968526482582, 0.04921874776482582, 0.05910644307732582, 0.06679687649011612, 0.07426757365465164, 0.08283691108226776, 0.08876952528953552, 0.09162597358226776, 0.09514159709215164, 0.09360351413488388, 0.0933837890625, 0.09030761569738388, 0.08657225966453552, 0.07888183742761612, 0.06833495944738388, 0.05910644307732582, 0.04702148213982582, 0.03098144382238388, 0.01713867112994194, 0.0008789062267169356, -0.015600585378706455, -0.03383788838982582, -0.0494384765625, -0.06833495944738388, -0.08283691108226776, -0.09931640326976776, -0.11403807997703552, -0.12568359076976776, -0.1373291015625, -0.14479979872703552, -0.15007324516773224, -0.15556640923023224, -0.15644530951976776, -0.15183104574680328, -0.14897461235523224, -0.13820800185203552, -0.12788085639476776, -0.11359862983226776, -0.0999755859375, -0.081298828125, -0.0615234375, -0.0439453125, -0.02373046800494194, -0.003735351376235485, 0.01582031138241291, 0.04152831807732582, 0.05712890625, 0.07514648139476776, 0.09316405653953552, 0.10788574069738388, 0.12106933444738388, 0.1307373046875, 0.14018554985523224, 0.14084471762180328, 0.14655761420726776, 0.14567871391773224, 0.14501953125, 0.13908691704273224, 0.13007812201976776, 0.11997070163488388, 0.10634765028953552, 0.09382323920726776, 0.07954101264476776, 0.06240234151482582, 0.04790038987994194, 0.02922363206744194, 0.01582031138241291, 0.0, -0.015380859375, -0.0318603515625, -0.04372558370232582, -0.05537109076976776, -0.06591796875, -0.07316894084215164, -0.07998047024011612, -0.08393554389476776, -0.08854980021715164, -0.08833007514476776, -0.087890625, -0.08525390177965164, -0.08041992038488388, -0.07514648139476776, -0.07009277492761612, -0.06284179538488388, -0.05449218675494194, -0.04416503757238388, -0.03889160230755806, -0.02988281100988388, -0.0208740234375, -0.01494140550494194, -0.0057128905318677425, 0.001538085867650807, 0.00747070275247097, 0.01186523400247097, 0.015600585378706455, 0.01779785193502903, 0.02109374850988388, 0.0230712890625, 0.0208740234375, 0.02153320237994194, 0.02263183519244194, 0.01823730394244194, 0.01889648474752903, 0.013623046688735485, 0.01318359375, 0.01164550706744194, 0.008129882626235485, 0.0054931640625, 0.001977538922801614, 0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.005053710658103228, -0.0054931640625, -0.003076171735301614, -0.003076171735301614, -0.0054931640625, -0.00527343712747097, -0.00637206993997097, -0.006591796875, -0.007910155691206455, -0.01076660118997097, -0.014721679501235485, -0.017578125, -0.0186767578125, -0.019775390625, -0.0252685546875, -0.02878417819738388, -0.028564453125, -0.03010253794491291, -0.03032226487994194, -0.02922363206744194, -0.02922363206744194, -0.02944335900247097, -0.02702636644244194, -0.02263183519244194, -0.02021484263241291, -0.01406249962747097, -0.009008788503706455, -0.0006591796409338713, 0.00637206993997097, 0.01406249962747097, 0.02285156212747097, 0.03251953050494194, 0.03999023512005806, 0.05119628831744194, 0.059326171875, 0.06899414211511612, 0.07316894084215164, 0.081298828125, 0.08701171725988388, 0.09052734076976776, 0.09360351413488388, 0.09470214694738388, 0.09360351413488388, 0.08811035007238388, 0.085693359375, 0.07866210490465164, 0.06965331733226776, 0.05888671800494194, 0.046142578125, 0.03120117075741291, 0.01625976525247097, 0.0008789062267169356, -0.01582031138241291, -0.03383788838982582, -0.0516357421875, -0.06745605170726776, -0.08283691108226776, -0.0999755859375, -0.11271972209215164, -0.1263427734375, -0.13754881918430328, -0.14523924887180328, -0.15249022841453552, -0.15622557699680328, -0.15534667670726776, -0.15227051079273224, -0.14897461235523224, -0.13798828423023224, -0.12744140625, -0.11381835490465164, -0.10107421875, -0.07976073771715164, -0.06416015326976776, -0.04482421651482582, -0.02395019493997097, -0.003735351376235485, 0.01691894419491291, 0.03691406175494194, 0.05581054463982582, 0.07624511420726776, 0.09250488132238388, 0.10480956733226776, 0.12019042670726776, 0.13139648735523224, 0.13798828423023224, 0.14260253310203552, 0.1461181640625, 0.14523924887180328, 0.14260253310203552, 0.13623046875, 0.12832030653953552, 0.11931151896715164, 0.1087646484375, 0.09250488132238388, 0.0780029296875, 0.06284179538488388, 0.04680175706744194, 0.03054199181497097, 0.01318359375, -0.002197265625, -0.01582031138241291, -0.03054199181497097, -0.04482421651482582, -0.0560302734375, -0.0648193359375, -0.07492675632238388, -0.07866210490465164, -0.08393554389476776, -0.0845947265625, -0.08613280951976776, -0.08613280951976776, -0.08613280951976776, -0.08217773586511612, -0.0758056640625, -0.06943359225988388, -0.0615234375, -0.05559081956744194, -0.04636230319738388, -0.03713378682732582, -0.02768554538488388, -0.01911620981991291, -0.013623046688735485, -0.005053710658103228, 0.0013183592818677425, 0.005932617001235485, 0.0120849609375, 0.014501952566206455, 0.01845703087747097, 0.01933593675494194, 0.02109374850988388, 0.02285156212747097, 0.02175292931497097, 0.02131347544491291, 0.017578125, 0.01823730394244194, 0.01406249962747097, 0.0120849609375, 0.010986328125, 0.0087890625, 0.0068115233443677425, 0.0028564452659338713, 0.0002197265566792339, -0.0006591796409338713, -0.002197265625, -0.0046142577193677425, -0.0041748047806322575, -0.0054931640625, -0.003955077845603228, -0.005053710658103228, -0.00527343712747097, -0.004833984188735485, -0.005932617001235485, -0.00856933556497097, -0.010986328125, -0.013623046688735485, -0.01582031138241291, -0.01779785193502903, -0.02065429650247097, -0.0252685546875, -0.02460937388241291, -0.02702636644244194, -0.02878417819738388, -0.03098144382238388, -0.03054199181497097, -0.02922363206744194, -0.0274658203125, -0.02768554538488388, -0.024169921875, -0.01955566368997097, -0.013403319753706455, -0.0076904296875, 0.0004394531133584678, 0.005932617001235485, 0.01582031138241291, 0.02329101413488388, 0.032958984375, 0.03933105245232582, 0.04921874776482582, 0.06064452975988388, 0.06635741889476776, 0.0758056640625, 0.08283691108226776, 0.08920898288488388, 0.09206542372703552, 0.09382323920726776, 0.09360351413488388, 0.09514159709215164, 0.0911865234375, 0.08591308444738388, 0.0780029296875, 0.06855468451976776, 0.05712890625, 0.04548339545726776, 0.03229980543255806, 0.01735839806497097, -0.0017578124534338713, -0.01691894419491291, -0.03273925557732582, -0.04855956882238388, -0.0670166015625, -0.08195800334215164, -0.10019531100988388, -0.11403807997703552, -0.12568359076976776, -0.138427734375, -0.14501953125, -0.15183104574680328, -0.15468749403953552, -0.1549072265625, -0.1505126953125, -0.14655761420726776, -0.13996581733226776, -0.12766112387180328, -0.1142578125, -0.09821777045726776, -0.07932128757238388, -0.06437987834215164, -0.04240722581744194, -0.02351074106991291, -0.0013183592818677425, 0.01779785193502903, 0.03757324069738388, 0.05646972358226776, 0.07426757365465164, 0.09206542372703552, 0.10612792521715164, 0.12128905951976776, 0.1318359375, 0.13864745199680328, 0.14348144829273224, 0.14743651449680328, 0.14545898139476776, 0.14501953125, 0.13798828423023224, 0.13007812201976776, 0.11931151896715164, 0.10788574069738388, 0.09492187201976776, 0.0780029296875, 0.06174316257238388, 0.04746093600988388, 0.03208007663488388, 0.01516113243997097, -0.003076171735301614, -0.01691894419491291, -0.02834472618997097, -0.04306640475988388, -0.05427245795726776, -0.06525878608226776, -0.07536620646715164, -0.08041992038488388, -0.08437499403953552, -0.08833007514476776, -0.0889892578125, -0.08745116740465164, -0.08525390177965164, -0.08173827826976776, -0.0758056640625, -0.07009277492761612, -0.06020507588982582, -0.05295410007238388, -0.04592284932732582, -0.03669433668255806, -0.028564453125, -0.02109374850988388, -0.01274413987994194, -0.0046142577193677425, 0.0010986328125, 0.0076904296875, 0.0120849609375, 0.01516113243997097, 0.01911620981991291, 0.0208740234375, 0.02065429650247097, 0.02241210825741291, 0.02329101413488388, 0.02197265625, 0.01911620981991291, 0.01713867112994194, 0.01582031138241291, 0.012304686941206455, 0.010986328125, 0.009008788503706455, 0.005053710658103228, 0.0032958984375, 0.0010986328125, -0.0002197265566792339, -0.001977538922801614, -0.00439453125, -0.002197265625, -0.0032958984375, -0.003076171735301614, -0.0068115233443677425, -0.00439453125, -0.00637206993997097, -0.007250976283103228, -0.007910155691206455, -0.01274413987994194, -0.013623046688735485, -0.01516113243997097, -0.01911620981991291, -0.02021484263241291, -0.02373046800494194, -0.02680663950741291, -0.02790527231991291, -0.02988281100988388, -0.02900390513241291, -0.03054199181497097, -0.03032226487994194, -0.028564453125, -0.02680663950741291, -0.02351074106991291, -0.02021484263241291, -0.01406249962747097, -0.00966796837747097, -0.0008789062267169356, 0.007031249813735485, 0.01494140550494194, 0.02329101413488388, 0.032958984375, 0.041748046875, 0.05141601338982582, 0.06064452975988388, 0.06679687649011612, 0.07492675632238388, 0.08173827826976776, 0.090087890625, 0.09360351413488388, 0.09404296427965164, 0.09470214694738388, 0.09294433146715164, 0.0911865234375, 0.0867919921875, 0.07866210490465164, 0.07097167521715164, 0.05624999850988388, 0.04636230319738388, 0.03054199181497097, 0.01691894419491291, 0.0002197265566792339, -0.0164794921875, -0.03229980543255806, -0.04899902269244194, -0.06723632663488388, -0.08305663615465164, -0.09931640326976776, -0.11249999701976776, -0.12502440810203552, -0.13645018637180328, -0.14743651449680328, -0.15249022841453552, -0.15468749403953552, -0.15776367485523224, -0.15183104574680328, -0.14567871391773224, -0.13710936903953552, -0.12744140625, -0.11337890475988388, -0.09931640326976776, -0.08195800334215164, -0.0626220703125, -0.04438476264476776, -0.02504882775247097, -0.002636718563735485, 0.01713867112994194, 0.03757324069738388, 0.05624999850988388, 0.07426757365465164, 0.09228515625, 0.10700683295726776, 0.12041015177965164, 0.13249512016773224, 0.13776855170726776, 0.14106445014476776, 0.14743651449680328, 0.1483154296875, 0.14348144829273224, 0.13798828423023224, 0.13095702230930328, 0.11887206882238388, 0.10898437350988388, 0.09382323920726776, 0.0791015625, 0.06284179538488388, 0.04812011495232582, 0.03208007663488388, 0.017578125, -0.0024169920943677425, -0.01801757700741291, -0.03120117075741291, -0.0439453125, -0.05668945237994194, -0.06679687649011612, -0.07316894084215164, -0.0802001953125, -0.08437499403953552, -0.08723144233226776, -0.08942870795726776, -0.08767089247703552, -0.08657225966453552, -0.081298828125, -0.07558593899011612, -0.07009277492761612, -0.06174316257238388, -0.0538330078125, -0.04570312425494194, -0.03669433668255806, -0.0274658203125, -0.0208740234375, -0.013403319753706455, -0.007031249813735485, 0.0006591796409338713, 0.0068115233443677425, 0.011206054128706455, 0.01494140550494194, 0.01823730394244194, 0.02285156212747097, 0.02197265625, 0.02373046800494194, 0.02373046800494194, 0.02109374850988388, 0.01911620981991291, 0.01516113243997097, 0.0164794921875, 0.012524413876235485, 0.012524413876235485, 0.0076904296875, 0.00439453125, 0.001977538922801614, 0.0, 0.0002197265566792339, -0.0013183592818677425, -0.00439453125, -0.0032958984375, -0.003955077845603228, -0.003076171735301614, -0.005053710658103228, -0.00527343712747097, -0.0054931640625, -0.0057128905318677425, -0.0076904296875, -0.012304686941206455, -0.013403319753706455, -0.01582031138241291, -0.0186767578125, -0.02329101413488388, -0.0230712890625, -0.02504882775247097, -0.028564453125, -0.0318603515625, -0.03098144382238388, -0.02878417819738388, -0.02922363206744194, -0.02790527231991291, -0.02658691257238388, -0.02197265625, -0.01933593675494194, -0.01494140550494194, -0.0098876953125, -0.0008789062267169356, 0.00747070275247097, 0.015600585378706455, 0.0230712890625, 0.03120117075741291, 0.04130859300494194, 0.05075683444738388, 0.0582275390625, 0.06569824367761612, 0.07536620646715164, 0.08063964545726776, 0.08701171725988388, 0.08964843302965164, 0.094482421875, 0.09514159709215164, 0.09360351413488388, 0.08986815810203552, 0.08525390177965164, 0.0791015625, 0.07053222507238388, 0.05976562201976776, 0.04702148213982582, 0.03054199181497097, 0.01735839806497097, 0.0010986328125, -0.01713867112994194, -0.03317870944738388, -0.04921874776482582, -0.0692138671875, -0.08217773586511612, -0.09953612834215164, -0.1131591796875, -0.12722167372703552, -0.1373291015625, -0.14458008110523224, -0.15249022841453552, -0.15358886122703552, -0.15622557699680328, -0.15402831137180328, -0.14765624701976776, -0.13798828423023224, -0.1285400390625, -0.11447753757238388, -0.09733886271715164, -0.08173827826976776, -0.06218261644244194, -0.0428466796875, -0.02482910081744194, -0.003076171735301614, 0.01845703087747097, 0.03955078125, 0.0560302734375, 0.0758056640625, 0.09250488132238388, 0.10634765028953552, 0.12128905951976776, 0.12941893935203552, 0.13996581733226776, 0.14479979872703552, 0.14699706435203552, 0.14655761420726776, 0.14370116591453552, 0.13930663466453552, 0.12985838949680328, 0.11799316108226776, 0.1087646484375, 0.0955810546875, 0.08041992038488388, 0.06284179538488388, 0.04702148213982582, 0.02878417819738388, 0.01494140550494194, -0.002636718563735485, -0.01669921912252903, -0.03164062276482582, -0.04306640475988388, -0.05559081956744194, -0.06459961086511612, -0.07514648139476776, -0.08041992038488388, -0.08415526896715164, -0.08591308444738388, -0.087890625, -0.08854980021715164, -0.08745116740465164, -0.08217773586511612, -0.07536620646715164, -0.07119140774011612, -0.0604248046875, -0.0538330078125, -0.04570312425494194, -0.03779296949505806, -0.03142089769244194, -0.02043456956744194, -0.01406249962747097, -0.00637206993997097, 0.0006591796409338713, 0.005932617001235485, 0.012304686941206455, 0.0142822265625, 0.017578125, 0.02021484263241291, 0.02043456956744194, 0.02241210825741291, 0.02241210825741291, 0.02021484263241291, 0.02021484263241291, 0.01713867112994194, 0.01582031138241291, 0.014501952566206455, 0.010986328125, 0.007031249813735485, 0.003735351376235485, 0.0024169920943677425, 0.001977538922801614, -0.0002197265566792339, -0.002197265625, -0.005053710658103228, -0.003076171735301614, -0.0035156249068677425, -0.003955077845603228, -0.003955077845603228, -0.00439453125, -0.006591796875, -0.0076904296875, -0.009448242373764515, -0.010986328125, -0.01186523400247097, -0.015380859375, -0.01933593675494194, -0.02153320237994194, -0.024169921875, -0.02482910081744194, -0.02944335900247097, -0.02790527231991291, -0.03076171875, -0.02988281100988388, -0.02922363206744194, -0.02790527231991291, -0.02680663950741291, -0.02285156212747097, -0.0208740234375, -0.01582031138241291, -0.0076904296875, 0.0, 0.005932617001235485, 0.0164794921875, 0.02351074106991291, 0.03229980543255806, 0.04152831807732582, 0.05141601338982582, 0.06020507588982582, 0.06613769382238388, 0.07470703125, 0.0823974609375, 0.08701171725988388, 0.09074706584215164, 0.09294433146715164, 0.09470214694738388, 0.094482421875, 0.08986815810203552, 0.08723144233226776, 0.07646483927965164, 0.06855468451976776, 0.05690917745232582, 0.04702148213982582, 0.03229980543255806, 0.01604003831744194, -0.0006591796409338713, -0.014501952566206455, -0.03361816331744194, -0.04921874776482582, -0.06877440959215164, -0.08349609375, -0.0999755859375, -0.1142578125, -0.12568359076976776, -0.13579101860523224, -0.14545898139476776, -0.15183104574680328, -0.15424804389476776, -0.15534667670726776, -0.15358886122703552, -0.14743651449680328, -0.13930663466453552, -0.1285400390625, -0.11447753757238388, -0.09931640326976776, -0.08195800334215164, -0.06350097805261612, -0.04328612983226776, -0.02460937388241291, -0.0035156249068677425, 0.01691894419491291, 0.03933105245232582, 0.0582275390625, 0.07536620646715164, 0.09206542372703552, 0.10744628310203552, 0.11865234375, 0.13007812201976776, 0.1373291015625, 0.14348144829273224, 0.147216796875, 0.14436034858226776, 0.14479979872703552, 0.13776855170726776, 0.12919922173023224, 0.12019042670726776, 0.10722655802965164, 0.09250488132238388, 0.07976073771715164, 0.06218261644244194, 0.04921874776482582, 0.03208007663488388, 0.01604003831744194, -0.0024169920943677425, -0.01801757700741291, -0.0318603515625, -0.0439453125, -0.05405273288488388, -0.06459961086511612, -0.07558593899011612, -0.0791015625, -0.08393554389476776, -0.08635253459215164, -0.08811035007238388, -0.08854980021715164, -0.08503417670726776, -0.08063964545726776, -0.07536620646715164, -0.06833495944738388, -0.06086425483226776, -0.05427245795726776, -0.04592284932732582, -0.03889160230755806, -0.02922363206744194, -0.0208740234375, -0.01604003831744194, -0.007910155691206455, 0.0006591796409338713, 0.0057128905318677425, 0.01164550706744194, 0.01494140550494194, 0.02021484263241291, 0.019775390625, 0.02285156212747097, 0.02395019493997097, 0.02131347544491291, 0.01999511756002903, 0.01823730394244194, 0.01823730394244194, 0.01669921912252903, 0.01296386681497097, 0.009008788503706455, 0.007031249813735485, 0.007250976283103228, 0.0054931640625, 0.001538085867650807, -0.003076171735301614, -0.0006591796409338713, -0.003955077845603228, -0.003735351376235485, -0.003735351376235485, -0.003735351376235485, -0.00527343712747097, -0.005053710658103228, -0.0054931640625, -0.0076904296875, -0.009448242373764515, -0.01164550706744194, -0.01384277269244194, -0.0164794921875, -0.01889648474752903, -0.02109374850988388, -0.02373046800494194, -0.02460937388241291, -0.02834472618997097, -0.02944335900247097, -0.03076171875, -0.03208007663488388, -0.02878417819738388, -0.02790527231991291, -0.02460937388241291, -0.02351074106991291, -0.0208740234375, -0.01384277269244194, -0.009228515438735485, -0.0013183592818677425, 0.00439453125, 0.01582031138241291, 0.02285156212747097, 0.03229980543255806, 0.04218749701976776, 0.05141601338982582, 0.05844726413488388, 0.06745605170726776, 0.07558593899011612, 0.08151855319738388, 0.08701171725988388, 0.090087890625, 0.09426268935203552, 0.09580077975988388, 0.09404296427965164, 0.0911865234375, 0.08481445163488388, 0.07844237983226776, 0.06987304240465164, 0.05515136569738388, 0.04636230319738388, 0.03164062276482582, 0.01691894419491291, 0.0002197265566792339, -0.01669921912252903, -0.03251953050494194, -0.050537109375, -0.06789550930261612, -0.08195800334215164, -0.09931640326976776, -0.11249999701976776, -0.12810058891773224, -0.13864745199680328, -0.14479979872703552, -0.15095214545726776, -0.15380859375, -0.15468749403953552, -0.15205077826976776, -0.14787597954273224, -0.13754881918430328, -0.12810058891773224, -0.11337890475988388, -0.09821777045726776, -0.08195800334215164, -0.0626220703125, -0.04372558370232582, -0.024169921875, -0.001977538922801614, 0.0164794921875, 0.03779296949505806, 0.05866698920726776, 0.07558593899011612, 0.09184569865465164, 0.10920409858226776, 0.11953124403953552, 0.13029785454273224, 0.140625, 0.14326171576976776, 0.14589843153953552, 0.14567871391773224, 0.142822265625, 0.13754881918430328, 0.13271483778953552, 0.12041015177965164, 0.10590820014476776, 0.09250488132238388, 0.07888183742761612, 0.06064452975988388, 0.04592284932732582, 0.03032226487994194, 0.01384277269244194, -0.003076171735301614, -0.015380859375, -0.03098144382238388, -0.04438476264476776, -0.05668945237994194, -0.06547851115465164, -0.0736083984375, -0.08085937052965164, -0.08503417670726776, -0.08701171725988388, -0.08811035007238388, -0.08723144233226776, -0.08371581882238388, -0.08085937052965164, -0.07514648139476776, -0.06899414211511612, -0.06218261644244194, -0.05295410007238388, -0.04680175706744194, -0.03757324069738388, -0.02768554538488388, -0.01911620981991291, -0.01296386681497097, -0.007031249813735485, -0.0002197265566792339, 0.0068115233443677425, 0.012304686941206455, 0.015600585378706455, 0.01889648474752903, 0.01933593675494194, 0.0208740234375, 0.02263183519244194, 0.0208740234375, 0.02197265625, 0.02021484263241291, 0.017578125, 0.015380859375, 0.0142822265625, 0.01164550706744194, 0.007250976283103228, 0.00439453125, 0.0024169920943677425, 0.0010986328125, -0.0002197265566792339, -0.002636718563735485, -0.003955077845603228, -0.00439453125, -0.005053710658103228, -0.005053710658103228, -0.00439453125, -0.003735351376235485, -0.00527343712747097, -0.008129882626235485, -0.010327148251235485, -0.0120849609375, -0.014501952566206455, -0.01735839806497097, -0.01933593675494194, -0.02153320237994194, -0.02504882775247097, -0.02702636644244194, -0.02790527231991291, -0.03032226487994194, -0.03054199181497097, -0.03010253794491291, -0.03098144382238388, -0.02878417819738388, -0.0263671875, -0.02329101413488388, -0.02065429650247097, -0.013623046688735485, -0.010107421316206455, -0.0028564452659338713, 0.0068115233443677425, 0.0142822265625, 0.02263183519244194, 0.03098144382238388, 0.04108886793255806, 0.05075683444738388, 0.05866698920726776, 0.06569824367761612, 0.07602538913488388, 0.08173827826976776, 0.08811035007238388, 0.09074706584215164, 0.09250488132238388, 0.09426268935203552, 0.0955810546875, 0.0911865234375, 0.08723144233226776, 0.07756347209215164, 0.06613769382238388, 0.05690917745232582, 0.04592284932732582, 0.03164062276482582, 0.01604003831744194, -0.0004394531133584678, -0.015380859375, -0.03251953050494194, -0.05031738057732582, -0.06833495944738388, -0.08283691108226776, -0.09909667819738388, -0.11271972209215164, -0.12700195610523224, -0.13688965141773224, -0.14589843153953552, -0.15292967855930328, -0.15512694418430328, -0.15534667670726776, -0.15314941108226776, -0.1483154296875, -0.138427734375, -0.12766112387180328, -0.11381835490465164, -0.09799804538488388, -0.08107910305261612, -0.06350097805261612, -0.04548339545726776, -0.02504882775247097, -0.0035156249068677425, 0.01845703087747097, 0.03801269456744194, 0.05581054463982582, 0.07492675632238388, 0.09316405653953552, 0.10458984225988388, 0.11931151896715164, 0.1318359375, 0.13820800185203552, 0.14348144829273224, 0.14699706435203552, 0.14677734673023224, 0.14414061605930328, 0.13688965141773224, 0.13117675483226776, 0.11909179389476776, 0.1065673828125, 0.09272460639476776, 0.0791015625, 0.0615234375, 0.04570312425494194, 0.0318603515625, 0.01318359375, -0.002636718563735485, -0.015380859375, -0.03032226487994194, -0.0428466796875, -0.05427245795726776, -0.06547851115465164, -0.0758056640625, -0.0791015625, -0.08437499403953552, -0.08701171725988388, -0.08701171725988388, -0.08723144233226776, -0.08393554389476776, -0.08217773586511612, -0.0758056640625, -0.06987304240465164, -0.06174316257238388, -0.05515136569738388, -0.04592284932732582, -0.03801269456744194, -0.0296630859375, -0.02153320237994194, -0.013623046688735485, -0.00856933556497097, 0.0006591796409338713, 0.006152343470603228, 0.0120849609375, 0.01625976525247097, 0.01955566368997097, 0.0208740234375, 0.02131347544491291, 0.02351074106991291, 0.0208740234375, 0.02043456956744194, 0.01999511756002903, 0.01845703087747097, 0.01604003831744194, 0.0120849609375, 0.009448242373764515, 0.0076904296875, 0.004833984188735485, 0.003735351376235485, 0.0017578124534338713, 0.0006591796409338713, -0.001538085867650807, -0.0041748047806322575, -0.00439453125, -0.0032958984375, -0.0035156249068677425, -0.003955077845603228, -0.003076171735301614, -0.0032958984375, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.003735351376235485, -0.0032958984375, -0.0006591796409338713, -0.0006591796409338713, -0.003076171735301614, -0.0013183592818677425, 0.0, 0.0, 0.0, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, 0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.002636718563735485, -0.0028564452659338713, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.003955077845603228, -0.0010986328125, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.0032958984375, -0.003076171735301614, -0.0013183592818677425, -0.002197265625, -0.003735351376235485, -0.003076171735301614, -0.001538085867650807, -0.003076171735301614, -0.001538085867650807, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, 0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.003955077845603228, -0.0028564452659338713, -0.0013183592818677425, -0.0024169920943677425, -0.0046142577193677425, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0035156249068677425, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0041748047806322575, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0032958984375, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0035156249068677425, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, 0.0, -0.002636718563735485, -0.002197265625, -0.0006591796409338713, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, 0.0, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.003735351376235485, -0.0002197265566792339, -0.0028564452659338713, -0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0004394531133584678, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.0046142577193677425, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.002636718563735485, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0028564452659338713, -0.0013183592818677425, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, 0.0, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.0035156249068677425, -0.001538085867650807, -0.0010986328125, 0.0004394531133584678, -0.0002197265566792339, -0.0002197265566792339, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, 0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.003076171735301614, -0.0004394531133584678, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, 0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0032958984375, -0.003076171735301614, -0.0032958984375, 0.0, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, 0.0, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0010986328125, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.0028564452659338713, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.003955077845603228, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.0035156249068677425, -0.001538085867650807, 0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, 0.0, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.002636718563735485, -0.002197265625, -0.002636718563735485, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, 0.0, -0.001538085867650807, -0.0035156249068677425, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, 0.0, 0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, 0.0006591796409338713, -0.0017578124534338713, -0.002197265625, 0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.0010986328125 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [1, 1, 1, ... ])', '(angle, [3.4557519189])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, -0.0002197265566792339, 0.0002197265566792339, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.003955077845603228, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.003955077845603228, -0.0004394531133584678, -0.002636718563735485, -0.003076171735301614, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0035156249068677425, -0.0032958984375, -0.006591796875, -0.009448242373764515, -0.01054687425494194, -0.01582031138241291, -0.02131347544491291, -0.02614746056497097, -0.0296630859375, -0.03559570387005806, -0.03977050632238388, -0.04306640475988388, -0.04812011495232582, -0.05009765550494194, -0.05119628831744194, -0.05229492112994194, -0.05251464620232582, -0.04790038987994194, -0.0450439453125, -0.03933105245232582, -0.03383788838982582, -0.02438964694738388, -0.014501952566206455, -0.001538085867650807, 0.011425781063735485, 0.024169921875, 0.03999023512005806, 0.054931640625, 0.06987304240465164, 0.08613280951976776, 0.09799804538488388, 0.11074218153953552, 0.12656249105930328, 0.13798828423023224, 0.1483154296875, 0.15424804389476776, 0.1593017578125, 0.15996094048023224, 0.15908202528953552, 0.15249022841453552, 0.14436034858226776, 0.12985838949680328, 0.11777343600988388, 0.0977783203125, 0.0791015625, 0.05317382514476776, 0.02944335900247097, 0.0028564452659338713, -0.02197265625, -0.05185546725988388, -0.07646483927965164, -0.1065673828125, -0.13315428793430328, -0.1571044921875, -0.18061523139476776, -0.2021484375, -0.22016601264476776, -0.23532713949680328, -0.2493896484375, -0.25224608182907104, -0.25444334745407104, -0.24763183295726776, -0.24038085341453552, -0.22324217855930328, -0.20720213651657104, -0.1834716796875, -0.16018065810203552, -0.129638671875, -0.10283202677965164, -0.07075195014476776, -0.03713378682732582, -0.0046142577193677425, 0.02570800669491291, 0.06086425483226776, 0.09052734076976776, 0.11843261122703552, 0.14501953125, 0.17116698622703552, 0.19291990995407104, 0.21159666776657104, 0.22675780951976776, 0.23444823920726776, 0.24125975370407104, 0.24191893637180328, 0.2384033203125, 0.22807615995407104, 0.2164306640625, 0.19621580839157104, 0.17863768339157104, 0.15688475966453552, 0.13271483778953552, 0.10371093451976776, 0.07954101264476776, 0.05295410007238388, 0.02768554538488388, -0.0004394531133584678, -0.02482910081744194, -0.04702148213982582, -0.07009277492761612, -0.08920898288488388, -0.10678710788488388, -0.12106933444738388, -0.13139648735523224, -0.138427734375, -0.14348144829273224, -0.14479979872703552, -0.14677734673023224, -0.14084471762180328, -0.13381347060203552, -0.1241455078125, -0.11447753757238388, -0.10239257663488388, -0.08986815810203552, -0.07536620646715164, -0.05976562201976776, -0.04768066108226776, -0.03449707105755806, -0.02065429650247097, -0.00856933556497097, 0.003076171735301614, 0.012304686941206455, 0.02043456956744194, 0.02658691257238388, 0.03032226487994194, 0.03647460788488388, 0.037353515625, 0.03889160230755806, 0.03889160230755806, 0.0384521484375, 0.03317870944738388, 0.0318603515625, 0.02614746056497097, 0.0230712890625, 0.01889648474752903, 0.01384277269244194, 0.009448242373764515, 0.0054931640625, 0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.006591796875, -0.00527343712747097, -0.00527343712747097, -0.006152343470603228, -0.00637206993997097, -0.007250976283103228, -0.00856933556497097, -0.011425781063735485, -0.01318359375, -0.01801757700741291, -0.02153320237994194, -0.02658691257238388, -0.02988281100988388, -0.03537597507238388, -0.04042968526482582, -0.04196777194738388, -0.04548339545726776, -0.0494384765625, -0.0494384765625, -0.05251464620232582, -0.04921874776482582, -0.04636230319738388, -0.0450439453125, -0.03823241963982582, -0.03273925557732582, -0.0208740234375, -0.01164550706744194, -0.0010986328125, 0.0120849609375, 0.02570800669491291, 0.04086913913488388, 0.05515136569738388, 0.06965331733226776, 0.085693359375, 0.10129394382238388, 0.11381835490465164, 0.12678222358226776, 0.13864745199680328, 0.14765624701976776, 0.15468749403953552, 0.15952147543430328, 0.15886230766773224, 0.15798339247703552, 0.15292967855930328, 0.14479979872703552, 0.13095702230930328, 0.11557617038488388, 0.09689941257238388, 0.07932128757238388, 0.05668945237994194, 0.03208007663488388, 0.0046142577193677425, -0.0230712890625, -0.052734375, -0.07712402194738388, -0.10458984225988388, -0.1307373046875, -0.1571044921875, -0.1812744140625, -0.20302733778953552, -0.22104491293430328, -0.23488768935203552, -0.24653320014476776, -0.2507080137729645, -0.25312498211860657, -0.24873046576976776, -0.2406005859375, -0.2230224609375, -0.20720213651657104, -0.18259276449680328, -0.15666504204273224, -0.12919922173023224, -0.10261230170726776, -0.07229004055261612, -0.03933105245232582, -0.0032958984375, 0.02373046800494194, 0.05888671800494194, 0.0867919921875, 0.1175537109375, 0.142822265625, 0.16984862089157104, 0.19182127714157104, 0.21115721762180328, 0.22653807699680328, 0.23444823920726776, 0.24213866889476776, 0.23972167074680328, 0.23774413764476776, 0.22609862685203552, 0.21511229872703552, 0.19577635824680328, 0.17709960043430328, 0.156005859375, 0.13139648735523224, 0.10195311903953552, 0.076904296875, 0.04987792670726776, 0.02658691257238388, -0.0010986328125, -0.02373046800494194, -0.04987792670726776, -0.0692138671875, -0.08986815810203552, -0.10634765028953552, -0.120849609375, -0.13249512016773224, -0.1395263671875, -0.14545898139476776, -0.14677734673023224, -0.14567871391773224, -0.14128418266773224, -0.13535155355930328, -0.12722167372703552, -0.11711425334215164, -0.10261230170726776, -0.087890625, -0.07492675632238388, -0.06174316257238388, -0.04790038987994194, -0.03493652120232582, -0.02263183519244194, -0.009448242373764515, 0.0035156249068677425, 0.01318359375, 0.01933593675494194, 0.02592773362994194, 0.03164062276482582, 0.03647460788488388, 0.03779296949505806, 0.03867187350988388, 0.03603515401482582, 0.03713378682732582, 0.0362548828125, 0.03317870944738388, 0.0263671875, 0.02438964694738388, 0.02043456956744194, 0.014501952566206455, 0.010327148251235485, 0.007031249813735485, 0.003076171735301614, 0.0024169920943677425, -0.0004394531133584678, -0.0032958984375, -0.0041748047806322575, -0.004833984188735485, -0.00637206993997097, -0.0057128905318677425, -0.0057128905318677425, -0.00856933556497097, -0.01076660118997097, -0.01494140550494194, -0.017578125, -0.02153320237994194, -0.02724609337747097, -0.0318603515625, -0.03493652120232582, -0.03801269456744194, -0.04108886793255806, -0.04482421651482582, -0.04877929389476776, -0.05119628831744194, -0.050537109375, -0.04987792670726776, -0.05075683444738388, -0.04482421651482582, -0.03647460788488388, -0.032958984375, -0.02351074106991291, -0.011206054128706455, 0.0, 0.01164550706744194, 0.02548827975988388, 0.04020996019244194, 0.0560302734375, 0.0703125, 0.0867919921875, 0.10063476115465164, 0.11271972209215164, 0.12722167372703552, 0.13776855170726776, 0.14853514730930328, 0.1527099609375, 0.1593017578125, 0.15886230766773224, 0.15908202528953552, 0.15336914360523224, 0.14436034858226776, 0.1307373046875, 0.1153564453125, 0.09492187201976776, 0.07822265475988388, 0.05207519233226776, 0.0296630859375, 0.0041748047806322575, -0.02065429650247097, -0.05075683444738388, -0.07646483927965164, -0.10678710788488388, -0.13271483778953552, -0.1571044921875, -0.17995604872703552, -0.20192870497703552, -0.22016601264476776, -0.23554687201976776, -0.24653320014476776, -0.25202634930610657, -0.2546630799770355, -0.2449951171875, -0.24016112089157104, -0.22499999403953552, -0.20632323622703552, -0.18413084745407104, -0.1593017578125, -0.13161620497703552, -0.10305175185203552, -0.06965331733226776, -0.03933105245232582, -0.0068115233443677425, 0.02548827975988388, 0.05866698920726776, 0.08635253459215164, 0.11843261122703552, 0.14523924887180328, 0.17072753608226776, 0.19270019233226776, 0.21159666776657104, 0.22587889432907104, 0.23334960639476776, 0.24104003608226776, 0.24016112089157104, 0.23906248807907104, 0.22653807699680328, 0.21467284858226776, 0.19819335639476776, 0.17709960043430328, 0.1549072265625, 0.13007812201976776, 0.10612792521715164, 0.07866210490465164, 0.05251464620232582, 0.02834472618997097, -0.0017578124534338713, -0.02438964694738388, -0.04790038987994194, -0.0692138671875, -0.08942870795726776, -0.10480956733226776, -0.11931151896715164, -0.13205565512180328, -0.13908691704273224, -0.14436034858226776, -0.14633788168430328, -0.14633788168430328, -0.14018554985523224, -0.13425292074680328, -0.1241455078125, -0.11579589545726776, -0.10239257663488388, -0.08942870795726776, -0.07470703125, -0.06394042819738388, -0.04921874776482582, -0.03361816331744194, -0.02043456956744194, -0.00856933556497097, 0.0041748047806322575, 0.012524413876235485, 0.0208740234375, 0.02790527231991291, 0.03142089769244194, 0.03383788838982582, 0.03669433668255806, 0.03977050632238388, 0.03779296949505806, 0.0362548828125, 0.03383788838982582, 0.03251953050494194, 0.02878417819738388, 0.02460937388241291, 0.02043456956744194, 0.01625976525247097, 0.010107421316206455, 0.006591796875, 0.003076171735301614, -0.0013183592818677425, -0.0024169920943677425, -0.003955077845603228, -0.00637206993997097, -0.007031249813735485, -0.005932617001235485, -0.00527343712747097, -0.0068115233443677425, -0.0087890625, -0.011425781063735485, -0.01406249962747097, -0.01735839806497097, -0.0230712890625, -0.02658691257238388, -0.03054199181497097, -0.03449707105755806, -0.03889160230755806, -0.04240722581744194, -0.046142578125, -0.04921874776482582, -0.05119628831744194, -0.05075683444738388, -0.04921874776482582, -0.04790038987994194, -0.04350585862994194, -0.03823241963982582, -0.03098144382238388, -0.02065429650247097, -0.01296386681497097, -0.0004394531133584678, 0.0098876953125, 0.02482910081744194, 0.03999023512005806, 0.05427245795726776, 0.07009277492761612, 0.08613280951976776, 0.10349120944738388, 0.116455078125, 0.12766112387180328, 0.13776855170726776, 0.14787597954273224, 0.15402831137180328, 0.15996094048023224, 0.15952147543430328, 0.15842284262180328, 0.15227051079273224, 0.14414061605930328, 0.12985838949680328, 0.11623534560203552, 0.09689941257238388, 0.07822265475988388, 0.05229492112994194, 0.03142089769244194, 0.0041748047806322575, -0.02131347544491291, -0.05009765550494194, -0.07888183742761612, -0.10700683295726776, -0.13161620497703552, -0.15688475966453552, -0.18149413168430328, -0.20390623807907104, -0.22148436307907104, -0.23466795682907104, -0.24873046576976776, -0.2513671815395355, -0.25554198026657104, -0.24851073324680328, -0.23862303793430328, -0.22478026151657104, -0.20676268637180328, -0.18435057997703552, -0.16127929091453552, -0.13007812201976776, -0.1021728515625, -0.06987304240465164, -0.03977050632238388, -0.0057128905318677425, 0.02570800669491291, 0.05976562201976776, 0.08876952528953552, 0.11887206882238388, 0.14414061605930328, 0.16984862089157104, 0.19050292670726776, 0.2098388671875, 0.22565917670726776, 0.23488768935203552, 0.24147948622703552, 0.239501953125, 0.23818358778953552, 0.22785644233226776, 0.21577148139476776, 0.19753417372703552, 0.17709960043430328, 0.15380859375, 0.13095702230930328, 0.1043701171875, 0.081298828125, 0.05295410007238388, 0.02922363206744194, 0.0002197265566792339, -0.02153320237994194, -0.04746093600988388, -0.06965331733226776, -0.08942870795726776, -0.10502929240465164, -0.11887206882238388, -0.12985838949680328, -0.14018554985523224, -0.14458008110523224, -0.14545898139476776, -0.14699706435203552, -0.1395263671875, -0.13601073622703552, -0.1263427734375, -0.11513671278953552, -0.10195311903953552, -0.08986815810203552, -0.07492675632238388, -0.06130370870232582, -0.04768066108226776, -0.0340576171875, -0.02175292931497097, -0.010107421316206455, 0.002636718563735485, 0.01186523400247097, 0.0186767578125, 0.02614746056497097, 0.03010253794491291, 0.03581542894244194, 0.03867187350988388, 0.03933105245232582, 0.0384521484375, 0.03603515401482582, 0.03515625, 0.03251953050494194, 0.0263671875, 0.02285156212747097, 0.01801757700741291, 0.01625976525247097, 0.011425781063735485, 0.0054931640625, 0.003076171735301614, -0.0010986328125, -0.0035156249068677425, -0.00439453125, -0.005053710658103228, -0.005932617001235485, -0.006152343470603228, -0.007031249813735485, -0.007250976283103228, -0.0087890625, -0.01164550706744194, -0.015380859375, -0.01933593675494194, -0.02065429650247097, -0.02504882775247097, -0.0296630859375, -0.03647460788488388, -0.03889160230755806, -0.04196777194738388, -0.04680175706744194, -0.05009765550494194, -0.0494384765625, -0.05031738057732582, -0.04833984375, -0.04592284932732582, -0.0428466796875, -0.03757324069738388, -0.03164062276482582, -0.02131347544491291, -0.01296386681497097, -0.002197265625, 0.01296386681497097, 0.02592773362994194, 0.03977050632238388, 0.05668945237994194, 0.07009277492761612, 0.085693359375, 0.10151366889476776, 0.11469726264476776, 0.12766112387180328, 0.13666991889476776, 0.147216796875, 0.1549072265625, 0.15908202528953552, 0.158203125, 0.15776367485523224, 0.15227051079273224, 0.14479979872703552, 0.13205565512180328, 0.11667480319738388, 0.09843749552965164, 0.07888183742761612, 0.0538330078125, 0.02790527231991291, 0.0024169920943677425, -0.02241210825741291, -0.050537109375, -0.07492675632238388, -0.1065673828125, -0.13161620497703552, -0.15952147543430328, -0.17995604872703552, -0.20148925483226776, -0.221923828125, -0.23444823920726776, -0.24763183295726776, -0.2515869140625, -0.2551025450229645, -0.248291015625, -0.23796385526657104, -0.22412109375, -0.20654296875, -0.1834716796875, -0.15776367485523224, -0.13139648735523224, -0.103271484375, -0.06899414211511612, -0.03933105245232582, -0.0041748047806322575, 0.02570800669491291, 0.05668945237994194, 0.08854980021715164, 0.1197509765625, 0.14677734673023224, 0.17050780355930328, 0.19138182699680328, 0.21049803495407104, 0.22653807699680328, 0.23444823920726776, 0.24235838651657104, 0.24016112089157104, 0.23686522245407104, 0.226318359375, 0.21445311605930328, 0.19709472358226776, 0.1790771484375, 0.15622557699680328, 0.1329345703125, 0.10305175185203552, 0.07998047024011612, 0.05207519233226776, 0.02944335900247097, -0.0006591796409338713, -0.02131347544491291, -0.04636230319738388, -0.06877440959215164, -0.08767089247703552, -0.10502929240465164, -0.12062987685203552, -0.13249512016773224, -0.1395263671875, -0.14414061605930328, -0.14589843153953552, -0.14545898139476776, -0.14128418266773224, -0.13557128608226776, -0.125244140625, -0.11711425334215164, -0.1021728515625, -0.08920898288488388, -0.07646483927965164, -0.06174316257238388, -0.0472412109375, -0.03449707105755806, -0.02109374850988388, -0.009008788503706455, 0.001977538922801614, 0.0120849609375, 0.01889648474752903, 0.02658691257238388, 0.03208007663488388, 0.03559570387005806, 0.03713378682732582, 0.03955078125, 0.0384521484375, 0.03801269456744194, 0.03581542894244194, 0.03076171875, 0.02790527231991291, 0.02395019493997097, 0.01779785193502903, 0.01625976525247097, 0.0120849609375, 0.006152343470603228, 0.0024169920943677425, 0.0006591796409338713, -0.001538085867650807, -0.0032958984375, -0.00439453125, -0.005053710658103228, -0.00527343712747097, -0.00637206993997097, -0.007031249813735485, -0.00747070275247097, -0.01054687425494194, -0.0142822265625, -0.01823730394244194, -0.02153320237994194, -0.02395019493997097, -0.03120117075741291, -0.0362548828125, -0.03889160230755806, -0.04460449144244194, -0.04680175706744194, -0.04790038987994194, -0.05009765550494194, -0.05009765550494194, -0.0494384765625, -0.04790038987994194, -0.04416503757238388, -0.0384521484375, -0.03164062276482582, -0.02197265625, -0.012304686941206455, -0.0017578124534338713, 0.010327148251235485, 0.02658691257238388, 0.03955078125, 0.054931640625, 0.06987304240465164, 0.08657225966453552, 0.10041503608226776, 0.11469726264476776, 0.12810058891773224, 0.13798828423023224, 0.14809569716453552, 0.15358886122703552, 0.16062010824680328, 0.15952147543430328, 0.15842284262180328, 0.1505126953125, 0.14436034858226776, 0.12985838949680328, 0.11711425334215164, 0.09711913764476776, 0.07712402194738388, 0.05339355394244194, 0.03208007663488388, 0.003735351376235485, -0.02351074106991291, -0.05185546725988388, -0.07778320461511612, -0.10744628310203552, -0.13271483778953552, -0.15688475966453552, -0.17973631620407104, -0.20148925483226776, -0.22126464545726776, -0.2340087890625, -0.24675291776657104, -0.2524658143520355, -0.2540039122104645, -0.24873046576976776, -0.23994140326976776, -0.22214354574680328, -0.20654296875, -0.1834716796875, -0.15886230766773224, -0.13095702230930328, -0.10283202677965164, -0.06877440959215164, -0.04042968526482582, -0.006152343470603228, 0.02790527231991291, 0.05800781026482582, 0.08767089247703552, 0.1175537109375, 0.14523924887180328, 0.17292480170726776, 0.1922607421875, 0.20852050185203552, 0.22390136122703552, 0.23554687201976776, 0.23972167074680328, 0.23972167074680328, 0.23906248807907104, 0.22697752714157104, 0.21577148139476776, 0.19599609076976776, 0.177978515625, 0.15402831137180328, 0.13227538764476776, 0.10546875, 0.07866210490465164, 0.05449218675494194, 0.0274658203125, 0.0002197265566792339, -0.02570800669491291, -0.04702148213982582, -0.06789550930261612, -0.09030761569738388, -0.10568847507238388, -0.12041015177965164, -0.1318359375, -0.13754881918430328, -0.14501953125, -0.14523924887180328, -0.14567871391773224, -0.14194335043430328, -0.13535155355930328, -0.1241455078125, -0.11491698771715164, -0.10173339396715164, -0.08986815810203552, -0.07646483927965164, -0.06328124552965164, -0.04702148213982582, -0.03317870944738388, -0.02021484263241291, -0.009228515438735485, 0.0006591796409338713, 0.010327148251235485, 0.02131347544491291, 0.02812499925494194, 0.0340576171875, 0.03647460788488388, 0.03779296949505806, 0.0384521484375, 0.03823241963982582, 0.03911132737994194, 0.03493652120232582, 0.03273925557732582, 0.02834472618997097, 0.0230712890625, 0.0186767578125, 0.0142822265625, 0.00966796837747097, 0.006152343470603228, 0.002636718563735485, -0.0004394531133584678, -0.0024169920943677425, -0.0024169920943677425, -0.0032958984375, -0.00527343712747097, -0.004833984188735485, -0.006152343470603228, -0.00637206993997097, -0.009228515438735485, -0.011425781063735485, -0.012524413876235485, -0.01669921912252903, -0.02021484263241291, -0.02592773362994194, -0.03098144382238388, -0.03603515401482582, -0.04020996019244194, -0.04350585862994194, -0.04768066108226776, -0.0494384765625, -0.04987792670726776, -0.05141601338982582, -0.05009765550494194, -0.04921874776482582, -0.04350585862994194, -0.03933105245232582, -0.03251953050494194, -0.02351074106991291, -0.0142822265625, -0.0017578124534338713, 0.011206054128706455, 0.0263671875, 0.03955078125, 0.05537109076976776, 0.07009277492761612, 0.08635253459215164, 0.09975585341453552, 0.1142578125, 0.1285400390625, 0.13908691704273224, 0.14853514730930328, 0.15314941108226776, 0.15842284262180328, 0.16105957329273224, 0.15754394233226776, 0.15183104574680328, 0.14370116591453552, 0.12941893935203552, 0.116455078125, 0.09602050483226776, 0.07866210490465164, 0.054931640625, 0.03142089769244194, 0.003735351376235485, -0.02175292931497097, -0.04921874776482582, -0.07734374701976776, -0.1065673828125, -0.13227538764476776, -0.15864257514476776, -0.17863768339157104, -0.20039062201976776, -0.22170409560203552, -0.23444823920726776, -0.2471923828125, -0.252685546875, -0.2546630799770355, -0.24763183295726776, -0.23774413764476776, -0.22258299589157104, -0.20522460341453552, -0.18479003012180328, -0.158203125, -0.1307373046875, -0.10239257663488388, -0.07009277492761612, -0.04042968526482582, -0.00637206993997097, 0.02680663950741291, 0.05866698920726776, 0.0845947265625, 0.1175537109375, 0.14501953125, 0.16962890326976776, 0.19379882514476776, 0.21071776747703552, 0.22565917670726776, 0.23422850668430328, 0.24191893637180328, 0.239501953125, 0.23774413764476776, 0.22763670980930328, 0.2142333984375, 0.19753417372703552, 0.177978515625, 0.15578612685203552, 0.1307373046875, 0.1043701171875, 0.0802001953125, 0.05097655951976776, 0.02614746056497097, 0.0006591796409338713, -0.024169921875, -0.0494384765625, -0.06789550930261612, -0.08811035007238388, -0.10590820014476776, -0.120849609375, -0.13337402045726776, -0.14018554985523224, -0.14348144829273224, -0.14545898139476776, -0.14545898139476776, -0.14260253310203552, -0.13447265326976776, -0.12326660007238388, -0.11579589545726776, -0.1021728515625, -0.09030761569738388, -0.07646483927965164, -0.06064452975988388, -0.04746093600988388, -0.03493652120232582, -0.02285156212747097, -0.0087890625, 0.001977538922801614, 0.012524413876235485, 0.019775390625, 0.0274658203125, 0.03142089769244194, 0.03515625, 0.03669433668255806, 0.03933105245232582, 0.03823241963982582, 0.03823241963982582, 0.03339843824505806, 0.03164062276482582, 0.02702636644244194, 0.02395019493997097, 0.019775390625, 0.01582031138241291, 0.009448242373764515, 0.005932617001235485, 0.003735351376235485, 0.0010986328125, -0.002636718563735485, -0.005932617001235485, -0.006152343470603228, -0.004833984188735485, -0.003955077845603228, -0.0054931640625, -0.008349609561264515, -0.00966796837747097, -0.0120849609375, -0.0120849609375, -0.01713867112994194, -0.0230712890625, -0.02570800669491291, -0.03032226487994194, -0.03581542894244194, -0.03999023512005806, -0.04262695088982582, -0.0450439453125, -0.04746093600988388, -0.05075683444738388, -0.05075683444738388, -0.04833984375, -0.04790038987994194, -0.04328612983226776, -0.03779296949505806, -0.03251953050494194, -0.0230712890625, -0.013623046688735485, -0.0010986328125, 0.01186523400247097, 0.0263671875, 0.03933105245232582, 0.05537109076976776, 0.06965331733226776, 0.08327636867761612, 0.10063476115465164, 0.11381835490465164, 0.12700195610523224, 0.13557128608226776, 0.14875487983226776, 0.15468749403953552, 0.15952147543430328, 0.15996094048023224, 0.15886230766773224, 0.15227051079273224, 0.14304198324680328, 0.13095702230930328, 0.11667480319738388, 0.09733886271715164, 0.07668457180261612, 0.05295410007238388, 0.03251953050494194, 0.003955077845603228, -0.02373046800494194, -0.05207519233226776, -0.0758056640625, -0.107666015625, -0.13095702230930328, -0.15732420980930328, -0.1812744140625, -0.20280760526657104, -0.2208251953125, -0.23378905653953552, -0.24741210043430328, -0.25092771649360657, -0.2551025450229645, -0.24785155057907104, -0.24016112089157104, -0.22346191108226776, -0.20456542074680328, -0.18281249701976776, -0.15974120795726776, -0.12985838949680328, -0.10239257663488388, -0.06855468451976776, -0.03977050632238388, -0.0068115233443677425, 0.024169921875, 0.05690917745232582, 0.08635253459215164, 0.11733397841453552, 0.14479979872703552, 0.17072753608226776, 0.19072264432907104, 0.2098388671875, 0.22697752714157104, 0.23488768935203552, 0.24125975370407104, 0.2406005859375, 0.23884277045726776, 0.22785644233226776, 0.21357421576976776, 0.19599609076976776, 0.17819823324680328, 0.15227051079273224, 0.13095702230930328, 0.10612792521715164, 0.07954101264476776, 0.05075683444738388, 0.02724609337747097, 0.0004394531133584678, -0.02395019493997097, -0.04899902269244194, -0.06899414211511612, -0.08811035007238388, -0.10678710788488388, -0.11997070163488388, -0.1307373046875, -0.13908691704273224, -0.14501953125, -0.14677734673023224, -0.14655761420726776, -0.1417236328125, -0.13579101860523224, -0.12700195610523224, -0.11557617038488388, -0.1021728515625, -0.08920898288488388, -0.07514648139476776, -0.0626220703125, -0.0494384765625, -0.03471679612994194, -0.02153320237994194, -0.009448242373764515, 0.001538085867650807, 0.01186523400247097, 0.02131347544491291, 0.02680663950741291, 0.03339843824505806, 0.03669433668255806, 0.03647460788488388, 0.03823241963982582, 0.03933105245232582, 0.037353515625, 0.03449707105755806, 0.0318603515625, 0.0274658203125, 0.02329101413488388, 0.0186767578125, 0.0164794921875, 0.010327148251235485, 0.006591796875, 0.002636718563735485, -0.0002197265566792339, -0.0035156249068677425, -0.005053710658103228, -0.0032958984375, -0.0046142577193677425, -0.00637206993997097, -0.00527343712747097, -0.003955077845603228, -0.0035156249068677425, -0.00527343712747097, -0.0046142577193677425, -0.0035156249068677425, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, 0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0002197265566792339, -0.0013183592818677425, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.0035156249068677425, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0032958984375, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.002636718563735485, -0.00439453125, -0.003076171735301614, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.003955077845603228, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.003735351376235485, -0.001538085867650807, -0.0032958984375, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.003076171735301614, -0.002197265625, 0.0004394531133584678, -0.0032958984375, -0.0028564452659338713, -0.001538085867650807, 0.0002197265566792339, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.002636718563735485, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.002636718563735485, -0.003955077845603228, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.0006591796409338713, -0.002636718563735485, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, -0.001538085867650807, -0.003076171735301614, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, 0.0002197265566792339, 0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, -0.0032958984375, -0.001538085867650807, -0.001538085867650807, -0.0032958984375, -0.0035156249068677425, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.0008789062267169356, -0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, 0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, 0.0, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, 0.0, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, 0.0, -0.0032958984375, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.0013183592818677425, -0.003076171735301614, -0.003955077845603228, -0.0008789062267169356, -0.002636718563735485, -0.0032958984375, -0.0008789062267169356, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, 0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.002636718563735485, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0028564452659338713, -0.003076171735301614, -0.0004394531133584678, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0032958984375, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.0010986328125, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, 0.0, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, 0.0, -0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.003955077845603228, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0004394531133584678, -0.00439453125, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, 0.0, -0.002197265625, -0.0024169920943677425, 0.0, -0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, 0.0002197265566792339, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, 0.0002197265566792339, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.00439453125, -0.0032958984375, -0.002197265625, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0032958984375, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.003076171735301614, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.0035156249068677425, -0.001977538922801614, -0.0013183592818677425, -0.003735351376235485, 0.0, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.0006591796409338713, -0.0013183592818677425, -0.0035156249068677425, -0.0032958984375, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.0008789062267169356, -0.0004394531133584678, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0041748047806322575, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [1, 1, 1, ... ])', '(angle, [4.8694686131])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0010986328125, -0.003955077845603228, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.002197265625, 0.0, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.003076171735301614, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0035156249068677425, -0.00439453125, -0.00747070275247097, -0.0120849609375, -0.014501952566206455, -0.0208740234375, -0.0274658203125, -0.0340576171875, -0.04306640475988388, -0.04965820163488388, -0.0560302734375, -0.0615234375, -0.06635741889476776, -0.07075195014476776, -0.07229004055261612, -0.07119140774011612, -0.07097167521715164, -0.06789550930261612, -0.063720703125, -0.05515136569738388, -0.04526367038488388, -0.03229980543255806, -0.01933593675494194, -0.0041748047806322575, 0.0142822265625, 0.03471679612994194, 0.05317382514476776, 0.07558593899011612, 0.09689941257238388, 0.11733397841453552, 0.13930663466453552, 0.158203125, 0.17534178495407104, 0.19204100966453552, 0.20456542074680328, 0.21291503310203552, 0.2197265625, 0.22060546278953552, 0.21708983182907104, 0.20895995199680328, 0.19731444120407104, 0.17973631620407104, 0.158203125, 0.13271483778953552, 0.1087646484375, 0.07778320461511612, 0.04570312425494194, 0.0087890625, -0.02351074106991291, -0.06284179538488388, -0.09645995497703552, -0.1329345703125, -0.16743163764476776, -0.2021484375, -0.23093260824680328, -0.2603759765625, -0.287841796875, -0.31025388836860657, -0.32585448026657104, -0.3353027403354645, -0.33903807401657104, -0.3298095762729645, -0.3194824159145355, -0.2964111268520355, -0.2757568359375, -0.24235838651657104, -0.20742186903953552, -0.17622070014476776, -0.13579101860523224, -0.09580077975988388, -0.05712890625, -0.01296386681497097, 0.02702636644244194, 0.06899414211511612, 0.1043701171875, 0.14853514730930328, 0.182373046875, 0.21906737983226776, 0.24807128310203552, 0.27421873807907104, 0.29838865995407104, 0.3128906190395355, 0.3240966796875, 0.3262939453125, 0.32080078125, 0.30695798993110657, 0.29289549589157104, 0.2667480409145355, 0.24301756918430328, 0.21159666776657104, 0.17841796576976776, 0.14436034858226776, 0.1131591796875, 0.07492675632238388, 0.03999023512005806, 0.001977538922801614, -0.02724609337747097, -0.06328124552965164, -0.08964843302965164, -0.11843261122703552, -0.13974608480930328, -0.15908202528953552, -0.17775878310203552, -0.18984374403953552, -0.19973143935203552, -0.2021484375, -0.20148925483226776, -0.19621580839157104, -0.18830566108226776, -0.1746826171875, -0.16062010824680328, -0.14260253310203552, -0.12612304091453552, -0.10590820014476776, -0.08723144233226776, -0.06723632663488388, -0.0472412109375, -0.02790527231991291, -0.01054687425494194, 0.00527343712747097, 0.01823730394244194, 0.02922363206744194, 0.03889160230755806, 0.04636230319738388, 0.05295410007238388, 0.05361327901482582, 0.0560302734375, 0.05712890625, 0.0538330078125, 0.0494384765625, 0.04680175706744194, 0.03977050632238388, 0.03383788838982582, 0.028564453125, 0.02219238132238388, 0.013623046688735485, 0.00856933556497097, 0.0041748047806322575, 0.0010986328125, -0.004833984188735485, -0.00527343712747097, -0.00637206993997097, -0.007031249813735485, -0.007250976283103228, -0.00856933556497097, -0.0087890625, -0.010986328125, -0.0142822265625, -0.01889648474752903, -0.02614746056497097, -0.03010253794491291, -0.03493652120232582, -0.04152831807732582, -0.04899902269244194, -0.05361327901482582, -0.06108398362994194, -0.06591796875, -0.0692138671875, -0.06987304240465164, -0.0703125, -0.06943359225988388, -0.0670166015625, -0.0604248046875, -0.05295410007238388, -0.04438476264476776, -0.03229980543255806, -0.0164794921875, -0.0002197265566792339, 0.0142822265625, 0.03581542894244194, 0.05624999850988388, 0.07734374701976776, 0.098876953125, 0.11909179389476776, 0.1395263671875, 0.15996094048023224, 0.17534178495407104, 0.19094237685203552, 0.20390623807907104, 0.21533203125, 0.2230224609375, 0.221923828125, 0.21840819716453552, 0.21071776747703552, 0.19775390625, 0.17885741591453552, 0.15908202528953552, 0.13337402045726776, 0.11008300632238388, 0.07668457180261612, 0.04460449144244194, 0.011425781063735485, -0.02219238132238388, -0.06020507588982582, -0.09492187201976776, -0.13645018637180328, -0.16501463949680328, -0.2021484375, -0.23356932401657104, -0.2645507752895355, -0.29069823026657104, -0.31157225370407104, -0.32915037870407104, -0.3372802734375, -0.33991697430610657, -0.3304687440395355, -0.31904295086860657, -0.29399412870407104, -0.27531737089157104, -0.24477538466453552, -0.2098388671875, -0.17446288466453552, -0.13491210341453552, -0.09514159709215164, -0.054931640625, -0.01274413987994194, 0.02724609337747097, 0.07163085788488388, 0.10854491591453552, 0.14655761420726776, 0.18193358182907104, 0.21928709745407104, 0.24697265028953552, 0.27509763836860657, 0.296630859375, 0.31486815214157104, 0.32563474774360657, 0.3260742127895355, 0.322998046875, 0.3089355528354645, 0.29157713055610657, 0.26652830839157104, 0.24433593451976776, 0.21291503310203552, 0.18017578125, 0.14414061605930328, 0.10964354872703552, 0.07492675632238388, 0.04130859300494194, 0.0046142577193677425, -0.02790527231991291, -0.06086425483226776, -0.08767089247703552, -0.11711425334215164, -0.1417236328125, -0.1636962890625, -0.1790771484375, -0.19138182699680328, -0.20083007216453552, -0.2032470703125, -0.2021484375, -0.1966552734375, -0.18940429389476776, -0.17534178495407104, -0.158203125, -0.14216308295726776, -0.12502440810203552, -0.10634765028953552, -0.08327636867761612, -0.06503906100988388, -0.04746093600988388, -0.02922363206744194, -0.01186523400247097, 0.0035156249068677425, 0.01516113243997097, 0.02878417819738388, 0.03933105245232582, 0.04833984375, 0.052734375, 0.05427245795726776, 0.05624999850988388, 0.05537109076976776, 0.05251464620232582, 0.04833984375, 0.04658202826976776, 0.04196777194738388, 0.03493652120232582, 0.02658691257238388, 0.02043456956744194, 0.015600585378706455, 0.011425781063735485, 0.003955077845603228, -0.0008789062267169356, -0.0013183592818677425, -0.005932617001235485, -0.006591796875, -0.00637206993997097, -0.0046142577193677425, -0.00856933556497097, -0.010327148251235485, -0.013623046688735485, -0.014501952566206455, -0.01801757700741291, -0.02658691257238388, -0.03164062276482582, -0.037353515625, -0.04240722581744194, -0.04921874776482582, -0.05515136569738388, -0.06064452975988388, -0.06569824367761612, -0.07009277492761612, -0.07009277492761612, -0.07075195014476776, -0.07075195014476776, -0.06569824367761612, -0.06196288764476776, -0.05251464620232582, -0.04438476264476776, -0.03229980543255806, -0.017578125, -0.002197265625, 0.01604003831744194, 0.03515625, 0.05646972358226776, 0.07778320461511612, 0.09755858778953552, 0.11909179389476776, 0.14018554985523224, 0.16018065810203552, 0.17731933295726776, 0.193359375, 0.20632323622703552, 0.21577148139476776, 0.221923828125, 0.22214354574680328, 0.21884764730930328, 0.20939940214157104, 0.20061033964157104, 0.18017578125, 0.15974120795726776, 0.13359375298023224, 0.1087646484375, 0.07932128757238388, 0.046142578125, 0.009008788503706455, -0.02285156212747097, -0.05976562201976776, -0.09602050483226776, -0.13315428793430328, -0.16677245497703552, -0.20478515326976776, -0.23554687201976776, -0.2634521424770355, -0.2909179627895355, -0.3106933534145355, -0.3282714784145355, -0.33793944120407104, -0.34123533964157104, -0.33244627714157104, -0.3205810487270355, -0.2968505918979645, -0.2757568359375, -0.24411620199680328, -0.21225585043430328, -0.17512206733226776, -0.13820800185203552, -0.09931640326976776, -0.05712890625, -0.01164550706744194, 0.02680663950741291, 0.06833495944738388, 0.10722655802965164, 0.14787597954273224, 0.18215331435203552, 0.21906737983226776, 0.24763183295726776, 0.2755371034145355, 0.29619139432907104, 0.3139892518520355, 0.3254150450229645, 0.32673338055610657, 0.3240966796875, 0.30827635526657104, 0.292236328125, 0.2669677734375, 0.24169921875, 0.21137695014476776, 0.1790771484375, 0.14436034858226776, 0.11184081435203552, 0.07404784858226776, 0.04152831807732582, 0.0046142577193677425, -0.0274658203125, -0.06130370870232582, -0.09162597358226776, -0.11909179389476776, -0.14150390028953552, -0.16259765625, -0.18017578125, -0.19270019233226776, -0.19863280653953552, -0.20258788764476776, -0.20390623807907104, -0.195556640625, -0.1900634765625, -0.17490233480930328, -0.15996094048023224, -0.14304198324680328, -0.12546385824680328, -0.10612792521715164, -0.08525390177965164, -0.06525878608226776, -0.04790038987994194, -0.02878417819738388, -0.010986328125, 0.0035156249068677425, 0.01735839806497097, 0.03010253794491291, 0.03999023512005806, 0.04790038987994194, 0.05229492112994194, 0.05449218675494194, 0.05800781026482582, 0.05471191182732582, 0.05471191182732582, 0.0494384765625, 0.04548339545726776, 0.03823241963982582, 0.0340576171875, 0.02900390513241291, 0.0208740234375, 0.01582031138241291, 0.010107421316206455, 0.006152343470603228, 0.0017578124534338713, -0.003076171735301614, -0.0057128905318677425, -0.007250976283103228, -0.006591796875, -0.0057128905318677425, -0.00747070275247097, -0.00856933556497097, -0.012524413876235485, -0.01691894419491291, -0.01911620981991291, -0.02482910081744194, -0.02988281100988388, -0.03669433668255806, -0.04196777194738388, -0.05009765550494194, -0.05449218675494194, -0.0604248046875, -0.06635741889476776, -0.068115234375, -0.06943359225988388, -0.07075195014476776, -0.06965331733226776, -0.06679687649011612, -0.059326171875, -0.05229492112994194, -0.04372558370232582, -0.03120117075741291, -0.01735839806497097, -0.0002197265566792339, 0.01779785193502903, 0.037353515625, 0.0560302734375, 0.07602538913488388, 0.09865722060203552, 0.12041015177965164, 0.13710936903953552, 0.15776367485523224, 0.17819823324680328, 0.19248045980930328, 0.20654296875, 0.21665038168430328, 0.22170409560203552, 0.22346191108226776, 0.22038573026657104, 0.20961913466453552, 0.19907225668430328, 0.17929686605930328, 0.15952147543430328, 0.13271483778953552, 0.10678710788488388, 0.07734374701976776, 0.04877929389476776, 0.01054687425494194, -0.0208740234375, -0.05976562201976776, -0.0955810546875, -0.13491210341453552, -0.16896972060203552, -0.20412597060203552, -0.235107421875, -0.26213377714157104, -0.2913574278354645, -0.31267088651657104, -0.3309082090854645, -0.33991697430610657, -0.34343260526657104, -0.333984375, -0.3205810487270355, -0.29707029461860657, -0.2757568359375, -0.24477538466453552, -0.21335448324680328, -0.17534178495407104, -0.13535155355930328, -0.0955810546875, -0.05690917745232582, -0.01318359375, 0.02900390513241291, 0.06987304240465164, 0.10700683295726776, 0.14743651449680328, 0.1834716796875, 0.21730956435203552, 0.24785155057907104, 0.27641600370407104, 0.29816892743110657, 0.3150878846645355, 0.3276123106479645, 0.3262939453125, 0.3238769471645355, 0.3100341856479645, 0.29289549589157104, 0.26850584149360657, 0.24257811903953552, 0.2098388671875, 0.18039549887180328, 0.14545898139476776, 0.10986328125, 0.0758056640625, 0.04020996019244194, 0.003735351376235485, -0.0274658203125, -0.06328124552965164, -0.09140624850988388, -0.11909179389476776, -0.14128418266773224, -0.16391600668430328, -0.17951659858226776, -0.19050292670726776, -0.19951170682907104, -0.20302733778953552, -0.20368652045726776, -0.19643554091453552, -0.18830566108226776, -0.17600096762180328, -0.15974120795726776, -0.1417236328125, -0.12458495795726776, -0.10415038466453552, -0.08745116740465164, -0.06547851115465164, -0.04636230319738388, -0.02812499925494194, -0.009448242373764515, 0.0032958984375, 0.01823730394244194, 0.03229980543255806, 0.03933105245232582, 0.046142578125, 0.05207519233226776, 0.05427245795726776, 0.05756835639476776, 0.05646972358226776, 0.0560302734375, 0.05031738057732582, 0.04658202826976776, 0.03977050632238388, 0.03537597507238388, 0.02900390513241291, 0.01955566368997097, 0.01384277269244194, 0.009448242373764515, 0.0054931640625, 0.001538085867650807, -0.00439453125, -0.005932617001235485, -0.005932617001235485, -0.0076904296875, -0.005932617001235485, -0.0087890625, -0.009228515438735485, -0.01186523400247097, -0.01516113243997097, -0.01955566368997097, -0.0263671875, -0.02922363206744194, -0.03691406175494194, -0.04196777194738388, -0.04877929389476776, -0.0538330078125, -0.05998535081744194, -0.06547851115465164, -0.068115234375, -0.07229004055261612, -0.0703125, -0.07053222507238388, -0.06723632663488388, -0.06284179538488388, -0.054931640625, -0.04482421651482582, -0.03208007663488388, -0.017578125, 0.0, 0.01779785193502903, 0.03669433668255806, 0.05690917745232582, 0.07822265475988388, 0.0966796875, 0.12172850966453552, 0.14040526747703552, 0.15952147543430328, 0.17600096762180328, 0.19291990995407104, 0.20676268637180328, 0.21533203125, 0.22236327826976776, 0.221923828125, 0.22126464545726776, 0.2098388671875, 0.19819335639476776, 0.18039549887180328, 0.1614990234375, 0.13425292074680328, 0.10612792521715164, 0.07514648139476776, 0.04548339545726776, 0.0098876953125, -0.02438964694738388, -0.0604248046875, -0.0966796875, -0.1351318359375, -0.16787108778953552, -0.20390623807907104, -0.23466795682907104, -0.2627929747104645, -0.2900390625, -0.31201171875, -0.3293701112270355, -0.336181640625, -0.34013670682907104, -0.33134764432907104, -0.3205810487270355, -0.296630859375, -0.27619627118110657, -0.24477538466453552, -0.21225585043430328, -0.1746826171875, -0.13666991889476776, -0.09843749552965164, -0.0560302734375, -0.01274413987994194, 0.02548827975988388, 0.07097167521715164, 0.10832519084215164, 0.15117187798023224, 0.18413084745407104, 0.21906737983226776, 0.24982909858226776, 0.2779541015625, 0.298828125, 0.3144287168979645, 0.32585448026657104, 0.32893064618110657, 0.32233884930610657, 0.30937498807907104, 0.2931152284145355, 0.2689453065395355, 0.2449951171875, 0.21291503310203552, 0.18017578125, 0.14479979872703552, 0.11271972209215164, 0.07426757365465164, 0.04020996019244194, 0.002197265625, -0.02944335900247097, -0.06020507588982582, -0.09052734076976776, -0.11799316108226776, -0.14194335043430328, -0.16303710639476776, -0.17929686605930328, -0.19357909262180328, -0.20170897245407104, -0.2032470703125, -0.20478515326976776, -0.19819335639476776, -0.18962401151657104, -0.1768798828125, -0.16303710639476776, -0.14348144829273224, -0.12568359076976776, -0.10590820014476776, -0.08547362685203552, -0.06569824367761612, -0.0472412109375, -0.02834472618997097, -0.01186523400247097, 0.003955077845603228, 0.01691894419491291, 0.03032226487994194, 0.03823241963982582, 0.04680175706744194, 0.05207519233226776, 0.05515136569738388, 0.05690917745232582, 0.05471191182732582, 0.05405273288488388, 0.04877929389476776, 0.0472412109375, 0.04020996019244194, 0.03361816331744194, 0.02658691257238388, 0.02153320237994194, 0.0142822265625, 0.010107421316206455, 0.005053710658103228, 0.0006591796409338713, -0.001977538922801614, -0.00439453125, -0.0057128905318677425, -0.006591796875, -0.009228515438735485, -0.007250976283103228, -0.009448242373764515, -0.010986328125, -0.015380859375, -0.02065429650247097, -0.024169921875, -0.02922363206744194, -0.0362548828125, -0.04306640475988388, -0.05009765550494194, -0.05405273288488388, -0.0582275390625, -0.06459961086511612, -0.06877440959215164, -0.07207030802965164, -0.06943359225988388, -0.0703125, -0.06613769382238388, -0.05866698920726776, -0.0516357421875, -0.04328612983226776, -0.02922363206744194, -0.0164794921875, -0.001977538922801614, 0.01823730394244194, 0.03801269456744194, 0.05581054463982582, 0.07668457180261612, 0.0966796875, 0.11997070163488388, 0.14018554985523224, 0.16127929091453552, 0.17885741591453552, 0.19423827528953552, 0.20720213651657104, 0.21599119901657104, 0.221923828125, 0.22280272841453552, 0.22060546278953552, 0.21071776747703552, 0.19863280653953552, 0.17885741591453552, 0.15996094048023224, 0.13623046875, 0.10722655802965164, 0.07712402194738388, 0.04855956882238388, 0.01054687425494194, -0.02504882775247097, -0.06086425483226776, -0.09514159709215164, -0.134033203125, -0.1669921875, -0.20258788764476776, -0.23532713949680328, -0.2649902403354645, -0.2889404296875, -0.31157225370407104, -0.3320068418979645, -0.3385986089706421, -0.3418945074081421, -0.3337646424770355, -0.3227783143520355, -0.2979492247104645, -0.27509763836860657, -0.243896484375, -0.21269530057907104, -0.17666015028953552, -0.13864745199680328, -0.09536132216453552, -0.05295410007238388, -0.01604003831744194, 0.02900390513241291, 0.0714111328125, 0.10810546576976776, 0.15029296278953552, 0.18479003012180328, 0.2197265625, 0.24631346762180328, 0.27729490399360657, 0.30058592557907104, 0.31464841961860657, 0.3251953125, 0.32673338055610657, 0.3232177793979645, 0.31047362089157104, 0.2931152284145355, 0.26806640625, 0.24323730170726776, 0.21027831733226776, 0.18149413168430328, 0.14501953125, 0.11052245646715164, 0.0736083984375, 0.041748046875, 0.00527343712747097, -0.02834472618997097, -0.06196288764476776, -0.08920898288488388, -0.11887206882238388, -0.14150390028953552, -0.16435547173023224, -0.18039549887180328, -0.19313964247703552, -0.20083007216453552, -0.204345703125, -0.2032470703125, -0.19533690810203552, -0.18874511122703552, -0.1746826171875, -0.16105957329273224, -0.1439208984375, -0.12546385824680328, -0.10590820014476776, -0.0845947265625, -0.06613769382238388, -0.04965820163488388, -0.03054199181497097, -0.01318359375, 0.003955077845603228, 0.01801757700741291, 0.03054199181497097, 0.03889160230755806, 0.04658202826976776, 0.0516357421875, 0.0560302734375, 0.05624999850988388, 0.0560302734375, 0.0538330078125, 0.05009765550494194, 0.04592284932732582, 0.04020996019244194, 0.03383788838982582, 0.02680663950741291, 0.02175292931497097, 0.01735839806497097, 0.010986328125, 0.0028564452659338713, 0.0, -0.003735351376235485, -0.00637206993997097, -0.00747070275247097, -0.007250976283103228, -0.006152343470603228, -0.009448242373764515, -0.01054687425494194, -0.01186523400247097, -0.014721679501235485, -0.01955566368997097, -0.02438964694738388, -0.02944335900247097, -0.03669433668255806, -0.04130859300494194, -0.04899902269244194, -0.05427245795726776, -0.0604248046875, -0.0648193359375, -0.06745605170726776, -0.06899414211511612, -0.07053222507238388, -0.06855468451976776, -0.06503906100988388, -0.0615234375, -0.05229492112994194, -0.0450439453125, -0.03229980543255806, -0.01779785193502903, 0.0008789062267169356, 0.017578125, 0.03669433668255806, 0.05581054463982582, 0.07778320461511612, 0.09909667819738388, 0.12106933444738388, 0.140625, 0.15908202528953552, 0.177978515625, 0.1922607421875, 0.20654296875, 0.21730956435203552, 0.22390136122703552, 0.22258299589157104, 0.2208251953125, 0.21137695014476776, 0.19819335639476776, 0.18017578125, 0.16127929091453552, 0.1318359375, 0.10744628310203552, 0.07536620646715164, 0.04768066108226776, 0.01406249962747097, -0.02241210825741291, -0.06350097805261612, -0.09843749552965164, -0.13623046875, -0.16677245497703552, -0.2021484375, -0.2362060546875, -0.26433104276657104, -0.29047849774360657, -0.3144287168979645, -0.3306884765625, -0.33574217557907104, -0.3407958745956421, -0.33332517743110657, -0.3205810487270355, -0.298828125, -0.27509763836860657, -0.24367675185203552, -0.21225585043430328, -0.17622070014476776, -0.13996581733226776, -0.09426268935203552, -0.05515136569738388, -0.01384277269244194, 0.0263671875, 0.07009277492761612, 0.10810546576976776, 0.14875487983226776, 0.1834716796875, 0.21818846464157104, 0.25004881620407104, 0.2744384706020355, 0.29948729276657104, 0.31486815214157104, 0.3260742127895355, 0.3262939453125, 0.32365721464157104, 0.3084960877895355, 0.29069823026657104, 0.27070310711860657, 0.243896484375, 0.21159666776657104, 0.18061523139476776, 0.1439208984375, 0.11140136420726776, 0.07404784858226776, 0.03977050632238388, 0.0028564452659338713, -0.02878417819738388, -0.06130370870232582, -0.08986815810203552, -0.11931151896715164, -0.14304198324680328, -0.16413573920726776, -0.177978515625, -0.19182127714157104, -0.2032470703125, -0.2032470703125, -0.20258788764476776, -0.19775390625, -0.18962401151657104, -0.17512206733226776, -0.16281737387180328, -0.14238281548023224, -0.125244140625, -0.10590820014476776, -0.08745116740465164, -0.06635741889476776, -0.046142578125, -0.0274658203125, -0.01274413987994194, 0.0046142577193677425, 0.01889648474752903, 0.03098144382238388, 0.04042968526482582, 0.04570312425494194, 0.05185546725988388, 0.0538330078125, 0.05690917745232582, 0.054931640625, 0.0538330078125, 0.04833984375, 0.046142578125, 0.0384521484375, 0.0340576171875, 0.02790527231991291, 0.02197265625, 0.01604003831744194, 0.0098876953125, 0.0054931640625, -0.0002197265566792339, -0.0032958984375, -0.005053710658103228, -0.006591796875, -0.007910155691206455, -0.007031249813735485, -0.007031249813735485, -0.010107421316206455, -0.011425781063735485, -0.01582031138241291, -0.0186767578125, -0.02614746056497097, -0.03010253794491291, -0.03647460788488388, -0.04460449144244194, -0.04921874776482582, -0.05339355394244194, -0.05976562201976776, -0.06525878608226776, -0.06833495944738388, -0.0703125, -0.07097167521715164, -0.06899414211511612, -0.06613769382238388, -0.06196288764476776, -0.0538330078125, -0.04372558370232582, -0.02944335900247097, -0.01516113243997097, 0.0002197265566792339, 0.01604003831744194, 0.03515625, 0.05756835639476776, 0.0780029296875, 0.09689941257238388, 0.11799316108226776, 0.140625, 0.16083984076976776, 0.17863768339157104, 0.19160155951976776, 0.20588378608226776, 0.21533203125, 0.2230224609375, 0.22324217855930328, 0.21906737983226776, 0.21005858480930328, 0.19709472358226776, 0.18017578125, 0.16215820610523224, 0.13271483778953552, 0.10744628310203552, 0.07778320461511612, 0.04592284932732582, 0.00966796837747097, -0.02438964694738388, -0.06086425483226776, -0.09404296427965164, -0.13447265326976776, -0.16831053793430328, -0.20698241889476776, -0.23466795682907104, -0.26301267743110657, -0.29047849774360657, -0.31354978680610657, -0.3306884765625, -0.3392578065395355, -0.34123533964157104, -0.33244627714157104, -0.3199218809604645, -0.2977294921875, -0.2757568359375, -0.24543456733226776, -0.21291503310203552, -0.17314451932907104, -0.1373291015625, -0.09755858778953552, -0.05756835639476776, -0.014501952566206455, 0.02768554538488388, 0.06833495944738388, 0.10678710788488388, 0.147216796875, 0.18281249701976776, 0.22060546278953552, 0.24785155057907104, 0.27509763836860657, 0.29816892743110657, 0.3155273497104645, 0.3276123106479645, 0.32958984375, 0.32365721464157104, 0.30915525555610657, 0.292236328125, 0.26850584149360657, 0.24565428495407104, 0.2109375, 0.18017578125, 0.14567871391773224, 0.1087646484375, 0.07448730617761612, 0.0406494140625, 0.0028564452659338713, -0.0296630859375, -0.06437987834215164, -0.08964843302965164, -0.11733397841453552, -0.14238281548023224, -0.16391600668430328, -0.17709960043430328, -0.19072264432907104, -0.20039062201976776, -0.20258788764476776, -0.20456542074680328, -0.195556640625, -0.19072264432907104, -0.17512206733226776, -0.16105957329273224, -0.14370116591453552, -0.12612304091453552, -0.10349120944738388, -0.08591308444738388, -0.06613769382238388, -0.04746093600988388, -0.02614746056497097, -0.01054687425494194, 0.005053710658103228, 0.01889648474752903, 0.02900390513241291, 0.03999023512005806, 0.04636230319738388, 0.05449218675494194, 0.05668945237994194, 0.05471191182732582, 0.05559081956744194, 0.05581054463982582, 0.050537109375, 0.04680175706744194, 0.03977050632238388, 0.03427734225988388, 0.02724609337747097, 0.02219238132238388, 0.014721679501235485, 0.008129882626235485, 0.0054931640625, 0.0006591796409338713, -0.003735351376235485, -0.004833984188735485, -0.007910155691206455, -0.007250976283103228, -0.0054931640625, -0.006152343470603228, -0.006152343470603228, -0.00637206993997097, -0.004833984188735485, -0.003735351376235485, -0.0032958984375, -0.002197265625, -0.001538085867650807, 0.0002197265566792339, -0.0013183592818677425, -0.0008789062267169356, 0.0006591796409338713, 0.0008789062267169356, 0.0013183592818677425, 0.0017578124534338713, 0.0006591796409338713, 0.0024169920943677425, 0.002197265625, 0.0, 0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0008789062267169356, 0.0017578124534338713, 0.001538085867650807, 0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0002197265566792339, -0.0013183592818677425, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.003735351376235485, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.003735351376235485, -0.0024169920943677425, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0035156249068677425, -0.0024169920943677425, -0.002636718563735485, -0.0028564452659338713, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.0035156249068677425, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0008789062267169356, -0.0032958984375, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.0002197265566792339, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.003955077845603228, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.0017578124534338713, -0.0017578124534338713, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0028564452659338713, -0.002197265625, -0.002636718563735485, -0.003735351376235485, 0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, 0.0004394531133584678, -0.0024169920943677425, -0.0032958984375, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0028564452659338713, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0028564452659338713, -0.0035156249068677425, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.003955077845603228, -0.003955077845603228, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0028564452659338713, -0.003076171735301614, -0.003076171735301614, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0008789062267169356, -0.002636718563735485, -0.003735351376235485, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0032958984375, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.002636718563735485, -0.0024169920943677425, -0.0028564452659338713, -0.002197265625, -0.002197265625, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0028564452659338713, -0.0013183592818677425, -0.0013183592818677425, -0.0041748047806322575, -0.002636718563735485, -0.0017578124534338713, -0.0035156249068677425, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.002197265625, -0.002197265625, -0.0028564452659338713, 0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.002636718563735485, -0.0041748047806322575, -0.003076171735301614, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.0013183592818677425, -0.0017578124534338713, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.003735351376235485, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.0041748047806322575, -0.0004394531133584678, -0.001977538922801614, -0.002636718563735485, 0.0, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.002636718563735485, -0.003076171735301614, -0.0024169920943677425, -0.002636718563735485, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.0008789062267169356, 0.0, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.002636718563735485, -0.003735351376235485, -0.0013183592818677425, 0.0, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0032958984375, -0.002636718563735485, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0024169920943677425, -0.0032958984375, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0002197265566792339, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0004394531133584678 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for ('(pulse_pair_sequence, [1, 1, 1, ... ])', '(angle, [6.2831853072])')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0008789062267169356, -0.0013183592818677425, -0.0054931640625, -0.01076660118997097, -0.01516113243997097, -0.02043456956744194, -0.02680663950741291, -0.03537597507238388, -0.0450439453125, -0.054931640625, -0.063720703125, -0.07097167521715164, -0.07844237983226776, -0.08327636867761612, -0.090087890625, -0.09140624850988388, -0.0911865234375, -0.09294433146715164, -0.08701171725988388, -0.07932128757238388, -0.07075195014476776, -0.05866698920726776, -0.0428466796875, -0.02460937388241291, -0.003955077845603228, 0.01801757700741291, 0.04460449144244194, 0.06723632663488388, 0.09602050483226776, 0.12019042670726776, 0.14765624701976776, 0.17512206733226776, 0.20017088949680328, 0.22390136122703552, 0.24038085341453552, 0.25883787870407104, 0.2711425721645355, 0.2777343690395355, 0.2766357362270355, 0.2713623046875, 0.2603759765625, 0.24477538466453552, 0.22368162870407104, 0.19797362387180328, 0.16545410454273224, 0.13535155355930328, 0.09799804538488388, 0.06350097805261612, 0.02065429650247097, -0.02043456956744194, -0.06437987834215164, -0.1065673828125, -0.15205077826976776, -0.18984374403953552, -0.23005370795726776, -0.26806640625, -0.305419921875, -0.33771970868110657, -0.3667236268520355, -0.3897949159145355, -0.4031982421875, -0.41044920682907104, -0.39484861493110657, -0.38078612089157104, -0.35090330243110657, -0.32585448026657104, -0.2909179627895355, -0.2515869140625, -0.20961913466453552, -0.16765137016773224, -0.11931151896715164, -0.06987304240465164, -0.02175292931497097, 0.02043456956744194, 0.07207030802965164, 0.11953124403953552, 0.16501463949680328, 0.20676268637180328, 0.2513671815395355, 0.28828123211860657, 0.32014158368110657, 0.35200193524360657, 0.37309569120407104, 0.39111328125, 0.39836424589157104, 0.39484861493110657, 0.3803466558456421, 0.35859373211860657, 0.3276123106479645, 0.2999267578125, 0.25993651151657104, 0.2230224609375, 0.17775878310203552, 0.13908691704273224, 0.09514159709215164, 0.05624999850988388, 0.0120849609375, -0.03010253794491291, -0.0703125, -0.1087646484375, -0.14260253310203552, -0.173583984375, -0.20258788764476776, -0.22565917670726776, -0.24104003608226776, -0.25422361493110657, -0.26081541180610657, -0.26081541180610657, -0.25334471464157104, -0.2449951171875, -0.22565917670726776, -0.20786131918430328, -0.18435057997703552, -0.16062010824680328, -0.13315428793430328, -0.10942382365465164, -0.08437499403953552, -0.0604248046875, -0.03515625, -0.01669921912252903, 0.0076904296875, 0.02614746056497097, 0.04108886793255806, 0.052734375, 0.06108398362994194, 0.06987304240465164, 0.0736083984375, 0.07404784858226776, 0.07382812350988388, 0.07119140774011612, 0.06591796875, 0.0615234375, 0.052734375, 0.04548339545726776, 0.03779296949505806, 0.02878417819738388, 0.02175292931497097, 0.013403319753706455, 0.00637206993997097, 0.002197265625, -0.003735351376235485, -0.00637206993997097, -0.006591796875, -0.008129882626235485, -0.00966796837747097, -0.0098876953125, -0.010107421316206455, -0.01494140550494194, -0.0208740234375, -0.02570800669491291, -0.03076171875, -0.03911132737994194, -0.0472412109375, -0.05624999850988388, -0.063720703125, -0.07075195014476776, -0.07888183742761612, -0.08415526896715164, -0.08876952528953552, -0.09096679091453552, -0.09074706584215164, -0.09096679091453552, -0.0867919921875, -0.0791015625, -0.06635741889476776, -0.05405273288488388, -0.03977050632238388, -0.02131347544491291, 0.0017578124534338713, 0.02131347544491291, 0.05009765550494194, 0.072509765625, 0.10107421875, 0.12612304091453552, 0.15336914360523224, 0.17951659858226776, 0.2032470703125, 0.22587889432907104, 0.24675291776657104, 0.2649902403354645, 0.27641600370407104, 0.2843261659145355, 0.28081053495407104, 0.27685546875, 0.2645507752895355, 0.24960936605930328, 0.22543944418430328, 0.20192870497703552, 0.17006835341453552, 0.13820800185203552, 0.10239257663488388, 0.06350097805261612, 0.01889648474752903, -0.02197265625, -0.06679687649011612, -0.10942382365465164, -0.15446777641773224, -0.19270019233226776, -0.23488768935203552, -0.2735595703125, -0.3106933534145355, -0.34211423993110657, -0.37177732586860657, -0.39506834745407104, -0.4084716737270355, -0.41484373807907104, -0.39990234375, -0.38627928495407104, -0.35859373211860657, -0.327392578125, -0.2931152284145355, -0.25532224774360657, -0.21071776747703552, -0.1702880859375, -0.12326660007238388, -0.07668457180261612, -0.02263183519244194, 0.02153320237994194, 0.072509765625, 0.11799316108226776, 0.16611327230930328, 0.208740234375, 0.2513671815395355, 0.2887206971645355, 0.32343748211860657, 0.3535400331020355, 0.3781493902206421, 0.39814451336860657, 0.4001220464706421, 0.3979247808456421, 0.38056638836860657, 0.36079099774360657, 0.3304687440395355, 0.30168455839157104, 0.2638916075229645, 0.22148436307907104, 0.17951659858226776, 0.1417236328125, 0.09382323920726776, 0.05031738057732582, 0.010107421316206455, -0.02988281100988388, -0.0736083984375, -0.1087646484375, -0.14238281548023224, -0.17424315214157104, -0.204345703125, -0.22609862685203552, -0.24235838651657104, -0.25642088055610657, -0.26081541180610657, -0.2625732421875, -0.25554198026657104, -0.24631346762180328, -0.22675780951976776, -0.20808105170726776, -0.18479003012180328, -0.16018065810203552, -0.13491210341453552, -0.11030273139476776, -0.08481445163488388, -0.05954589694738388, -0.03647460788488388, -0.01516113243997097, 0.0076904296875, 0.02614746056497097, 0.04108886793255806, 0.05295410007238388, 0.06437987834215164, 0.068115234375, 0.0714111328125, 0.07624511420726776, 0.072509765625, 0.07075195014476776, 0.06723632663488388, 0.06130370870232582, 0.05251464620232582, 0.04636230319738388, 0.03823241963982582, 0.03164062276482582, 0.02197265625, 0.01274413987994194, 0.0087890625, 0.0013183592818677425, -0.0032958984375, -0.00747070275247097, -0.008129882626235485, -0.0076904296875, -0.008349609561264515, -0.008349609561264515, -0.010107421316206455, -0.01516113243997097, -0.02043456956744194, -0.02438964694738388, -0.03273925557732582, -0.03955078125, -0.04746093600988388, -0.05559081956744194, -0.06350097805261612, -0.07075195014476776, -0.07756347209215164, -0.08481445163488388, -0.08811035007238388, -0.09206542372703552, -0.09162597358226776, -0.09074706584215164, -0.085693359375, -0.07822265475988388, -0.06767577677965164, -0.05800781026482582, -0.03933105245232582, -0.02219238132238388, 0.001538085867650807, 0.02197265625, 0.04702148213982582, 0.0736083984375, 0.10063476115465164, 0.12678222358226776, 0.15380859375, 0.18215331435203552, 0.20786131918430328, 0.22873534262180328, 0.24916991591453552, 0.26520994305610657, 0.27641600370407104, 0.2854247987270355, 0.28520506620407104, 0.2777343690395355, 0.265869140625, 0.2515869140625, 0.22785644233226776, 0.20083007216453552, 0.16787108778953552, 0.13798828423023224, 0.09865722060203552, 0.06218261644244194, 0.0186767578125, -0.02241210825741291, -0.068115234375, -0.1087646484375, -0.15292967855930328, -0.19467772543430328, -0.23554687201976776, -0.2757568359375, -0.31025388836860657, -0.344970703125, -0.37177732586860657, -0.3968261480331421, -0.40869140625, -0.41682127118110657, -0.40495604276657104, -0.38671875, -0.35991209745407104, -0.3331054747104645, -0.29619139432907104, -0.25664061307907104, -0.2098388671875, -0.169189453125, -0.12172850966453552, -0.07492675632238388, -0.02329101413488388, 0.02351074106991291, 0.072509765625, 0.11887206882238388, 0.16413573920726776, 0.20830076932907104, 0.24960936605930328, 0.2900390625, 0.3276123106479645, 0.35771483182907104, 0.37858885526657104, 0.39484861493110657, 0.4029785096645355, 0.3996826112270355, 0.3814452886581421, 0.36210936307907104, 0.33222654461860657, 0.3001464903354645, 0.26323240995407104, 0.22324217855930328, 0.17929686605930328, 0.13996581733226776, 0.09536132216453552, 0.05471191182732582, 0.011425781063735485, -0.03251953050494194, -0.07338867336511612, -0.10832519084215164, -0.147216796875, -0.17380370199680328, -0.204345703125, -0.22895507514476776, -0.24367675185203552, -0.25861814618110657, -0.2634521424770355, -0.26433104276657104, -0.25751951336860657, -0.24807128310203552, -0.228515625, -0.20786131918430328, -0.18500976264476776, -0.16215820610523224, -0.13579101860523224, -0.11008300632238388, -0.08371581882238388, -0.05734863132238388, -0.03581542894244194, -0.012304686941206455, 0.00527343712747097, 0.02438964694738388, 0.04416503757238388, 0.05141601338982582, 0.06284179538488388, 0.07207030802965164, 0.07470703125, 0.07668457180261612, 0.07448730617761612, 0.07272949069738388, 0.06613769382238388, 0.06064452975988388, 0.05207519233226776, 0.04548339545726776, 0.03757324069738388, 0.03032226487994194, 0.02285156212747097, 0.01384277269244194, 0.00747070275247097, 0.0004394531133584678, -0.0028564452659338713, -0.007031249813735485, -0.00747070275247097, -0.0076904296875, -0.007910155691206455, -0.0098876953125, -0.01296386681497097, -0.0164794921875, -0.02109374850988388, -0.02548827975988388, -0.03229980543255806, -0.03955078125, -0.04768066108226776, -0.0560302734375, -0.06328124552965164, -0.0714111328125, -0.07932128757238388, -0.08613280951976776, -0.09052734076976776, -0.09162597358226776, -0.0911865234375, -0.08986815810203552, -0.08591308444738388, -0.0802001953125, -0.06767577677965164, -0.05405273288488388, -0.03977050632238388, -0.02065429650247097, 0.0028564452659338713, 0.02329101413488388, 0.04833984375, 0.07294921576976776, 0.10019531100988388, 0.1263427734375, 0.156005859375, 0.1812744140625, 0.20610350370407104, 0.23049315810203552, 0.24785155057907104, 0.2656494081020355, 0.2788330018520355, 0.28564453125, 0.28520506620407104, 0.2810302674770355, 0.26740720868110657, 0.2502685487270355, 0.22785644233226776, 0.20083007216453552, 0.1680908203125, 0.13557128608226776, 0.09975585341453552, 0.05998535081744194, 0.01582031138241291, -0.02109374850988388, -0.06525878608226776, -0.10788574069738388, -0.15292967855930328, -0.195556640625, -0.23752440512180328, -0.27399900555610657, -0.3122314512729645, -0.3451904058456421, -0.37507322430610657, -0.397705078125, -0.41022947430610657, -0.41594237089157104, -0.40583494305610657, -0.38825681805610657, -0.3612304627895355, -0.3306884765625, -0.2935546934604645, -0.25664061307907104, -0.21071776747703552, -0.17006835341453552, -0.12260741740465164, -0.07229004055261612, -0.02131347544491291, 0.01955566368997097, 0.07404784858226776, 0.1197509765625, 0.16743163764476776, 0.2120361328125, 0.25312498211860657, 0.28850096464157104, 0.32365721464157104, 0.3568359315395355, 0.3799072206020355, 0.3955078125, 0.4007812440395355, 0.4001220464706421, 0.3821044862270355, 0.36430662870407104, 0.33222654461860657, 0.3001464903354645, 0.26191404461860657, 0.22368162870407104, 0.1790771484375, 0.14040526747703552, 0.09492187201976776, 0.052734375, 0.010107421316206455, -0.03032226487994194, -0.07272949069738388, -0.112060546875, -0.14787597954273224, -0.17578125, -0.20588378608226776, -0.22873534262180328, -0.24675291776657104, -0.2579589784145355, -0.2616943418979645, -0.26520994305610657, -0.2562011778354645, -0.2493896484375, -0.22807615995407104, -0.208740234375, -0.18720702826976776, -0.16457518935203552, -0.13623046875, -0.11074218153953552, -0.08591308444738388, -0.06108398362994194, -0.0362548828125, -0.014501952566206455, 0.0076904296875, 0.02504882775247097, 0.04306640475988388, 0.05361327901482582, 0.06394042819738388, 0.0703125, 0.07316894084215164, 0.07734374701976776, 0.0736083984375, 0.07185058295726776, 0.06745605170726776, 0.06218261644244194, 0.05339355394244194, 0.04790038987994194, 0.03757324069738388, 0.0296630859375, 0.02021484263241291, 0.0120849609375, 0.007910155691206455, 0.0013183592818677425, -0.002636718563735485, -0.007910155691206455, -0.0076904296875, -0.009448242373764515, -0.008129882626235485, -0.010107421316206455, -0.01296386681497097, -0.01669921912252903, -0.02065429650247097, -0.02614746056497097, -0.032958984375, -0.03955078125, -0.04636230319738388, -0.05515136569738388, -0.06328124552965164, -0.07185058295726776, -0.07822265475988388, -0.08393554389476776, -0.09074706584215164, -0.09316405653953552, -0.09316405653953552, -0.09052734076976776, -0.08349609375, -0.07932128757238388, -0.06877440959215164, -0.05734863132238388, -0.03801269456744194, -0.02175292931497097, 0.0004394531133584678, 0.02263183519244194, 0.04833984375, 0.0736083984375, 0.0999755859375, 0.12700195610523224, 0.15402831137180328, 0.18061523139476776, 0.20720213651657104, 0.23027342557907104, 0.2502685487270355, 0.26520994305610657, 0.2770752012729645, 0.2867431640625, 0.28630369901657104, 0.27949216961860657, 0.2660888731479645, 0.24982909858226776, 0.22807615995407104, 0.2032470703125, 0.1680908203125, 0.13666991889476776, 0.09953612834215164, 0.06020507588982582, 0.01801757700741291, -0.024169921875, -0.06899414211511612, -0.10700683295726776, -0.15402831137180328, -0.19533690810203552, -0.23774413764476776, -0.2757568359375, -0.31135252118110657, -0.34453123807907104, -0.37199705839157104, -0.39836424589157104, -0.410888671875, -0.41572263836860657, -0.40275877714157104, -0.38627928495407104, -0.3592529296875, -0.33222654461860657, -0.2964111268520355, -0.2562011778354645, -0.21269530057907104, -0.1669921875, -0.12128905951976776, -0.07646483927965164, -0.02131347544491291, 0.0230712890625, 0.07558593899011612, 0.116455078125, 0.16743163764476776, 0.21071776747703552, 0.25202634930610657, 0.2898193299770355, 0.32080078125, 0.35529783368110657, 0.3790283203125, 0.39704588055610657, 0.4045165777206421, 0.39836424589157104, 0.38496091961860657, 0.3634277284145355, 0.3306884765625, 0.30146482586860657, 0.2625732421875, 0.22148436307907104, 0.17995604872703552, 0.1395263671875, 0.09426268935203552, 0.05207519233226776, 0.009448242373764515, -0.03164062276482582, -0.0736083984375, -0.11052245646715164, -0.14567871391773224, -0.17753905057907104, -0.20720213651657104, -0.22807615995407104, -0.24653320014476776, -0.25971677899360657, -0.26323240995407104, -0.26411131024360657, -0.257080078125, -0.248291015625, -0.228515625, -0.208740234375, -0.18610839545726776, -0.16062010824680328, -0.13491210341453552, -0.11140136420726776, -0.0823974609375, -0.059326171875, -0.03691406175494194, -0.0142822265625, 0.006591796875, 0.0252685546875, 0.03977050632238388, 0.052734375, 0.06108398362994194, 0.07009277492761612, 0.07382812350988388, 0.07558593899011612, 0.07492675632238388, 0.07229004055261612, 0.06745605170726776, 0.06240234151482582, 0.05361327901482582, 0.04548339545726776, 0.03669433668255806, 0.02878417819738388, 0.02197265625, 0.014501952566206455, 0.0057128905318677425, 0.0013183592818677425, -0.0035156249068677425, -0.006591796875, -0.0076904296875, -0.008129882626235485, -0.009228515438735485, -0.01164550706744194, -0.0120849609375, -0.015380859375, -0.02153320237994194, -0.0252685546875, -0.03164062276482582, -0.03977050632238388, -0.04812011495232582, -0.05515136569738388, -0.06547851115465164, -0.07272949069738388, -0.07888183742761612, -0.08437499403953552, -0.08986815810203552, -0.09294433146715164, -0.09184569865465164, -0.08964843302965164, -0.08591308444738388, -0.08063964545726776, -0.06855468451976776, -0.05581054463982582, -0.03713378682732582, -0.02197265625, 0.0006591796409338713, 0.02373046800494194, 0.04790038987994194, 0.0714111328125, 0.10129394382238388, 0.12832030653953552, 0.15468749403953552, 0.1812744140625, 0.20698241889476776, 0.23005370795726776, 0.24916991591453552, 0.2660888731479645, 0.27861326932907104, 0.28608396649360657, 0.2847656309604645, 0.2810302674770355, 0.26762694120407104, 0.2507080137729645, 0.22653807699680328, 0.199951171875, 0.17314451932907104, 0.13754881918430328, 0.10041503608226776, 0.06284179538488388, 0.01933593675494194, -0.02329101413488388, -0.06855468451976776, -0.107666015625, -0.15336914360523224, -0.19248045980930328, -0.23708495497703552, -0.27641600370407104, -0.3122314512729645, -0.34562987089157104, -0.3733154237270355, -0.39990234375, -0.4106689393520355, -0.4166015386581421, -0.4062744081020355, -0.3878173828125, -0.358154296875, -0.33112791180610657, -0.29443359375, -0.2581787109375, -0.21027831733226776, -0.169189453125, -0.11909179389476776, -0.07536620646715164, -0.02395019493997097, 0.02197265625, 0.07382812350988388, 0.11733397841453552, 0.16655273735523224, 0.20852050185203552, 0.24873046576976776, 0.2898193299770355, 0.32475584745407104, 0.35661619901657104, 0.3790283203125, 0.3968261480331421, 0.4023193120956421, 0.3988037109375, 0.38276365399360657, 0.3627685308456421, 0.33024901151657104, 0.30168455839157104, 0.26323240995407104, 0.22280272841453552, 0.17973631620407104, 0.14106445014476776, 0.09492187201976776, 0.05427245795726776, 0.010986328125, -0.03208007663488388, -0.07207030802965164, -0.10986328125, -0.14633788168430328, -0.17600096762180328, -0.20654296875, -0.22807615995407104, -0.24521483480930328, -0.2581787109375, -0.26323240995407104, -0.265869140625, -0.25532224774360657, -0.24763183295726776, -0.22939452528953552, -0.21027831733226776, -0.1845703125, -0.16303710639476776, -0.13776855170726776, -0.10920409858226776, -0.08261718600988388, -0.05910644307732582, -0.03537597507238388, -0.01406249962747097, 0.00747070275247097, 0.024169921875, 0.03999023512005806, 0.052734375, 0.06503906100988388, 0.0703125, 0.0714111328125, 0.07602538913488388, 0.07316894084215164, 0.07119140774011612, 0.0670166015625, 0.06020507588982582, 0.05317382514476776, 0.04592284932732582, 0.03603515401482582, 0.03032226487994194, 0.02043456956744194, 0.01384277269244194, 0.00747070275247097, 0.0013183592818677425, -0.00439453125, -0.008129882626235485, -0.00856933556497097, -0.009448242373764515, -0.00856933556497097, -0.008349609561264515, -0.01164550706744194, -0.01604003831744194, -0.02043456956744194, -0.0263671875, -0.032958984375, -0.03867187350988388, -0.04702148213982582, -0.05581054463982582, -0.0648193359375, -0.07316894084215164, -0.08041992038488388, -0.08613280951976776, -0.08986815810203552, -0.094482421875, -0.09426268935203552, -0.09294433146715164, -0.08657225966453552, -0.07888183742761612, -0.06899414211511612, -0.05537109076976776, -0.03889160230755806, -0.02153320237994194, 0.0004394531133584678, 0.02351074106991291, 0.0494384765625, 0.07119140774011612, 0.10019531100988388, 0.12897948920726776, 0.15622557699680328, 0.18149413168430328, 0.20632323622703552, 0.22939452528953552, 0.25048828125, 0.26740720868110657, 0.27685546875, 0.2843261659145355, 0.2845458984375, 0.28081053495407104, 0.2667480409145355, 0.25114744901657104, 0.22697752714157104, 0.20148925483226776, 0.17050780355930328, 0.13754881918430328, 0.09909667819738388, 0.05866698920726776, 0.01604003831744194, -0.02021484263241291, -0.0670166015625, -0.11249999701976776, -0.15358886122703552, -0.19577635824680328, -0.23906248807907104, -0.27839353680610657, -0.31354978680610657, -0.344970703125, -0.37529295682907104, -0.40034177899360657, -0.4117675721645355, -0.4166015386581421, -0.4034179449081421, -0.38737791776657104, -0.3592529296875, -0.33222654461860657, -0.2933349609375, -0.25532224774360657, -0.21225585043430328, -0.16962890326976776, -0.12172850966453552, -0.07602538913488388, -0.02395019493997097, 0.0230712890625, 0.07382812350988388, 0.11931151896715164, 0.16633300483226776, 0.2098388671875, 0.2551025450229645, 0.29157713055610657, 0.3260742127895355, 0.3579345643520355, 0.3781493902206421, 0.3974853456020355, 0.404296875, 0.4007812440395355, 0.3834228515625, 0.3627685308456421, 0.33332517743110657, 0.30278319120407104, 0.26301267743110657, 0.226318359375, 0.18149413168430328, 0.13864745199680328, 0.09865722060203552, 0.05581054463982582, 0.0087890625, -0.03098144382238388, -0.07404784858226776, -0.11030273139476776, -0.1483154296875, -0.17666015028953552, -0.204345703125, -0.23027342557907104, -0.24741210043430328, -0.2581787109375, -0.2649902403354645, -0.26520994305610657, -0.25664061307907104, -0.24873046576976776, -0.22895507514476776, -0.20939940214157104, -0.18522948026657104, -0.16083984076976776, -0.13666991889476776, -0.11030273139476776, -0.08437499403953552, -0.05976562201976776, -0.03339843824505806, -0.014721679501235485, 0.007250976283103228, 0.024169921875, 0.04086913913488388, 0.05317382514476776, 0.06306152045726776, 0.07075195014476776, 0.07185058295726776, 0.07514648139476776, 0.07602538913488388, 0.07229004055261612, 0.06613769382238388, 0.0604248046875, 0.05317382514476776, 0.04680175706744194, 0.03691406175494194, 0.03076171875, 0.02197265625, 0.01274413987994194, 0.0068115233443677425, 0.0017578124534338713, -0.005053710658103228, -0.00856933556497097, -0.00747070275247097, -0.009008788503706455, -0.00856933556497097, -0.009448242373764515, -0.012304686941206455, -0.0142822265625, -0.01955566368997097, -0.02482910081744194, -0.03361816331744194, -0.04130859300494194, -0.04855956882238388, -0.05690917745232582, -0.06437987834215164, -0.07448730617761612, -0.0802001953125, -0.08481445163488388, -0.09052734076976776, -0.0933837890625, -0.09382323920726776, -0.09096679091453552, -0.08371581882238388, -0.07756347209215164, -0.068115234375, -0.05471191182732582, -0.03911132737994194, -0.02153320237994194, 0.0010986328125, 0.02241210825741291, 0.0494384765625, 0.0736083984375, 0.10239257663488388, 0.13007812201976776, 0.15468749403953552, 0.1812744140625, 0.20742186903953552, 0.22873534262180328, 0.2513671815395355, 0.2682861387729645, 0.27949216961860657, 0.28630369901657104, 0.28608396649360657, 0.2792724668979645, 0.2671875059604645, 0.25202634930610657, 0.228515625, 0.19973143935203552, 0.16831053793430328, 0.1373291015625, 0.09645995497703552, 0.05998535081744194, 0.01823730394244194, -0.02329101413488388, -0.06965331733226776, -0.10920409858226776, -0.15292967855930328, -0.19489745795726776, -0.23774413764476776, -0.2737793028354645, -0.31354978680610657, -0.3484863042831421, -0.37353515625, -0.39946287870407104, -0.4141845703125, -0.4163818359375, -0.40385740995407104, -0.3897949159145355, -0.35969236493110657, -0.33354490995407104, -0.2942138612270355, -0.25883787870407104, -0.21379393339157104, -0.16874998807907104, -0.11843261122703552, -0.07294921576976776, -0.02482910081744194, 0.02219238132238388, 0.07316894084215164, 0.11953124403953552, 0.16721190512180328, 0.20961913466453552, 0.25202634930610657, 0.29047849774360657, 0.32673338055610657, 0.3568359315395355, 0.3799072206020355, 0.39726561307907104, 0.4012206792831421, 0.39814451336860657, 0.38298338651657104, 0.36079099774360657, 0.33112791180610657, 0.2999267578125, 0.26213377714157104, 0.22346191108226776, 0.17995604872703552, 0.140625, 0.09755858778953552, 0.05427245795726776, 0.008129882626235485, -0.03054199181497097, -0.07316894084215164, -0.10986328125, -0.1461181640625, -0.17841796576976776, -0.20478515326976776, -0.22939452528953552, -0.24653320014476776, -0.2583984434604645, -0.261474609375, -0.2656494081020355, -0.25751951336860657, -0.24873046576976776, -0.230712890625, -0.21137695014476776, -0.1878662109375, -0.16457518935203552, -0.13798828423023224, -0.11030273139476776, -0.08437499403953552, -0.05998535081744194, -0.03581542894244194, -0.01296386681497097, 0.007031249813735485, 0.02460937388241291, 0.03999023512005806, 0.052734375, 0.06284179538488388, 0.06789550930261612, 0.07382812350988388, 0.07712402194738388, 0.07382812350988388, 0.07053222507238388, 0.06503906100988388, 0.06218261644244194, 0.05427245795726776, 0.04680175706744194, 0.03603515401482582, 0.02834472618997097, 0.02197265625, 0.01406249962747097, 0.009448242373764515, 0.0006591796409338713, -0.00439453125, -0.0068115233443677425, -0.00856933556497097, -0.009448242373764515, -0.0087890625, -0.00856933556497097, -0.008349609561264515, -0.006591796875, -0.00747070275247097, -0.005932617001235485, -0.0041748047806322575, -0.0035156249068677425, -0.003735351376235485, -0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, -0.0004394531133584678, -0.0006591796409338713, 0.0013183592818677425, 0.0004394531133584678, -0.0002197265566792339, 0.0013183592818677425, 0.0017578124534338713, 0.0010986328125, 0.001538085867650807, 0.002197265625, 0.0006591796409338713, 0.0013183592818677425, 0.002197265625, -0.0004394531133584678, 0.0006591796409338713, 0.0008789062267169356, -0.001538085867650807, 0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.003076171735301614, -0.0010986328125, -0.0017578124534338713, -0.0035156249068677425, -0.0032958984375, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0028564452659338713, -0.0035156249068677425, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.002636718563735485, -0.002197265625, -0.0004394531133584678, -0.001977538922801614, -0.0006591796409338713, -0.0004394531133584678, -0.0017578124534338713, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0032958984375, -0.0035156249068677425, -0.003735351376235485, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.0006591796409338713, -0.0032958984375, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.0046142577193677425, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.0041748047806322575, -0.003955077845603228, -0.001977538922801614, -0.0054931640625, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.001977538922801614, -0.002636718563735485, -0.0035156249068677425, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0035156249068677425, -0.0028564452659338713, -0.0013183592818677425, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, 0.0004394531133584678, -0.0028564452659338713, -0.002636718563735485, -0.0010986328125, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0032958984375, -0.0006591796409338713, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.003735351376235485, -0.003955077845603228, -0.002636718563735485, -0.0032958984375, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0017578124534338713, -0.0032958984375, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0024169920943677425, -0.001977538922801614, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0002197265566792339, -0.0024169920943677425, -0.003076171735301614, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0032958984375, -0.001538085867650807, -0.0013183592818677425, -0.0035156249068677425, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.0046142577193677425, -0.0010986328125, -0.0010986328125, -0.003076171735301614, -0.0013183592818677425, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0041748047806322575, -0.002197265625, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.0035156249068677425, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.003735351376235485, -0.0032958984375, -0.001977538922801614, -0.003735351376235485, -0.0035156249068677425, -0.0013183592818677425, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, 0.0, -0.001538085867650807, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0024169920943677425, -0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, -0.0024169920943677425, -0.0032958984375, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0024169920943677425, -0.002197265625, -0.0035156249068677425, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0028564452659338713, -0.001538085867650807, -0.0006591796409338713, -0.0010986328125, 0.0002197265566792339, -0.0006591796409338713, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.0035156249068677425, -0.0024169920943677425, -0.0004394531133584678, -0.0004394531133584678, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.0035156249068677425, -0.0024169920943677425, -0.0032958984375, -0.0008789062267169356, -0.0017578124534338713, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.001538085867650807, 0.0, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.0017578124534338713, -0.002636718563735485, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0035156249068677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0032958984375, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.002636718563735485, -0.003076171735301614, -0.0028564452659338713, -0.0010986328125, -0.002636718563735485, -0.004833984188735485, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.0035156249068677425, -0.002636718563735485, -0.001977538922801614, -0.00439453125, -0.002197265625, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.002636718563735485, -0.003735351376235485, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0041748047806322575, -0.002636718563735485, 0.0, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, 0.0, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, -0.0013183592818677425, -0.0032958984375, -0.001977538922801614, -0.003076171735301614, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "ancilla, labels: (1,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "x" } }, "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": "#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": "#00d539", "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": "-" } }, "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": "#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": "#00d539", "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": [ "error_amp_exp.plot_trace(channels=qcs.Qudits(1, \"ancilla\"))" ] }, { "cell_type": "raw", "id": "0281dc50", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "This concludes the tutorial for running an error amplification experiment,\n", "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.ErrorAmplification`." ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "raw_mimetype,nbsphinx,-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.10.15" } }, "nbformat": 4, "nbformat_minor": 5 }