{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4c3b7545", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:08.158598Z", "iopub.status.busy": "2025-10-02T01:30:08.158295Z", "iopub.status.idle": "2025-10-02T01:30:08.162167Z", "shell.execute_reply": "2025-10-02T01:30:08.161515Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2025 Keysight Technologies Inc." ] }, { "cell_type": "code", "execution_count": 2, "id": "2f722a04", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:08.164183Z", "iopub.status.busy": "2025-10-02T01:30:08.163957Z", "iopub.status.idle": "2025-10-02T01:30:11.795898Z", "shell.execute_reply": "2025-10-02T01:30:11.795211Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "import keysight.qcs as qcs\n", "\n", "# set the following to True when connected to hardware:\n", "run_on_hw = False" ] }, { "cell_type": "raw", "id": "8d9b89dc", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Multiplexing RF waveforms\n", "=========================\n", "\n", "This tutorial demonstrates how multiple virtual channels can be mapped to a single\n", "physical channel to enable control of e.g. multiple qudits through a single device\n", "channel.\n", "\n", "We begin by defining our virtual channels:" ] }, { "cell_type": "code", "execution_count": 3, "id": "9c9c4b87", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:11.798739Z", "iopub.status.busy": "2025-10-02T01:30:11.798363Z", "iopub.status.idle": "2025-10-02T01:30:11.804014Z", "shell.execute_reply": "2025-10-02T01:30:11.803446Z" } }, "outputs": [], "source": [ "num_channels = 3\n", "\n", "# we will map three virtual channels to one physical channel\n", "virtual_awgs = qcs.Channels(range(num_channels), \"awgs\", True)\n", "virtual_digs = qcs.Channels(range(num_channels), \"digs\")\n", "\n", "# specify our physical channel addresses for AWG, digitizer & downconverter\n", "physical_awg = (1, 1, 1)\n", "physical_dig = (1, 2, 1)\n", "physical_dnc = (1, 3, 1)" ] }, { "cell_type": "raw", "id": "ab6d7dca", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Next up, we define our channel mapper and assign all virtual channels to a single\n", "physical channel:" ] }, { "cell_type": "code", "execution_count": 4, "id": "c33d364c", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:11.807578Z", "iopub.status.busy": "2025-10-02T01:30:11.807354Z", "iopub.status.idle": "2025-10-02T01:30:11.870028Z", "shell.execute_reply": "2025-10-02T01:30:11.868895Z" } }, "outputs": [], "source": [ "lo_frequency = 5e9\n", "\n", "mapper = qcs.ChannelMapper()\n", "\n", "mapper.add_channel_mapping(\n", " virtual_awgs, [physical_awg] * num_channels, qcs.InstrumentEnum.M5300AWG\n", ")\n", "mapper.add_channel_mapping(\n", " virtual_digs, [physical_dig] * num_channels, qcs.InstrumentEnum.M5200Digitizer\n", ")\n", "mapper.add_downconverters(physical_dig, physical_dnc)\n", "mapper.set_lo_frequencies([physical_awg, physical_dnc], lo_frequency)" ] }, { "cell_type": "raw", "id": "2915c76d", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We create a program with a set of three readout pulses followed by an acquisition:" ] }, { "cell_type": "code", "execution_count": 5, "id": "c1d96ec5", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:11.873228Z", "iopub.status.busy": "2025-10-02T01:30:11.872957Z", "iopub.status.idle": "2025-10-02T01:30:12.017288Z", "shell.execute_reply": "2025-10-02T01:30:12.015907Z" } }, "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", " Program\n", "
\n", "
\n", " \n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \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 Body\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", "
Duration80 ns
Layers1
Targets6
\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", "
Duration80 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " awgs\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 2\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 2)\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=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " digs\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('digs', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\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 ('digs', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 2\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('digs', 2)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
FrequencyArray(name=rf, shape=(3,), dtype=float, unit=Hz, value=[5.1 GHz, 5.2 GHz, 5.3 GHz])
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\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": [ "program = qcs.Program()\n", "\n", "# define the pulse frequency as an array with three values\n", "freq = qcs.Array(\"rf\", value=[5.1e9, 5.2e9, 5.3e9])\n", "\n", "# instantiate the RF waveform\n", "waveform = qcs.RFWaveform(80e-9, qcs.GaussianEnvelope(), 0.25, freq)\n", "\n", "program.add_waveform(waveform, virtual_awgs)\n", "\n", "# add an acquisition with an integration filter that matches those frequencies\n", "program.add_acquisition(qcs.IntegrationFilter(waveform), virtual_digs)\n", "\n", "program.draw()" ] }, { "cell_type": "raw", "id": "7a8a5a95", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "An equivalent way of writing this program would be to specify the frequency\n", "on each pulse (channel) individually, and add the waveforms separately:" ] }, { "cell_type": "code", "execution_count": 6, "id": "98b4adfb", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:12.021043Z", "iopub.status.busy": "2025-10-02T01:30:12.020442Z", "iopub.status.idle": "2025-10-02T01:30:12.047087Z", "shell.execute_reply": "2025-10-02T01:30:12.045932Z" }, "lines_to_next_cell": 2 }, "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", " Program\n", "
\n", "
\n", " \n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \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 Body\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", "
Duration80 ns
Layers1
Targets6
\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", "
Duration80 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " awgs\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.1 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.2 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 2\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('awgs', 2)\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=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.3 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " digs\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('digs', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.1 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\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 ('digs', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.2 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 2\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('digs', 2)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=80 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", "
DurationScalar(name=_implicit, value=80 ns, dtype=float, unit=s)
Amplitude0.25
Frequency5.3 GHz
EnvelopeGaussianEnvelope(2.0)
Instantaneous Phase0 rad
Post-phase0 rad
\n", "
\n", "\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\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": [ "program = qcs.Program()\n", "\n", "# instantiate the RF waveforms\n", "waveform_1 = qcs.RFWaveform(80e-9, qcs.GaussianEnvelope(), 0.25, 5.1e9)\n", "waveform_2 = qcs.RFWaveform(80e-9, qcs.GaussianEnvelope(), 0.25, 5.2e9)\n", "waveform_3 = qcs.RFWaveform(80e-9, qcs.GaussianEnvelope(), 0.25, 5.3e9)\n", "\n", "# add them to the program\n", "program.add_waveform(waveform_1, virtual_awgs[0])\n", "program.add_waveform(waveform_2, virtual_awgs[1])\n", "program.add_waveform(waveform_3, virtual_awgs[2])\n", "\n", "# add acquisitions\n", "program.add_acquisition(qcs.IntegrationFilter(waveform_1), virtual_digs[0])\n", "program.add_acquisition(qcs.IntegrationFilter(waveform_2), virtual_digs[1])\n", "program.add_acquisition(qcs.IntegrationFilter(waveform_3), virtual_digs[2])\n", "\n", "program.draw()" ] }, { "cell_type": "raw", "id": "9ab40cb1", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Rendering the program will display the three different waveforms on each virtual\n", "channel:" ] }, { "cell_type": "code", "execution_count": 7, "id": "ee6d4c61", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:12.049442Z", "iopub.status.busy": "2025-10-02T01:30:12.049105Z", "iopub.status.idle": "2025-10-02T01:30:14.391191Z", "shell.execute_reply": "2025-10-02T01:30:14.390626Z" } }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 4.166666666666667e-10, "legendgroup": "Address: 1x1x1x1", "legendgrouptitle": { "text": "Address: 1x1x1x1" }, "name": "Drive pulse for Address: 1x1x1x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.0042269951712459045, 0.004619567700407537, 2.168404344971009e-18, -0.006974831491235099, -0.011634457261280299, -0.010783951979239901, -0.005334842556245105, -6.938893903907228e-18, -1.734723475976807e-18, -0.0069783596539128735, -0.017169608274176323, -0.023542546577411838, -0.02087404535871225, -0.010338763607263473, -3.469446951953614e-18, 2.0816681711721685e-17, -0.01492354586765221, -0.03832971551429832, -0.05387403700042097, -0.04370584938951447, -1.5265566588595902e-16, 0.0673448456647465, 0.1324800979508868, 0.16531846089118982, 0.14748567440780253, 0.08348830565661718, 3.122502256758253e-16, -0.06732577800360098, -0.09265959627694628, -0.07372017901363641, -0.03215894519879639, -1.3877787807814457e-16, -4.85722573273506e-17, -0.03185103745408114, -0.07298502545748001, -0.0938939880629706, -0.07858723970905634, -0.036931294333557886, 0.0, 1.8041124150158794e-16, -0.04662175081843477, -0.11521787696214034, -0.15620309405179844, -0.12249198676064713, -8.881784197001252e-16, 0.17732686037208137, 0.33891912458467166, 0.4114637368260352, 0.3575656760517341, 0.19738188483195004, 1.2490009027033011e-15, -0.1518028378369361, -0.2042939731220771, -0.15905507151184092, -0.06794547114447774, -5.273559366969494e-16, -1.8041124150158794e-16, -0.06342325523287573, -0.14263892893900004, -0.1801860904259313, -0.14814929747940925, -0.06841912817322429, 1.3877787807814457e-16, 6.661338147750939e-16, -0.0821462515560622, -0.19976826112106266, -0.2665771321340721, -0.2058158166177625, -2.192690473634684e-15, 0.2890185377937723, 0.5442223790465115, 0.6510671693503833, 0.5576263535836197, 0.3034326233941482, 2.6922908347160046e-15, -0.22686851315121054, -0.3011017315535369, -0.23122024141142541, -0.09743458914533423, -1.1379786002407855e-15, -4.440892098500626e-16, -0.08736020406264076, -0.1938923214599186, -0.24173526657014563, -0.19617824775547832, -0.08943247171532112, 3.608224830031759e-16, 1.304512053934559e-15, -0.10332054428232423, -0.2480883814639846, -0.3268945432242474, -0.24922434532628793, -3.469446951953614e-15, 0.34131152370534285, 0.634724257414742, 0.7499524484276169, 0.6344023736297895, 0.34096540143343657, 3.83026943495679e-15, -0.24871891888485542, -0.326065819606817, -0.2473335594826582, -0.10295372097254327, -1.6375789613221059e-15, -6.106226635438361e-16, -0.0889784155828934, -0.19508210150831407, -0.2402609550113967, -0.19261043978248582, -0.08673776745897165, 4.996003610813204e-16, 1.6375789613221059e-15, -0.09658940437233235, -0.2290943629945514, -0.29817626785705986, -0.2245454654112244, -3.83026943495679e-15, 0.300005656206678, 0.5510324374024965, 0.6430208092525219, 0.5372043826966446, 0.2851354635038683, 3.858025010572419e-15, -0.20282619419048634, -0.26255805052008846, -0.19664554553643107, -0.08081620379032706, -1.609823385706477e-15, -6.106226635438361e-16, -0.06719445152689447, -0.14541147297867604, -0.1767505027050352, -0.1398346216554358, -0.06213826820036302, 4.718447854656915e-16, 1.4155343563970746e-15, -0.06644329460927652, -0.1554378229396084, -0.1995164644384079, -0.1481536055840243, -2.9837243786801082e-15, 0.19237205091096662, 0.3482434324437126, 0.4004466889866105, 0.32960088750324634, 0.17232115050806446, 2.706168622523819e-15, -0.11884770022722971, -0.15143236963908957, -0.11160533134366799, -0.0451210109871977, -1.0824674490095276e-15, -3.885780586188048e-16, -0.035643952142240545, -0.07577312475011042, -0.09043912510774774, -0.0702246795023517, -0.03061239656005963, 2.914335439641036e-16, 8.049116928532385e-16, -0.03079569564361225, -0.07050039558017243, -0.08848715468200039, -0.064197762143899, -1.4710455076283324e-15, 0.07934800112556384, 0.1399177208449849, 0.15653060784358513, 0.12517517568006448, 0.06348729868486756, 1.1206313654810174e-15, -0.04099025975332778, -0.05037724874786252, -0.0357246832678616, -0.013858673633121567, -3.7816971776294395e-16, -1.3877787807814457e-16, -0.00946761174632727, -0.018999004681206338, -0.021275656766933562, -0.01538578047433059, -0.006189896743266159, 6.765421556309548e-17, 1.5785983631388945e-16, -0.004504862948400746, -0.008852119718170442, -0.009167112677298653, -0.00515156738195718, -9.367506770274758e-17, 0.002274143702108776, 1.7618254155999073e-17 ], "yaxis": "y" }, { "dx": 4.166666666666667e-10, "legendgroup": "Address: 1x1x1x1", "legendgrouptitle": { "text": "Address: 1x1x1x1" }, "name": "Drive pulse for Address: 1x1x1x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.0042269951712459045, 0.004619567700407537, 2.168404344971009e-18, -0.006974831491235099, -0.011634457261280299, -0.010783951979239901, -0.005334842556245105, -6.938893903907228e-18, -1.734723475976807e-18, -0.0069783596539128735, -0.017169608274176323, -0.023542546577411838, -0.02087404535871225, -0.010338763607263473, -3.469446951953614e-18, 2.0816681711721685e-17, -0.01492354586765221, -0.03832971551429832, -0.05387403700042097, -0.04370584938951447, -1.5265566588595902e-16, 0.0673448456647465, 0.1324800979508868, 0.16531846089118982, 0.14748567440780253, 0.08348830565661718, 3.122502256758253e-16, -0.06732577800360098, -0.09265959627694628, -0.07372017901363641, -0.03215894519879639, -1.3877787807814457e-16, -4.85722573273506e-17, -0.03185103745408114, -0.07298502545748001, -0.0938939880629706, -0.07858723970905634, -0.036931294333557886, 0.0, 1.8041124150158794e-16, -0.04662175081843477, -0.11521787696214034, -0.15620309405179844, -0.12249198676064713, -8.881784197001252e-16, 0.17732686037208137, 0.33891912458467166, 0.4114637368260352, 0.3575656760517341, 0.19738188483195004, 1.2490009027033011e-15, -0.1518028378369361, -0.2042939731220771, -0.15905507151184092, -0.06794547114447774, -5.273559366969494e-16, -1.8041124150158794e-16, -0.06342325523287573, -0.14263892893900004, -0.1801860904259313, -0.14814929747940925, -0.06841912817322429, 1.3877787807814457e-16, 6.661338147750939e-16, -0.0821462515560622, -0.19976826112106266, -0.2665771321340721, -0.2058158166177625, -2.192690473634684e-15, 0.2890185377937723, 0.5442223790465115, 0.6510671693503833, 0.5576263535836197, 0.3034326233941482, 2.6922908347160046e-15, -0.22686851315121054, -0.3011017315535369, -0.23122024141142541, -0.09743458914533423, -1.1379786002407855e-15, -4.440892098500626e-16, -0.08736020406264076, -0.1938923214599186, -0.24173526657014563, -0.19617824775547832, -0.08943247171532112, 3.608224830031759e-16, 1.304512053934559e-15, -0.10332054428232423, -0.2480883814639846, -0.3268945432242474, -0.24922434532628793, -3.469446951953614e-15, 0.34131152370534285, 0.634724257414742, 0.7499524484276169, 0.6344023736297895, 0.34096540143343657, 3.83026943495679e-15, -0.24871891888485542, -0.326065819606817, -0.2473335594826582, -0.10295372097254327, -1.6375789613221059e-15, -6.106226635438361e-16, -0.0889784155828934, -0.19508210150831407, -0.2402609550113967, -0.19261043978248582, -0.08673776745897165, 4.996003610813204e-16, 1.6375789613221059e-15, -0.09658940437233235, -0.2290943629945514, -0.29817626785705986, -0.2245454654112244, -3.83026943495679e-15, 0.300005656206678, 0.5510324374024965, 0.6430208092525219, 0.5372043826966446, 0.2851354635038683, 3.858025010572419e-15, -0.20282619419048634, -0.26255805052008846, -0.19664554553643107, -0.08081620379032706, -1.609823385706477e-15, -6.106226635438361e-16, -0.06719445152689447, -0.14541147297867604, -0.1767505027050352, -0.1398346216554358, -0.06213826820036302, 4.718447854656915e-16, 1.4155343563970746e-15, -0.06644329460927652, -0.1554378229396084, -0.1995164644384079, -0.1481536055840243, -2.9837243786801082e-15, 0.19237205091096662, 0.3482434324437126, 0.4004466889866105, 0.32960088750324634, 0.17232115050806446, 2.706168622523819e-15, -0.11884770022722971, -0.15143236963908957, -0.11160533134366799, -0.0451210109871977, -1.0824674490095276e-15, -3.885780586188048e-16, -0.035643952142240545, -0.07577312475011042, -0.09043912510774774, -0.0702246795023517, -0.03061239656005963, 2.914335439641036e-16, 8.049116928532385e-16, -0.03079569564361225, -0.07050039558017243, -0.08848715468200039, -0.064197762143899, -1.4710455076283324e-15, 0.07934800112556384, 0.1399177208449849, 0.15653060784358513, 0.12517517568006448, 0.06348729868486756, 1.1206313654810174e-15, -0.04099025975332778, -0.05037724874786252, -0.0357246832678616, -0.013858673633121567, -3.7816971776294395e-16, -1.3877787807814457e-16, -0.00946761174632727, -0.018999004681206338, -0.021275656766933562, -0.01538578047433059, -0.006189896743266159, 6.765421556309548e-17, 1.5785983631388945e-16, -0.004504862948400746, -0.008852119718170442, -0.009167112677298653, -0.00515156738195718, -9.367506770274758e-17, 0.002274143702108776, 1.7618254155999073e-17 ], "yaxis": "y" }, { "dx": 4.166666666666667e-10, "legendgroup": "Address: 1x1x1x1", "legendgrouptitle": { "text": "Address: 1x1x1x1" }, "name": "Drive pulse for Address: 1x1x1x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.0042269951712459045, 0.004619567700407537, 2.168404344971009e-18, -0.006974831491235099, -0.011634457261280299, -0.010783951979239901, -0.005334842556245105, -6.938893903907228e-18, -1.734723475976807e-18, -0.0069783596539128735, -0.017169608274176323, -0.023542546577411838, -0.02087404535871225, -0.010338763607263473, -3.469446951953614e-18, 2.0816681711721685e-17, -0.01492354586765221, -0.03832971551429832, -0.05387403700042097, -0.04370584938951447, -1.5265566588595902e-16, 0.0673448456647465, 0.1324800979508868, 0.16531846089118982, 0.14748567440780253, 0.08348830565661718, 3.122502256758253e-16, -0.06732577800360098, -0.09265959627694628, -0.07372017901363641, -0.03215894519879639, -1.3877787807814457e-16, -4.85722573273506e-17, -0.03185103745408114, -0.07298502545748001, -0.0938939880629706, -0.07858723970905634, -0.036931294333557886, 0.0, 1.8041124150158794e-16, -0.04662175081843477, -0.11521787696214034, -0.15620309405179844, -0.12249198676064713, -8.881784197001252e-16, 0.17732686037208137, 0.33891912458467166, 0.4114637368260352, 0.3575656760517341, 0.19738188483195004, 1.2490009027033011e-15, -0.1518028378369361, -0.2042939731220771, -0.15905507151184092, -0.06794547114447774, -5.273559366969494e-16, -1.8041124150158794e-16, -0.06342325523287573, -0.14263892893900004, -0.1801860904259313, -0.14814929747940925, -0.06841912817322429, 1.3877787807814457e-16, 6.661338147750939e-16, -0.0821462515560622, -0.19976826112106266, -0.2665771321340721, -0.2058158166177625, -2.192690473634684e-15, 0.2890185377937723, 0.5442223790465115, 0.6510671693503833, 0.5576263535836197, 0.3034326233941482, 2.6922908347160046e-15, -0.22686851315121054, -0.3011017315535369, -0.23122024141142541, -0.09743458914533423, -1.1379786002407855e-15, -4.440892098500626e-16, -0.08736020406264076, -0.1938923214599186, -0.24173526657014563, -0.19617824775547832, -0.08943247171532112, 3.608224830031759e-16, 1.304512053934559e-15, -0.10332054428232423, -0.2480883814639846, -0.3268945432242474, -0.24922434532628793, -3.469446951953614e-15, 0.34131152370534285, 0.634724257414742, 0.7499524484276169, 0.6344023736297895, 0.34096540143343657, 3.83026943495679e-15, -0.24871891888485542, -0.326065819606817, -0.2473335594826582, -0.10295372097254327, -1.6375789613221059e-15, -6.106226635438361e-16, -0.0889784155828934, -0.19508210150831407, -0.2402609550113967, -0.19261043978248582, -0.08673776745897165, 4.996003610813204e-16, 1.6375789613221059e-15, -0.09658940437233235, -0.2290943629945514, -0.29817626785705986, -0.2245454654112244, -3.83026943495679e-15, 0.300005656206678, 0.5510324374024965, 0.6430208092525219, 0.5372043826966446, 0.2851354635038683, 3.858025010572419e-15, -0.20282619419048634, -0.26255805052008846, -0.19664554553643107, -0.08081620379032706, -1.609823385706477e-15, -6.106226635438361e-16, -0.06719445152689447, -0.14541147297867604, -0.1767505027050352, -0.1398346216554358, -0.06213826820036302, 4.718447854656915e-16, 1.4155343563970746e-15, -0.06644329460927652, -0.1554378229396084, -0.1995164644384079, -0.1481536055840243, -2.9837243786801082e-15, 0.19237205091096662, 0.3482434324437126, 0.4004466889866105, 0.32960088750324634, 0.17232115050806446, 2.706168622523819e-15, -0.11884770022722971, -0.15143236963908957, -0.11160533134366799, -0.0451210109871977, -1.0824674490095276e-15, -3.885780586188048e-16, -0.035643952142240545, -0.07577312475011042, -0.09043912510774774, -0.0702246795023517, -0.03061239656005963, 2.914335439641036e-16, 8.049116928532385e-16, -0.03079569564361225, -0.07050039558017243, -0.08848715468200039, -0.064197762143899, -1.4710455076283324e-15, 0.07934800112556384, 0.1399177208449849, 0.15653060784358513, 0.12517517568006448, 0.06348729868486756, 1.1206313654810174e-15, -0.04099025975332778, -0.05037724874786252, -0.0357246832678616, -0.013858673633121567, -3.7816971776294395e-16, -1.3877787807814457e-16, -0.00946761174632727, -0.018999004681206338, -0.021275656766933562, -0.01538578047433059, -0.006189896743266159, 6.765421556309548e-17, 1.5785983631388945e-16, -0.004504862948400746, -0.008852119718170442, -0.009167112677298653, -0.00515156738195718, -9.367506770274758e-17, 0.002274143702108776, 1.7618254155999073e-17 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "Address: 1x1x2x1", "legendgrouptitle": { "text": "Address: 1x1x2x1" }, "name": "Integration filter for Address: 1x1x2x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.002127936493045502, 0.0024339856838411344, 5.854691731421724e-18, -0.004607133337712846, -0.00951721991721757, -0.012403016642058297, -0.01159906151079783, -0.006955511353425966, -5.811323644522304e-17, 0.006698294317831115, 0.010684540721639237, 0.010753265288244544, 0.007510908732814531, 0.003071195122571974, 1.717376241217039e-16, 1.4311468676808659e-16, 0.002978019330590231, 0.0069841247538261295, 0.009109133493390629, 0.006957511456178638, -3.5301622736128024e-16, -0.009882932106831947, -0.019010863864386413, -0.023470663320816404, -0.020957917832013038, -0.012014458749831947, 6.036837696399289e-16, 0.010306555398278096, 0.014920462653827288, 0.012669176473157535, 0.005994484473238713, -5.620504062164855e-16, -9.020562075079397e-16, 0.008588537781163592, 0.023614867724139756, 0.038206039353466795, 0.04316497995550242, 0.03100304901167563, 1.2975731600306517e-15, -0.043562689527856906, -0.08629634771669903, -0.11183275201090365, -0.1069063217834258, -0.06712128945026073, -1.8006429680639258e-15, 0.07623197484139527, 0.13808909304111788, 0.1647632329727502, 0.14569458415990189, 0.0848634210250807, 2.4390212072233908e-15, -0.08320509749584756, -0.13987217431709426, -0.15445907341368476, -0.12584850334198194, -0.06709550231284753, -3.191891195797325e-15, 0.05331342773596457, 0.07847512471908025, 0.07346638124858983, 0.04805159123146861, 0.01850288796036606, 4.093947403305265e-15, 3.1502578323738817e-15, 0.015385609288033628, 0.03452255390628134, 0.043202008251646655, 0.031740529527524736, -5.10702591327572e-15, -0.04199160693295571, -0.0781768486272498, -0.09356784215246082, -0.0811213130116218, -0.04521477903360649, 6.1547988927657116e-15, 0.03680310213856962, 0.051984529299498, 0.043111656351096456, 0.019941336088532387, -4.558853294867049e-15, -7.174816296640074e-15, 0.026824084986938085, 0.07232553256762195, 0.11482082968807282, 0.12736994572569232, 0.0898740730750221, 8.243405957841787e-15, -0.12207267852720341, -0.23792977806638932, -0.3035096069745155, -0.2857178843360212, -0.1767251702457939, -9.547918011776346e-15, 0.19501457064185931, 0.3483855649242691, 0.41008294429725006, 0.35784761578278285, 0.2057522874548403, 1.1178558079194545e-14, -0.1967283362494189, -0.3267085810907445, -0.35649915950375005, -0.28708325629711406, -0.15130813960851286, -1.304512053934559e-14, 0.11756822617970668, 0.17117999302045767, 0.15854627396373167, 0.10261172075594958, 0.039104139708287605, 1.5126788710517758e-14, 1.1518563880485999e-14, 0.03154887428352013, 0.07010133939616939, 0.08688407352799817, 0.06322946859279749, -1.7139067942650854e-14, -0.08210436367517038, -0.15146317589801098, -0.17965062690440925, -0.15436774897673058, -0.08528369517765363, 1.8832158055204218e-14, 0.06822209256645934, 0.09554383159788701, 0.0785686899120494, 0.03603896235626482, -1.3058998327153404e-14, -2.0289325775024736e-14, 0.04729785384348012, 0.12650467145558458, 0.19923466398687653, 0.21926550364358038, 0.1535061228605335, 2.1593837828959295e-14, -0.205290164598254, -0.39707000283055244, -0.5026717014279731, -0.46964251202317064, -0.28831672087786947, -2.3397950243975174e-14, 0.31346473396821495, 0.5558902745167815, 0.6495737397076525, 0.562733245579443, 0.32122995172784274, 2.578492974691926e-14, -0.3027800912475544, -0.4992773720570167, -0.5409755868660533, -0.4325946702069116, -0.22641518291208304, -2.856048730848215e-14, 0.17350762437728745, 0.2508973270138213, 0.23079553256870824, 0.1483577067849436, 0.056155291837491794, 3.1252778143198157e-14, 2.3550605909861133e-14, 0.044400755584215995, 0.09800217874211858, 0.12066007685477675, 0.08723036620075836, -3.329281295094688e-14, -0.11178787935924975, -0.20487570094320712, -0.2414217879461941, -0.20609987913171415, -0.11312782247711498, 3.462508058049707e-14, 0.08933430104910088, 0.1243090767439891, 0.10156974822247442, 0.046292353044864974, -2.2995494397548555e-14, -3.524958103184872e-14, 0.059605572856768374, 0.1584168507855105, 0.24792214542249139, 0.2711329744938629, 0.1886275477754933, 3.5915714846623814e-14, -0.24911439254982415, -0.478829843768234, -0.602402782074067, -0.5593235203205859, -0.34124257541206526, -3.697042672001771e-14, 0.3664294506767536, 0.6458043858221172, 0.7499881738600881, 0.6457229242234511, 0.36633701150701903, 3.870515019599452e-14, -0.341070408935198, -0.5589707723848063, -0.6019468679346883, -0.47840703401408424, -0.24886298232677817, -4.091171845743702e-14, 0.1883895469243671, 0.2707566180573343, 0.24754667183250995, 0.1581568984876042, 0.059500222120200064, 4.2799097599299785e-14, 3.2029934260435766e-14, 0.04619293887681651, 0.10133873774667534, 0.12401056338104408, 0.08910842196325351, -4.378442053365461e-14, -0.11281298623158502, -0.2055000290835214, -0.2406883261721476, -0.2042270947161835, -0.11141967588828389, 4.336808689942018e-14, 0.08692068914510392, 0.1202162236200973, 0.0976290678885621, 0.044225994489490904, -2.7672308888782027e-14, -4.213296378452469e-14, 0.055912490603911486, 0.14769700264698316, 0.22973770333053023, 0.24971469523021372, 0.17266714026255056, 4.1022740759899534e-14, -0.22525914300355226, -0.4303291030157899, -0.5380712066045563, -0.4965309862215107, -0.30107453463804207, -4.0495384823202585e-14, 0.3193351611346284, 0.5593389131177581, 0.6455687527124617, 0.552388363667408, 0.3114478618375655, 4.078681836716669e-14, -0.2863837435931238, -0.4664300988713389, -0.4991648863690211, -0.3942456224726907, -0.20380176086145424, -4.132805209167145e-14, 0.15235081223398372, 0.21758485402321404, 0.19767979375182854, 0.12549970599191185, 0.046915470939513454, 4.132805209167145e-14, 3.0656033267462135e-14, 0.03573228007604877, 0.07788885210330701, 0.09470337859979294, 0.06761212094047328, -4.042599588416351e-14, -0.08449634620495988, -0.15291995543483475, -0.1779391997966449, -0.14999779719423195, -0.08129776333030622, 3.8344327712991344e-14, 0.06258924860355723, 0.08599113204507554, 0.06937015257300626, 0.031214945755739795, -2.366162821232365e-14, -3.5638159090467525e-14, 0.03867191665974032, 0.10146127693489254, 0.15674339348576977, 0.16920590017060078, 0.11619332515839575, 3.3084646133829665e-14, -0.14948896215763513, -0.28358389409745305, -0.3520938265463447, -0.32261604259764365, -0.1942303743017387, -3.1155633628543455e-14, 0.20306837554971452, 0.35311671998099164, 0.4045885400795868, 0.3436551799765789, 0.19233122620100973, 2.991357161974406e-14, -0.1742281740534142, -0.281627184477199, -0.29910642905703794, -0.23443217178498094, -0.12025437864939921, -2.8851920852446256e-14, 0.08849962425940949, 0.12539621854231492, 0.11301793203721995, 0.0711747892515934, 0.026391614608080455, 2.749189764728044e-14, 2.0247692411601292e-14, 0.019606764234001366, 0.04237861562125554, 0.05108870139215836, 0.036160306276598955, -2.5417168370012178e-14, -0.0444034106493616, -0.07964564610009309, -0.09184229635276911, -0.07671514958095442, -0.041195523960031774, 2.2717938641392266e-14, 0.031121713391627094, 0.04234774281146804, 0.03383011558980355, 0.015072545245745137, -1.3336554083309693e-14, -1.983135877736686e-14, 0.01810950170001209, 0.047014620192035735, 0.0718568632679951, 0.07672946019832852, 0.0521090450062105, 1.7187640199978205e-14, -0.06553138067451017, -0.12286734582575068, -0.1507402374257928, -0.13644856551843254, -0.0811341445914342, -1.5026174748911103e-14, 0.08267754548824777, 0.14187532841802053, 0.16036618671776612, 0.13433618292143232, 0.0741213800699433, 1.3249817909510853e-14, -0.06519050525093258, -0.10376983910038765, -0.1084849177600789, -0.08365914501117706, -0.042203015283297465, -1.1587952819525071e-14, 0.02999204000175862, 0.04172494549480818, 0.036901263229818945, 0.022788749992823733, 0.008280547267694255, 9.797718192317006e-15, 7.0637939941775585e-15, 0.0057618188947608446, 0.012163398615287303, 0.014307177942279464, 0.009869905904687634, -7.806255641895632e-15, -0.011471745183872808, -0.019978403921491705, -0.0223339955960643, -0.01805528938400902, -0.009366421893108583, 5.741067343745243e-15, 0.00656200610342199, 0.00856720854549632, 0.006548114949266579, 0.0027823466386726514, -2.6818824938601438e-15, -3.779962454153463e-15, 0.002830682834420799, 0.00688152423950654, 0.00978345156461368, 0.009640282553244799, 0.005983011959308993, 2.0426368929626904e-15, -0.006039821651796874, -0.00986621052012139, -0.010256707575750562, -0.007555267093033955, -0.0034287030403753783, -4.936372491326502e-16, 0.0012075436243174351, 1.792495510762616e-17 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "Address: 1x1x2x1", "legendgrouptitle": { "text": "Address: 1x1x2x1" }, "name": "Integration filter for Address: 1x1x2x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.002127936493045502, 0.0024339856838411344, 5.854691731421724e-18, -0.004607133337712846, -0.00951721991721757, -0.012403016642058297, -0.01159906151079783, -0.006955511353425966, -5.811323644522304e-17, 0.006698294317831115, 0.010684540721639237, 0.010753265288244544, 0.007510908732814531, 0.003071195122571974, 1.717376241217039e-16, 1.4311468676808659e-16, 0.002978019330590231, 0.0069841247538261295, 0.009109133493390629, 0.006957511456178638, -3.5301622736128024e-16, -0.009882932106831947, -0.019010863864386413, -0.023470663320816404, -0.020957917832013038, -0.012014458749831947, 6.036837696399289e-16, 0.010306555398278096, 0.014920462653827288, 0.012669176473157535, 0.005994484473238713, -5.620504062164855e-16, -9.020562075079397e-16, 0.008588537781163592, 0.023614867724139756, 0.038206039353466795, 0.04316497995550242, 0.03100304901167563, 1.2975731600306517e-15, -0.043562689527856906, -0.08629634771669903, -0.11183275201090365, -0.1069063217834258, -0.06712128945026073, -1.8006429680639258e-15, 0.07623197484139527, 0.13808909304111788, 0.1647632329727502, 0.14569458415990189, 0.0848634210250807, 2.4390212072233908e-15, -0.08320509749584756, -0.13987217431709426, -0.15445907341368476, -0.12584850334198194, -0.06709550231284753, -3.191891195797325e-15, 0.05331342773596457, 0.07847512471908025, 0.07346638124858983, 0.04805159123146861, 0.01850288796036606, 4.093947403305265e-15, 3.1502578323738817e-15, 0.015385609288033628, 0.03452255390628134, 0.043202008251646655, 0.031740529527524736, -5.10702591327572e-15, -0.04199160693295571, -0.0781768486272498, -0.09356784215246082, -0.0811213130116218, -0.04521477903360649, 6.1547988927657116e-15, 0.03680310213856962, 0.051984529299498, 0.043111656351096456, 0.019941336088532387, -4.558853294867049e-15, -7.174816296640074e-15, 0.026824084986938085, 0.07232553256762195, 0.11482082968807282, 0.12736994572569232, 0.0898740730750221, 8.243405957841787e-15, -0.12207267852720341, -0.23792977806638932, -0.3035096069745155, -0.2857178843360212, -0.1767251702457939, -9.547918011776346e-15, 0.19501457064185931, 0.3483855649242691, 0.41008294429725006, 0.35784761578278285, 0.2057522874548403, 1.1178558079194545e-14, -0.1967283362494189, -0.3267085810907445, -0.35649915950375005, -0.28708325629711406, -0.15130813960851286, -1.304512053934559e-14, 0.11756822617970668, 0.17117999302045767, 0.15854627396373167, 0.10261172075594958, 0.039104139708287605, 1.5126788710517758e-14, 1.1518563880485999e-14, 0.03154887428352013, 0.07010133939616939, 0.08688407352799817, 0.06322946859279749, -1.7139067942650854e-14, -0.08210436367517038, -0.15146317589801098, -0.17965062690440925, -0.15436774897673058, -0.08528369517765363, 1.8832158055204218e-14, 0.06822209256645934, 0.09554383159788701, 0.0785686899120494, 0.03603896235626482, -1.3058998327153404e-14, -2.0289325775024736e-14, 0.04729785384348012, 0.12650467145558458, 0.19923466398687653, 0.21926550364358038, 0.1535061228605335, 2.1593837828959295e-14, -0.205290164598254, -0.39707000283055244, -0.5026717014279731, -0.46964251202317064, -0.28831672087786947, -2.3397950243975174e-14, 0.31346473396821495, 0.5558902745167815, 0.6495737397076525, 0.562733245579443, 0.32122995172784274, 2.578492974691926e-14, -0.3027800912475544, -0.4992773720570167, -0.5409755868660533, -0.4325946702069116, -0.22641518291208304, -2.856048730848215e-14, 0.17350762437728745, 0.2508973270138213, 0.23079553256870824, 0.1483577067849436, 0.056155291837491794, 3.1252778143198157e-14, 2.3550605909861133e-14, 0.044400755584215995, 0.09800217874211858, 0.12066007685477675, 0.08723036620075836, -3.329281295094688e-14, -0.11178787935924975, -0.20487570094320712, -0.2414217879461941, -0.20609987913171415, -0.11312782247711498, 3.462508058049707e-14, 0.08933430104910088, 0.1243090767439891, 0.10156974822247442, 0.046292353044864974, -2.2995494397548555e-14, -3.524958103184872e-14, 0.059605572856768374, 0.1584168507855105, 0.24792214542249139, 0.2711329744938629, 0.1886275477754933, 3.5915714846623814e-14, -0.24911439254982415, -0.478829843768234, -0.602402782074067, -0.5593235203205859, -0.34124257541206526, -3.697042672001771e-14, 0.3664294506767536, 0.6458043858221172, 0.7499881738600881, 0.6457229242234511, 0.36633701150701903, 3.870515019599452e-14, -0.341070408935198, -0.5589707723848063, -0.6019468679346883, -0.47840703401408424, -0.24886298232677817, -4.091171845743702e-14, 0.1883895469243671, 0.2707566180573343, 0.24754667183250995, 0.1581568984876042, 0.059500222120200064, 4.2799097599299785e-14, 3.2029934260435766e-14, 0.04619293887681651, 0.10133873774667534, 0.12401056338104408, 0.08910842196325351, -4.378442053365461e-14, -0.11281298623158502, -0.2055000290835214, -0.2406883261721476, -0.2042270947161835, -0.11141967588828389, 4.336808689942018e-14, 0.08692068914510392, 0.1202162236200973, 0.0976290678885621, 0.044225994489490904, -2.7672308888782027e-14, -4.213296378452469e-14, 0.055912490603911486, 0.14769700264698316, 0.22973770333053023, 0.24971469523021372, 0.17266714026255056, 4.1022740759899534e-14, -0.22525914300355226, -0.4303291030157899, -0.5380712066045563, -0.4965309862215107, -0.30107453463804207, -4.0495384823202585e-14, 0.3193351611346284, 0.5593389131177581, 0.6455687527124617, 0.552388363667408, 0.3114478618375655, 4.078681836716669e-14, -0.2863837435931238, -0.4664300988713389, -0.4991648863690211, -0.3942456224726907, -0.20380176086145424, -4.132805209167145e-14, 0.15235081223398372, 0.21758485402321404, 0.19767979375182854, 0.12549970599191185, 0.046915470939513454, 4.132805209167145e-14, 3.0656033267462135e-14, 0.03573228007604877, 0.07788885210330701, 0.09470337859979294, 0.06761212094047328, -4.042599588416351e-14, -0.08449634620495988, -0.15291995543483475, -0.1779391997966449, -0.14999779719423195, -0.08129776333030622, 3.8344327712991344e-14, 0.06258924860355723, 0.08599113204507554, 0.06937015257300626, 0.031214945755739795, -2.366162821232365e-14, -3.5638159090467525e-14, 0.03867191665974032, 0.10146127693489254, 0.15674339348576977, 0.16920590017060078, 0.11619332515839575, 3.3084646133829665e-14, -0.14948896215763513, -0.28358389409745305, -0.3520938265463447, -0.32261604259764365, -0.1942303743017387, -3.1155633628543455e-14, 0.20306837554971452, 0.35311671998099164, 0.4045885400795868, 0.3436551799765789, 0.19233122620100973, 2.991357161974406e-14, -0.1742281740534142, -0.281627184477199, -0.29910642905703794, -0.23443217178498094, -0.12025437864939921, -2.8851920852446256e-14, 0.08849962425940949, 0.12539621854231492, 0.11301793203721995, 0.0711747892515934, 0.026391614608080455, 2.749189764728044e-14, 2.0247692411601292e-14, 0.019606764234001366, 0.04237861562125554, 0.05108870139215836, 0.036160306276598955, -2.5417168370012178e-14, -0.0444034106493616, -0.07964564610009309, -0.09184229635276911, -0.07671514958095442, -0.041195523960031774, 2.2717938641392266e-14, 0.031121713391627094, 0.04234774281146804, 0.03383011558980355, 0.015072545245745137, -1.3336554083309693e-14, -1.983135877736686e-14, 0.01810950170001209, 0.047014620192035735, 0.0718568632679951, 0.07672946019832852, 0.0521090450062105, 1.7187640199978205e-14, -0.06553138067451017, -0.12286734582575068, -0.1507402374257928, -0.13644856551843254, -0.0811341445914342, -1.5026174748911103e-14, 0.08267754548824777, 0.14187532841802053, 0.16036618671776612, 0.13433618292143232, 0.0741213800699433, 1.3249817909510853e-14, -0.06519050525093258, -0.10376983910038765, -0.1084849177600789, -0.08365914501117706, -0.042203015283297465, -1.1587952819525071e-14, 0.02999204000175862, 0.04172494549480818, 0.036901263229818945, 0.022788749992823733, 0.008280547267694255, 9.797718192317006e-15, 7.0637939941775585e-15, 0.0057618188947608446, 0.012163398615287303, 0.014307177942279464, 0.009869905904687634, -7.806255641895632e-15, -0.011471745183872808, -0.019978403921491705, -0.0223339955960643, -0.01805528938400902, -0.009366421893108583, 5.741067343745243e-15, 0.00656200610342199, 0.00856720854549632, 0.006548114949266579, 0.0027823466386726514, -2.6818824938601438e-15, -3.779962454153463e-15, 0.002830682834420799, 0.00688152423950654, 0.00978345156461368, 0.009640282553244799, 0.005983011959308993, 2.0426368929626904e-15, -0.006039821651796874, -0.00986621052012139, -0.010256707575750562, -0.007555267093033955, -0.0034287030403753783, -4.936372491326502e-16, 0.0012075436243174351, 1.792495510762616e-17 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "Address: 1x1x2x1", "legendgrouptitle": { "text": "Address: 1x1x2x1" }, "name": "Integration filter for Address: 1x1x2x1", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 2.0816681711721685e-17, 0.002127936493045502, 0.0024339856838411344, 5.854691731421724e-18, -0.004607133337712846, -0.00951721991721757, -0.012403016642058297, -0.01159906151079783, -0.006955511353425966, -5.811323644522304e-17, 0.006698294317831115, 0.010684540721639237, 0.010753265288244544, 0.007510908732814531, 0.003071195122571974, 1.717376241217039e-16, 1.4311468676808659e-16, 0.002978019330590231, 0.0069841247538261295, 0.009109133493390629, 0.006957511456178638, -3.5301622736128024e-16, -0.009882932106831947, -0.019010863864386413, -0.023470663320816404, -0.020957917832013038, -0.012014458749831947, 6.036837696399289e-16, 0.010306555398278096, 0.014920462653827288, 0.012669176473157535, 0.005994484473238713, -5.620504062164855e-16, -9.020562075079397e-16, 0.008588537781163592, 0.023614867724139756, 0.038206039353466795, 0.04316497995550242, 0.03100304901167563, 1.2975731600306517e-15, -0.043562689527856906, -0.08629634771669903, -0.11183275201090365, -0.1069063217834258, -0.06712128945026073, -1.8006429680639258e-15, 0.07623197484139527, 0.13808909304111788, 0.1647632329727502, 0.14569458415990189, 0.0848634210250807, 2.4390212072233908e-15, -0.08320509749584756, -0.13987217431709426, -0.15445907341368476, -0.12584850334198194, -0.06709550231284753, -3.191891195797325e-15, 0.05331342773596457, 0.07847512471908025, 0.07346638124858983, 0.04805159123146861, 0.01850288796036606, 4.093947403305265e-15, 3.1502578323738817e-15, 0.015385609288033628, 0.03452255390628134, 0.043202008251646655, 0.031740529527524736, -5.10702591327572e-15, -0.04199160693295571, -0.0781768486272498, -0.09356784215246082, -0.0811213130116218, -0.04521477903360649, 6.1547988927657116e-15, 0.03680310213856962, 0.051984529299498, 0.043111656351096456, 0.019941336088532387, -4.558853294867049e-15, -7.174816296640074e-15, 0.026824084986938085, 0.07232553256762195, 0.11482082968807282, 0.12736994572569232, 0.0898740730750221, 8.243405957841787e-15, -0.12207267852720341, -0.23792977806638932, -0.3035096069745155, -0.2857178843360212, -0.1767251702457939, -9.547918011776346e-15, 0.19501457064185931, 0.3483855649242691, 0.41008294429725006, 0.35784761578278285, 0.2057522874548403, 1.1178558079194545e-14, -0.1967283362494189, -0.3267085810907445, -0.35649915950375005, -0.28708325629711406, -0.15130813960851286, -1.304512053934559e-14, 0.11756822617970668, 0.17117999302045767, 0.15854627396373167, 0.10261172075594958, 0.039104139708287605, 1.5126788710517758e-14, 1.1518563880485999e-14, 0.03154887428352013, 0.07010133939616939, 0.08688407352799817, 0.06322946859279749, -1.7139067942650854e-14, -0.08210436367517038, -0.15146317589801098, -0.17965062690440925, -0.15436774897673058, -0.08528369517765363, 1.8832158055204218e-14, 0.06822209256645934, 0.09554383159788701, 0.0785686899120494, 0.03603896235626482, -1.3058998327153404e-14, -2.0289325775024736e-14, 0.04729785384348012, 0.12650467145558458, 0.19923466398687653, 0.21926550364358038, 0.1535061228605335, 2.1593837828959295e-14, -0.205290164598254, -0.39707000283055244, -0.5026717014279731, -0.46964251202317064, -0.28831672087786947, -2.3397950243975174e-14, 0.31346473396821495, 0.5558902745167815, 0.6495737397076525, 0.562733245579443, 0.32122995172784274, 2.578492974691926e-14, -0.3027800912475544, -0.4992773720570167, -0.5409755868660533, -0.4325946702069116, -0.22641518291208304, -2.856048730848215e-14, 0.17350762437728745, 0.2508973270138213, 0.23079553256870824, 0.1483577067849436, 0.056155291837491794, 3.1252778143198157e-14, 2.3550605909861133e-14, 0.044400755584215995, 0.09800217874211858, 0.12066007685477675, 0.08723036620075836, -3.329281295094688e-14, -0.11178787935924975, -0.20487570094320712, -0.2414217879461941, -0.20609987913171415, -0.11312782247711498, 3.462508058049707e-14, 0.08933430104910088, 0.1243090767439891, 0.10156974822247442, 0.046292353044864974, -2.2995494397548555e-14, -3.524958103184872e-14, 0.059605572856768374, 0.1584168507855105, 0.24792214542249139, 0.2711329744938629, 0.1886275477754933, 3.5915714846623814e-14, -0.24911439254982415, -0.478829843768234, -0.602402782074067, -0.5593235203205859, -0.34124257541206526, -3.697042672001771e-14, 0.3664294506767536, 0.6458043858221172, 0.7499881738600881, 0.6457229242234511, 0.36633701150701903, 3.870515019599452e-14, -0.341070408935198, -0.5589707723848063, -0.6019468679346883, -0.47840703401408424, -0.24886298232677817, -4.091171845743702e-14, 0.1883895469243671, 0.2707566180573343, 0.24754667183250995, 0.1581568984876042, 0.059500222120200064, 4.2799097599299785e-14, 3.2029934260435766e-14, 0.04619293887681651, 0.10133873774667534, 0.12401056338104408, 0.08910842196325351, -4.378442053365461e-14, -0.11281298623158502, -0.2055000290835214, -0.2406883261721476, -0.2042270947161835, -0.11141967588828389, 4.336808689942018e-14, 0.08692068914510392, 0.1202162236200973, 0.0976290678885621, 0.044225994489490904, -2.7672308888782027e-14, -4.213296378452469e-14, 0.055912490603911486, 0.14769700264698316, 0.22973770333053023, 0.24971469523021372, 0.17266714026255056, 4.1022740759899534e-14, -0.22525914300355226, -0.4303291030157899, -0.5380712066045563, -0.4965309862215107, -0.30107453463804207, -4.0495384823202585e-14, 0.3193351611346284, 0.5593389131177581, 0.6455687527124617, 0.552388363667408, 0.3114478618375655, 4.078681836716669e-14, -0.2863837435931238, -0.4664300988713389, -0.4991648863690211, -0.3942456224726907, -0.20380176086145424, -4.132805209167145e-14, 0.15235081223398372, 0.21758485402321404, 0.19767979375182854, 0.12549970599191185, 0.046915470939513454, 4.132805209167145e-14, 3.0656033267462135e-14, 0.03573228007604877, 0.07788885210330701, 0.09470337859979294, 0.06761212094047328, -4.042599588416351e-14, -0.08449634620495988, -0.15291995543483475, -0.1779391997966449, -0.14999779719423195, -0.08129776333030622, 3.8344327712991344e-14, 0.06258924860355723, 0.08599113204507554, 0.06937015257300626, 0.031214945755739795, -2.366162821232365e-14, -3.5638159090467525e-14, 0.03867191665974032, 0.10146127693489254, 0.15674339348576977, 0.16920590017060078, 0.11619332515839575, 3.3084646133829665e-14, -0.14948896215763513, -0.28358389409745305, -0.3520938265463447, -0.32261604259764365, -0.1942303743017387, -3.1155633628543455e-14, 0.20306837554971452, 0.35311671998099164, 0.4045885400795868, 0.3436551799765789, 0.19233122620100973, 2.991357161974406e-14, -0.1742281740534142, -0.281627184477199, -0.29910642905703794, -0.23443217178498094, -0.12025437864939921, -2.8851920852446256e-14, 0.08849962425940949, 0.12539621854231492, 0.11301793203721995, 0.0711747892515934, 0.026391614608080455, 2.749189764728044e-14, 2.0247692411601292e-14, 0.019606764234001366, 0.04237861562125554, 0.05108870139215836, 0.036160306276598955, -2.5417168370012178e-14, -0.0444034106493616, -0.07964564610009309, -0.09184229635276911, -0.07671514958095442, -0.041195523960031774, 2.2717938641392266e-14, 0.031121713391627094, 0.04234774281146804, 0.03383011558980355, 0.015072545245745137, -1.3336554083309693e-14, -1.983135877736686e-14, 0.01810950170001209, 0.047014620192035735, 0.0718568632679951, 0.07672946019832852, 0.0521090450062105, 1.7187640199978205e-14, -0.06553138067451017, -0.12286734582575068, -0.1507402374257928, -0.13644856551843254, -0.0811341445914342, -1.5026174748911103e-14, 0.08267754548824777, 0.14187532841802053, 0.16036618671776612, 0.13433618292143232, 0.0741213800699433, 1.3249817909510853e-14, -0.06519050525093258, -0.10376983910038765, -0.1084849177600789, -0.08365914501117706, -0.042203015283297465, -1.1587952819525071e-14, 0.02999204000175862, 0.04172494549480818, 0.036901263229818945, 0.022788749992823733, 0.008280547267694255, 9.797718192317006e-15, 7.0637939941775585e-15, 0.0057618188947608446, 0.012163398615287303, 0.014307177942279464, 0.009869905904687634, -7.806255641895632e-15, -0.011471745183872808, -0.019978403921491705, -0.0223339955960643, -0.01805528938400902, -0.009366421893108583, 5.741067343745243e-15, 0.00656200610342199, 0.00856720854549632, 0.006548114949266579, 0.0027823466386726514, -2.6818824938601438e-15, -3.779962454153463e-15, 0.002830682834420799, 0.00688152423950654, 0.00978345156461368, 0.009640282553244799, 0.005983011959308993, 2.0426368929626904e-15, -0.006039821651796874, -0.00986621052012139, -0.010256707575750562, -0.007555267093033955, -0.0034287030403753783, -4.936372491326502e-16, 0.0012075436243174351, 1.792495510762616e-17 ], "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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" } ], "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": [ "program.render(channel_subplots=False, mapper=mapper)" ] }, { "cell_type": "raw", "id": "e584f9d3", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We can run this program on hardware and acquire the resulting trace by again\n", "connecting our AWG output to our downconverter and digitizer." ] }, { "cell_type": "code", "execution_count": 8, "id": "e8d19b27", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:14.406732Z", "iopub.status.busy": "2025-10-02T01:30:14.406454Z", "iopub.status.idle": "2025-10-02T01:30:14.521060Z", "shell.execute_reply": "2025-10-02T01:30:14.520473Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "if run_on_hw:\n", " # initialize the backend pass\n", " backend = qcs.HclBackend(channel_mapper=mapper)\n", " # the executor returns the program populated with results\n", " program = qcs.Executor(backend).execute(program)\n", " # (optional) export the data to an HDF5 file\n", " program.to_hdf5(\"multiplexed_program.hdf5\")\n", "\n", "# we are loading a previously run program here for this example\n", "program = qcs.load(\"multiplexed_program.hdf5\")" ] }, { "cell_type": "raw", "id": "cf8ec0c1", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The acquired trace is a superposition of the three waveforms on each virtual channel." ] }, { "cell_type": "code", "execution_count": 9, "id": "5d51f4b6", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:14.523938Z", "iopub.status.busy": "2025-10-02T01:30:14.523693Z", "iopub.status.idle": "2025-10-02T01:30:14.639218Z", "shell.execute_reply": "2025-10-02T01:30:14.638529Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "digitizer, labels: (0,)", "legendgrouptitle": { "text": "digitizer, labels: (0,)" }, "name": "Re(V) for (Channels(labels=[0], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.007470702927093953, 0.008569335710490122, 0.0061523435870185494, 0.007690429483773187, 0.006591796700377017, 0.009228515380527824, 0.006591796700377017, 0.008129882597131655, 0.008349609153810889, 0.012084960617357865, 0.008569335710490122, 0.012304687174037099, 0.010986327833961695, 0.00900878882384859, 0.009667968493886292, 0.007250976370414719, 0.00791015604045242, 0.0035156249068677425, 0.002636718680150807, 0.004394531133584678, 0.0017578124534338713, 0.0030761717935092747, 0.002636718680150807, 0.0032958983501885086, 0.001977539010113105, 0.006811523257056251, 0.005712890473660082, 0.00505371080362238, 0.006372070143697783, 0.00791015604045242, 0.004833984246943146, 0.007031249813735485, 0.002636718680150807, 0.005712890473660082, 0.00395507802022621, 0.0032958983501885086, 0.002197265566792339, 0.002636718680150807, 0.0015380858967546374, 0.007470702927093953, 0.008569335710490122, 0.006591796700377017, 0.007250976370414719, 0.011645507503999397, 0.010546874720603228, 0.006372070143697783, 0.00791015604045242, 0.00395507802022621, 0.005493163916980848, 0.0015380858967546374, 0.0002197265566792339, 0.006372070143697783, 0.006372070143697783, 0.013183593400754035, 0.019775390101131052, 0.030102538265055045, 0.03186035071848892, 0.04174804576905444, 0.044165037892526016, 0.04724120968603529, 0.04680175657267682, 0.039111327088903636, 0.02922363203833811, 0.01691894486430101, 0.004394531133584678, -0.011425780947320163, -0.02307128845131956, -0.03361816317192279, -0.039111327088903636, -0.04086913954233751, -0.03999023331562057, -0.032958983501885086, -0.025708007131470367, -0.01406249962747097, -0.0059326170303393155, 0.004833984246943146, 0.00505371080362238, 0.007690429483773187, 0.004833984246943146, -0.0004394531133584678, -0.0032958983501885086, -0.013183593400754035, -0.018676757317734882, -0.022192382224602625, -0.026586913358187303, -0.01691894486430101, -0.011425780947320163, 0.002416992123471573, 0.01120605439064093, 0.019555663544451818, 0.02416992123471573, 0.02636718680150807, 0.025048827461432666, 0.018676757317734882, 0.0059326170303393155, -0.0035156249068677425, -0.013842773070791736, -0.018676757317734882, -0.019775390101131052, -0.007470702927093953, 0.011865234060678631, 0.04394531133584678, 0.07338866993086413, 0.11052245800965466, 0.14699706641840748, 0.17578124534338713, 0.19291991676436737, 0.1924804636510089, 0.1814941358170472, 0.1483154257584829, 0.10656737998942845, 0.05559081883984618, 0.0, -0.05449218605645001, -0.102392575412523, -0.1426025352848228, -0.16940917519968934, -0.17666015157010406, -0.1698486283130478, -0.14172362905810587, -0.10766601277282462, -0.07426757615758106, -0.037573241192149, -0.008789062267169356, 0.0061523435870185494, 0.014282226184150204, 0.0030761717935092747, -0.011865234060678631, -0.032958983501885086, -0.05581054539652541, -0.06987304502399638, -0.07822265417780727, -0.07734374795109034, -0.06328124832361937, -0.04262695199577138, -0.016479491750942543, 0.014282226184150204, 0.03867187397554517, 0.05405273294309154, 0.05603027195320465, 0.05009765492286533, 0.03098144449177198, 0.006372070143697783, -0.017797851091017947, -0.038012694305507466, -0.048559569026110694, -0.043066405109129846, -0.021533202554564923, 0.02021484321448952, 0.07009277158067562, 0.13293456679093651, 0.19643554167123511, 0.2540038995211944, 0.30366210133070126, 0.3258544835553039, 0.31794432751485147, 0.2819091722194571, 0.23049315795651637, 0.15952148014912382, 0.08349609153810889, 0.0032958983501885086, -0.0744873027142603, -0.14018554316135123, -0.19775390101131052, -0.23466796253342181, -0.24477538414066657, -0.2300537048431579, -0.1937988229910843, -0.1489746054285206, -0.09624023182550445, -0.05097656114958227, -0.017797851091017947, 0.004394531133584678, 0.015380858967546374, 0.0013183593400754035, -0.01406249962747097, -0.03779296774882823, -0.05888671719003469, -0.07602538861101493, -0.08415527120814659, -0.07800292762112804, -0.0641601545503363, -0.04064941298565827, -0.011865234060678631, 0.010327148163923994, 0.035156249068677425, 0.047021483129356056, 0.05295410015969537, 0.044165037892526016, 0.02922363203833811, 0.008789062267169356, -0.013623046514112502, -0.026806639914866537, -0.034497069398639724, -0.031201171048451215, -0.013183593400754035, 0.020434569771168754, 0.05778808440663852, 0.10019530984573066, 0.1476562460884452, 0.18500976072391495, 0.21291503342217766, 0.2210449160193093, 0.2184081973391585, 0.18808593251742423, 0.15117187099531293, 0.0997558567323722, 0.0505371080362238, 0.0, -0.0511962877062615, -0.08723144300165586, -0.11843261405010708, -0.12788085598731413, -0.12985839499742724, -0.1166748015966732, -0.09382323970203288, -0.07009277158067562, -0.04328613166580908, -0.01911621043109335, -0.00505371080362238, 0.0035156249068677425, 0.01010742160724476, 0.005493163916980848, -0.0035156249068677425, -0.012304687174037099, -0.02087402288452722, -0.026147460244828835, -0.03032226482173428, -0.027685546141583472, -0.019555663544451818, -0.010986327833961695, 0.0013183593400754035, 0.008569335710490122, 0.01735839797765948, 0.018676757317734882, 0.02197265566792339, 0.02087402288452722, 0.014282226184150204, 0.00900878882384859, 0.0035156249068677425, -0.002636718680150807, -0.0032958983501885086, -0.0015380858967546374, 0.004833984246943146, 0.013842773070791736, 0.023510741564678028, 0.03251953038852662, 0.04548339723260142, 0.052514647046336904, 0.05668945162324235, 0.05998534997343086, 0.05581054539652541, 0.04592285034595989, 0.04108886609901674, 0.028344725811621174, 0.01691894486430101, 0.004174804576905444, -0.006372070143697783, -0.015380858967546374, -0.01845703076105565, -0.02241210878128186, -0.019335936987772584, -0.016479491750942543, -0.010986327833961695, -0.007250976370414719, -0.0006591796700377017, 0.0017578124534338713, 0.005493163916980848, 0.007690429483773187, 0.004394531133584678, 0.007470702927093953, 0.004174804576905444, 0.004614257690263912, 0.005712890473660082, 0.0002197265566792339, 0.004833984246943146, 0.0035156249068677425, 0.00395507802022621, 0.0032958983501885086, 0.006372070143697783, 0.006591796700377017, 0.01120605439064093, 0.008349609153810889, 0.008569335710490122, 0.0061523435870185494, 0.008569335710490122, 0.006591796700377017, 0.008789062267169356, 0.006591796700377017, 0.006591796700377017, 0.004833984246943146, 0.0061523435870185494, 0.006591796700377017, 0.009667968493886292, 0.010766601277282462, 0.01010742160724476, 0.008349609153810889, 0.009887695050565526, 0.009667968493886292, 0.009887695050565526, 0.009667968493886292, 0.010986327833961695, 0.007470702927093953, 0.009667968493886292, 0.006811523257056251, 0.004394531133584678, 0.004394531133584678, 0.005712890473660082, 0.004394531133584678, 0.006811523257056251, 0.00791015604045242, 0.0059326170303393155, 0.0059326170303393155, 0.006372070143697783, 0.006591796700377017, 0.006591796700377017, 0.0061523435870185494, 0.00900878882384859, 0.0061523435870185494, 0.00791015604045242, 0.008129882597131655, 0.010986327833961695, 0.006811523257056251, 0.00900878882384859, 0.008789062267169356, 0.004174804576905444, 0.005273437360301614, 0.009667968493886292, 0.00505371080362238, 0.008569335710490122, 0.007031249813735485, 0.0061523435870185494, 0.007250976370414719, 0.0059326170303393155, 0.008129882597131655, 0.005712890473660082, 0.00791015604045242, 0.007031249813735485, 0.005712890473660082, 0.0059326170303393155, 0.0059326170303393155, 0.006591796700377017, 0.007470702927093953, 0.005493163916980848, 0.00505371080362238, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.00791015604045242, 0.00505371080362238, 0.006811523257056251, 0.007690429483773187, 0.008569335710490122, 0.009667968493886292, 0.00791015604045242, 0.006372070143697783, 0.005712890473660082, 0.007031249813735485, 0.006372070143697783, 0.00791015604045242, 0.008569335710490122, 0.005273437360301614, 0.0059326170303393155, 0.009667968493886292, 0.007031249813735485, 0.0030761717935092747, 0.005493163916980848, 0.008349609153810889, 0.005493163916980848, 0.007031249813735485, 0.005273437360301614, 0.004394531133584678, 0.0061523435870185494, 0.007250976370414719, 0.00900878882384859, 0.008789062267169356, 0.008129882597131655, 0.007470702927093953, 0.006811523257056251, 0.004614257690263912, 0.006591796700377017, 0.004833984246943146 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "digitizer, labels: (1,)", "legendgrouptitle": { "text": "digitizer, labels: (1,)" }, "name": "Re(V) for (Channels(labels=[1], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.007470702927093953, 0.008569335710490122, 0.0061523435870185494, 0.007690429483773187, 0.006591796700377017, 0.009228515380527824, 0.006591796700377017, 0.008129882597131655, 0.008349609153810889, 0.012084960617357865, 0.008569335710490122, 0.012304687174037099, 0.010986327833961695, 0.00900878882384859, 0.009667968493886292, 0.007250976370414719, 0.00791015604045242, 0.0035156249068677425, 0.002636718680150807, 0.004394531133584678, 0.0017578124534338713, 0.0030761717935092747, 0.002636718680150807, 0.0032958983501885086, 0.001977539010113105, 0.006811523257056251, 0.005712890473660082, 0.00505371080362238, 0.006372070143697783, 0.00791015604045242, 0.004833984246943146, 0.007031249813735485, 0.002636718680150807, 0.005712890473660082, 0.00395507802022621, 0.0032958983501885086, 0.002197265566792339, 0.002636718680150807, 0.0015380858967546374, 0.007470702927093953, 0.008569335710490122, 0.006591796700377017, 0.007250976370414719, 0.011645507503999397, 0.010546874720603228, 0.006372070143697783, 0.00791015604045242, 0.00395507802022621, 0.005493163916980848, 0.0015380858967546374, 0.0002197265566792339, 0.006372070143697783, 0.006372070143697783, 0.013183593400754035, 0.019775390101131052, 0.030102538265055045, 0.03186035071848892, 0.04174804576905444, 0.044165037892526016, 0.04724120968603529, 0.04680175657267682, 0.039111327088903636, 0.02922363203833811, 0.01691894486430101, 0.004394531133584678, -0.011425780947320163, -0.02307128845131956, -0.03361816317192279, -0.039111327088903636, -0.04086913954233751, -0.03999023331562057, -0.032958983501885086, -0.025708007131470367, -0.01406249962747097, -0.0059326170303393155, 0.004833984246943146, 0.00505371080362238, 0.007690429483773187, 0.004833984246943146, -0.0004394531133584678, -0.0032958983501885086, -0.013183593400754035, -0.018676757317734882, -0.022192382224602625, -0.026586913358187303, -0.01691894486430101, -0.011425780947320163, 0.002416992123471573, 0.01120605439064093, 0.019555663544451818, 0.02416992123471573, 0.02636718680150807, 0.025048827461432666, 0.018676757317734882, 0.0059326170303393155, -0.0035156249068677425, -0.013842773070791736, -0.018676757317734882, -0.019775390101131052, -0.007470702927093953, 0.011865234060678631, 0.04394531133584678, 0.07338866993086413, 0.11052245800965466, 0.14699706641840748, 0.17578124534338713, 0.19291991676436737, 0.1924804636510089, 0.1814941358170472, 0.1483154257584829, 0.10656737998942845, 0.05559081883984618, 0.0, -0.05449218605645001, -0.102392575412523, -0.1426025352848228, -0.16940917519968934, -0.17666015157010406, -0.1698486283130478, -0.14172362905810587, -0.10766601277282462, -0.07426757615758106, -0.037573241192149, -0.008789062267169356, 0.0061523435870185494, 0.014282226184150204, 0.0030761717935092747, -0.011865234060678631, -0.032958983501885086, -0.05581054539652541, -0.06987304502399638, -0.07822265417780727, -0.07734374795109034, -0.06328124832361937, -0.04262695199577138, -0.016479491750942543, 0.014282226184150204, 0.03867187397554517, 0.05405273294309154, 0.05603027195320465, 0.05009765492286533, 0.03098144449177198, 0.006372070143697783, -0.017797851091017947, -0.038012694305507466, -0.048559569026110694, -0.043066405109129846, -0.021533202554564923, 0.02021484321448952, 0.07009277158067562, 0.13293456679093651, 0.19643554167123511, 0.2540038995211944, 0.30366210133070126, 0.3258544835553039, 0.31794432751485147, 0.2819091722194571, 0.23049315795651637, 0.15952148014912382, 0.08349609153810889, 0.0032958983501885086, -0.0744873027142603, -0.14018554316135123, -0.19775390101131052, -0.23466796253342181, -0.24477538414066657, -0.2300537048431579, -0.1937988229910843, -0.1489746054285206, -0.09624023182550445, -0.05097656114958227, -0.017797851091017947, 0.004394531133584678, 0.015380858967546374, 0.0013183593400754035, -0.01406249962747097, -0.03779296774882823, -0.05888671719003469, -0.07602538861101493, -0.08415527120814659, -0.07800292762112804, -0.0641601545503363, -0.04064941298565827, -0.011865234060678631, 0.010327148163923994, 0.035156249068677425, 0.047021483129356056, 0.05295410015969537, 0.044165037892526016, 0.02922363203833811, 0.008789062267169356, -0.013623046514112502, -0.026806639914866537, -0.034497069398639724, -0.031201171048451215, -0.013183593400754035, 0.020434569771168754, 0.05778808440663852, 0.10019530984573066, 0.1476562460884452, 0.18500976072391495, 0.21291503342217766, 0.2210449160193093, 0.2184081973391585, 0.18808593251742423, 0.15117187099531293, 0.0997558567323722, 0.0505371080362238, 0.0, -0.0511962877062615, -0.08723144300165586, -0.11843261405010708, -0.12788085598731413, -0.12985839499742724, -0.1166748015966732, -0.09382323970203288, -0.07009277158067562, -0.04328613166580908, -0.01911621043109335, -0.00505371080362238, 0.0035156249068677425, 0.01010742160724476, 0.005493163916980848, -0.0035156249068677425, -0.012304687174037099, -0.02087402288452722, -0.026147460244828835, -0.03032226482173428, -0.027685546141583472, -0.019555663544451818, -0.010986327833961695, 0.0013183593400754035, 0.008569335710490122, 0.01735839797765948, 0.018676757317734882, 0.02197265566792339, 0.02087402288452722, 0.014282226184150204, 0.00900878882384859, 0.0035156249068677425, -0.002636718680150807, -0.0032958983501885086, -0.0015380858967546374, 0.004833984246943146, 0.013842773070791736, 0.023510741564678028, 0.03251953038852662, 0.04548339723260142, 0.052514647046336904, 0.05668945162324235, 0.05998534997343086, 0.05581054539652541, 0.04592285034595989, 0.04108886609901674, 0.028344725811621174, 0.01691894486430101, 0.004174804576905444, -0.006372070143697783, -0.015380858967546374, -0.01845703076105565, -0.02241210878128186, -0.019335936987772584, -0.016479491750942543, -0.010986327833961695, -0.007250976370414719, -0.0006591796700377017, 0.0017578124534338713, 0.005493163916980848, 0.007690429483773187, 0.004394531133584678, 0.007470702927093953, 0.004174804576905444, 0.004614257690263912, 0.005712890473660082, 0.0002197265566792339, 0.004833984246943146, 0.0035156249068677425, 0.00395507802022621, 0.0032958983501885086, 0.006372070143697783, 0.006591796700377017, 0.01120605439064093, 0.008349609153810889, 0.008569335710490122, 0.0061523435870185494, 0.008569335710490122, 0.006591796700377017, 0.008789062267169356, 0.006591796700377017, 0.006591796700377017, 0.004833984246943146, 0.0061523435870185494, 0.006591796700377017, 0.009667968493886292, 0.010766601277282462, 0.01010742160724476, 0.008349609153810889, 0.009887695050565526, 0.009667968493886292, 0.009887695050565526, 0.009667968493886292, 0.010986327833961695, 0.007470702927093953, 0.009667968493886292, 0.006811523257056251, 0.004394531133584678, 0.004394531133584678, 0.005712890473660082, 0.004394531133584678, 0.006811523257056251, 0.00791015604045242, 0.0059326170303393155, 0.0059326170303393155, 0.006372070143697783, 0.006591796700377017, 0.006591796700377017, 0.0061523435870185494, 0.00900878882384859, 0.0061523435870185494, 0.00791015604045242, 0.008129882597131655, 0.010986327833961695, 0.006811523257056251, 0.00900878882384859, 0.008789062267169356, 0.004174804576905444, 0.005273437360301614, 0.009667968493886292, 0.00505371080362238, 0.008569335710490122, 0.007031249813735485, 0.0061523435870185494, 0.007250976370414719, 0.0059326170303393155, 0.008129882597131655, 0.005712890473660082, 0.00791015604045242, 0.007031249813735485, 0.005712890473660082, 0.0059326170303393155, 0.0059326170303393155, 0.006591796700377017, 0.007470702927093953, 0.005493163916980848, 0.00505371080362238, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.00791015604045242, 0.00505371080362238, 0.006811523257056251, 0.007690429483773187, 0.008569335710490122, 0.009667968493886292, 0.00791015604045242, 0.006372070143697783, 0.005712890473660082, 0.007031249813735485, 0.006372070143697783, 0.00791015604045242, 0.008569335710490122, 0.005273437360301614, 0.0059326170303393155, 0.009667968493886292, 0.007031249813735485, 0.0030761717935092747, 0.005493163916980848, 0.008349609153810889, 0.005493163916980848, 0.007031249813735485, 0.005273437360301614, 0.004394531133584678, 0.0061523435870185494, 0.007250976370414719, 0.00900878882384859, 0.008789062267169356, 0.008129882597131655, 0.007470702927093953, 0.006811523257056251, 0.004614257690263912, 0.006591796700377017, 0.004833984246943146 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "digitizer, labels: (2,)", "legendgrouptitle": { "text": "digitizer, labels: (2,)" }, "name": "Re(V) for (Channels(labels=[2], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.007470702927093953, 0.008569335710490122, 0.0061523435870185494, 0.007690429483773187, 0.006591796700377017, 0.009228515380527824, 0.006591796700377017, 0.008129882597131655, 0.008349609153810889, 0.012084960617357865, 0.008569335710490122, 0.012304687174037099, 0.010986327833961695, 0.00900878882384859, 0.009667968493886292, 0.007250976370414719, 0.00791015604045242, 0.0035156249068677425, 0.002636718680150807, 0.004394531133584678, 0.0017578124534338713, 0.0030761717935092747, 0.002636718680150807, 0.0032958983501885086, 0.001977539010113105, 0.006811523257056251, 0.005712890473660082, 0.00505371080362238, 0.006372070143697783, 0.00791015604045242, 0.004833984246943146, 0.007031249813735485, 0.002636718680150807, 0.005712890473660082, 0.00395507802022621, 0.0032958983501885086, 0.002197265566792339, 0.002636718680150807, 0.0015380858967546374, 0.007470702927093953, 0.008569335710490122, 0.006591796700377017, 0.007250976370414719, 0.011645507503999397, 0.010546874720603228, 0.006372070143697783, 0.00791015604045242, 0.00395507802022621, 0.005493163916980848, 0.0015380858967546374, 0.0002197265566792339, 0.006372070143697783, 0.006372070143697783, 0.013183593400754035, 0.019775390101131052, 0.030102538265055045, 0.03186035071848892, 0.04174804576905444, 0.044165037892526016, 0.04724120968603529, 0.04680175657267682, 0.039111327088903636, 0.02922363203833811, 0.01691894486430101, 0.004394531133584678, -0.011425780947320163, -0.02307128845131956, -0.03361816317192279, -0.039111327088903636, -0.04086913954233751, -0.03999023331562057, -0.032958983501885086, -0.025708007131470367, -0.01406249962747097, -0.0059326170303393155, 0.004833984246943146, 0.00505371080362238, 0.007690429483773187, 0.004833984246943146, -0.0004394531133584678, -0.0032958983501885086, -0.013183593400754035, -0.018676757317734882, -0.022192382224602625, -0.026586913358187303, -0.01691894486430101, -0.011425780947320163, 0.002416992123471573, 0.01120605439064093, 0.019555663544451818, 0.02416992123471573, 0.02636718680150807, 0.025048827461432666, 0.018676757317734882, 0.0059326170303393155, -0.0035156249068677425, -0.013842773070791736, -0.018676757317734882, -0.019775390101131052, -0.007470702927093953, 0.011865234060678631, 0.04394531133584678, 0.07338866993086413, 0.11052245800965466, 0.14699706641840748, 0.17578124534338713, 0.19291991676436737, 0.1924804636510089, 0.1814941358170472, 0.1483154257584829, 0.10656737998942845, 0.05559081883984618, 0.0, -0.05449218605645001, -0.102392575412523, -0.1426025352848228, -0.16940917519968934, -0.17666015157010406, -0.1698486283130478, -0.14172362905810587, -0.10766601277282462, -0.07426757615758106, -0.037573241192149, -0.008789062267169356, 0.0061523435870185494, 0.014282226184150204, 0.0030761717935092747, -0.011865234060678631, -0.032958983501885086, -0.05581054539652541, -0.06987304502399638, -0.07822265417780727, -0.07734374795109034, -0.06328124832361937, -0.04262695199577138, -0.016479491750942543, 0.014282226184150204, 0.03867187397554517, 0.05405273294309154, 0.05603027195320465, 0.05009765492286533, 0.03098144449177198, 0.006372070143697783, -0.017797851091017947, -0.038012694305507466, -0.048559569026110694, -0.043066405109129846, -0.021533202554564923, 0.02021484321448952, 0.07009277158067562, 0.13293456679093651, 0.19643554167123511, 0.2540038995211944, 0.30366210133070126, 0.3258544835553039, 0.31794432751485147, 0.2819091722194571, 0.23049315795651637, 0.15952148014912382, 0.08349609153810889, 0.0032958983501885086, -0.0744873027142603, -0.14018554316135123, -0.19775390101131052, -0.23466796253342181, -0.24477538414066657, -0.2300537048431579, -0.1937988229910843, -0.1489746054285206, -0.09624023182550445, -0.05097656114958227, -0.017797851091017947, 0.004394531133584678, 0.015380858967546374, 0.0013183593400754035, -0.01406249962747097, -0.03779296774882823, -0.05888671719003469, -0.07602538861101493, -0.08415527120814659, -0.07800292762112804, -0.0641601545503363, -0.04064941298565827, -0.011865234060678631, 0.010327148163923994, 0.035156249068677425, 0.047021483129356056, 0.05295410015969537, 0.044165037892526016, 0.02922363203833811, 0.008789062267169356, -0.013623046514112502, -0.026806639914866537, -0.034497069398639724, -0.031201171048451215, -0.013183593400754035, 0.020434569771168754, 0.05778808440663852, 0.10019530984573066, 0.1476562460884452, 0.18500976072391495, 0.21291503342217766, 0.2210449160193093, 0.2184081973391585, 0.18808593251742423, 0.15117187099531293, 0.0997558567323722, 0.0505371080362238, 0.0, -0.0511962877062615, -0.08723144300165586, -0.11843261405010708, -0.12788085598731413, -0.12985839499742724, -0.1166748015966732, -0.09382323970203288, -0.07009277158067562, -0.04328613166580908, -0.01911621043109335, -0.00505371080362238, 0.0035156249068677425, 0.01010742160724476, 0.005493163916980848, -0.0035156249068677425, -0.012304687174037099, -0.02087402288452722, -0.026147460244828835, -0.03032226482173428, -0.027685546141583472, -0.019555663544451818, -0.010986327833961695, 0.0013183593400754035, 0.008569335710490122, 0.01735839797765948, 0.018676757317734882, 0.02197265566792339, 0.02087402288452722, 0.014282226184150204, 0.00900878882384859, 0.0035156249068677425, -0.002636718680150807, -0.0032958983501885086, -0.0015380858967546374, 0.004833984246943146, 0.013842773070791736, 0.023510741564678028, 0.03251953038852662, 0.04548339723260142, 0.052514647046336904, 0.05668945162324235, 0.05998534997343086, 0.05581054539652541, 0.04592285034595989, 0.04108886609901674, 0.028344725811621174, 0.01691894486430101, 0.004174804576905444, -0.006372070143697783, -0.015380858967546374, -0.01845703076105565, -0.02241210878128186, -0.019335936987772584, -0.016479491750942543, -0.010986327833961695, -0.007250976370414719, -0.0006591796700377017, 0.0017578124534338713, 0.005493163916980848, 0.007690429483773187, 0.004394531133584678, 0.007470702927093953, 0.004174804576905444, 0.004614257690263912, 0.005712890473660082, 0.0002197265566792339, 0.004833984246943146, 0.0035156249068677425, 0.00395507802022621, 0.0032958983501885086, 0.006372070143697783, 0.006591796700377017, 0.01120605439064093, 0.008349609153810889, 0.008569335710490122, 0.0061523435870185494, 0.008569335710490122, 0.006591796700377017, 0.008789062267169356, 0.006591796700377017, 0.006591796700377017, 0.004833984246943146, 0.0061523435870185494, 0.006591796700377017, 0.009667968493886292, 0.010766601277282462, 0.01010742160724476, 0.008349609153810889, 0.009887695050565526, 0.009667968493886292, 0.009887695050565526, 0.009667968493886292, 0.010986327833961695, 0.007470702927093953, 0.009667968493886292, 0.006811523257056251, 0.004394531133584678, 0.004394531133584678, 0.005712890473660082, 0.004394531133584678, 0.006811523257056251, 0.00791015604045242, 0.0059326170303393155, 0.0059326170303393155, 0.006372070143697783, 0.006591796700377017, 0.006591796700377017, 0.0061523435870185494, 0.00900878882384859, 0.0061523435870185494, 0.00791015604045242, 0.008129882597131655, 0.010986327833961695, 0.006811523257056251, 0.00900878882384859, 0.008789062267169356, 0.004174804576905444, 0.005273437360301614, 0.009667968493886292, 0.00505371080362238, 0.008569335710490122, 0.007031249813735485, 0.0061523435870185494, 0.007250976370414719, 0.0059326170303393155, 0.008129882597131655, 0.005712890473660082, 0.00791015604045242, 0.007031249813735485, 0.005712890473660082, 0.0059326170303393155, 0.0059326170303393155, 0.006591796700377017, 0.007470702927093953, 0.005493163916980848, 0.00505371080362238, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.007470702927093953, 0.00791015604045242, 0.00505371080362238, 0.006811523257056251, 0.007690429483773187, 0.008569335710490122, 0.009667968493886292, 0.00791015604045242, 0.006372070143697783, 0.005712890473660082, 0.007031249813735485, 0.006372070143697783, 0.00791015604045242, 0.008569335710490122, 0.005273437360301614, 0.0059326170303393155, 0.009667968493886292, 0.007031249813735485, 0.0030761717935092747, 0.005493163916980848, 0.008349609153810889, 0.005493163916980848, 0.007031249813735485, 0.005273437360301614, 0.004394531133584678, 0.0061523435870185494, 0.007250976370414719, 0.00900878882384859, 0.008789062267169356, 0.008129882597131655, 0.007470702927093953, 0.006811523257056251, 0.004614257690263912, 0.006591796700377017, 0.004833984246943146 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Trace data", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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" } ], "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": [ "program.plot_trace(channel_subplots=False)" ] }, { "cell_type": "raw", "id": "d8b73275", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Plotting the spectrum confirms that the tree tones are present. Note that since our LO\n", "frequency was set to 5 GHz, and our waveform frequencies are at 5.1 GHz, 5.2 GHz and\n", "5.3 GHz respectively, we expect to measure the frequencies 100 MHz, 200 MHz and 300\n", "MHz." ] }, { "cell_type": "code", "execution_count": 10, "id": "d0bf04f2", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:14.643698Z", "iopub.status.busy": "2025-10-02T01:30:14.643477Z", "iopub.status.idle": "2025-10-02T01:30:14.817629Z", "shell.execute_reply": "2025-10-02T01:30:14.816843Z" }, "lines_to_next_cell": 2 }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "digitizer, labels: (0,)", "legendgrouptitle": { "text": "digitizer, labels: (0,)" }, "name": "S(Re(V))^2 for (Channels(labels=[0], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x": [ 0.0, 2500000.0, 5000000.0, 7500000.0, 10000000.0, 12500000.0, 15000000.0, 17500000.0, 20000000.0, 22500000.0, 25000000.0, 27500000.0, 30000000.0, 32500000.0, 35000000.0, 37500000.0, 40000000.0, 42500000.0, 45000000.0, 47500000.0, 50000000.0, 52500000.0, 55000000.0, 57500000.0, 60000000.0, 62500000.0, 65000000.0, 67500000.0, 70000000.0, 72500000.0, 75000000.0, 77500000.0, 80000000.0, 82500000.0, 85000000.0, 87500000.0, 90000000.0, 92500000.0, 95000000.0, 97500000.0, 100000000.0, 102500000.0, 105000000.0, 107500000.0, 110000000.0, 112500000.0, 115000000.0, 117500000.0, 120000000.0, 122500000.0, 125000000.0, 127500000.0, 130000000.0, 132500000.0, 135000000.0, 137500000.0, 140000000.0, 142500000.0, 145000000.0, 147500000.0, 150000000.0, 152500000.0, 155000000.0, 157500000.0, 160000000.0, 162500000.0, 165000000.0, 167500000.0, 170000000.0, 172500000.0, 175000000.0, 177500000.0, 180000000.0, 182500000.0, 185000000.0, 187500000.0, 190000000.0, 192500000.0, 195000000.0, 197500000.0, 200000000.0, 202500000.0, 205000000.0, 207500000.0, 210000000.0, 212500000.0, 215000000.0, 217500000.0, 220000000.0, 222500000.0, 225000000.0, 227500000.0, 230000000.0, 232500000.0, 235000000.0, 237500000.0, 240000000.0, 242500000.0, 245000000.0, 247500000.0, 250000000.0, 252500000.0, 255000000.0, 257500000.0, 260000000.0, 262500000.0, 265000000.0, 267500000.0, 270000000.0, 272500000.0, 275000000.0, 277500000.0, 280000000.0, 282500000.0, 285000000.0, 287500000.0, 290000000.0, 292500000.0, 295000000.0, 297500000.0, 300000000.0, 302500000.0, 305000000.0, 307500000.0, 310000000.0, 312500000.0, 315000000.0, 317500000.0, 320000000.0, 322500000.0, 325000000.0, 327500000.0, 330000000.0, 332500000.0, 335000000.0, 337500000.0, 340000000.0, 342500000.0, 345000000.0, 347500000.0, 350000000.0, 352500000.0, 355000000.0, 357500000.0, 360000000.0, 362500000.0, 365000000.0, 367500000.0, 370000000.0, 372500000.0, 375000000.0, 377500000.0, 380000000.0, 382500000.0, 385000000.0, 387500000.0, 390000000.0, 392500000.0, 395000000.0, 397500000.0, 400000000.0, 402500000.0, 405000000.0, 407500000.0, 410000000.0, 412500000.0, 415000000.0, 417500000.0, 420000000.0, 422500000.0, 425000000.0, 427500000.0, 430000000.0, 432500000.0, 435000000.0, 437500000.0, 440000000.0, 442500000.0, 445000000.0, 447500000.0, 450000000.0, 452500000.0, 455000000.0, 457500000.0, 460000000.0, 462500000.0, 465000000.0, 467500000.0, 470000000.0, 472500000.0, 475000000.0, 477500000.0, 480000000.0, 482500000.0, 485000000.0, 487500000.0, 490000000.0, 492500000.0, 495000000.0, 497500000.0, 500000000.0, 502500000.0, 505000000.0, 507500000.0, 510000000.0, 512500000.0, 515000000.0, 517500000.0, 520000000.0, 522500000.0, 525000000.0, 527500000.0, 530000000.0, 532500000.0, 535000000.0, 537500000.0, 540000000.0, 542500000.0, 545000000.0, 547500000.0, 550000000.0, 552500000.0, 555000000.0, 557500000.0, 560000000.0, 562500000.0, 565000000.0, 567500000.0, 570000000.0, 572500000.0, 575000000.0, 577500000.0, 580000000.0, 582500000.0, 585000000.0, 587500000.0, 590000000.0, 592500000.0, 595000000.0, 597500000.0, 600000000.0, 602500000.0, 605000000.0, 607500000.0, 610000000.0, 612500000.0, 615000000.0, 617500000.0, 620000000.0, 622500000.0, 625000000.0, 627500000.0, 630000000.0, 632500000.0, 635000000.0, 637500000.0, 640000000.0, 642500000.0, 645000000.0, 647500000.0, 650000000.0, 652500000.0, 655000000.0, 657500000.0, 660000000.0, 662500000.0, 665000000.0, 667500000.0, 670000000.0, 672500000.0, 675000000.0, 677500000.0, 680000000.0, 682500000.0, 685000000.0, 687500000.0, 690000000.0, 692500000.0, 695000000.0, 697500000.0, 700000000.0, 702500000.0, 705000000.0, 707500000.0, 710000000.0, 712500000.0, 715000000.0, 717500000.0, 720000000.0, 722500000.0, 725000000.0, 727500000.0, 730000000.0, 732500000.0, 735000000.0, 737500000.0, 740000000.0, 742500000.0, 745000000.0, 747500000.0, 750000000.0, 752500000.0, 755000000.0, 757500000.0, 760000000.0, 762500000.0, 765000000.0, 767500000.0, 770000000.0, 772500000.0, 775000000.0, 777500000.0, 780000000.0, 782500000.0, 785000000.0, 787500000.0, 790000000.0, 792500000.0, 795000000.0, 797500000.0, 800000000.0, 802500000.0, 805000000.0, 807500000.0, 810000000.0, 812500000.0, 815000000.0, 817500000.0, 820000000.0, 822500000.0, 825000000.0, 827500000.0, 830000000.0, 832500000.0, 835000000.0, 837500000.0, 840000000.0, 842500000.0, 845000000.0, 847500000.0, 850000000.0, 852500000.0, 855000000.0, 857500000.0, 860000000.0, 862500000.0, 865000000.0, 867500000.0, 870000000.0, 872500000.0, 875000000.0, 877500000.0, 880000000.0, 882500000.0, 885000000.0, 887500000.0, 890000000.0, 892500000.0, 895000000.0, 897500000.0, 900000000.0, 902500000.0, 905000000.0, 907500000.0, 910000000.0, 912500000.0, 915000000.0, 917500000.0, 920000000.0, 922500000.0, 925000000.0, 927500000.0, 930000000.0, 932500000.0, 935000000.0, 937500000.0, 940000000.0, 942500000.0, 945000000.0, 947500000.0, 950000000.0, 952500000.0, 955000000.0, 957500000.0, 960000000.0, 962500000.0, 965000000.0, 967500000.0, 970000000.0, 972500000.0, 975000000.0, 977500000.0, 980000000.0, 982500000.0, 985000000.0, 987500000.0, 990000000.0, 992500000.0, 995000000.0, 997500000.0, 1000000000.0, 1002500000.0, 1005000000.0, 1007500000.0, 1010000000.0, 1012500000.0, 1015000000.0, 1017500000.0, 1020000000.0, 1022500000.0, 1025000000.0, 1027500000.0, 1030000000.0, 1032500000.0, 1035000000.0, 1037500000.0, 1040000000.0, 1042500000.0, 1045000000.0, 1047500000.0, 1050000000.0, 1052500000.0, 1055000000.0, 1057500000.0, 1060000000.0, 1062500000.0, 1065000000.0, 1067500000.0, 1070000000.0, 1072500000.0, 1075000000.0, 1077500000.0, 1080000000.0, 1082500000.0, 1085000000.0, 1087500000.0, 1090000000.0, 1092500000.0, 1095000000.0, 1097500000.0, 1100000000.0, 1102500000.0, 1105000000.0, 1107500000.0, 1110000000.0, 1112500000.0, 1115000000.0, 1117500000.0, 1120000000.0, 1122500000.0, 1125000000.0, 1127500000.0, 1130000000.0, 1132500000.0, 1135000000.0, 1137500000.0, 1140000000.0, 1142500000.0, 1145000000.0, 1147500000.0, 1150000000.0, 1152500000.0, 1155000000.0, 1157500000.0, 1160000000.0, 1162500000.0, 1165000000.0, 1167500000.0, 1170000000.0, 1172500000.0, 1175000000.0, 1177500000.0, 1180000000.0, 1182500000.0, 1185000000.0, 1187500000.0, 1190000000.0, 1192500000.0, 1195000000.0, 1197500000.0, 1200000000.0, 1202500000.0, 1205000000.0, 1207500000.0, 1210000000.0, 1212500000.0, 1215000000.0, 1217500000.0, 1220000000.0, 1222500000.0, 1225000000.0, 1227500000.0, 1230000000.0, 1232500000.0, 1235000000.0, 1237500000.0, 1240000000.0, 1242500000.0, 1245000000.0, 1247500000.0, 1250000000.0, 1252500000.0, 1255000000.0, 1257500000.0, 1260000000.0, 1262500000.0, 1265000000.0, 1267500000.0, 1270000000.0, 1272500000.0, 1275000000.0, 1277500000.0, 1280000000.0, 1282500000.0, 1285000000.0, 1287500000.0, 1290000000.0, 1292500000.0, 1295000000.0, 1297500000.0, 1300000000.0, 1302500000.0, 1305000000.0, 1307500000.0, 1310000000.0, 1312500000.0, 1315000000.0, 1317500000.0, 1320000000.0, 1322500000.0, 1325000000.0, 1327500000.0, 1330000000.0, 1332500000.0, 1335000000.0, 1337500000.0, 1340000000.0, 1342500000.0, 1345000000.0, 1347500000.0, 1350000000.0, 1352500000.0, 1355000000.0, 1357500000.0, 1360000000.0, 1362500000.0, 1365000000.0, 1367500000.0, 1370000000.0, 1372500000.0, 1375000000.0, 1377500000.0, 1380000000.0, 1382500000.0, 1385000000.0, 1387500000.0, 1390000000.0, 1392500000.0, 1395000000.0, 1397500000.0, 1400000000.0, 1402500000.0, 1405000000.0, 1407500000.0, 1410000000.0, 1412500000.0, 1415000000.0, 1417500000.0, 1420000000.0, 1422500000.0, 1425000000.0, 1427500000.0, 1430000000.0, 1432500000.0, 1435000000.0, 1437500000.0, 1440000000.0, 1442500000.0, 1445000000.0, 1447500000.0, 1450000000.0, 1452500000.0, 1455000000.0, 1457500000.0, 1460000000.0, 1462500000.0, 1465000000.0, 1467500000.0, 1470000000.0, 1472500000.0, 1475000000.0, 1477500000.0, 1480000000.0, 1482500000.0, 1485000000.0, 1487500000.0, 1490000000.0, 1492500000.0, 1495000000.0, 1497500000.0, 1500000000.0, 1502500000.0, 1505000000.0, 1507500000.0, 1510000000.0, 1512500000.0, 1515000000.0, 1517500000.0, 1520000000.0, 1522500000.0, 1525000000.0, 1527500000.0, 1530000000.0, 1532500000.0, 1535000000.0, 1537500000.0, 1540000000.0, 1542500000.0, 1545000000.0, 1547500000.0, 1550000000.0, 1552500000.0, 1555000000.0, 1557500000.0, 1560000000.0, 1562500000.0, 1565000000.0, 1567500000.0, 1570000000.0, 1572500000.0, 1575000000.0, 1577500000.0, 1580000000.0, 1582500000.0, 1585000000.0, 1587500000.0, 1590000000.0, 1592500000.0, 1595000000.0, 1597500000.0, 1600000000.0, 1602500000.0, 1605000000.0, 1607500000.0, 1610000000.0, 1612500000.0, 1615000000.0, 1617500000.0, 1620000000.0, 1622500000.0, 1625000000.0, 1627500000.0, 1630000000.0, 1632500000.0, 1635000000.0, 1637500000.0, 1640000000.0, 1642500000.0, 1645000000.0, 1647500000.0, 1650000000.0, 1652500000.0, 1655000000.0, 1657500000.0, 1660000000.0, 1662500000.0, 1665000000.0, 1667500000.0, 1670000000.0, 1672500000.0, 1675000000.0, 1677500000.0, 1680000000.0, 1682500000.0, 1685000000.0, 1687500000.0, 1690000000.0, 1692500000.0, 1695000000.0, 1697500000.0, 1700000000.0, 1702500000.0, 1705000000.0, 1707500000.0, 1710000000.0, 1712500000.0, 1715000000.0, 1717500000.0, 1720000000.0, 1722500000.0, 1725000000.0, 1727500000.0, 1730000000.0, 1732500000.0, 1735000000.0, 1737500000.0, 1740000000.0, 1742500000.0, 1745000000.0, 1747500000.0, 1750000000.0, 1752500000.0, 1755000000.0, 1757500000.0, 1760000000.0, 1762500000.0, 1765000000.0, 1767500000.0, 1770000000.0, 1772500000.0, 1775000000.0, 1777500000.0, 1780000000.0, 1782500000.0, 1785000000.0, 1787500000.0, 1790000000.0, 1792500000.0, 1795000000.0, 1797500000.0, 1800000000.0, 1802500000.0, 1805000000.0, 1807500000.0, 1810000000.0, 1812500000.0, 1815000000.0, 1817500000.0, 1820000000.0, 1822500000.0, 1825000000.0, 1827500000.0, 1830000000.0, 1832500000.0, 1835000000.0, 1837500000.0, 1840000000.0, 1842500000.0, 1845000000.0, 1847500000.0, 1850000000.0, 1852500000.0, 1855000000.0, 1857500000.0, 1860000000.0, 1862500000.0, 1865000000.0, 1867500000.0, 1870000000.0, 1872500000.0, 1875000000.0, 1877500000.0, 1880000000.0, 1882500000.0, 1885000000.0, 1887500000.0, 1890000000.0, 1892500000.0, 1895000000.0, 1897500000.0, 1900000000.0, 1902500000.0, 1905000000.0, 1907500000.0, 1910000000.0, 1912500000.0, 1915000000.0, 1917500000.0, 1920000000.0, 1922500000.0, 1925000000.0, 1927500000.0, 1930000000.0, 1932500000.0, 1935000000.0, 1937500000.0, 1940000000.0, 1942500000.0, 1945000000.0, 1947500000.0, 1950000000.0, 1952500000.0, 1955000000.0, 1957500000.0, 1960000000.0, 1962500000.0, 1965000000.0, 1967500000.0, 1970000000.0, 1972500000.0, 1975000000.0, 1977500000.0, 1980000000.0, 1982500000.0, 1985000000.0, 1987500000.0, 1990000000.0, 1992500000.0, 1995000000.0, 1997500000.0, 2000000000.0, 2002500000.0, 2005000000.0, 2007500000.0, 2010000000.0, 2012500000.0, 2015000000.0, 2017500000.0, 2020000000.0, 2022500000.0, 2025000000.0, 2027500000.0, 2030000000.0, 2032500000.0, 2035000000.0, 2037500000.0, 2040000000.0, 2042500000.0, 2045000000.0, 2047500000.0, 2050000000.0, 2052500000.0, 2055000000.0, 2057500000.0, 2060000000.0, 2062500000.0, 2065000000.0, 2067500000.0, 2070000000.0, 2072500000.0, 2075000000.0, 2077500000.0, 2080000000.0, 2082500000.0, 2085000000.0, 2087500000.0, 2090000000.0, 2092500000.0, 2095000000.0, 2097500000.0, 2100000000.0, 2102500000.0, 2105000000.0, 2107500000.0, 2110000000.0, 2112500000.0, 2115000000.0, 2117500000.0, 2120000000.0, 2122500000.0, 2125000000.0, 2127500000.0, 2130000000.0, 2132500000.0, 2135000000.0, 2137500000.0, 2140000000.0, 2142500000.0, 2145000000.0, 2147500000.0, 2150000000.0, 2152500000.0, 2155000000.0, 2157500000.0, 2160000000.0, 2162500000.0, 2165000000.0, 2167500000.0, 2170000000.0, 2172500000.0, 2175000000.0, 2177500000.0, 2180000000.0, 2182500000.0, 2185000000.0, 2187500000.0, 2190000000.0, 2192500000.0, 2195000000.0, 2197500000.0, 2200000000.0, 2202500000.0, 2205000000.0, 2207500000.0, 2210000000.0, 2212500000.0, 2215000000.0, 2217500000.0, 2220000000.0, 2222500000.0, 2225000000.0, 2227500000.0, 2230000000.0, 2232500000.0, 2235000000.0, 2237500000.0, 2240000000.0, 2242500000.0, 2245000000.0, 2247500000.0, 2250000000.0, 2252500000.0, 2255000000.0, 2257500000.0, 2260000000.0, 2262500000.0, 2265000000.0, 2267500000.0, 2270000000.0, 2272500000.0, 2275000000.0, 2277500000.0, 2280000000.0, 2282500000.0, 2285000000.0, 2287500000.0, 2290000000.0, 2292500000.0, 2295000000.0, 2297500000.0, 2300000000.0, 2302500000.0, 2305000000.0, 2307500000.0, 2310000000.0, 2312500000.0, 2315000000.0, 2317500000.0, 2320000000.0, 2322500000.0, 2325000000.0, 2327500000.0, 2330000000.0, 2332500000.0, 2335000000.0, 2337500000.0, 2340000000.0, 2342500000.0, 2345000000.0, 2347500000.0, 2350000000.0, 2352500000.0, 2355000000.0, 2357500000.0, 2360000000.0, 2362500000.0, 2365000000.0, 2367500000.0, 2370000000.0, 2372500000.0, 2375000000.0, 2377500000.0, 2380000000.0, 2382500000.0, 2385000000.0, 2387500000.0, 2390000000.0, 2392500000.0, 2395000000.0, 2397500000.0, 2400000000.0 ], "xaxis": "x", "y": [ 7.12131404399531, 6.236336386380126, 4.091848581704113, 1.8305525653910135, 0.40256110006488777, 0.001013819130745407, 0.1624971310787419, 0.31812364129184184, 0.2438905794956171, 0.07263291281191248, 6.168651191255588e-05, 0.05275197866966902, 0.11535803172314707, 0.10061526783204282, 0.03666725460537214, 0.0008052361801927893, 0.016696144700435334, 0.04191185403846137, 0.03665407846998644, 0.011447687333669033, 0.00016852793686007516, 0.008555449927097301, 0.011677274308476659, 0.0013408149062986935, 0.019501786724353497, 0.135947650914974, 0.40167700554158503, 0.8409412537740792, 1.5019976192373528, 2.523567857866196, 4.156206712994406, 6.711240395165735, 10.454421395302798, 15.487270839813851, 21.66597436007816, 28.59784949694264, 35.72042472425921, 42.41644740867277, 48.092982953709715, 52.19326049410766, 54.19131618489631, 53.65811347467966, 50.426608073036455, 44.766607360198506, 37.42290712014372, 29.441240420944254, 21.853450197709254, 15.390201134794845, 10.359308573098849, 6.708575780457649, 4.187806965426939, 2.5036457365312765, 1.4087197422759525, 0.7246807331384435, 0.32762155714234376, 0.12467264029470945, 0.03953483237503475, 0.011875083995789655, 0.003663456076616037, 0.0003205815762272392, 0.0011383957775950098, 0.0061160101938608075, 0.01133235298187904, 0.016523351495488725, 0.03663337353491727, 0.10714530459347234, 0.28156043688072485, 0.6275792016592163, 1.2290336095712284, 2.1965514705280103, 3.685212056528299, 5.908706123143216, 9.125417227687114, 13.56679759921312, 19.30382987431405, 26.10133459421606, 33.35209816843197, 40.16426678463024, 45.59115525078484, 48.8996883510165, 49.74677016699477, 48.19556410517582, 44.60492924306995, 39.485790095649534, 33.400668892104925, 26.918010412353023, 20.58355088093857, 14.872354467757846, 10.122482617335441, 6.48367223777136, 3.91462477670271, 2.2349634292416667, 1.207002005974138, 0.6098409117245549, 0.2791034443045755, 0.10919867575769486, 0.03463769123218738, 0.011263947375239336, 0.008154512617749906, 0.007492971684013284, 0.00418122109903288, 0.0012335601342417907, 0.003710312483711957, 0.01577837872468808, 0.042799387280968916, 0.09849802553580993, 0.21794767533986584, 0.475806274507599, 1.0026584980827868, 1.9857815826095242, 3.6439021543766827, 6.180144336909409, 9.731405999098424, 14.331289782430193, 19.88744595235757, 26.160536491532078, 32.73934656575378, 39.0323476484333, 44.31470403409301, 47.85511676976153, 49.099309250889334, 47.83839566260371, 44.28054777080398, 38.98712059559922, 32.70393141920509, 26.16810023485339, 19.96932772706706, 14.498716150566565, 9.965412498376823, 6.437433473753703, 3.8756950847000704, 2.1581601738822886, 1.1068114562936961, 0.5244315373467482, 0.23314375922185282, 0.10000823470814588, 0.042215930724909076, 0.016701109002588824, 0.004908564322967747, 0.0004424561364534078, 0.0013801685554088857, 0.006127535489238405, 0.012020702143007694, 0.016216166573319257, 0.01744253627422606, 0.016654037015084416, 0.015935517036666385, 0.01687144679789629, 0.019844851484562016, 0.024361682578992083, 0.029502420641397624, 0.03411827749859755, 0.03725015377698254, 0.038926254963231446, 0.040455455954777814, 0.04337670181521395, 0.047742182344209884, 0.051544742752216335, 0.052150839972088844, 0.04846711521601396, 0.04177840297628104, 0.0346882598879716, 0.02950798713488615, 0.02752946648544194, 0.029099322593481115, 0.03350865910653674, 0.03857743661479246, 0.04101014691386036, 0.038152638730906144, 0.029985880235389333, 0.019377832776422032, 0.010094522094607462, 0.004312159863802946, 0.0018015813390804736, 0.0011193948175240592, 0.0012006980186247674, 0.0017962462177949974, 0.002834187740225514, 0.0038964212829555355, 0.004461334805274978, 0.0044020594589724675, 0.004000322631574449, 0.003526531134881882, 0.0030162498795143857, 0.00250090345078435, 0.002274485377541827, 0.0027718966698340544, 0.004228455541188974, 0.006579785685655648, 0.009655063299379698, 0.013260196423535304, 0.016943427934002293, 0.019812403468573075, 0.020865877728854784, 0.019695989717895823, 0.01687870528686873, 0.01363214077610944, 0.011089180247074351, 0.009865644744382255, 0.010149149018153315, 0.011923983745855016, 0.014936176669446615, 0.018503556027873767, 0.02156884887292903, 0.023117338308942248, 0.022643833181799838, 0.020310686708310235, 0.01676719667144766, 0.012842087931516387, 0.009261151877042424, 0.006425424588787818, 0.004331693522852995, 0.0027547279495074815, 0.001600039518776577, 0.0010648459407264315, 0.0013580738021197105, 0.002245155207091787, 0.00299894483446265, 0.0029562165270100014, 0.0021484324448326902, 0.0012834119495508838, 0.0010297024031313724, 0.0013642273957437771, 0.001712902078741379, 0.0017258207572924504, 0.0017954592124949428, 0.002704431544466123, 0.0047626588573219325, 0.0073542552085895515, 0.009359700057497755, 0.010007326637259102, 0.009347571394297932, 0.008035227586802517, 0.0068019565936990566, 0.006149405612487059, 0.006369495921179041, 0.007604457688851716, 0.009735251040930227, 0.012242026977189227, 0.014318875607560441, 0.015272843051962517, 0.014907744984905193, 0.013575600674790212, 0.011887010547995822, 0.010362483176899997, 0.009284244132798412, 0.008740828381712177, 0.008670978823580505, 0.008811813040217654, 0.008689334220044285, 0.007832654616557298, 0.006142042394421237, 0.004072535308426237, 0.002373618175350593, 0.001547514018687835, 0.0015140416479520078, 0.0017958935347870022, 0.0020053302780222923, 0.0021078540095585377, 0.002224743963263294, 0.0022911012142827754, 0.0020460203168263134, 0.0013937146512873991, 0.000672267929229454, 0.0004342992552907542, 0.0009223910692229516, 0.001810294626782069, 0.002498032834374056, 0.002635931971742802, 0.002343019379743659, 0.0019898021549581545, 0.001889355938225388, 0.00221491333079983, 0.003063705303609457, 0.004408691748845642, 0.005945443207722382, 0.007115647961265157, 0.007423478588561807, 0.006761476457865465, 0.005415135730744984, 0.003831136040316302, 0.002529072979688963, 0.0022343875457864234, 0.003793862733481858, 0.007522587485926756, 0.012420286162060564, 0.016236479673284312, 0.0167747909364929, 0.013528550542945716, 0.008164484663595716, 0.0033137237019085783, 0.0007082806124909278, 0.00026800340104891245, 0.0007327647169987229, 0.0009766844429397656, 0.0007354724034679436, 0.00034651907960097164, 0.00011770126524890249, 5.575618706465687e-05, 3.9944837445387385e-05, 3.504344717708572e-05, 8.04365852539243e-05, 0.0001815990939055835, 0.00030609512220241056, 0.0004557427663810771, 0.0006671583826637512, 0.0009411746814999349, 0.0012344940839013946, 0.0015343166871720027, 0.0018686867020019768, 0.0021842619966372977, 0.0022659494179328326, 0.001896271091556867, 0.0011481922103456692, 0.00045983721522346085, 0.00032934514406449356, 0.0009072550993816309, 0.001902163641584639, 0.0028621301843810027, 0.0034889490684720022, 0.003683600826602459, 0.00341265127471362, 0.002683840282026526, 0.0016792470020600817, 0.0007902100415262669, 0.00038600905592386004, 0.0005213777729417188, 0.0009205137393464412, 0.0012588818791579332, 0.0014105373820867413, 0.0014096120072558103, 0.0012689215460505994, 0.0009582913854897082, 0.0005590573749458639, 0.00030460156463813756, 0.00035447893101665416, 0.0005628915588375103, 0.0005944060513766483, 0.0003205729790899508, 2.8723609101020156e-05, 0.0001526511808727058, 0.0008114880619483273, 0.0016865532280239094, 0.00235248569018181, 0.002636637015482871, 0.00260407254739169, 0.002297038518070934, 0.0016677551616513693, 0.0008151803193488514, 0.00013599046858863532, 4.94288304360922e-05, 0.0005366161650335127, 0.001073417754953063, 0.0011243817499178668, 0.0006753859734345909, 0.0001952488497745324, 8.014568752558373e-05, 0.00024289421320410488, 0.0003102621649063957, 0.00014025460810654844, 2.796539441789274e-06, 0.00021692273794984246, 0.0007168372664760945, 0.001085920638335284, 0.0010071498122154678, 0.0005890054818688951, 0.00021472850456878754, 0.0001385960491332212, 0.00029454983850715457, 0.0004592058097364943, 0.0004977318790747408, 0.00041791425242936883, 0.0002725361600013183, 0.00011345550019479104, 3.4732909290229184e-05, 0.00015391204554709832, 0.00047340226063930137, 0.0007953151338321959, 0.0008625810470690575, 0.0006172397864288678, 0.00027400042363432206, 9.524115470908904e-05, 0.0001176220556825979, 0.00015861816522476328, 0.00010094342129063236, 0.00010601802406739162, 0.0004728843533765673, 0.0012721836697829236, 0.0021641348350580386, 0.0026286906761905744, 0.0023975080276380837, 0.0016643241244625993, 0.0008825769780643745, 0.00037524007241582544, 0.0001471872759800886, 5.279259725583948e-05, 9.166503769215042e-05, 0.0004748873661463627, 0.0013574319550887163, 0.0025163951048476872, 0.0033665277983427554, 0.0033910777812386802, 0.0026134948377132088, 0.0016239770502583452, 0.001078477928645885, 0.0011309448721459532, 0.0013596053046691671, 0.0012536544388849576, 0.0007423994650869007, 0.00021704916000079186, 6.310199874559558e-05, 0.0002532742553563316, 0.0004453197510237642, 0.0004237791003585829, 0.0003387327187663599, 0.0004716042607118182, 0.0008409340289994749, 0.0011398272881627772, 0.0010755590307762956, 0.0006964966439438486, 0.00032789843788113285, 0.00021934597703978617, 0.00032707674786029104, 0.0004505966747680245, 0.0005107557836635487, 0.000629678166833492, 0.0009542195629775996, 0.0014603186528008535, 0.001945276616642259, 0.0021715652144099697, 0.0020040439575600877, 0.0014714635248407539, 0.0007757663884540776, 0.00023457736939730016, 0.00011047194746604274, 0.00040213483932012665, 0.0008090401082902619, 0.0009740569411156402, 0.0008000783298507274, 0.0005054277522124096, 0.0003531039619976803, 0.00036956630704236554, 0.00037646304265695176, 0.00026098240312487613, 0.00011378766614963097, 6.40414151817734e-05, 7.518601542966587e-05, 3.152763781485439e-05, 2.1331788250776798e-05, 0.00037670062696849307, 0.0012887453336986705, 0.002410178368380115, 0.0030017646171516133, 0.0025922317434801286, 0.0014681836201707067, 0.00042377733049226823, 1.2317824395336988e-05, 0.00010726003149648242, 0.00021433481958831125, 0.00011098321145829517, 5.36364422536459e-05, 0.00036056549507128044, 0.0009305180902526647, 0.0012938053975391124, 0.0011199561323436233, 0.0005739119596642307, 0.0001332592189315866, 0.00011752604914599978, 0.0004506507327160721, 0.0008293711357541515, 0.0010142841316166107, 0.0009386622049252827, 0.0006521294388313551, 0.00028661717045606633, 6.571186676907852e-05, 0.00020639060560113286, 0.0006983323401023319, 0.0012078744876758214, 0.0013151645349286335, 0.0009135980489790691, 0.00034302769274034993, 6.924610865705786e-05, 0.00022704504514885885, 0.0005167241635559193, 0.0005594024151261769, 0.00031102452819593276, 8.689990857643385e-05, 0.0001959102646029544, 0.0006023976778951785, 0.000968791461255669, 0.000999216583241497, 0.0007045224909983955, 0.0003392333829157444, 0.00012588375692851545, 7.498556601534904e-05, 6.308337355626816e-05, 4.4917069348347937e-05, 0.0001504998048813235, 0.0005550703515929531, 0.0012519246983249172, 0.0019669405672651614, 0.002326708042922914, 0.0021469626833399897, 0.0015795750010289423, 0.0009806601896219943, 0.0006276051228703877, 0.0005498710109243754, 0.0006019185928418936, 0.000650244513024118, 0.0006600869726016366, 0.0006337151591410446, 0.0005436445465939346, 0.0003735895932648494, 0.00018823922138075757, 8.862904535477718e-05, 8.40605944786449e-05, 7.653505240201336e-05, 3.3324173052168815e-05, 0.00013398786170642276, 0.0006304840004135606, 0.00149964709388898, 0.002301318185125274, 0.0025026748688824303, 0.0019884805055140065, 0.0011946334806458923, 0.0006841422959313195, 0.0006229243147271742, 0.0007310046082870866, 0.0007121231262776236, 0.0005983993860691951, 0.0005980644299614183, 0.0007087852368795436, 0.0006757058392122073, 0.0003978953190860722, 0.00022979298415385545, 0.000680362779751197, 0.0017771832037721637, 0.0028718888233072283, 0.003207675081667327, 0.0026520519690402143, 0.0017609329083676038, 0.00112277021953867, 0.000790724663694815, 0.0004712834761589396, 0.0001585335756602901, 0.0003163245505145576, 0.0012837222987792053, 0.002621296711526688, 0.003303761689679982, 0.0026960565304755884, 0.0012634968170262013, 0.00017706327789169602, 0.00018651129054821766, 0.0009522438684444376, 0.001511485386630775, 0.0013138713633618292, 0.0007047815398735164, 0.0004260398522773886, 0.0007820634882423558, 0.0013803076621718223, 0.0016209905547553678, 0.0013082026152520852, 0.000746916689942341, 0.0003445239648712868, 0.00023091755629856827, 0.00025969239220505907, 0.0002658021346301314, 0.00023278950907813372, 0.00023119193771420783, 0.00028146780377518777, 0.0003258580102191695, 0.0003090773362778987, 0.0002431271229382167, 0.00018956461963985993, 0.00020486704500590145, 0.00031109615470374874, 0.0004930978703060318, 0.0006953488298602631, 0.0008246787323944053, 0.000787952260708628, 0.0005606850789337639, 0.0002376422405385959, 1.874044461411619e-05, 0.00012605865136942058, 0.0006853894364802722, 0.0016247349083735498, 0.0026535154425182225, 0.0033709490022068144, 0.003475745797551636, 0.0029465542421695094, 0.0020465235734475713, 0.001137442757678026, 0.00046318719765595063, 8.903404584082703e-05, 1.2960960815171746e-05, 0.0002762121035149262, 0.0009127345507910212, 0.0017877155717886696, 0.002543119516449838, 0.002784429007587645, 0.0023808864148446456, 0.0015964948578432482, 0.000902909034155759, 0.0006229173956427951, 0.0007142813599122219, 0.0008690642791649039, 0.0008124896922867544, 0.0005216522403187607, 0.00019002745975018546, 1.397933510189482e-05, 2.400948031465375e-05, 0.00010264607078031861, 0.00012999205049205167, 8.87390937125431e-05, 3.8442831032783504e-05, 2.5250213796960337e-05, 4.673653172203525e-05, 9.472915547337611e-05, 0.00018762572421199758, 0.00032637187012943004, 0.00043556021700518713, 0.0004043730810266038, 0.00022443327948341773, 6.617887565262058e-05, 0.00015884447396382337, 0.0005562304684951744, 0.001035629368644331, 0.0012673169986588213, 0.0011016046616423663, 0.0006820259050555155, 0.00028150306539645583, 6.01105355580853e-05, 2.3477541288134674e-06, 4.797002790430285e-05, 0.00019782645536718665, 0.0004477616305379836, 0.0006730048335999055, 0.0006808421936277525, 0.00042351037981899726, 0.00010640142377250836, 3.8141010170990455e-06, 0.00015403513356950033, 0.0003036336089980373, 0.0002178891805142604, 2.9415622978862584e-05, 0.00019296706149312165, 0.0010188269259762545, 0.0022439376250005705, 0.0031202858026365228, 0.003005389518161834, 0.001936097022413137, 0.0006612321269152103, 9.00491832461968e-05, 0.0006121534441583575, 0.0018278947282565356, 0.002874310010274289, 0.0030673016504880095, 0.0023620647438467755, 0.0012984342723447492, 0.0005117651456227972, 0.00023942502447229852, 0.0002442652078438226, 0.0001855595319357521, 3.357914808423634e-05, 8.424051144342093e-05, 0.0005620417781538305, 0.0012642727086680195, 0.0016738379401465275, 0.0014504328190984715, 0.0007759297472617489, 0.00018814327650768973, 0.00011041469691072442, 0.0005950304233585818, 0.0014847000449113364, 0.0026674978854585234, 0.004033649315606825, 0.005219292429558962, 0.005604506465824864, 0.004771483939726239, 0.003001761828714274, 0.0012019561028524175, 0.0002132930964270436, 0.0001615803288417055, 0.0005001425721543759, 0.000657978476412618, 0.0005730996822974703, 0.0005825053754323773, 0.0008962336235085964, 0.0013073378770851994, 0.0014336984010769017, 0.001143555634987764, 0.0006592962864954016, 0.0002795600851653735, 0.00010053039030295776, 3.531202873532536e-05, 1.2526339394154646e-05, 5.150054987322108e-05, 0.0001519883805633977, 0.0002171877213527154, 0.00015937948574762766, 4.4245505417085266e-05, 4.67591265380929e-05, 0.0002441196769725039, 0.0005078436288239695, 0.0006420601871467747, 0.0005952622138255405, 0.0004797485630661757, 0.0003938924273606782, 0.00030401646300129523, 0.0001491894246227464, 1.0317652992455196e-05, 7.75857097949516e-05, 0.0004176356115156157, 0.0008334818433970439, 0.0010245930934581501, 0.0008815263105142974, 0.000569275656840671, 0.00031176725677402556, 0.00016446039035274422, 6.791736772913301e-05, 9.412166616922e-05, 0.0005159393806428412, 0.001526787465267372, 0.002892424949914477, 0.003968968196483441, 0.0041570223931693745, 0.003382797888496405, 0.002146100052276532, 0.0011052196642096777, 0.0006036982573576465, 0.0005398523384500009, 0.0006006132506964654, 0.0005632357366615956, 0.0004036409313057646, 0.00021140667427002293, 7.78390240472379e-05, 6.277717415002075e-05, 0.0002030158385833386, 0.0004895114640504299, 0.0008234338632921536, 0.0010290922691515317, 0.0009615233234545799, 0.0006418905900595414, 0.0002969177011657997, 0.00023248708187741313, 0.0006032228566277558, 0.001249696435260148, 0.0017615276593910682, 0.0017636491821324787, 0.0012200322008389137, 0.0004898989880179463, 5.416468241580372e-05, 0.00012607961462838356, 0.0004906124255438692, 0.000725043559569749, 0.0005981569593372061, 0.00027392131815635494, 0.00013699542481357874, 0.00042319853185865294, 0.0010108972589193404, 0.0015477089398578552, 0.001756398605510793, 0.0016231313572539065, 0.0013333906095994925, 0.0010807278780771937, 0.0009573059635695974, 0.0009920521717984407, 0.0012240237832603716, 0.0016825109024009213, 0.0022854344345402066, 0.002789583204163105, 0.0028932013179531154, 0.0024411218928983435, 0.0015694258444600526, 0.0006587376679922984, 0.00011135364003471181, 0.00010274699332040039, 0.00047927200217811645, 0.0008726992903245706, 0.0009548709372712255, 0.0006614616687072002, 0.00023281450016224815, 4.1147651358305574e-05, 0.0003205065352023258, 0.0009887110772263778, 0.0016908504657424312, 0.0020350760691214497, 0.0018485512445021383, 0.0012688401703706185, 0.000618641912301186, 0.00018036795444894673, 4.803024066689675e-05, 0.00014199647061684253, 0.00032480326018659907, 0.0004947475937897144, 0.0005992825470236037, 0.0006092429633688425, 0.0005154632291514314, 0.0003484316470290049, 0.00017479234198431638, 5.504321733725188e-05, 5.302020850592436e-06, 4.770353257176392e-06, 2.9795460892849824e-05, 6.485767372993543e-05, 8.812133522702284e-05, 8.149623098831952e-05, 7.897558165080407e-05, 0.00017934835789343848, 0.0004523442581377079, 0.0008052502908406163, 0.0009881284390394088, 0.0008111344875474686, 0.0003885220422092173, 0.0001158875869016079, 0.00032388455977703167, 0.000923174509361337, 0.0014306839566125286, 0.0014013742334657141, 0.0008511875566663314, 0.00024322219867521479, 6.128914779012401e-05, 0.0004175130670441029, 0.001064642589999634, 0.0017173584803626544, 0.002282797693208315, 0.0027895020121915396, 0.0032073244721741844, 0.0034488884164397557, 0.0035359982096467473, 0.0036387532818634816, 0.0038471894602988633, 0.0039364667105873385, 0.0034917175738578723, 0.0023641447581550655, 0.0009810406648815217, 0.00010527526777482045, 0.00021507342907486118, 0.0011127680831991512, 0.0021533628371352828, 0.002837056801257612, 0.0031535700201727416, 0.0033797550044595143, 0.003633514629045296, 0.0037015898174295554, 0.0032943159427568326, 0.002398979262575908, 0.0013397327166119368, 0.0005137600826588212, 0.00010572350488672165, 4.044889341116363e-05, 0.00014103708903498012, 0.0002810166868906752, 0.0004075842171076568, 0.000491528245029577, 0.0005059192359587706, 0.00044806346799880085, 0.0003516726768350367, 0.000264187387211194, 0.0002157894262702214, 0.00020603327142533072, 0.00020834787927255857, 0.00019531461486541204, 0.0001921326835929383, 0.00031896592761447383, 0.0007334688202903754, 0.0014508646726127197, 0.0021921254007791413, 0.002484394057230708, 0.0020375329832506045, 0.0010880734528070546, 0.0003197705308141319, 0.00032581085751820304, 0.0010658495222467044, 0.0018583561155363266, 0.001971772395901051, 0.0012857137860510638, 0.00040229058638125104, 0.00011082628569915654, 0.0007179308770422526, 0.001841339339945106, 0.0027829893186049376, 0.003071049963449233, 0.0026991871330590065, 0.001968295307991381, 0.0011991343946496805, 0.0005912835635134984, 0.0002507810988024507, 0.00023298204311509422, 0.0005109217733655186, 0.0009351458265988149, 0.0012820446527231303, 0.0013769224502282555, 0.0011861655318513495, 0.0008098104639987643, 0.0004069657150210661, 0.00012521138192282544, 5.9490991576700104e-05, 0.00022270250015744717, 0.000527812828673514, 0.0008145749933078769, 0.000932311241792953, 0.0008277312484701581, 0.0005666394279931696, 0.00027708916746076504, 7.381428611014853e-05, 2.4968023837775346e-05, 0.0001578261853202343, 0.00045715676126137193, 0.0008421499998164396, 0.001165781532592971, 0.001277775651808633, 0.0011209111814933007, 0.0007759649310957877, 0.00040666465488870587, 0.00015004083792051945, 4.6506373240096915e-05, 5.591672847019639e-05, 0.0001190835263293972, 0.00019508227943773433, 0.00025482634003636033, 0.000269559176332421, 0.00022763949253074692, 0.00015893533411133825, 0.00012077987477442487, 0.00014248651608595245, 0.000186162003585467, 0.0001791115631667523, 9.769371052800148e-05, 1.5248533813677401e-05, 5.051018399832813e-05, 0.00025373000404304, 0.0005415623515794808, 0.0007543574692002928, 0.0007908890644381263, 0.0006944461418869035, 0.0006062909427300944, 0.0006298522433998554, 0.0007363929288315859, 0.0008032007473577336, 0.0007464385504639876, 0.0006172472031171239, 0.0005615146529134039, 0.0006722615375801694, 0.0008712577521393496, 0.00094441888353562, 0.0007280903476532451, 0.00030208853609424614, 8.461073349095987e-06, 0.0002281096664898943, 0.0010448535775735665, 0.002063384067612562, 0.002593178311796453, 0.0021564987775723474, 0.0009848749573825376, 7.870981758730941e-05, 0.0006551668128902681, 0.003272485254629916, 0.0072460389882489365, 0.010856444351218497, 0.012312545720071464 ], "yaxis": "y" }, { "legendgroup": "digitizer, labels: (1,)", "legendgrouptitle": { "text": "digitizer, labels: (1,)" }, "name": "S(Re(V))^2 for (Channels(labels=[1], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x": [ 0.0, 2500000.0, 5000000.0, 7500000.0, 10000000.0, 12500000.0, 15000000.0, 17500000.0, 20000000.0, 22500000.0, 25000000.0, 27500000.0, 30000000.0, 32500000.0, 35000000.0, 37500000.0, 40000000.0, 42500000.0, 45000000.0, 47500000.0, 50000000.0, 52500000.0, 55000000.0, 57500000.0, 60000000.0, 62500000.0, 65000000.0, 67500000.0, 70000000.0, 72500000.0, 75000000.0, 77500000.0, 80000000.0, 82500000.0, 85000000.0, 87500000.0, 90000000.0, 92500000.0, 95000000.0, 97500000.0, 100000000.0, 102500000.0, 105000000.0, 107500000.0, 110000000.0, 112500000.0, 115000000.0, 117500000.0, 120000000.0, 122500000.0, 125000000.0, 127500000.0, 130000000.0, 132500000.0, 135000000.0, 137500000.0, 140000000.0, 142500000.0, 145000000.0, 147500000.0, 150000000.0, 152500000.0, 155000000.0, 157500000.0, 160000000.0, 162500000.0, 165000000.0, 167500000.0, 170000000.0, 172500000.0, 175000000.0, 177500000.0, 180000000.0, 182500000.0, 185000000.0, 187500000.0, 190000000.0, 192500000.0, 195000000.0, 197500000.0, 200000000.0, 202500000.0, 205000000.0, 207500000.0, 210000000.0, 212500000.0, 215000000.0, 217500000.0, 220000000.0, 222500000.0, 225000000.0, 227500000.0, 230000000.0, 232500000.0, 235000000.0, 237500000.0, 240000000.0, 242500000.0, 245000000.0, 247500000.0, 250000000.0, 252500000.0, 255000000.0, 257500000.0, 260000000.0, 262500000.0, 265000000.0, 267500000.0, 270000000.0, 272500000.0, 275000000.0, 277500000.0, 280000000.0, 282500000.0, 285000000.0, 287500000.0, 290000000.0, 292500000.0, 295000000.0, 297500000.0, 300000000.0, 302500000.0, 305000000.0, 307500000.0, 310000000.0, 312500000.0, 315000000.0, 317500000.0, 320000000.0, 322500000.0, 325000000.0, 327500000.0, 330000000.0, 332500000.0, 335000000.0, 337500000.0, 340000000.0, 342500000.0, 345000000.0, 347500000.0, 350000000.0, 352500000.0, 355000000.0, 357500000.0, 360000000.0, 362500000.0, 365000000.0, 367500000.0, 370000000.0, 372500000.0, 375000000.0, 377500000.0, 380000000.0, 382500000.0, 385000000.0, 387500000.0, 390000000.0, 392500000.0, 395000000.0, 397500000.0, 400000000.0, 402500000.0, 405000000.0, 407500000.0, 410000000.0, 412500000.0, 415000000.0, 417500000.0, 420000000.0, 422500000.0, 425000000.0, 427500000.0, 430000000.0, 432500000.0, 435000000.0, 437500000.0, 440000000.0, 442500000.0, 445000000.0, 447500000.0, 450000000.0, 452500000.0, 455000000.0, 457500000.0, 460000000.0, 462500000.0, 465000000.0, 467500000.0, 470000000.0, 472500000.0, 475000000.0, 477500000.0, 480000000.0, 482500000.0, 485000000.0, 487500000.0, 490000000.0, 492500000.0, 495000000.0, 497500000.0, 500000000.0, 502500000.0, 505000000.0, 507500000.0, 510000000.0, 512500000.0, 515000000.0, 517500000.0, 520000000.0, 522500000.0, 525000000.0, 527500000.0, 530000000.0, 532500000.0, 535000000.0, 537500000.0, 540000000.0, 542500000.0, 545000000.0, 547500000.0, 550000000.0, 552500000.0, 555000000.0, 557500000.0, 560000000.0, 562500000.0, 565000000.0, 567500000.0, 570000000.0, 572500000.0, 575000000.0, 577500000.0, 580000000.0, 582500000.0, 585000000.0, 587500000.0, 590000000.0, 592500000.0, 595000000.0, 597500000.0, 600000000.0, 602500000.0, 605000000.0, 607500000.0, 610000000.0, 612500000.0, 615000000.0, 617500000.0, 620000000.0, 622500000.0, 625000000.0, 627500000.0, 630000000.0, 632500000.0, 635000000.0, 637500000.0, 640000000.0, 642500000.0, 645000000.0, 647500000.0, 650000000.0, 652500000.0, 655000000.0, 657500000.0, 660000000.0, 662500000.0, 665000000.0, 667500000.0, 670000000.0, 672500000.0, 675000000.0, 677500000.0, 680000000.0, 682500000.0, 685000000.0, 687500000.0, 690000000.0, 692500000.0, 695000000.0, 697500000.0, 700000000.0, 702500000.0, 705000000.0, 707500000.0, 710000000.0, 712500000.0, 715000000.0, 717500000.0, 720000000.0, 722500000.0, 725000000.0, 727500000.0, 730000000.0, 732500000.0, 735000000.0, 737500000.0, 740000000.0, 742500000.0, 745000000.0, 747500000.0, 750000000.0, 752500000.0, 755000000.0, 757500000.0, 760000000.0, 762500000.0, 765000000.0, 767500000.0, 770000000.0, 772500000.0, 775000000.0, 777500000.0, 780000000.0, 782500000.0, 785000000.0, 787500000.0, 790000000.0, 792500000.0, 795000000.0, 797500000.0, 800000000.0, 802500000.0, 805000000.0, 807500000.0, 810000000.0, 812500000.0, 815000000.0, 817500000.0, 820000000.0, 822500000.0, 825000000.0, 827500000.0, 830000000.0, 832500000.0, 835000000.0, 837500000.0, 840000000.0, 842500000.0, 845000000.0, 847500000.0, 850000000.0, 852500000.0, 855000000.0, 857500000.0, 860000000.0, 862500000.0, 865000000.0, 867500000.0, 870000000.0, 872500000.0, 875000000.0, 877500000.0, 880000000.0, 882500000.0, 885000000.0, 887500000.0, 890000000.0, 892500000.0, 895000000.0, 897500000.0, 900000000.0, 902500000.0, 905000000.0, 907500000.0, 910000000.0, 912500000.0, 915000000.0, 917500000.0, 920000000.0, 922500000.0, 925000000.0, 927500000.0, 930000000.0, 932500000.0, 935000000.0, 937500000.0, 940000000.0, 942500000.0, 945000000.0, 947500000.0, 950000000.0, 952500000.0, 955000000.0, 957500000.0, 960000000.0, 962500000.0, 965000000.0, 967500000.0, 970000000.0, 972500000.0, 975000000.0, 977500000.0, 980000000.0, 982500000.0, 985000000.0, 987500000.0, 990000000.0, 992500000.0, 995000000.0, 997500000.0, 1000000000.0, 1002500000.0, 1005000000.0, 1007500000.0, 1010000000.0, 1012500000.0, 1015000000.0, 1017500000.0, 1020000000.0, 1022500000.0, 1025000000.0, 1027500000.0, 1030000000.0, 1032500000.0, 1035000000.0, 1037500000.0, 1040000000.0, 1042500000.0, 1045000000.0, 1047500000.0, 1050000000.0, 1052500000.0, 1055000000.0, 1057500000.0, 1060000000.0, 1062500000.0, 1065000000.0, 1067500000.0, 1070000000.0, 1072500000.0, 1075000000.0, 1077500000.0, 1080000000.0, 1082500000.0, 1085000000.0, 1087500000.0, 1090000000.0, 1092500000.0, 1095000000.0, 1097500000.0, 1100000000.0, 1102500000.0, 1105000000.0, 1107500000.0, 1110000000.0, 1112500000.0, 1115000000.0, 1117500000.0, 1120000000.0, 1122500000.0, 1125000000.0, 1127500000.0, 1130000000.0, 1132500000.0, 1135000000.0, 1137500000.0, 1140000000.0, 1142500000.0, 1145000000.0, 1147500000.0, 1150000000.0, 1152500000.0, 1155000000.0, 1157500000.0, 1160000000.0, 1162500000.0, 1165000000.0, 1167500000.0, 1170000000.0, 1172500000.0, 1175000000.0, 1177500000.0, 1180000000.0, 1182500000.0, 1185000000.0, 1187500000.0, 1190000000.0, 1192500000.0, 1195000000.0, 1197500000.0, 1200000000.0, 1202500000.0, 1205000000.0, 1207500000.0, 1210000000.0, 1212500000.0, 1215000000.0, 1217500000.0, 1220000000.0, 1222500000.0, 1225000000.0, 1227500000.0, 1230000000.0, 1232500000.0, 1235000000.0, 1237500000.0, 1240000000.0, 1242500000.0, 1245000000.0, 1247500000.0, 1250000000.0, 1252500000.0, 1255000000.0, 1257500000.0, 1260000000.0, 1262500000.0, 1265000000.0, 1267500000.0, 1270000000.0, 1272500000.0, 1275000000.0, 1277500000.0, 1280000000.0, 1282500000.0, 1285000000.0, 1287500000.0, 1290000000.0, 1292500000.0, 1295000000.0, 1297500000.0, 1300000000.0, 1302500000.0, 1305000000.0, 1307500000.0, 1310000000.0, 1312500000.0, 1315000000.0, 1317500000.0, 1320000000.0, 1322500000.0, 1325000000.0, 1327500000.0, 1330000000.0, 1332500000.0, 1335000000.0, 1337500000.0, 1340000000.0, 1342500000.0, 1345000000.0, 1347500000.0, 1350000000.0, 1352500000.0, 1355000000.0, 1357500000.0, 1360000000.0, 1362500000.0, 1365000000.0, 1367500000.0, 1370000000.0, 1372500000.0, 1375000000.0, 1377500000.0, 1380000000.0, 1382500000.0, 1385000000.0, 1387500000.0, 1390000000.0, 1392500000.0, 1395000000.0, 1397500000.0, 1400000000.0, 1402500000.0, 1405000000.0, 1407500000.0, 1410000000.0, 1412500000.0, 1415000000.0, 1417500000.0, 1420000000.0, 1422500000.0, 1425000000.0, 1427500000.0, 1430000000.0, 1432500000.0, 1435000000.0, 1437500000.0, 1440000000.0, 1442500000.0, 1445000000.0, 1447500000.0, 1450000000.0, 1452500000.0, 1455000000.0, 1457500000.0, 1460000000.0, 1462500000.0, 1465000000.0, 1467500000.0, 1470000000.0, 1472500000.0, 1475000000.0, 1477500000.0, 1480000000.0, 1482500000.0, 1485000000.0, 1487500000.0, 1490000000.0, 1492500000.0, 1495000000.0, 1497500000.0, 1500000000.0, 1502500000.0, 1505000000.0, 1507500000.0, 1510000000.0, 1512500000.0, 1515000000.0, 1517500000.0, 1520000000.0, 1522500000.0, 1525000000.0, 1527500000.0, 1530000000.0, 1532500000.0, 1535000000.0, 1537500000.0, 1540000000.0, 1542500000.0, 1545000000.0, 1547500000.0, 1550000000.0, 1552500000.0, 1555000000.0, 1557500000.0, 1560000000.0, 1562500000.0, 1565000000.0, 1567500000.0, 1570000000.0, 1572500000.0, 1575000000.0, 1577500000.0, 1580000000.0, 1582500000.0, 1585000000.0, 1587500000.0, 1590000000.0, 1592500000.0, 1595000000.0, 1597500000.0, 1600000000.0, 1602500000.0, 1605000000.0, 1607500000.0, 1610000000.0, 1612500000.0, 1615000000.0, 1617500000.0, 1620000000.0, 1622500000.0, 1625000000.0, 1627500000.0, 1630000000.0, 1632500000.0, 1635000000.0, 1637500000.0, 1640000000.0, 1642500000.0, 1645000000.0, 1647500000.0, 1650000000.0, 1652500000.0, 1655000000.0, 1657500000.0, 1660000000.0, 1662500000.0, 1665000000.0, 1667500000.0, 1670000000.0, 1672500000.0, 1675000000.0, 1677500000.0, 1680000000.0, 1682500000.0, 1685000000.0, 1687500000.0, 1690000000.0, 1692500000.0, 1695000000.0, 1697500000.0, 1700000000.0, 1702500000.0, 1705000000.0, 1707500000.0, 1710000000.0, 1712500000.0, 1715000000.0, 1717500000.0, 1720000000.0, 1722500000.0, 1725000000.0, 1727500000.0, 1730000000.0, 1732500000.0, 1735000000.0, 1737500000.0, 1740000000.0, 1742500000.0, 1745000000.0, 1747500000.0, 1750000000.0, 1752500000.0, 1755000000.0, 1757500000.0, 1760000000.0, 1762500000.0, 1765000000.0, 1767500000.0, 1770000000.0, 1772500000.0, 1775000000.0, 1777500000.0, 1780000000.0, 1782500000.0, 1785000000.0, 1787500000.0, 1790000000.0, 1792500000.0, 1795000000.0, 1797500000.0, 1800000000.0, 1802500000.0, 1805000000.0, 1807500000.0, 1810000000.0, 1812500000.0, 1815000000.0, 1817500000.0, 1820000000.0, 1822500000.0, 1825000000.0, 1827500000.0, 1830000000.0, 1832500000.0, 1835000000.0, 1837500000.0, 1840000000.0, 1842500000.0, 1845000000.0, 1847500000.0, 1850000000.0, 1852500000.0, 1855000000.0, 1857500000.0, 1860000000.0, 1862500000.0, 1865000000.0, 1867500000.0, 1870000000.0, 1872500000.0, 1875000000.0, 1877500000.0, 1880000000.0, 1882500000.0, 1885000000.0, 1887500000.0, 1890000000.0, 1892500000.0, 1895000000.0, 1897500000.0, 1900000000.0, 1902500000.0, 1905000000.0, 1907500000.0, 1910000000.0, 1912500000.0, 1915000000.0, 1917500000.0, 1920000000.0, 1922500000.0, 1925000000.0, 1927500000.0, 1930000000.0, 1932500000.0, 1935000000.0, 1937500000.0, 1940000000.0, 1942500000.0, 1945000000.0, 1947500000.0, 1950000000.0, 1952500000.0, 1955000000.0, 1957500000.0, 1960000000.0, 1962500000.0, 1965000000.0, 1967500000.0, 1970000000.0, 1972500000.0, 1975000000.0, 1977500000.0, 1980000000.0, 1982500000.0, 1985000000.0, 1987500000.0, 1990000000.0, 1992500000.0, 1995000000.0, 1997500000.0, 2000000000.0, 2002500000.0, 2005000000.0, 2007500000.0, 2010000000.0, 2012500000.0, 2015000000.0, 2017500000.0, 2020000000.0, 2022500000.0, 2025000000.0, 2027500000.0, 2030000000.0, 2032500000.0, 2035000000.0, 2037500000.0, 2040000000.0, 2042500000.0, 2045000000.0, 2047500000.0, 2050000000.0, 2052500000.0, 2055000000.0, 2057500000.0, 2060000000.0, 2062500000.0, 2065000000.0, 2067500000.0, 2070000000.0, 2072500000.0, 2075000000.0, 2077500000.0, 2080000000.0, 2082500000.0, 2085000000.0, 2087500000.0, 2090000000.0, 2092500000.0, 2095000000.0, 2097500000.0, 2100000000.0, 2102500000.0, 2105000000.0, 2107500000.0, 2110000000.0, 2112500000.0, 2115000000.0, 2117500000.0, 2120000000.0, 2122500000.0, 2125000000.0, 2127500000.0, 2130000000.0, 2132500000.0, 2135000000.0, 2137500000.0, 2140000000.0, 2142500000.0, 2145000000.0, 2147500000.0, 2150000000.0, 2152500000.0, 2155000000.0, 2157500000.0, 2160000000.0, 2162500000.0, 2165000000.0, 2167500000.0, 2170000000.0, 2172500000.0, 2175000000.0, 2177500000.0, 2180000000.0, 2182500000.0, 2185000000.0, 2187500000.0, 2190000000.0, 2192500000.0, 2195000000.0, 2197500000.0, 2200000000.0, 2202500000.0, 2205000000.0, 2207500000.0, 2210000000.0, 2212500000.0, 2215000000.0, 2217500000.0, 2220000000.0, 2222500000.0, 2225000000.0, 2227500000.0, 2230000000.0, 2232500000.0, 2235000000.0, 2237500000.0, 2240000000.0, 2242500000.0, 2245000000.0, 2247500000.0, 2250000000.0, 2252500000.0, 2255000000.0, 2257500000.0, 2260000000.0, 2262500000.0, 2265000000.0, 2267500000.0, 2270000000.0, 2272500000.0, 2275000000.0, 2277500000.0, 2280000000.0, 2282500000.0, 2285000000.0, 2287500000.0, 2290000000.0, 2292500000.0, 2295000000.0, 2297500000.0, 2300000000.0, 2302500000.0, 2305000000.0, 2307500000.0, 2310000000.0, 2312500000.0, 2315000000.0, 2317500000.0, 2320000000.0, 2322500000.0, 2325000000.0, 2327500000.0, 2330000000.0, 2332500000.0, 2335000000.0, 2337500000.0, 2340000000.0, 2342500000.0, 2345000000.0, 2347500000.0, 2350000000.0, 2352500000.0, 2355000000.0, 2357500000.0, 2360000000.0, 2362500000.0, 2365000000.0, 2367500000.0, 2370000000.0, 2372500000.0, 2375000000.0, 2377500000.0, 2380000000.0, 2382500000.0, 2385000000.0, 2387500000.0, 2390000000.0, 2392500000.0, 2395000000.0, 2397500000.0, 2400000000.0 ], "xaxis": "x", "y": [ 7.12131404399531, 6.236336386380126, 4.091848581704113, 1.8305525653910135, 0.40256110006488777, 0.001013819130745407, 0.1624971310787419, 0.31812364129184184, 0.2438905794956171, 0.07263291281191248, 6.168651191255588e-05, 0.05275197866966902, 0.11535803172314707, 0.10061526783204282, 0.03666725460537214, 0.0008052361801927893, 0.016696144700435334, 0.04191185403846137, 0.03665407846998644, 0.011447687333669033, 0.00016852793686007516, 0.008555449927097301, 0.011677274308476659, 0.0013408149062986935, 0.019501786724353497, 0.135947650914974, 0.40167700554158503, 0.8409412537740792, 1.5019976192373528, 2.523567857866196, 4.156206712994406, 6.711240395165735, 10.454421395302798, 15.487270839813851, 21.66597436007816, 28.59784949694264, 35.72042472425921, 42.41644740867277, 48.092982953709715, 52.19326049410766, 54.19131618489631, 53.65811347467966, 50.426608073036455, 44.766607360198506, 37.42290712014372, 29.441240420944254, 21.853450197709254, 15.390201134794845, 10.359308573098849, 6.708575780457649, 4.187806965426939, 2.5036457365312765, 1.4087197422759525, 0.7246807331384435, 0.32762155714234376, 0.12467264029470945, 0.03953483237503475, 0.011875083995789655, 0.003663456076616037, 0.0003205815762272392, 0.0011383957775950098, 0.0061160101938608075, 0.01133235298187904, 0.016523351495488725, 0.03663337353491727, 0.10714530459347234, 0.28156043688072485, 0.6275792016592163, 1.2290336095712284, 2.1965514705280103, 3.685212056528299, 5.908706123143216, 9.125417227687114, 13.56679759921312, 19.30382987431405, 26.10133459421606, 33.35209816843197, 40.16426678463024, 45.59115525078484, 48.8996883510165, 49.74677016699477, 48.19556410517582, 44.60492924306995, 39.485790095649534, 33.400668892104925, 26.918010412353023, 20.58355088093857, 14.872354467757846, 10.122482617335441, 6.48367223777136, 3.91462477670271, 2.2349634292416667, 1.207002005974138, 0.6098409117245549, 0.2791034443045755, 0.10919867575769486, 0.03463769123218738, 0.011263947375239336, 0.008154512617749906, 0.007492971684013284, 0.00418122109903288, 0.0012335601342417907, 0.003710312483711957, 0.01577837872468808, 0.042799387280968916, 0.09849802553580993, 0.21794767533986584, 0.475806274507599, 1.0026584980827868, 1.9857815826095242, 3.6439021543766827, 6.180144336909409, 9.731405999098424, 14.331289782430193, 19.88744595235757, 26.160536491532078, 32.73934656575378, 39.0323476484333, 44.31470403409301, 47.85511676976153, 49.099309250889334, 47.83839566260371, 44.28054777080398, 38.98712059559922, 32.70393141920509, 26.16810023485339, 19.96932772706706, 14.498716150566565, 9.965412498376823, 6.437433473753703, 3.8756950847000704, 2.1581601738822886, 1.1068114562936961, 0.5244315373467482, 0.23314375922185282, 0.10000823470814588, 0.042215930724909076, 0.016701109002588824, 0.004908564322967747, 0.0004424561364534078, 0.0013801685554088857, 0.006127535489238405, 0.012020702143007694, 0.016216166573319257, 0.01744253627422606, 0.016654037015084416, 0.015935517036666385, 0.01687144679789629, 0.019844851484562016, 0.024361682578992083, 0.029502420641397624, 0.03411827749859755, 0.03725015377698254, 0.038926254963231446, 0.040455455954777814, 0.04337670181521395, 0.047742182344209884, 0.051544742752216335, 0.052150839972088844, 0.04846711521601396, 0.04177840297628104, 0.0346882598879716, 0.02950798713488615, 0.02752946648544194, 0.029099322593481115, 0.03350865910653674, 0.03857743661479246, 0.04101014691386036, 0.038152638730906144, 0.029985880235389333, 0.019377832776422032, 0.010094522094607462, 0.004312159863802946, 0.0018015813390804736, 0.0011193948175240592, 0.0012006980186247674, 0.0017962462177949974, 0.002834187740225514, 0.0038964212829555355, 0.004461334805274978, 0.0044020594589724675, 0.004000322631574449, 0.003526531134881882, 0.0030162498795143857, 0.00250090345078435, 0.002274485377541827, 0.0027718966698340544, 0.004228455541188974, 0.006579785685655648, 0.009655063299379698, 0.013260196423535304, 0.016943427934002293, 0.019812403468573075, 0.020865877728854784, 0.019695989717895823, 0.01687870528686873, 0.01363214077610944, 0.011089180247074351, 0.009865644744382255, 0.010149149018153315, 0.011923983745855016, 0.014936176669446615, 0.018503556027873767, 0.02156884887292903, 0.023117338308942248, 0.022643833181799838, 0.020310686708310235, 0.01676719667144766, 0.012842087931516387, 0.009261151877042424, 0.006425424588787818, 0.004331693522852995, 0.0027547279495074815, 0.001600039518776577, 0.0010648459407264315, 0.0013580738021197105, 0.002245155207091787, 0.00299894483446265, 0.0029562165270100014, 0.0021484324448326902, 0.0012834119495508838, 0.0010297024031313724, 0.0013642273957437771, 0.001712902078741379, 0.0017258207572924504, 0.0017954592124949428, 0.002704431544466123, 0.0047626588573219325, 0.0073542552085895515, 0.009359700057497755, 0.010007326637259102, 0.009347571394297932, 0.008035227586802517, 0.0068019565936990566, 0.006149405612487059, 0.006369495921179041, 0.007604457688851716, 0.009735251040930227, 0.012242026977189227, 0.014318875607560441, 0.015272843051962517, 0.014907744984905193, 0.013575600674790212, 0.011887010547995822, 0.010362483176899997, 0.009284244132798412, 0.008740828381712177, 0.008670978823580505, 0.008811813040217654, 0.008689334220044285, 0.007832654616557298, 0.006142042394421237, 0.004072535308426237, 0.002373618175350593, 0.001547514018687835, 0.0015140416479520078, 0.0017958935347870022, 0.0020053302780222923, 0.0021078540095585377, 0.002224743963263294, 0.0022911012142827754, 0.0020460203168263134, 0.0013937146512873991, 0.000672267929229454, 0.0004342992552907542, 0.0009223910692229516, 0.001810294626782069, 0.002498032834374056, 0.002635931971742802, 0.002343019379743659, 0.0019898021549581545, 0.001889355938225388, 0.00221491333079983, 0.003063705303609457, 0.004408691748845642, 0.005945443207722382, 0.007115647961265157, 0.007423478588561807, 0.006761476457865465, 0.005415135730744984, 0.003831136040316302, 0.002529072979688963, 0.0022343875457864234, 0.003793862733481858, 0.007522587485926756, 0.012420286162060564, 0.016236479673284312, 0.0167747909364929, 0.013528550542945716, 0.008164484663595716, 0.0033137237019085783, 0.0007082806124909278, 0.00026800340104891245, 0.0007327647169987229, 0.0009766844429397656, 0.0007354724034679436, 0.00034651907960097164, 0.00011770126524890249, 5.575618706465687e-05, 3.9944837445387385e-05, 3.504344717708572e-05, 8.04365852539243e-05, 0.0001815990939055835, 0.00030609512220241056, 0.0004557427663810771, 0.0006671583826637512, 0.0009411746814999349, 0.0012344940839013946, 0.0015343166871720027, 0.0018686867020019768, 0.0021842619966372977, 0.0022659494179328326, 0.001896271091556867, 0.0011481922103456692, 0.00045983721522346085, 0.00032934514406449356, 0.0009072550993816309, 0.001902163641584639, 0.0028621301843810027, 0.0034889490684720022, 0.003683600826602459, 0.00341265127471362, 0.002683840282026526, 0.0016792470020600817, 0.0007902100415262669, 0.00038600905592386004, 0.0005213777729417188, 0.0009205137393464412, 0.0012588818791579332, 0.0014105373820867413, 0.0014096120072558103, 0.0012689215460505994, 0.0009582913854897082, 0.0005590573749458639, 0.00030460156463813756, 0.00035447893101665416, 0.0005628915588375103, 0.0005944060513766483, 0.0003205729790899508, 2.8723609101020156e-05, 0.0001526511808727058, 0.0008114880619483273, 0.0016865532280239094, 0.00235248569018181, 0.002636637015482871, 0.00260407254739169, 0.002297038518070934, 0.0016677551616513693, 0.0008151803193488514, 0.00013599046858863532, 4.94288304360922e-05, 0.0005366161650335127, 0.001073417754953063, 0.0011243817499178668, 0.0006753859734345909, 0.0001952488497745324, 8.014568752558373e-05, 0.00024289421320410488, 0.0003102621649063957, 0.00014025460810654844, 2.796539441789274e-06, 0.00021692273794984246, 0.0007168372664760945, 0.001085920638335284, 0.0010071498122154678, 0.0005890054818688951, 0.00021472850456878754, 0.0001385960491332212, 0.00029454983850715457, 0.0004592058097364943, 0.0004977318790747408, 0.00041791425242936883, 0.0002725361600013183, 0.00011345550019479104, 3.4732909290229184e-05, 0.00015391204554709832, 0.00047340226063930137, 0.0007953151338321959, 0.0008625810470690575, 0.0006172397864288678, 0.00027400042363432206, 9.524115470908904e-05, 0.0001176220556825979, 0.00015861816522476328, 0.00010094342129063236, 0.00010601802406739162, 0.0004728843533765673, 0.0012721836697829236, 0.0021641348350580386, 0.0026286906761905744, 0.0023975080276380837, 0.0016643241244625993, 0.0008825769780643745, 0.00037524007241582544, 0.0001471872759800886, 5.279259725583948e-05, 9.166503769215042e-05, 0.0004748873661463627, 0.0013574319550887163, 0.0025163951048476872, 0.0033665277983427554, 0.0033910777812386802, 0.0026134948377132088, 0.0016239770502583452, 0.001078477928645885, 0.0011309448721459532, 0.0013596053046691671, 0.0012536544388849576, 0.0007423994650869007, 0.00021704916000079186, 6.310199874559558e-05, 0.0002532742553563316, 0.0004453197510237642, 0.0004237791003585829, 0.0003387327187663599, 0.0004716042607118182, 0.0008409340289994749, 0.0011398272881627772, 0.0010755590307762956, 0.0006964966439438486, 0.00032789843788113285, 0.00021934597703978617, 0.00032707674786029104, 0.0004505966747680245, 0.0005107557836635487, 0.000629678166833492, 0.0009542195629775996, 0.0014603186528008535, 0.001945276616642259, 0.0021715652144099697, 0.0020040439575600877, 0.0014714635248407539, 0.0007757663884540776, 0.00023457736939730016, 0.00011047194746604274, 0.00040213483932012665, 0.0008090401082902619, 0.0009740569411156402, 0.0008000783298507274, 0.0005054277522124096, 0.0003531039619976803, 0.00036956630704236554, 0.00037646304265695176, 0.00026098240312487613, 0.00011378766614963097, 6.40414151817734e-05, 7.518601542966587e-05, 3.152763781485439e-05, 2.1331788250776798e-05, 0.00037670062696849307, 0.0012887453336986705, 0.002410178368380115, 0.0030017646171516133, 0.0025922317434801286, 0.0014681836201707067, 0.00042377733049226823, 1.2317824395336988e-05, 0.00010726003149648242, 0.00021433481958831125, 0.00011098321145829517, 5.36364422536459e-05, 0.00036056549507128044, 0.0009305180902526647, 0.0012938053975391124, 0.0011199561323436233, 0.0005739119596642307, 0.0001332592189315866, 0.00011752604914599978, 0.0004506507327160721, 0.0008293711357541515, 0.0010142841316166107, 0.0009386622049252827, 0.0006521294388313551, 0.00028661717045606633, 6.571186676907852e-05, 0.00020639060560113286, 0.0006983323401023319, 0.0012078744876758214, 0.0013151645349286335, 0.0009135980489790691, 0.00034302769274034993, 6.924610865705786e-05, 0.00022704504514885885, 0.0005167241635559193, 0.0005594024151261769, 0.00031102452819593276, 8.689990857643385e-05, 0.0001959102646029544, 0.0006023976778951785, 0.000968791461255669, 0.000999216583241497, 0.0007045224909983955, 0.0003392333829157444, 0.00012588375692851545, 7.498556601534904e-05, 6.308337355626816e-05, 4.4917069348347937e-05, 0.0001504998048813235, 0.0005550703515929531, 0.0012519246983249172, 0.0019669405672651614, 0.002326708042922914, 0.0021469626833399897, 0.0015795750010289423, 0.0009806601896219943, 0.0006276051228703877, 0.0005498710109243754, 0.0006019185928418936, 0.000650244513024118, 0.0006600869726016366, 0.0006337151591410446, 0.0005436445465939346, 0.0003735895932648494, 0.00018823922138075757, 8.862904535477718e-05, 8.40605944786449e-05, 7.653505240201336e-05, 3.3324173052168815e-05, 0.00013398786170642276, 0.0006304840004135606, 0.00149964709388898, 0.002301318185125274, 0.0025026748688824303, 0.0019884805055140065, 0.0011946334806458923, 0.0006841422959313195, 0.0006229243147271742, 0.0007310046082870866, 0.0007121231262776236, 0.0005983993860691951, 0.0005980644299614183, 0.0007087852368795436, 0.0006757058392122073, 0.0003978953190860722, 0.00022979298415385545, 0.000680362779751197, 0.0017771832037721637, 0.0028718888233072283, 0.003207675081667327, 0.0026520519690402143, 0.0017609329083676038, 0.00112277021953867, 0.000790724663694815, 0.0004712834761589396, 0.0001585335756602901, 0.0003163245505145576, 0.0012837222987792053, 0.002621296711526688, 0.003303761689679982, 0.0026960565304755884, 0.0012634968170262013, 0.00017706327789169602, 0.00018651129054821766, 0.0009522438684444376, 0.001511485386630775, 0.0013138713633618292, 0.0007047815398735164, 0.0004260398522773886, 0.0007820634882423558, 0.0013803076621718223, 0.0016209905547553678, 0.0013082026152520852, 0.000746916689942341, 0.0003445239648712868, 0.00023091755629856827, 0.00025969239220505907, 0.0002658021346301314, 0.00023278950907813372, 0.00023119193771420783, 0.00028146780377518777, 0.0003258580102191695, 0.0003090773362778987, 0.0002431271229382167, 0.00018956461963985993, 0.00020486704500590145, 0.00031109615470374874, 0.0004930978703060318, 0.0006953488298602631, 0.0008246787323944053, 0.000787952260708628, 0.0005606850789337639, 0.0002376422405385959, 1.874044461411619e-05, 0.00012605865136942058, 0.0006853894364802722, 0.0016247349083735498, 0.0026535154425182225, 0.0033709490022068144, 0.003475745797551636, 0.0029465542421695094, 0.0020465235734475713, 0.001137442757678026, 0.00046318719765595063, 8.903404584082703e-05, 1.2960960815171746e-05, 0.0002762121035149262, 0.0009127345507910212, 0.0017877155717886696, 0.002543119516449838, 0.002784429007587645, 0.0023808864148446456, 0.0015964948578432482, 0.000902909034155759, 0.0006229173956427951, 0.0007142813599122219, 0.0008690642791649039, 0.0008124896922867544, 0.0005216522403187607, 0.00019002745975018546, 1.397933510189482e-05, 2.400948031465375e-05, 0.00010264607078031861, 0.00012999205049205167, 8.87390937125431e-05, 3.8442831032783504e-05, 2.5250213796960337e-05, 4.673653172203525e-05, 9.472915547337611e-05, 0.00018762572421199758, 0.00032637187012943004, 0.00043556021700518713, 0.0004043730810266038, 0.00022443327948341773, 6.617887565262058e-05, 0.00015884447396382337, 0.0005562304684951744, 0.001035629368644331, 0.0012673169986588213, 0.0011016046616423663, 0.0006820259050555155, 0.00028150306539645583, 6.01105355580853e-05, 2.3477541288134674e-06, 4.797002790430285e-05, 0.00019782645536718665, 0.0004477616305379836, 0.0006730048335999055, 0.0006808421936277525, 0.00042351037981899726, 0.00010640142377250836, 3.8141010170990455e-06, 0.00015403513356950033, 0.0003036336089980373, 0.0002178891805142604, 2.9415622978862584e-05, 0.00019296706149312165, 0.0010188269259762545, 0.0022439376250005705, 0.0031202858026365228, 0.003005389518161834, 0.001936097022413137, 0.0006612321269152103, 9.00491832461968e-05, 0.0006121534441583575, 0.0018278947282565356, 0.002874310010274289, 0.0030673016504880095, 0.0023620647438467755, 0.0012984342723447492, 0.0005117651456227972, 0.00023942502447229852, 0.0002442652078438226, 0.0001855595319357521, 3.357914808423634e-05, 8.424051144342093e-05, 0.0005620417781538305, 0.0012642727086680195, 0.0016738379401465275, 0.0014504328190984715, 0.0007759297472617489, 0.00018814327650768973, 0.00011041469691072442, 0.0005950304233585818, 0.0014847000449113364, 0.0026674978854585234, 0.004033649315606825, 0.005219292429558962, 0.005604506465824864, 0.004771483939726239, 0.003001761828714274, 0.0012019561028524175, 0.0002132930964270436, 0.0001615803288417055, 0.0005001425721543759, 0.000657978476412618, 0.0005730996822974703, 0.0005825053754323773, 0.0008962336235085964, 0.0013073378770851994, 0.0014336984010769017, 0.001143555634987764, 0.0006592962864954016, 0.0002795600851653735, 0.00010053039030295776, 3.531202873532536e-05, 1.2526339394154646e-05, 5.150054987322108e-05, 0.0001519883805633977, 0.0002171877213527154, 0.00015937948574762766, 4.4245505417085266e-05, 4.67591265380929e-05, 0.0002441196769725039, 0.0005078436288239695, 0.0006420601871467747, 0.0005952622138255405, 0.0004797485630661757, 0.0003938924273606782, 0.00030401646300129523, 0.0001491894246227464, 1.0317652992455196e-05, 7.75857097949516e-05, 0.0004176356115156157, 0.0008334818433970439, 0.0010245930934581501, 0.0008815263105142974, 0.000569275656840671, 0.00031176725677402556, 0.00016446039035274422, 6.791736772913301e-05, 9.412166616922e-05, 0.0005159393806428412, 0.001526787465267372, 0.002892424949914477, 0.003968968196483441, 0.0041570223931693745, 0.003382797888496405, 0.002146100052276532, 0.0011052196642096777, 0.0006036982573576465, 0.0005398523384500009, 0.0006006132506964654, 0.0005632357366615956, 0.0004036409313057646, 0.00021140667427002293, 7.78390240472379e-05, 6.277717415002075e-05, 0.0002030158385833386, 0.0004895114640504299, 0.0008234338632921536, 0.0010290922691515317, 0.0009615233234545799, 0.0006418905900595414, 0.0002969177011657997, 0.00023248708187741313, 0.0006032228566277558, 0.001249696435260148, 0.0017615276593910682, 0.0017636491821324787, 0.0012200322008389137, 0.0004898989880179463, 5.416468241580372e-05, 0.00012607961462838356, 0.0004906124255438692, 0.000725043559569749, 0.0005981569593372061, 0.00027392131815635494, 0.00013699542481357874, 0.00042319853185865294, 0.0010108972589193404, 0.0015477089398578552, 0.001756398605510793, 0.0016231313572539065, 0.0013333906095994925, 0.0010807278780771937, 0.0009573059635695974, 0.0009920521717984407, 0.0012240237832603716, 0.0016825109024009213, 0.0022854344345402066, 0.002789583204163105, 0.0028932013179531154, 0.0024411218928983435, 0.0015694258444600526, 0.0006587376679922984, 0.00011135364003471181, 0.00010274699332040039, 0.00047927200217811645, 0.0008726992903245706, 0.0009548709372712255, 0.0006614616687072002, 0.00023281450016224815, 4.1147651358305574e-05, 0.0003205065352023258, 0.0009887110772263778, 0.0016908504657424312, 0.0020350760691214497, 0.0018485512445021383, 0.0012688401703706185, 0.000618641912301186, 0.00018036795444894673, 4.803024066689675e-05, 0.00014199647061684253, 0.00032480326018659907, 0.0004947475937897144, 0.0005992825470236037, 0.0006092429633688425, 0.0005154632291514314, 0.0003484316470290049, 0.00017479234198431638, 5.504321733725188e-05, 5.302020850592436e-06, 4.770353257176392e-06, 2.9795460892849824e-05, 6.485767372993543e-05, 8.812133522702284e-05, 8.149623098831952e-05, 7.897558165080407e-05, 0.00017934835789343848, 0.0004523442581377079, 0.0008052502908406163, 0.0009881284390394088, 0.0008111344875474686, 0.0003885220422092173, 0.0001158875869016079, 0.00032388455977703167, 0.000923174509361337, 0.0014306839566125286, 0.0014013742334657141, 0.0008511875566663314, 0.00024322219867521479, 6.128914779012401e-05, 0.0004175130670441029, 0.001064642589999634, 0.0017173584803626544, 0.002282797693208315, 0.0027895020121915396, 0.0032073244721741844, 0.0034488884164397557, 0.0035359982096467473, 0.0036387532818634816, 0.0038471894602988633, 0.0039364667105873385, 0.0034917175738578723, 0.0023641447581550655, 0.0009810406648815217, 0.00010527526777482045, 0.00021507342907486118, 0.0011127680831991512, 0.0021533628371352828, 0.002837056801257612, 0.0031535700201727416, 0.0033797550044595143, 0.003633514629045296, 0.0037015898174295554, 0.0032943159427568326, 0.002398979262575908, 0.0013397327166119368, 0.0005137600826588212, 0.00010572350488672165, 4.044889341116363e-05, 0.00014103708903498012, 0.0002810166868906752, 0.0004075842171076568, 0.000491528245029577, 0.0005059192359587706, 0.00044806346799880085, 0.0003516726768350367, 0.000264187387211194, 0.0002157894262702214, 0.00020603327142533072, 0.00020834787927255857, 0.00019531461486541204, 0.0001921326835929383, 0.00031896592761447383, 0.0007334688202903754, 0.0014508646726127197, 0.0021921254007791413, 0.002484394057230708, 0.0020375329832506045, 0.0010880734528070546, 0.0003197705308141319, 0.00032581085751820304, 0.0010658495222467044, 0.0018583561155363266, 0.001971772395901051, 0.0012857137860510638, 0.00040229058638125104, 0.00011082628569915654, 0.0007179308770422526, 0.001841339339945106, 0.0027829893186049376, 0.003071049963449233, 0.0026991871330590065, 0.001968295307991381, 0.0011991343946496805, 0.0005912835635134984, 0.0002507810988024507, 0.00023298204311509422, 0.0005109217733655186, 0.0009351458265988149, 0.0012820446527231303, 0.0013769224502282555, 0.0011861655318513495, 0.0008098104639987643, 0.0004069657150210661, 0.00012521138192282544, 5.9490991576700104e-05, 0.00022270250015744717, 0.000527812828673514, 0.0008145749933078769, 0.000932311241792953, 0.0008277312484701581, 0.0005666394279931696, 0.00027708916746076504, 7.381428611014853e-05, 2.4968023837775346e-05, 0.0001578261853202343, 0.00045715676126137193, 0.0008421499998164396, 0.001165781532592971, 0.001277775651808633, 0.0011209111814933007, 0.0007759649310957877, 0.00040666465488870587, 0.00015004083792051945, 4.6506373240096915e-05, 5.591672847019639e-05, 0.0001190835263293972, 0.00019508227943773433, 0.00025482634003636033, 0.000269559176332421, 0.00022763949253074692, 0.00015893533411133825, 0.00012077987477442487, 0.00014248651608595245, 0.000186162003585467, 0.0001791115631667523, 9.769371052800148e-05, 1.5248533813677401e-05, 5.051018399832813e-05, 0.00025373000404304, 0.0005415623515794808, 0.0007543574692002928, 0.0007908890644381263, 0.0006944461418869035, 0.0006062909427300944, 0.0006298522433998554, 0.0007363929288315859, 0.0008032007473577336, 0.0007464385504639876, 0.0006172472031171239, 0.0005615146529134039, 0.0006722615375801694, 0.0008712577521393496, 0.00094441888353562, 0.0007280903476532451, 0.00030208853609424614, 8.461073349095987e-06, 0.0002281096664898943, 0.0010448535775735665, 0.002063384067612562, 0.002593178311796453, 0.0021564987775723474, 0.0009848749573825376, 7.870981758730941e-05, 0.0006551668128902681, 0.003272485254629916, 0.0072460389882489365, 0.010856444351218497, 0.012312545720071464 ], "yaxis": "y" }, { "legendgroup": "digitizer, labels: (2,)", "legendgrouptitle": { "text": "digitizer, labels: (2,)" }, "name": "S(Re(V))^2 for (Channels(labels=[2], name=digitizer, absolute_phase=False),)", "type": "scatter", "visible": true, "x": [ 0.0, 2500000.0, 5000000.0, 7500000.0, 10000000.0, 12500000.0, 15000000.0, 17500000.0, 20000000.0, 22500000.0, 25000000.0, 27500000.0, 30000000.0, 32500000.0, 35000000.0, 37500000.0, 40000000.0, 42500000.0, 45000000.0, 47500000.0, 50000000.0, 52500000.0, 55000000.0, 57500000.0, 60000000.0, 62500000.0, 65000000.0, 67500000.0, 70000000.0, 72500000.0, 75000000.0, 77500000.0, 80000000.0, 82500000.0, 85000000.0, 87500000.0, 90000000.0, 92500000.0, 95000000.0, 97500000.0, 100000000.0, 102500000.0, 105000000.0, 107500000.0, 110000000.0, 112500000.0, 115000000.0, 117500000.0, 120000000.0, 122500000.0, 125000000.0, 127500000.0, 130000000.0, 132500000.0, 135000000.0, 137500000.0, 140000000.0, 142500000.0, 145000000.0, 147500000.0, 150000000.0, 152500000.0, 155000000.0, 157500000.0, 160000000.0, 162500000.0, 165000000.0, 167500000.0, 170000000.0, 172500000.0, 175000000.0, 177500000.0, 180000000.0, 182500000.0, 185000000.0, 187500000.0, 190000000.0, 192500000.0, 195000000.0, 197500000.0, 200000000.0, 202500000.0, 205000000.0, 207500000.0, 210000000.0, 212500000.0, 215000000.0, 217500000.0, 220000000.0, 222500000.0, 225000000.0, 227500000.0, 230000000.0, 232500000.0, 235000000.0, 237500000.0, 240000000.0, 242500000.0, 245000000.0, 247500000.0, 250000000.0, 252500000.0, 255000000.0, 257500000.0, 260000000.0, 262500000.0, 265000000.0, 267500000.0, 270000000.0, 272500000.0, 275000000.0, 277500000.0, 280000000.0, 282500000.0, 285000000.0, 287500000.0, 290000000.0, 292500000.0, 295000000.0, 297500000.0, 300000000.0, 302500000.0, 305000000.0, 307500000.0, 310000000.0, 312500000.0, 315000000.0, 317500000.0, 320000000.0, 322500000.0, 325000000.0, 327500000.0, 330000000.0, 332500000.0, 335000000.0, 337500000.0, 340000000.0, 342500000.0, 345000000.0, 347500000.0, 350000000.0, 352500000.0, 355000000.0, 357500000.0, 360000000.0, 362500000.0, 365000000.0, 367500000.0, 370000000.0, 372500000.0, 375000000.0, 377500000.0, 380000000.0, 382500000.0, 385000000.0, 387500000.0, 390000000.0, 392500000.0, 395000000.0, 397500000.0, 400000000.0, 402500000.0, 405000000.0, 407500000.0, 410000000.0, 412500000.0, 415000000.0, 417500000.0, 420000000.0, 422500000.0, 425000000.0, 427500000.0, 430000000.0, 432500000.0, 435000000.0, 437500000.0, 440000000.0, 442500000.0, 445000000.0, 447500000.0, 450000000.0, 452500000.0, 455000000.0, 457500000.0, 460000000.0, 462500000.0, 465000000.0, 467500000.0, 470000000.0, 472500000.0, 475000000.0, 477500000.0, 480000000.0, 482500000.0, 485000000.0, 487500000.0, 490000000.0, 492500000.0, 495000000.0, 497500000.0, 500000000.0, 502500000.0, 505000000.0, 507500000.0, 510000000.0, 512500000.0, 515000000.0, 517500000.0, 520000000.0, 522500000.0, 525000000.0, 527500000.0, 530000000.0, 532500000.0, 535000000.0, 537500000.0, 540000000.0, 542500000.0, 545000000.0, 547500000.0, 550000000.0, 552500000.0, 555000000.0, 557500000.0, 560000000.0, 562500000.0, 565000000.0, 567500000.0, 570000000.0, 572500000.0, 575000000.0, 577500000.0, 580000000.0, 582500000.0, 585000000.0, 587500000.0, 590000000.0, 592500000.0, 595000000.0, 597500000.0, 600000000.0, 602500000.0, 605000000.0, 607500000.0, 610000000.0, 612500000.0, 615000000.0, 617500000.0, 620000000.0, 622500000.0, 625000000.0, 627500000.0, 630000000.0, 632500000.0, 635000000.0, 637500000.0, 640000000.0, 642500000.0, 645000000.0, 647500000.0, 650000000.0, 652500000.0, 655000000.0, 657500000.0, 660000000.0, 662500000.0, 665000000.0, 667500000.0, 670000000.0, 672500000.0, 675000000.0, 677500000.0, 680000000.0, 682500000.0, 685000000.0, 687500000.0, 690000000.0, 692500000.0, 695000000.0, 697500000.0, 700000000.0, 702500000.0, 705000000.0, 707500000.0, 710000000.0, 712500000.0, 715000000.0, 717500000.0, 720000000.0, 722500000.0, 725000000.0, 727500000.0, 730000000.0, 732500000.0, 735000000.0, 737500000.0, 740000000.0, 742500000.0, 745000000.0, 747500000.0, 750000000.0, 752500000.0, 755000000.0, 757500000.0, 760000000.0, 762500000.0, 765000000.0, 767500000.0, 770000000.0, 772500000.0, 775000000.0, 777500000.0, 780000000.0, 782500000.0, 785000000.0, 787500000.0, 790000000.0, 792500000.0, 795000000.0, 797500000.0, 800000000.0, 802500000.0, 805000000.0, 807500000.0, 810000000.0, 812500000.0, 815000000.0, 817500000.0, 820000000.0, 822500000.0, 825000000.0, 827500000.0, 830000000.0, 832500000.0, 835000000.0, 837500000.0, 840000000.0, 842500000.0, 845000000.0, 847500000.0, 850000000.0, 852500000.0, 855000000.0, 857500000.0, 860000000.0, 862500000.0, 865000000.0, 867500000.0, 870000000.0, 872500000.0, 875000000.0, 877500000.0, 880000000.0, 882500000.0, 885000000.0, 887500000.0, 890000000.0, 892500000.0, 895000000.0, 897500000.0, 900000000.0, 902500000.0, 905000000.0, 907500000.0, 910000000.0, 912500000.0, 915000000.0, 917500000.0, 920000000.0, 922500000.0, 925000000.0, 927500000.0, 930000000.0, 932500000.0, 935000000.0, 937500000.0, 940000000.0, 942500000.0, 945000000.0, 947500000.0, 950000000.0, 952500000.0, 955000000.0, 957500000.0, 960000000.0, 962500000.0, 965000000.0, 967500000.0, 970000000.0, 972500000.0, 975000000.0, 977500000.0, 980000000.0, 982500000.0, 985000000.0, 987500000.0, 990000000.0, 992500000.0, 995000000.0, 997500000.0, 1000000000.0, 1002500000.0, 1005000000.0, 1007500000.0, 1010000000.0, 1012500000.0, 1015000000.0, 1017500000.0, 1020000000.0, 1022500000.0, 1025000000.0, 1027500000.0, 1030000000.0, 1032500000.0, 1035000000.0, 1037500000.0, 1040000000.0, 1042500000.0, 1045000000.0, 1047500000.0, 1050000000.0, 1052500000.0, 1055000000.0, 1057500000.0, 1060000000.0, 1062500000.0, 1065000000.0, 1067500000.0, 1070000000.0, 1072500000.0, 1075000000.0, 1077500000.0, 1080000000.0, 1082500000.0, 1085000000.0, 1087500000.0, 1090000000.0, 1092500000.0, 1095000000.0, 1097500000.0, 1100000000.0, 1102500000.0, 1105000000.0, 1107500000.0, 1110000000.0, 1112500000.0, 1115000000.0, 1117500000.0, 1120000000.0, 1122500000.0, 1125000000.0, 1127500000.0, 1130000000.0, 1132500000.0, 1135000000.0, 1137500000.0, 1140000000.0, 1142500000.0, 1145000000.0, 1147500000.0, 1150000000.0, 1152500000.0, 1155000000.0, 1157500000.0, 1160000000.0, 1162500000.0, 1165000000.0, 1167500000.0, 1170000000.0, 1172500000.0, 1175000000.0, 1177500000.0, 1180000000.0, 1182500000.0, 1185000000.0, 1187500000.0, 1190000000.0, 1192500000.0, 1195000000.0, 1197500000.0, 1200000000.0, 1202500000.0, 1205000000.0, 1207500000.0, 1210000000.0, 1212500000.0, 1215000000.0, 1217500000.0, 1220000000.0, 1222500000.0, 1225000000.0, 1227500000.0, 1230000000.0, 1232500000.0, 1235000000.0, 1237500000.0, 1240000000.0, 1242500000.0, 1245000000.0, 1247500000.0, 1250000000.0, 1252500000.0, 1255000000.0, 1257500000.0, 1260000000.0, 1262500000.0, 1265000000.0, 1267500000.0, 1270000000.0, 1272500000.0, 1275000000.0, 1277500000.0, 1280000000.0, 1282500000.0, 1285000000.0, 1287500000.0, 1290000000.0, 1292500000.0, 1295000000.0, 1297500000.0, 1300000000.0, 1302500000.0, 1305000000.0, 1307500000.0, 1310000000.0, 1312500000.0, 1315000000.0, 1317500000.0, 1320000000.0, 1322500000.0, 1325000000.0, 1327500000.0, 1330000000.0, 1332500000.0, 1335000000.0, 1337500000.0, 1340000000.0, 1342500000.0, 1345000000.0, 1347500000.0, 1350000000.0, 1352500000.0, 1355000000.0, 1357500000.0, 1360000000.0, 1362500000.0, 1365000000.0, 1367500000.0, 1370000000.0, 1372500000.0, 1375000000.0, 1377500000.0, 1380000000.0, 1382500000.0, 1385000000.0, 1387500000.0, 1390000000.0, 1392500000.0, 1395000000.0, 1397500000.0, 1400000000.0, 1402500000.0, 1405000000.0, 1407500000.0, 1410000000.0, 1412500000.0, 1415000000.0, 1417500000.0, 1420000000.0, 1422500000.0, 1425000000.0, 1427500000.0, 1430000000.0, 1432500000.0, 1435000000.0, 1437500000.0, 1440000000.0, 1442500000.0, 1445000000.0, 1447500000.0, 1450000000.0, 1452500000.0, 1455000000.0, 1457500000.0, 1460000000.0, 1462500000.0, 1465000000.0, 1467500000.0, 1470000000.0, 1472500000.0, 1475000000.0, 1477500000.0, 1480000000.0, 1482500000.0, 1485000000.0, 1487500000.0, 1490000000.0, 1492500000.0, 1495000000.0, 1497500000.0, 1500000000.0, 1502500000.0, 1505000000.0, 1507500000.0, 1510000000.0, 1512500000.0, 1515000000.0, 1517500000.0, 1520000000.0, 1522500000.0, 1525000000.0, 1527500000.0, 1530000000.0, 1532500000.0, 1535000000.0, 1537500000.0, 1540000000.0, 1542500000.0, 1545000000.0, 1547500000.0, 1550000000.0, 1552500000.0, 1555000000.0, 1557500000.0, 1560000000.0, 1562500000.0, 1565000000.0, 1567500000.0, 1570000000.0, 1572500000.0, 1575000000.0, 1577500000.0, 1580000000.0, 1582500000.0, 1585000000.0, 1587500000.0, 1590000000.0, 1592500000.0, 1595000000.0, 1597500000.0, 1600000000.0, 1602500000.0, 1605000000.0, 1607500000.0, 1610000000.0, 1612500000.0, 1615000000.0, 1617500000.0, 1620000000.0, 1622500000.0, 1625000000.0, 1627500000.0, 1630000000.0, 1632500000.0, 1635000000.0, 1637500000.0, 1640000000.0, 1642500000.0, 1645000000.0, 1647500000.0, 1650000000.0, 1652500000.0, 1655000000.0, 1657500000.0, 1660000000.0, 1662500000.0, 1665000000.0, 1667500000.0, 1670000000.0, 1672500000.0, 1675000000.0, 1677500000.0, 1680000000.0, 1682500000.0, 1685000000.0, 1687500000.0, 1690000000.0, 1692500000.0, 1695000000.0, 1697500000.0, 1700000000.0, 1702500000.0, 1705000000.0, 1707500000.0, 1710000000.0, 1712500000.0, 1715000000.0, 1717500000.0, 1720000000.0, 1722500000.0, 1725000000.0, 1727500000.0, 1730000000.0, 1732500000.0, 1735000000.0, 1737500000.0, 1740000000.0, 1742500000.0, 1745000000.0, 1747500000.0, 1750000000.0, 1752500000.0, 1755000000.0, 1757500000.0, 1760000000.0, 1762500000.0, 1765000000.0, 1767500000.0, 1770000000.0, 1772500000.0, 1775000000.0, 1777500000.0, 1780000000.0, 1782500000.0, 1785000000.0, 1787500000.0, 1790000000.0, 1792500000.0, 1795000000.0, 1797500000.0, 1800000000.0, 1802500000.0, 1805000000.0, 1807500000.0, 1810000000.0, 1812500000.0, 1815000000.0, 1817500000.0, 1820000000.0, 1822500000.0, 1825000000.0, 1827500000.0, 1830000000.0, 1832500000.0, 1835000000.0, 1837500000.0, 1840000000.0, 1842500000.0, 1845000000.0, 1847500000.0, 1850000000.0, 1852500000.0, 1855000000.0, 1857500000.0, 1860000000.0, 1862500000.0, 1865000000.0, 1867500000.0, 1870000000.0, 1872500000.0, 1875000000.0, 1877500000.0, 1880000000.0, 1882500000.0, 1885000000.0, 1887500000.0, 1890000000.0, 1892500000.0, 1895000000.0, 1897500000.0, 1900000000.0, 1902500000.0, 1905000000.0, 1907500000.0, 1910000000.0, 1912500000.0, 1915000000.0, 1917500000.0, 1920000000.0, 1922500000.0, 1925000000.0, 1927500000.0, 1930000000.0, 1932500000.0, 1935000000.0, 1937500000.0, 1940000000.0, 1942500000.0, 1945000000.0, 1947500000.0, 1950000000.0, 1952500000.0, 1955000000.0, 1957500000.0, 1960000000.0, 1962500000.0, 1965000000.0, 1967500000.0, 1970000000.0, 1972500000.0, 1975000000.0, 1977500000.0, 1980000000.0, 1982500000.0, 1985000000.0, 1987500000.0, 1990000000.0, 1992500000.0, 1995000000.0, 1997500000.0, 2000000000.0, 2002500000.0, 2005000000.0, 2007500000.0, 2010000000.0, 2012500000.0, 2015000000.0, 2017500000.0, 2020000000.0, 2022500000.0, 2025000000.0, 2027500000.0, 2030000000.0, 2032500000.0, 2035000000.0, 2037500000.0, 2040000000.0, 2042500000.0, 2045000000.0, 2047500000.0, 2050000000.0, 2052500000.0, 2055000000.0, 2057500000.0, 2060000000.0, 2062500000.0, 2065000000.0, 2067500000.0, 2070000000.0, 2072500000.0, 2075000000.0, 2077500000.0, 2080000000.0, 2082500000.0, 2085000000.0, 2087500000.0, 2090000000.0, 2092500000.0, 2095000000.0, 2097500000.0, 2100000000.0, 2102500000.0, 2105000000.0, 2107500000.0, 2110000000.0, 2112500000.0, 2115000000.0, 2117500000.0, 2120000000.0, 2122500000.0, 2125000000.0, 2127500000.0, 2130000000.0, 2132500000.0, 2135000000.0, 2137500000.0, 2140000000.0, 2142500000.0, 2145000000.0, 2147500000.0, 2150000000.0, 2152500000.0, 2155000000.0, 2157500000.0, 2160000000.0, 2162500000.0, 2165000000.0, 2167500000.0, 2170000000.0, 2172500000.0, 2175000000.0, 2177500000.0, 2180000000.0, 2182500000.0, 2185000000.0, 2187500000.0, 2190000000.0, 2192500000.0, 2195000000.0, 2197500000.0, 2200000000.0, 2202500000.0, 2205000000.0, 2207500000.0, 2210000000.0, 2212500000.0, 2215000000.0, 2217500000.0, 2220000000.0, 2222500000.0, 2225000000.0, 2227500000.0, 2230000000.0, 2232500000.0, 2235000000.0, 2237500000.0, 2240000000.0, 2242500000.0, 2245000000.0, 2247500000.0, 2250000000.0, 2252500000.0, 2255000000.0, 2257500000.0, 2260000000.0, 2262500000.0, 2265000000.0, 2267500000.0, 2270000000.0, 2272500000.0, 2275000000.0, 2277500000.0, 2280000000.0, 2282500000.0, 2285000000.0, 2287500000.0, 2290000000.0, 2292500000.0, 2295000000.0, 2297500000.0, 2300000000.0, 2302500000.0, 2305000000.0, 2307500000.0, 2310000000.0, 2312500000.0, 2315000000.0, 2317500000.0, 2320000000.0, 2322500000.0, 2325000000.0, 2327500000.0, 2330000000.0, 2332500000.0, 2335000000.0, 2337500000.0, 2340000000.0, 2342500000.0, 2345000000.0, 2347500000.0, 2350000000.0, 2352500000.0, 2355000000.0, 2357500000.0, 2360000000.0, 2362500000.0, 2365000000.0, 2367500000.0, 2370000000.0, 2372500000.0, 2375000000.0, 2377500000.0, 2380000000.0, 2382500000.0, 2385000000.0, 2387500000.0, 2390000000.0, 2392500000.0, 2395000000.0, 2397500000.0, 2400000000.0 ], "xaxis": "x", "y": [ 7.12131404399531, 6.236336386380126, 4.091848581704113, 1.8305525653910135, 0.40256110006488777, 0.001013819130745407, 0.1624971310787419, 0.31812364129184184, 0.2438905794956171, 0.07263291281191248, 6.168651191255588e-05, 0.05275197866966902, 0.11535803172314707, 0.10061526783204282, 0.03666725460537214, 0.0008052361801927893, 0.016696144700435334, 0.04191185403846137, 0.03665407846998644, 0.011447687333669033, 0.00016852793686007516, 0.008555449927097301, 0.011677274308476659, 0.0013408149062986935, 0.019501786724353497, 0.135947650914974, 0.40167700554158503, 0.8409412537740792, 1.5019976192373528, 2.523567857866196, 4.156206712994406, 6.711240395165735, 10.454421395302798, 15.487270839813851, 21.66597436007816, 28.59784949694264, 35.72042472425921, 42.41644740867277, 48.092982953709715, 52.19326049410766, 54.19131618489631, 53.65811347467966, 50.426608073036455, 44.766607360198506, 37.42290712014372, 29.441240420944254, 21.853450197709254, 15.390201134794845, 10.359308573098849, 6.708575780457649, 4.187806965426939, 2.5036457365312765, 1.4087197422759525, 0.7246807331384435, 0.32762155714234376, 0.12467264029470945, 0.03953483237503475, 0.011875083995789655, 0.003663456076616037, 0.0003205815762272392, 0.0011383957775950098, 0.0061160101938608075, 0.01133235298187904, 0.016523351495488725, 0.03663337353491727, 0.10714530459347234, 0.28156043688072485, 0.6275792016592163, 1.2290336095712284, 2.1965514705280103, 3.685212056528299, 5.908706123143216, 9.125417227687114, 13.56679759921312, 19.30382987431405, 26.10133459421606, 33.35209816843197, 40.16426678463024, 45.59115525078484, 48.8996883510165, 49.74677016699477, 48.19556410517582, 44.60492924306995, 39.485790095649534, 33.400668892104925, 26.918010412353023, 20.58355088093857, 14.872354467757846, 10.122482617335441, 6.48367223777136, 3.91462477670271, 2.2349634292416667, 1.207002005974138, 0.6098409117245549, 0.2791034443045755, 0.10919867575769486, 0.03463769123218738, 0.011263947375239336, 0.008154512617749906, 0.007492971684013284, 0.00418122109903288, 0.0012335601342417907, 0.003710312483711957, 0.01577837872468808, 0.042799387280968916, 0.09849802553580993, 0.21794767533986584, 0.475806274507599, 1.0026584980827868, 1.9857815826095242, 3.6439021543766827, 6.180144336909409, 9.731405999098424, 14.331289782430193, 19.88744595235757, 26.160536491532078, 32.73934656575378, 39.0323476484333, 44.31470403409301, 47.85511676976153, 49.099309250889334, 47.83839566260371, 44.28054777080398, 38.98712059559922, 32.70393141920509, 26.16810023485339, 19.96932772706706, 14.498716150566565, 9.965412498376823, 6.437433473753703, 3.8756950847000704, 2.1581601738822886, 1.1068114562936961, 0.5244315373467482, 0.23314375922185282, 0.10000823470814588, 0.042215930724909076, 0.016701109002588824, 0.004908564322967747, 0.0004424561364534078, 0.0013801685554088857, 0.006127535489238405, 0.012020702143007694, 0.016216166573319257, 0.01744253627422606, 0.016654037015084416, 0.015935517036666385, 0.01687144679789629, 0.019844851484562016, 0.024361682578992083, 0.029502420641397624, 0.03411827749859755, 0.03725015377698254, 0.038926254963231446, 0.040455455954777814, 0.04337670181521395, 0.047742182344209884, 0.051544742752216335, 0.052150839972088844, 0.04846711521601396, 0.04177840297628104, 0.0346882598879716, 0.02950798713488615, 0.02752946648544194, 0.029099322593481115, 0.03350865910653674, 0.03857743661479246, 0.04101014691386036, 0.038152638730906144, 0.029985880235389333, 0.019377832776422032, 0.010094522094607462, 0.004312159863802946, 0.0018015813390804736, 0.0011193948175240592, 0.0012006980186247674, 0.0017962462177949974, 0.002834187740225514, 0.0038964212829555355, 0.004461334805274978, 0.0044020594589724675, 0.004000322631574449, 0.003526531134881882, 0.0030162498795143857, 0.00250090345078435, 0.002274485377541827, 0.0027718966698340544, 0.004228455541188974, 0.006579785685655648, 0.009655063299379698, 0.013260196423535304, 0.016943427934002293, 0.019812403468573075, 0.020865877728854784, 0.019695989717895823, 0.01687870528686873, 0.01363214077610944, 0.011089180247074351, 0.009865644744382255, 0.010149149018153315, 0.011923983745855016, 0.014936176669446615, 0.018503556027873767, 0.02156884887292903, 0.023117338308942248, 0.022643833181799838, 0.020310686708310235, 0.01676719667144766, 0.012842087931516387, 0.009261151877042424, 0.006425424588787818, 0.004331693522852995, 0.0027547279495074815, 0.001600039518776577, 0.0010648459407264315, 0.0013580738021197105, 0.002245155207091787, 0.00299894483446265, 0.0029562165270100014, 0.0021484324448326902, 0.0012834119495508838, 0.0010297024031313724, 0.0013642273957437771, 0.001712902078741379, 0.0017258207572924504, 0.0017954592124949428, 0.002704431544466123, 0.0047626588573219325, 0.0073542552085895515, 0.009359700057497755, 0.010007326637259102, 0.009347571394297932, 0.008035227586802517, 0.0068019565936990566, 0.006149405612487059, 0.006369495921179041, 0.007604457688851716, 0.009735251040930227, 0.012242026977189227, 0.014318875607560441, 0.015272843051962517, 0.014907744984905193, 0.013575600674790212, 0.011887010547995822, 0.010362483176899997, 0.009284244132798412, 0.008740828381712177, 0.008670978823580505, 0.008811813040217654, 0.008689334220044285, 0.007832654616557298, 0.006142042394421237, 0.004072535308426237, 0.002373618175350593, 0.001547514018687835, 0.0015140416479520078, 0.0017958935347870022, 0.0020053302780222923, 0.0021078540095585377, 0.002224743963263294, 0.0022911012142827754, 0.0020460203168263134, 0.0013937146512873991, 0.000672267929229454, 0.0004342992552907542, 0.0009223910692229516, 0.001810294626782069, 0.002498032834374056, 0.002635931971742802, 0.002343019379743659, 0.0019898021549581545, 0.001889355938225388, 0.00221491333079983, 0.003063705303609457, 0.004408691748845642, 0.005945443207722382, 0.007115647961265157, 0.007423478588561807, 0.006761476457865465, 0.005415135730744984, 0.003831136040316302, 0.002529072979688963, 0.0022343875457864234, 0.003793862733481858, 0.007522587485926756, 0.012420286162060564, 0.016236479673284312, 0.0167747909364929, 0.013528550542945716, 0.008164484663595716, 0.0033137237019085783, 0.0007082806124909278, 0.00026800340104891245, 0.0007327647169987229, 0.0009766844429397656, 0.0007354724034679436, 0.00034651907960097164, 0.00011770126524890249, 5.575618706465687e-05, 3.9944837445387385e-05, 3.504344717708572e-05, 8.04365852539243e-05, 0.0001815990939055835, 0.00030609512220241056, 0.0004557427663810771, 0.0006671583826637512, 0.0009411746814999349, 0.0012344940839013946, 0.0015343166871720027, 0.0018686867020019768, 0.0021842619966372977, 0.0022659494179328326, 0.001896271091556867, 0.0011481922103456692, 0.00045983721522346085, 0.00032934514406449356, 0.0009072550993816309, 0.001902163641584639, 0.0028621301843810027, 0.0034889490684720022, 0.003683600826602459, 0.00341265127471362, 0.002683840282026526, 0.0016792470020600817, 0.0007902100415262669, 0.00038600905592386004, 0.0005213777729417188, 0.0009205137393464412, 0.0012588818791579332, 0.0014105373820867413, 0.0014096120072558103, 0.0012689215460505994, 0.0009582913854897082, 0.0005590573749458639, 0.00030460156463813756, 0.00035447893101665416, 0.0005628915588375103, 0.0005944060513766483, 0.0003205729790899508, 2.8723609101020156e-05, 0.0001526511808727058, 0.0008114880619483273, 0.0016865532280239094, 0.00235248569018181, 0.002636637015482871, 0.00260407254739169, 0.002297038518070934, 0.0016677551616513693, 0.0008151803193488514, 0.00013599046858863532, 4.94288304360922e-05, 0.0005366161650335127, 0.001073417754953063, 0.0011243817499178668, 0.0006753859734345909, 0.0001952488497745324, 8.014568752558373e-05, 0.00024289421320410488, 0.0003102621649063957, 0.00014025460810654844, 2.796539441789274e-06, 0.00021692273794984246, 0.0007168372664760945, 0.001085920638335284, 0.0010071498122154678, 0.0005890054818688951, 0.00021472850456878754, 0.0001385960491332212, 0.00029454983850715457, 0.0004592058097364943, 0.0004977318790747408, 0.00041791425242936883, 0.0002725361600013183, 0.00011345550019479104, 3.4732909290229184e-05, 0.00015391204554709832, 0.00047340226063930137, 0.0007953151338321959, 0.0008625810470690575, 0.0006172397864288678, 0.00027400042363432206, 9.524115470908904e-05, 0.0001176220556825979, 0.00015861816522476328, 0.00010094342129063236, 0.00010601802406739162, 0.0004728843533765673, 0.0012721836697829236, 0.0021641348350580386, 0.0026286906761905744, 0.0023975080276380837, 0.0016643241244625993, 0.0008825769780643745, 0.00037524007241582544, 0.0001471872759800886, 5.279259725583948e-05, 9.166503769215042e-05, 0.0004748873661463627, 0.0013574319550887163, 0.0025163951048476872, 0.0033665277983427554, 0.0033910777812386802, 0.0026134948377132088, 0.0016239770502583452, 0.001078477928645885, 0.0011309448721459532, 0.0013596053046691671, 0.0012536544388849576, 0.0007423994650869007, 0.00021704916000079186, 6.310199874559558e-05, 0.0002532742553563316, 0.0004453197510237642, 0.0004237791003585829, 0.0003387327187663599, 0.0004716042607118182, 0.0008409340289994749, 0.0011398272881627772, 0.0010755590307762956, 0.0006964966439438486, 0.00032789843788113285, 0.00021934597703978617, 0.00032707674786029104, 0.0004505966747680245, 0.0005107557836635487, 0.000629678166833492, 0.0009542195629775996, 0.0014603186528008535, 0.001945276616642259, 0.0021715652144099697, 0.0020040439575600877, 0.0014714635248407539, 0.0007757663884540776, 0.00023457736939730016, 0.00011047194746604274, 0.00040213483932012665, 0.0008090401082902619, 0.0009740569411156402, 0.0008000783298507274, 0.0005054277522124096, 0.0003531039619976803, 0.00036956630704236554, 0.00037646304265695176, 0.00026098240312487613, 0.00011378766614963097, 6.40414151817734e-05, 7.518601542966587e-05, 3.152763781485439e-05, 2.1331788250776798e-05, 0.00037670062696849307, 0.0012887453336986705, 0.002410178368380115, 0.0030017646171516133, 0.0025922317434801286, 0.0014681836201707067, 0.00042377733049226823, 1.2317824395336988e-05, 0.00010726003149648242, 0.00021433481958831125, 0.00011098321145829517, 5.36364422536459e-05, 0.00036056549507128044, 0.0009305180902526647, 0.0012938053975391124, 0.0011199561323436233, 0.0005739119596642307, 0.0001332592189315866, 0.00011752604914599978, 0.0004506507327160721, 0.0008293711357541515, 0.0010142841316166107, 0.0009386622049252827, 0.0006521294388313551, 0.00028661717045606633, 6.571186676907852e-05, 0.00020639060560113286, 0.0006983323401023319, 0.0012078744876758214, 0.0013151645349286335, 0.0009135980489790691, 0.00034302769274034993, 6.924610865705786e-05, 0.00022704504514885885, 0.0005167241635559193, 0.0005594024151261769, 0.00031102452819593276, 8.689990857643385e-05, 0.0001959102646029544, 0.0006023976778951785, 0.000968791461255669, 0.000999216583241497, 0.0007045224909983955, 0.0003392333829157444, 0.00012588375692851545, 7.498556601534904e-05, 6.308337355626816e-05, 4.4917069348347937e-05, 0.0001504998048813235, 0.0005550703515929531, 0.0012519246983249172, 0.0019669405672651614, 0.002326708042922914, 0.0021469626833399897, 0.0015795750010289423, 0.0009806601896219943, 0.0006276051228703877, 0.0005498710109243754, 0.0006019185928418936, 0.000650244513024118, 0.0006600869726016366, 0.0006337151591410446, 0.0005436445465939346, 0.0003735895932648494, 0.00018823922138075757, 8.862904535477718e-05, 8.40605944786449e-05, 7.653505240201336e-05, 3.3324173052168815e-05, 0.00013398786170642276, 0.0006304840004135606, 0.00149964709388898, 0.002301318185125274, 0.0025026748688824303, 0.0019884805055140065, 0.0011946334806458923, 0.0006841422959313195, 0.0006229243147271742, 0.0007310046082870866, 0.0007121231262776236, 0.0005983993860691951, 0.0005980644299614183, 0.0007087852368795436, 0.0006757058392122073, 0.0003978953190860722, 0.00022979298415385545, 0.000680362779751197, 0.0017771832037721637, 0.0028718888233072283, 0.003207675081667327, 0.0026520519690402143, 0.0017609329083676038, 0.00112277021953867, 0.000790724663694815, 0.0004712834761589396, 0.0001585335756602901, 0.0003163245505145576, 0.0012837222987792053, 0.002621296711526688, 0.003303761689679982, 0.0026960565304755884, 0.0012634968170262013, 0.00017706327789169602, 0.00018651129054821766, 0.0009522438684444376, 0.001511485386630775, 0.0013138713633618292, 0.0007047815398735164, 0.0004260398522773886, 0.0007820634882423558, 0.0013803076621718223, 0.0016209905547553678, 0.0013082026152520852, 0.000746916689942341, 0.0003445239648712868, 0.00023091755629856827, 0.00025969239220505907, 0.0002658021346301314, 0.00023278950907813372, 0.00023119193771420783, 0.00028146780377518777, 0.0003258580102191695, 0.0003090773362778987, 0.0002431271229382167, 0.00018956461963985993, 0.00020486704500590145, 0.00031109615470374874, 0.0004930978703060318, 0.0006953488298602631, 0.0008246787323944053, 0.000787952260708628, 0.0005606850789337639, 0.0002376422405385959, 1.874044461411619e-05, 0.00012605865136942058, 0.0006853894364802722, 0.0016247349083735498, 0.0026535154425182225, 0.0033709490022068144, 0.003475745797551636, 0.0029465542421695094, 0.0020465235734475713, 0.001137442757678026, 0.00046318719765595063, 8.903404584082703e-05, 1.2960960815171746e-05, 0.0002762121035149262, 0.0009127345507910212, 0.0017877155717886696, 0.002543119516449838, 0.002784429007587645, 0.0023808864148446456, 0.0015964948578432482, 0.000902909034155759, 0.0006229173956427951, 0.0007142813599122219, 0.0008690642791649039, 0.0008124896922867544, 0.0005216522403187607, 0.00019002745975018546, 1.397933510189482e-05, 2.400948031465375e-05, 0.00010264607078031861, 0.00012999205049205167, 8.87390937125431e-05, 3.8442831032783504e-05, 2.5250213796960337e-05, 4.673653172203525e-05, 9.472915547337611e-05, 0.00018762572421199758, 0.00032637187012943004, 0.00043556021700518713, 0.0004043730810266038, 0.00022443327948341773, 6.617887565262058e-05, 0.00015884447396382337, 0.0005562304684951744, 0.001035629368644331, 0.0012673169986588213, 0.0011016046616423663, 0.0006820259050555155, 0.00028150306539645583, 6.01105355580853e-05, 2.3477541288134674e-06, 4.797002790430285e-05, 0.00019782645536718665, 0.0004477616305379836, 0.0006730048335999055, 0.0006808421936277525, 0.00042351037981899726, 0.00010640142377250836, 3.8141010170990455e-06, 0.00015403513356950033, 0.0003036336089980373, 0.0002178891805142604, 2.9415622978862584e-05, 0.00019296706149312165, 0.0010188269259762545, 0.0022439376250005705, 0.0031202858026365228, 0.003005389518161834, 0.001936097022413137, 0.0006612321269152103, 9.00491832461968e-05, 0.0006121534441583575, 0.0018278947282565356, 0.002874310010274289, 0.0030673016504880095, 0.0023620647438467755, 0.0012984342723447492, 0.0005117651456227972, 0.00023942502447229852, 0.0002442652078438226, 0.0001855595319357521, 3.357914808423634e-05, 8.424051144342093e-05, 0.0005620417781538305, 0.0012642727086680195, 0.0016738379401465275, 0.0014504328190984715, 0.0007759297472617489, 0.00018814327650768973, 0.00011041469691072442, 0.0005950304233585818, 0.0014847000449113364, 0.0026674978854585234, 0.004033649315606825, 0.005219292429558962, 0.005604506465824864, 0.004771483939726239, 0.003001761828714274, 0.0012019561028524175, 0.0002132930964270436, 0.0001615803288417055, 0.0005001425721543759, 0.000657978476412618, 0.0005730996822974703, 0.0005825053754323773, 0.0008962336235085964, 0.0013073378770851994, 0.0014336984010769017, 0.001143555634987764, 0.0006592962864954016, 0.0002795600851653735, 0.00010053039030295776, 3.531202873532536e-05, 1.2526339394154646e-05, 5.150054987322108e-05, 0.0001519883805633977, 0.0002171877213527154, 0.00015937948574762766, 4.4245505417085266e-05, 4.67591265380929e-05, 0.0002441196769725039, 0.0005078436288239695, 0.0006420601871467747, 0.0005952622138255405, 0.0004797485630661757, 0.0003938924273606782, 0.00030401646300129523, 0.0001491894246227464, 1.0317652992455196e-05, 7.75857097949516e-05, 0.0004176356115156157, 0.0008334818433970439, 0.0010245930934581501, 0.0008815263105142974, 0.000569275656840671, 0.00031176725677402556, 0.00016446039035274422, 6.791736772913301e-05, 9.412166616922e-05, 0.0005159393806428412, 0.001526787465267372, 0.002892424949914477, 0.003968968196483441, 0.0041570223931693745, 0.003382797888496405, 0.002146100052276532, 0.0011052196642096777, 0.0006036982573576465, 0.0005398523384500009, 0.0006006132506964654, 0.0005632357366615956, 0.0004036409313057646, 0.00021140667427002293, 7.78390240472379e-05, 6.277717415002075e-05, 0.0002030158385833386, 0.0004895114640504299, 0.0008234338632921536, 0.0010290922691515317, 0.0009615233234545799, 0.0006418905900595414, 0.0002969177011657997, 0.00023248708187741313, 0.0006032228566277558, 0.001249696435260148, 0.0017615276593910682, 0.0017636491821324787, 0.0012200322008389137, 0.0004898989880179463, 5.416468241580372e-05, 0.00012607961462838356, 0.0004906124255438692, 0.000725043559569749, 0.0005981569593372061, 0.00027392131815635494, 0.00013699542481357874, 0.00042319853185865294, 0.0010108972589193404, 0.0015477089398578552, 0.001756398605510793, 0.0016231313572539065, 0.0013333906095994925, 0.0010807278780771937, 0.0009573059635695974, 0.0009920521717984407, 0.0012240237832603716, 0.0016825109024009213, 0.0022854344345402066, 0.002789583204163105, 0.0028932013179531154, 0.0024411218928983435, 0.0015694258444600526, 0.0006587376679922984, 0.00011135364003471181, 0.00010274699332040039, 0.00047927200217811645, 0.0008726992903245706, 0.0009548709372712255, 0.0006614616687072002, 0.00023281450016224815, 4.1147651358305574e-05, 0.0003205065352023258, 0.0009887110772263778, 0.0016908504657424312, 0.0020350760691214497, 0.0018485512445021383, 0.0012688401703706185, 0.000618641912301186, 0.00018036795444894673, 4.803024066689675e-05, 0.00014199647061684253, 0.00032480326018659907, 0.0004947475937897144, 0.0005992825470236037, 0.0006092429633688425, 0.0005154632291514314, 0.0003484316470290049, 0.00017479234198431638, 5.504321733725188e-05, 5.302020850592436e-06, 4.770353257176392e-06, 2.9795460892849824e-05, 6.485767372993543e-05, 8.812133522702284e-05, 8.149623098831952e-05, 7.897558165080407e-05, 0.00017934835789343848, 0.0004523442581377079, 0.0008052502908406163, 0.0009881284390394088, 0.0008111344875474686, 0.0003885220422092173, 0.0001158875869016079, 0.00032388455977703167, 0.000923174509361337, 0.0014306839566125286, 0.0014013742334657141, 0.0008511875566663314, 0.00024322219867521479, 6.128914779012401e-05, 0.0004175130670441029, 0.001064642589999634, 0.0017173584803626544, 0.002282797693208315, 0.0027895020121915396, 0.0032073244721741844, 0.0034488884164397557, 0.0035359982096467473, 0.0036387532818634816, 0.0038471894602988633, 0.0039364667105873385, 0.0034917175738578723, 0.0023641447581550655, 0.0009810406648815217, 0.00010527526777482045, 0.00021507342907486118, 0.0011127680831991512, 0.0021533628371352828, 0.002837056801257612, 0.0031535700201727416, 0.0033797550044595143, 0.003633514629045296, 0.0037015898174295554, 0.0032943159427568326, 0.002398979262575908, 0.0013397327166119368, 0.0005137600826588212, 0.00010572350488672165, 4.044889341116363e-05, 0.00014103708903498012, 0.0002810166868906752, 0.0004075842171076568, 0.000491528245029577, 0.0005059192359587706, 0.00044806346799880085, 0.0003516726768350367, 0.000264187387211194, 0.0002157894262702214, 0.00020603327142533072, 0.00020834787927255857, 0.00019531461486541204, 0.0001921326835929383, 0.00031896592761447383, 0.0007334688202903754, 0.0014508646726127197, 0.0021921254007791413, 0.002484394057230708, 0.0020375329832506045, 0.0010880734528070546, 0.0003197705308141319, 0.00032581085751820304, 0.0010658495222467044, 0.0018583561155363266, 0.001971772395901051, 0.0012857137860510638, 0.00040229058638125104, 0.00011082628569915654, 0.0007179308770422526, 0.001841339339945106, 0.0027829893186049376, 0.003071049963449233, 0.0026991871330590065, 0.001968295307991381, 0.0011991343946496805, 0.0005912835635134984, 0.0002507810988024507, 0.00023298204311509422, 0.0005109217733655186, 0.0009351458265988149, 0.0012820446527231303, 0.0013769224502282555, 0.0011861655318513495, 0.0008098104639987643, 0.0004069657150210661, 0.00012521138192282544, 5.9490991576700104e-05, 0.00022270250015744717, 0.000527812828673514, 0.0008145749933078769, 0.000932311241792953, 0.0008277312484701581, 0.0005666394279931696, 0.00027708916746076504, 7.381428611014853e-05, 2.4968023837775346e-05, 0.0001578261853202343, 0.00045715676126137193, 0.0008421499998164396, 0.001165781532592971, 0.001277775651808633, 0.0011209111814933007, 0.0007759649310957877, 0.00040666465488870587, 0.00015004083792051945, 4.6506373240096915e-05, 5.591672847019639e-05, 0.0001190835263293972, 0.00019508227943773433, 0.00025482634003636033, 0.000269559176332421, 0.00022763949253074692, 0.00015893533411133825, 0.00012077987477442487, 0.00014248651608595245, 0.000186162003585467, 0.0001791115631667523, 9.769371052800148e-05, 1.5248533813677401e-05, 5.051018399832813e-05, 0.00025373000404304, 0.0005415623515794808, 0.0007543574692002928, 0.0007908890644381263, 0.0006944461418869035, 0.0006062909427300944, 0.0006298522433998554, 0.0007363929288315859, 0.0008032007473577336, 0.0007464385504639876, 0.0006172472031171239, 0.0005615146529134039, 0.0006722615375801694, 0.0008712577521393496, 0.00094441888353562, 0.0007280903476532451, 0.00030208853609424614, 8.461073349095987e-06, 0.0002281096664898943, 0.0010448535775735665, 0.002063384067612562, 0.002593178311796453, 0.0021564987775723474, 0.0009848749573825376, 7.870981758730941e-05, 0.0006551668128902681, 0.003272485254629916, 0.0072460389882489365, 0.010856444351218497, 0.012312545720071464 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Trace data spectrum", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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" } ], "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": "Frequency (Hz)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Power Spectrum of Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "program.plot_spectrum(channel_subplots=False)" ] }, { "cell_type": "raw", "id": "06038fd9", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "This strategy is commonly used to multiplex qubit readout. To infer the different\n", "qubit states, users will typically look at the I/Q scatter diagrams for both the\n", "ground and excited state and classify based on where the points land on the I/Q plane." ] }, { "cell_type": "code", "execution_count": 11, "id": "97ad393c", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:30:14.823623Z", "iopub.status.busy": "2025-10-02T01:30:14.823188Z", "iopub.status.idle": "2025-10-02T01:30:14.931519Z", "shell.execute_reply": "2025-10-02T01:30:14.930772Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "(%{x}, %{y})", "legendgroup": "digitizer, labels: (0,)", "legendgrouptitle": { "text": "digitizer, labels: (0,)" }, "marker": { "color": "#ff005c", "symbol": "circle" }, "mode": "markers", "name": "I/Q for 0", "showlegend": true, "type": "scatter", "x": [ 0.02847049035779482 ], "xaxis": "x", "y": [ -0.025680045024263205 ], "yaxis": "y" }, { "hovertemplate": "(%{x}, %{y})", "legendgroup": "digitizer, labels: (1,)", "legendgrouptitle": { "text": "digitizer, labels: (1,)" }, "marker": { "color": "#00d539", "symbol": "square" }, "mode": "markers", "name": "I/Q for 0", "showlegend": true, "type": "scatter", "x": [ -0.03111846950400161 ], "xaxis": "x", "y": [ -0.019521996886299593 ], "yaxis": "y" }, { "hovertemplate": "(%{x}, %{y})", "legendgroup": "digitizer, labels: (2,)", "legendgrouptitle": { "text": "digitizer, labels: (2,)" }, "marker": { "color": "#ad6aff", "symbol": "diamond" }, "mode": "markers", "name": "I/Q for 0", "showlegend": true, "type": "scatter", "x": [ -0.01106177810564548 ], "xaxis": "x", "y": [ 0.0347784569874539 ], "yaxis": "y" } ], "layout": { "coloraxis": { "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "height": 500, "hovermode": "closest", "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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": "#00d539", "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": "#ff005c", "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": "#ad6aff", "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" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "showticklabels": true, "tickangle": 0, "title": { "text": "I" } }, "yaxis": { "anchor": "x", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "title": { "text": "Q" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "program.plot_iq(plot_type=\"scatter\", channel_subplots=False)" ] } ], "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.12" } }, "nbformat": 4, "nbformat_minor": 5 }