{ "cells": [ { "cell_type": "markdown", "id": "38a8653e", "metadata": { "lines_to_next_cell": 0 }, "source": [] }, { "cell_type": "markdown", "id": "971a75c3", "metadata": { "tags": [ "header_banner" ] }, "source": [ "\n", " \"image0\"\n", "" ] }, { "cell_type": "code", "execution_count": 1, "id": "1305622d", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:08.552719Z", "iopub.status.busy": "2025-03-12T18:00:08.552189Z", "iopub.status.idle": "2025-03-12T18:00:12.905142Z", "shell.execute_reply": "2025-03-12T18:00:12.903966Z" }, "tags": [ "imports", "header_0" ] }, "outputs": [], "source": [ "import rich # noqa:F401\n", "\n", "import quantify_core.data.handling as dh\n", "from quantify_scheduler import QuantumDevice\n", "\n", "from utils import display_dict, initialize_hardware, run_schedule, show_connectivity # noqa:F401" ] }, { "cell_type": "code", "execution_count": 2, "id": "3f421ab3", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:12.909185Z", "iopub.status.busy": "2025-03-12T18:00:12.908431Z", "iopub.status.idle": "2025-03-12T18:00:12.913020Z", "shell.execute_reply": "2025-03-12T18:00:12.912182Z" }, "tags": [ "config", "header_1" ] }, "outputs": [], "source": [ "hw_config_path = \"configs/tuning_transmon_coupled_pair_hardware_config.json\"\n", "device_path = \"devices/transmon_device_2q.json\"" ] }, { "cell_type": "code", "execution_count": 3, "id": "88e67d10", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:12.915265Z", "iopub.status.busy": "2025-03-12T18:00:12.915044Z", "iopub.status.idle": "2025-03-12T18:00:12.919925Z", "shell.execute_reply": "2025-03-12T18:00:12.919067Z" }, "tags": [ "header_2" ] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Data will be saved in:\n", "/root/quantify-data\n" ] } ], "source": [ "# Enter your own dataset directory here!\n", "dh.set_datadir(dh.default_datadir())" ] }, { "cell_type": "code", "execution_count": 4, "id": "bdd77ea6", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:12.922072Z", "iopub.status.busy": "2025-03-12T18:00:12.921859Z", "iopub.status.idle": "2025-03-12T18:00:13.432803Z", "shell.execute_reply": "2025-03-12T18:00:13.432073Z" }, "tags": [ "header_3" ] }, "outputs": [], "source": [ "quantum_device = QuantumDevice.from_json_file(device_path)\n", "qubit = quantum_device.get_element(\"q0\")\n", "quantum_device.hardware_config.load_from_json_file(hw_config_path)\n", "cluster_ip = None\n", "meas_ctrl, inst_coord, cluster = initialize_hardware(quantum_device, ip=cluster_ip)" ] }, { "cell_type": "code", "execution_count": 5, "id": "0af7b253", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:13.435196Z", "iopub.status.busy": "2025-03-12T18:00:13.434966Z", "iopub.status.idle": "2025-03-12T18:00:13.439544Z", "shell.execute_reply": "2025-03-12T18:00:13.438863Z" }, "tags": [ "header_flux" ] }, "outputs": [], "source": [ "flux_settable: callable = cluster.module2.out0_offset\n", "flux_settable.inter_delay = 100e-9 # Delay time in seconds between consecutive set operations.\n", "flux_settable.step = 0.3e-3 # Stepsize in V that this Parameter uses during set operation.\n", "flux_settable() # Get before setting to avoid jumps.\n", "flux_settable(0.0)" ] }, { "cell_type": "markdown", "id": "b90e6b98", "metadata": {}, "source": [ "# Resonator Flux Spectroscopy\n", "For flux tunable qubits, the resonance frequency of the readout resonator depends on the flux.\n", "This can be used as a rough measure to find the sweetspot." ] }, { "cell_type": "code", "execution_count": 6, "id": "06436112", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:13.441923Z", "iopub.status.busy": "2025-03-12T18:00:13.441483Z", "iopub.status.idle": "2025-03-12T18:00:13.445225Z", "shell.execute_reply": "2025-03-12T18:00:13.444625Z" }, "title": "HEADER" }, "outputs": [], "source": [ "import numpy as np\n", "from qcodes.parameters import ManualParameter\n", "\n", "from quantify_scheduler import Schedule, ScheduleGettable\n", "from quantify_scheduler.operations import IdlePulse, Measure" ] }, { "cell_type": "markdown", "id": "dc8f9c8e", "metadata": { "tags": [ "no_demo" ] }, "source": [ "## Setup\n", "In this section we configure the hardware configuration which specifies the connectivity of our system.\n", "\n", "The experiments of this tutorial are meant to be executed with a Qblox Cluster controlling a transmon system.\n", "The experiments can also be executed using a dummy Qblox device that is created via an instance of the `Cluster` class, and is initialized with a dummy configuration.\n", "When using a dummy device, the analysis will not work because the experiments will return `np.nan` values.\n", "\n", "### Configuration file\n", "\n", "This is a template hardware configuration file for a 2-qubit system with a flux-control line which can be used to tune the qubit frequency. We will only work with qubit 0.\n", "\n", "The hardware connectivity is as follows, by cluster slot:\n", "\n", "- **QCM** (Slot 2)\n", " - $\\text{O}^{1}$: Flux line for `q0`.\n", " - $\\text{O}^{2}$: Flux line for `q1`.\n", "\n", "- **QCM-RF** (Slot 6)\n", " - $\\text{O}^{1}$: Drive line for `q0` using fixed 80 MHz IF.\n", " - $\\text{O}^{2}$: Drive line for `q1` using fixed 80 MHz IF.\n", "\n", "- **QRM-RF** (Slot 8)\n", " - $\\text{O}^{1}$ and $\\text{I}^{1}$: Shared readout line for `q0`/`q1` using a fixed LO set at 7.5 GHz.\n", "\n", "Note that in the hardware configuration below the mixers are uncorrected, but for high fidelity experiments this should also be done for all the modules." ] }, { "cell_type": "markdown", "id": "10b9bdcd", "metadata": { "tags": [ "no_demo" ] }, "source": [ "### Quantum device settings\n", "Here we initialize our `QuantumDevice` and our qubit parameters, checkout this [tutorial](https://quantify-os.org/docs/quantify-scheduler/tutorials/Operations%20and%20Qubits.html) for further details.\n", "\n", "In short, a `QuantumDevice` contains device elements where we save our found parameters. Here we are loading a template for 2 qubits, but we will only use qubit 0." ] }, { "cell_type": "markdown", "id": "a93ec56e", "metadata": {}, "source": [ "## Configure external flux control\n", "In the case of flux-tunable transmon qubits, we need to have some way of controlling the external flux.\n", "This can be done by setting an output bias on a module of the cluster which is then connected to the flux line.\n", "If your system is not using flux-tunable transmons, then you can skip to the next section." ] }, { "cell_type": "markdown", "id": "e0494e93", "metadata": { "lines_to_next_cell": 2, "title": "BODY" }, "source": [ "## Resonator Flux Spectroscopy" ] }, { "cell_type": "code", "execution_count": 7, "id": "46585e6e", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:13.447354Z", "iopub.status.busy": "2025-03-12T18:00:13.447012Z", "iopub.status.idle": "2025-03-12T18:00:13.455377Z", "shell.execute_reply": "2025-03-12T18:00:13.454753Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "def resonator_spectroscopy_schedule(\n", " qubit, # noqa: ANN001\n", " freqs: np.array,\n", " repetitions: int = 1,\n", ") -> Schedule:\n", " \"\"\"Schedule to sweep the resonator frequency.\"\"\"\n", " sched = Schedule(\"schedule\", repetitions=repetitions)\n", " for i, freq in enumerate(freqs):\n", " sched.add(\n", " Measure(\n", " qubit.name,\n", " acq_index=i,\n", " freq=freq,\n", " )\n", " )\n", " sched.add(IdlePulse(8e-9))\n", " return sched\n", "\n", "\n", "freqs = ManualParameter(name=\"freq\", unit=\"Hz\", label=\"Frequency\")\n", "freqs.batched = True\n", "freqs.batch_size = 100\n", "\n", "spec_sched_kwargs = dict(\n", " qubit=qubit,\n", " freqs=freqs,\n", ")\n", "gettable = ScheduleGettable(\n", " quantum_device,\n", " schedule_function=resonator_spectroscopy_schedule,\n", " schedule_kwargs=spec_sched_kwargs,\n", " real_imag=False,\n", " batched=True,\n", ")\n", "\n", "meas_ctrl.gettables(gettable)" ] }, { "cell_type": "code", "execution_count": 8, "id": "7113c666", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:13.457455Z", "iopub.status.busy": "2025-03-12T18:00:13.456978Z", "iopub.status.idle": "2025-03-12T18:00:16.023770Z", "shell.execute_reply": "2025-03-12T18:00:16.022699Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting batched measurement...\n", "Iterative settable(s) [outer loop(s)]:\n", "\t out0_offset \n", "Batched settable(s):\n", "\t freq \n", "Batch size limit: 100\n", "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4161cc381da5458e8fa0dbfbd978827e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Completed: 0%| [ elapsed time: 00:00 | time left: ? ] it" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
<xarray.Dataset> Size: 29kB\n",
       "Dimensions:  (dim_0: 900)\n",
       "Coordinates:\n",
       "    x0       (dim_0) float64 7kB 7.58e+09 7.58e+09 ... 7.62e+09 7.62e+09\n",
       "    x1       (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n",
       "Dimensions without coordinates: dim_0\n",
       "Data variables:\n",
       "    y0       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "    y1       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "Attributes:\n",
       "    tuid:                             20250312-180013-462-0d1fa1\n",
       "    name:                             resonator flux spectroscopy\n",
       "    grid_2d:                          True\n",
       "    grid_2d_uniformly_spaced:         True\n",
       "    1d_2_settables_uniformly_spaced:  False\n",
       "    xlen:                             300\n",
       "    ylen:                             3
" ], "text/plain": [ " Size: 29kB\n", "Dimensions: (dim_0: 900)\n", "Coordinates:\n", " x0 (dim_0) float64 7kB 7.58e+09 7.58e+09 ... 7.62e+09 7.62e+09\n", " x1 (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n", "Dimensions without coordinates: dim_0\n", "Data variables:\n", " y0 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", " y1 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", "Attributes:\n", " tuid: 20250312-180013-462-0d1fa1\n", " name: resonator flux spectroscopy\n", " grid_2d: True\n", " grid_2d_uniformly_spaced: True\n", " 1d_2_settables_uniformly_spaced: False\n", " xlen: 300\n", " ylen: 3" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.cfg_sched_repetitions(80)\n", "center = qubit.clock_freqs.readout()\n", "frequency_setpoints = np.linspace(center - 20e6, center + 20e6, 300)\n", "flux_setpoints = np.linspace(0, 1, 3)\n", "meas_ctrl.settables([freqs, flux_settable])\n", "meas_ctrl.setpoints_grid((frequency_setpoints, flux_setpoints))\n", "\n", "rfs_ds = meas_ctrl.run(\"resonator flux spectroscopy\")\n", "rfs_ds" ] }, { "cell_type": "code", "execution_count": 9, "id": "e6d98dd5", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:16.027794Z", "iopub.status.busy": "2025-03-12T18:00:16.026582Z", "iopub.status.idle": "2025-03-12T18:00:16.378877Z", "shell.execute_reply": "2025-03-12T18:00:16.378010Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "58b0cc5d88b54953ac05e32926cf722b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('other values',)), Tab(childre…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "inst_coord.last_schedule.compiled_instructions" ] }, { "cell_type": "code", "execution_count": 10, "id": "c89faae8", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:16.405885Z", "iopub.status.busy": "2025-03-12T18:00:16.405608Z", "iopub.status.idle": "2025-03-12T18:00:16.619258Z", "shell.execute_reply": "2025-03-12T18:00:16.618340Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e398b664532e4bd588a0d35e5c940ec9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Tab(children=(Tab(children=(Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('o…" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "display_dict(quantum_device.hardware_config())" ] }, { "cell_type": "code", "execution_count": 11, "id": "d6fd5ab7", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:16.652486Z", "iopub.status.busy": "2025-03-12T18:00:16.652245Z", "iopub.status.idle": "2025-03-12T18:00:16.663593Z", "shell.execute_reply": "2025-03-12T18:00:16.662817Z" } }, "outputs": [ { "data": { "text/plain": [ "'devices/device_2q_2025-03-12_18-00-16_UTC.json'" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.to_json_file(\"devices/\")" ] } ], "metadata": { "files_to_bundle_in_zip_file": [ "figures/Banner.jpeg", "configs/tuning_transmon_coupled_pair_hardware_config.json", "devices/transmon_device_2q.json", "utils.py" ], "jupytext": { "cell_metadata_filter": "all", "notebook_metadata_filter": "files_to_bundle_in_zip_file,is_demo,execute" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.20" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "002813213ebe45079af8e0b7bd60c68d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "002c4b2306aa4dba9bc58396e4021992": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "00f8a8d8f9c6471a895ec1803454f78b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "01e2970ae61d4e04b0143886b2c9c7d6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ae6074741de24f05913f85e788c98562", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0458ddcdcc804dffb1a770311c234e14": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7bf7b48f548d4ad585f2491a550be803", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "063d05b324844055917cd817b36c4961": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fdb7802a48be4ad289aba86bd11874b1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "069a8f60c327445c89b84607bd0f7a94": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_9e46c4ea7d1d444091a08092c987e68b" ], "layout": "IPY_MODEL_139e29c3f21446a9b9cb7335b35191d1", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "07bc070e1c8d42e09ce7743f94941099": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0947b12503b64d3193d1b2797c0a13e0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_e57843ed81164f7887c0403f2af5523e" ], "layout": "IPY_MODEL_d274bf5d862e433098a55849bde3b803", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "09bbb66f60394be3b41cc3ab53fca438": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_f7a1d5e9778f46adb03755194a0166fc" ], "layout": "IPY_MODEL_7f7af7fe271d453db3acff788c278528", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "0a2b63106d4649b096d27d00f7582bb3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0bc2e8f5583a4ecaba09e736121cb99b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6aff517dbe324b37a35b60ab62c7b7d7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0d86d6550eb8400a907bd06a3fc97266": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0f1016c980ff416c9ee483adb1333d10": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_55c2192d11cf4559bc7c481e647633e9" ], "layout": "IPY_MODEL_1c8da4333a0843afb3e6a306a38d8863", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "0f63840d36e049b4a348add2ec84d410": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fbf389eb5dea4d65999d65cc1a70d155", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0fa557c2556142dea3cd2c80e32e0af9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cdbb671909e74e529e3a0ebe61d88b8b", "msg_id": "", "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
settingvalue
acq_protocolSSBIntegrationComplex
bin_modeaverage
acq_return_type<class 'complex'>
repetitions80
\n
", "text/plain": "setting value\nacq_protocol SSBIntegrationComplex\nbin_mode average\nacq_return_type \nrepetitions 80" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "0fd2489b9a914f8590a21f209c2abb58": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_815281617c3d4d8b9d43a429d4d67abd", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "10b483d666cc41319a8ee40d930a6cc5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_45ac0a897af040c3ac5639436c6f4cfc" ], "layout": "IPY_MODEL_8820091fb69f489c894bb23701a88943", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "12d49ef9543d469190b4aca1e488319f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bcca6e2a6d634a09b89ded09d75dca55", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "13338e7152f34ac28d8eca74d7d762f1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_afa6e2e5d56740e8975dcd2b03a348d1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1364816263034f7f885d9be8f9955309": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b448b3372ed9493ea5738678ed8ac879", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "139e29c3f21446a9b9cb7335b35191d1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1411628b3d7847a890339a212ac889df": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1458aa46aed146fdb991d75d38d0ddf0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1475c97d5a8141d0b51c53722910335c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "157ee6a454b445c8a1b164c8585ea8b2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e962b26c335a4316946e5a0f56f55c4d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "159c742b3e7b460a92c9bcb931502b6c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_d4b5e3ca250b42c7b52090dbeae6581e" ], "layout": "IPY_MODEL_7438622d7fb84ee2a15f4ce6d3afc10a", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "180af4f9273048ecbb1fdfb72278115f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1957e85afc5742259c75792d36f586ac": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9ab1f5ff76aa4f66beab3ddf085d66ad", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1b5348653d4a4164a13f3c0c13626937": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1c360299ae4c452fa733684b1dbf78dc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3de4b88b1a1c4c72ba634d06381e94d6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1c8da4333a0843afb3e6a306a38d8863": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1d028ea21fd74a4b878b0d06cf6ee845": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1d48726e5b2c4e19896c941d47949904": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_002813213ebe45079af8e0b7bd60c68d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1d95eec030614daaa3cb63c7a52a0633": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9b17d25ef2c2415a99512430b399efc3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1df5513af4c447df9bf5a22d7056b660": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1e990511dc484f3480c876ff1b26b9a7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1ea22b10002e463ca6da741c0c21dd0b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1411628b3d7847a890339a212ac889df", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "1ed84fc257684a21ab7654390990328b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4525691901e74c768e1f0331f1620502", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "202ca6a803d24b15b75e038a1ee52200": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "20b0a067d23f4987ad707bc20a11e51a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "20c6c0adab0e473ba257edf46ea6e6cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "23694a04b5a34724b56aade84fe0841b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_da366afe9b7f4e8fa7217ad0c9b4f3c0" ], "layout": "IPY_MODEL_e3a59c5c82ea43028ac5eb51bc414e1c", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "23be26c8462740318b689971e7767907": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_67bb1c73016b4eeda105fa399034b122" ], "layout": "IPY_MODEL_f5c68b0647c64026967458a1726ed0e0", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "24c54e8cdd0d481f8c0f0afbdb68701e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "25b5fe04c8834d6e8bb4986ca0335bf7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "25eeafd0a5fa4237883e89ebc352a610": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "265416052bc24f2ba6b0034ba6d20423": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "26c1770b2350465e8eeb0f7ab0e3149e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ead60f2805b343348e4a42b2925a281e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "28961e16bc864c47acbece19ada63f66": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2a25ba21c610453e8ba237637319c3d6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a5fca4f739d74a82b94ad54787f1947a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2a8147340df54758ae6a009c6fd24856": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2aef9cde68604c1a836066e46a636d09": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a956f971862a4430a47188fc2ec3dd53", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2b0ffc6cc4ce436db462d9ef8a527b69": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_447594fe64c24423af345ad688bcd046", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2b4800cac75f460c99f784d3a5ded9a8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_70a942ac1b94407fb17018cc7b1ba9b2" ], "layout": "IPY_MODEL_edc59478b2444d89bbc645b5416abad9", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "2beb0bdd132744a7a2a5e9530cd540fc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1475c97d5a8141d0b51c53722910335c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2cb4da82ea094c319f5e32fcb1c22d05": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f30700f5c0a94cf1a22f225b84a6e341", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2cc0cda5dffa4d579f821e380cd46848": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2d02108e00e24e52985718f69ca02c43": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2d7746037ab74333a65629c3e3b85bed": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2e0142c25cf14a4cad014cb048e464ec": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7b287b1217eb44528614975f73db3dc1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2ee6c2059b0e40aaa27576f292802220": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ab4e64332b5c4bfda22632ebb04aa109", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2ff93a8fb803436e91068ed07a7ea02a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "306ba158c6df42a8959d3c47a36215e3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "313e02b461c94dfcbcae4dae875191f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "336583c498ba41e08d7d6934c53fd773": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7ea77f92bff44c868b048231172a1402", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "342a1f373af3479886efca22e72ec751": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_39bd2f99d5a64220aa129fdd9f3e1051" ], "layout": "IPY_MODEL_0d86d6550eb8400a907bd06a3fc97266", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "34d51f27ede0416f8a21d800cdc55b8c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bd7cdebe61744051a1505811914dc9cb", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
repetitions80
\n
", "text/plain": "setting value\nrepetitions 80" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "363b8db9c9734584a0a1c777561596c5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "37a19d20a0b04215b6b49db47efd2787": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_88a91d1196e34d8088fb0db6f82a54a4", "msg_id": "", "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
settingvalue
acq_channel0
acq_indices[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...
thresholded_trigger_countNone
\n
", "text/plain": "setting value\nacq_channel 0\nacq_indices [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...\nthresholded_trigger_count None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "399792e5bbd84533ab56e48df5387b83": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_54ece76e33dd4cc7a73cf1422096a6d8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "39b03b292eed469eb25a458667557914": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "39bd2f99d5a64220aa129fdd9f3e1051": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_23694a04b5a34724b56aade84fe0841b", "IPY_MODEL_0fa557c2556142dea3cd2c80e32e0af9" ], "layout": "IPY_MODEL_e50171a0a0734d1f86acb96c3ad89121", "selected_index": 0, "tabbable": null, "titles": [ "acq_channels_metadata", "settings" ], "tooltip": null } }, "3a59ea3513654a7b9171fc19cbc8b6dc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3b11a28db9c44e858c2d97d6d50ad357": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5350b0479e6644ecb73b0b1ce8f301f0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3c8cb1ad390a44788f47da43fd63d20c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3d9ddfa3872140b5a3c9df542b2db86a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_202ca6a803d24b15b75e038a1ee52200", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3de4b88b1a1c4c72ba634d06381e94d6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3eb7f2805e954fe4837cf346d09cc0c7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3f4f4ec334d64ca8bf128366a25e2380": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_a54ec107dd8b46da905a7dfebc389495" ], "layout": "IPY_MODEL_25b5fe04c8834d6e8bb4986ca0335bf7", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "3fbd0e50013a4555af5f940d23529574": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3ffc5ba4f6b8489e9e95acfab7cdf897": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "411db3218ec34967afea3f3704d2920b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_98bdc3907d154d3d8cb84ba6a839d261", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4156dec77bec400dacb44570b505b24a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_1ea22b10002e463ca6da741c0c21dd0b" ], "layout": "IPY_MODEL_91136bc333c34f6cbbcd549cacd4b901", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "4161cc381da5458e8fa0dbfbd978827e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_68fc5e7912ee4445bc2cd012a03d271b", "IPY_MODEL_edf03a953cc7426c8525734d964811ea", "IPY_MODEL_aa0013c12b6f429994be60eb63315154" ], "layout": "IPY_MODEL_dd7439d0b72d4f7ebdd3c0b3593387f1", "tabbable": null, "tooltip": null } }, "433cfd71119441928cf68e261070dcbd": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6758da7288f54487951047b2759f6c04", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
config_typequantify_scheduler.backends.qblox_backend.Qblo...
\n
", "text/plain": "setting value\nconfig_type quantify_scheduler.backends.qblox_backend.Qblo..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "447594fe64c24423af345ad688bcd046": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4525691901e74c768e1f0331f1620502": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "452a00514ce94f7db1033abbad10d871": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e7d977aecbe54e259c563c1419d5e676", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "45ac0a897af040c3ac5639436c6f4cfc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_edf207a2a1de4db88c07f0cad56695db", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQRM_RF
\n
", "text/plain": "setting value\ninstrument_type QRM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "45d4e4f428164666b00da414c9c6d1e2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_23be26c8462740318b689971e7767907", "IPY_MODEL_0f1016c980ff416c9ee483adb1333d10", "IPY_MODEL_10b483d666cc41319a8ee40d930a6cc5" ], "layout": "IPY_MODEL_b3830d6205f04decb5c934212181a63f", "selected_index": 0, "tabbable": null, "titles": [ "6", "2", "8" ], "tooltip": null } }, "4637060b984c4076a0be353e84c9e476": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "46cbf294dd13494cbf3060c7e5d3ecb9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_bce1eb8285574f6eb983770e1bde99b9", "IPY_MODEL_bf7af738c86144958291b5d152b25234", "IPY_MODEL_a16878cb9f9d49da8793c7fb22925d56" ], "layout": "IPY_MODEL_b0354780c6ce4d758a0475bea8d61e0a", "selected_index": 0, "tabbable": null, "titles": [ "waveforms", "acquisitions", "program" ], "tooltip": null } }, "4783fd428ff04d3ca80a07f031b00977": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "495654e9201047e1827b02c53e9a2ffc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e402f12f0e084d94a4c1eb1479dd99e1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "499b98753f8646f5b4aa215b2506fb41": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4b44d097c1154a3fb236e9f310d02c4e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4c572c2bb74d4af9b9bd8b6f9f3d8022": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a4b2705c28b34aba841e92cbf4720244", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4c74270b8dca4701adf5ef4b05525f68": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "4c7bca1101ba47c093b71f924f38f9c5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_623e198d4f424c4f866e332606622a09", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4d23c16f66a24e28be6026376516f3ab": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_72f8b12a6bef4ecfaac62942e0cf8dbb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4e9221722ad1426893ac6289c3663704": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4f43eb14385740258636de5ffb30a2ab": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_944a8efe016b41d397f49b14d70cb734", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4fa4535fff9f40b3933c25697a35dcc5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4fdee8a8ff7b4827b96d39f4bcb08756": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_55894a87734a42bfbcb3d2c68219f9b9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5047cf3954284fcc84319a2957860e58": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7c22fb9c3c0b4b9482051ae11f5dad42", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "508c3ee96f9d4f1aac43f769d3f2df17": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "51ba12d960994f8f8d9a3a2a26cf47de": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2d02108e00e24e52985718f69ca02c43", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5350b0479e6644ecb73b0b1ce8f301f0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "54ece76e33dd4cc7a73cf1422096a6d8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "557c190a0d734169bf493df8671ea71e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "55894a87734a42bfbcb3d2c68219f9b9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5594453967fd4caaab013c5dfc2d91f2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_77a705e4dc264a8fa66bbeef5854f2d4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "55c2192d11cf4559bc7c481e647633e9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6ec4d5ed1be0471999102dd7490e82f1", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM
\n
", "text/plain": "setting value\ninstrument_type QCM" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "55c64c76e8bd419ba3ddb6757144a4b7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "56876320278a4d5ba72579b6a2802a26": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_499b98753f8646f5b4aa215b2506fb41", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "58b0cc5d88b54953ac05e32926cf722b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_bb93c034404247a9b83bed087f154eb1" ], "layout": "IPY_MODEL_c505172bbb7040bc95d89d44201b9d88", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "59850b08b1f84c9484f3736a97a4c184": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5c5af9b50b59469eb119fd416573186a", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "5a66ecc2a661431f94f960cfa4c2d96d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5a92d23eacef49918ec07a2d13cfb909": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_b58e81d315a148418c2e8c3d392508d0", "IPY_MODEL_c56828a76c7f429ebc4880664e0d68c5", "IPY_MODEL_7b3d135618f94398906f269c409ee386" ], "layout": "IPY_MODEL_b2d2f170759741bc937f1bf19c7af7a2", "selected_index": 0, "tabbable": null, "titles": [ "output_att", "mixer_corrections", "modulation_frequencies" ], "tooltip": null } }, "5b600f9e1c6b483f96fd1a09f9ea4ead": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_0a2b63106d4649b096d27d00f7582bb3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5c5af9b50b59469eb119fd416573186a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5d8b8e3a374043e489f6009e8b923549": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1d028ea21fd74a4b878b0d06cf6ee845", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5f218e3422514ff192e4f793020210a0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5f30fd4fb3a34a588b60e1aa3927f6f2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "606bcdebe4584dd5aeac1727f67221d5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2cc0cda5dffa4d579f821e380cd46848", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "623894a183d24a9fb40d777642dd0eab": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_64d997cf6f8e4fdd84511b83a0d7bb5b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "623e198d4f424c4f866e332606622a09": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6444d03c91784a2485fe49faa6f864f1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e6ad9fa84b674befa4ab62bf2d557d93", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "64d997cf6f8e4fdd84511b83a0d7bb5b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "653b13ab16cd40fabc27f0f3a9e4a4a2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_508c3ee96f9d4f1aac43f769d3f2df17", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "657f232c94c942379e4087d80d4deacc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "65ba4d3d11794aeb9977d7e4d9f8761c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "65ede91c667b4832b00d205b496525b1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d1158387ae594239a13ebaa4912fbd5d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6758da7288f54487951047b2759f6c04": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "676292ae666a440697297d27b0297109": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_20b0a067d23f4987ad707bc20a11e51a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "67bb1c73016b4eeda105fa399034b122": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b1ff9872f82a44e29e2f98f796eb3015", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM_RF
\n
", "text/plain": "setting value\ninstrument_type QCM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "6840bc16dbe34f50895310fbbb810ce1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6868abe6ac7e4a12926f21014d5a3f78": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_efe6c9f3f7f84587b113a8a0880adf04", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "68fc5e7912ee4445bc2cd012a03d271b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e9b773955ac0429fb2bdf23d2f82234e", "placeholder": "​", "style": "IPY_MODEL_4c74270b8dca4701adf5ef4b05525f68", "tabbable": null, "tooltip": null, "value": "Completed: 100%" } }, "6a2cca6af0384e8892b7ea31f4d7632f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c46ebeb5a6c54f28b8dd5c7928242e59", "msg_id": "", "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
settingvalue
instrument_typeCluster
sequence_to_fileFalse
refinternal
\n
", "text/plain": "setting value\ninstrument_type Cluster\nsequence_to_file False\nref internal" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "6ac6d6c9b95048b087f9cf2cf5f23e67": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6aff517dbe324b37a35b60ab62c7b7d7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6b8ae1648a634aae8c8524261bb20073": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4fa4535fff9f40b3933c25697a35dcc5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6cb9907951e94820abf7147b2cbe98b5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6d1ac3317c7747c19b8424fc1458ce25": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_a58d6826501e4937b89d01711394a33d" ], "layout": "IPY_MODEL_1df5513af4c447df9bf5a22d7056b660", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "6e6b3d58e38d4506aaa760eee4973e44": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_306ba158c6df42a8959d3c47a36215e3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6ec4d5ed1be0471999102dd7490e82f1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6f4c68c0aeec44c7b4b7210872e4fc56": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "707d7324506f4fd894c2751e1125fcaf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e3f06cb2587740d58c632c93794ac1a5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "70a942ac1b94407fb17018cc7b1ba9b2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_8b92e34306a840c59c85fc31aad3ff06", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
graph[[cluster0.module6.complex_output_0, q0:mw], [...
\n
", "text/plain": "setting value\ngraph [[cluster0.module6.complex_output_0, q0:mw], [..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "715c51970f0140cd943c6540f041ddba": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "71f333f38bf7431b9ec031e2c8fa8e30": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "72f8b12a6bef4ecfaac62942e0cf8dbb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7312d8e862e94f55b2928e2a5d5edd45": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "73eb4022ea4c41129bafb8c79fadf08e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_856fc62adf644c85b7b7cdfce7689b3d" ], "layout": "IPY_MODEL_a71dce7c974b4d86b43a9486c8234744", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "7438622d7fb84ee2a15f4ce6d3afc10a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "75bf3e0b9fc14b729597ffcbc7b0137f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "776f1d7e9c2f4162b8950c868ca58304": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7838664eabe141e58a3da3a6a61a8bcc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7797cd23269a4d61a6dd193f481bdca9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b76f4c5af21342efaceecad90170a991", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "77a705e4dc264a8fa66bbeef5854f2d4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7826f36ff06842ec88311dcd5ed6b40d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_827d5a7ce39d48b781043f72daa61c59", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7838664eabe141e58a3da3a6a61a8bcc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7989e31fce0e45df9ec71a6741d64aad": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7a2f9f4ce6964de3a44b380ef5cb48f1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e50328926b394b2db762526d90559609", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7b287b1217eb44528614975f73db3dc1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7b3d135618f94398906f269c409ee386": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_4156dec77bec400dacb44570b505b24a", "IPY_MODEL_a27247ced8104122b01ba6e4c158ffbb", "IPY_MODEL_73eb4022ea4c41129bafb8c79fadf08e", "IPY_MODEL_ff2e839d85f14a588349b25c7de85fbe" ], "layout": "IPY_MODEL_e6f613a37d6b4d918a2cc12007450dba", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "7bf7b48f548d4ad585f2491a550be803": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7c22fb9c3c0b4b9482051ae11f5dad42": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7c3632d030ee4c298922e9c8b1625169": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6f4c68c0aeec44c7b4b7210872e4fc56", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7e12146cdbbf40c2900b460432c8dad3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7ea77f92bff44c868b048231172a1402": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7f7af7fe271d453db3acff788c278528": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "815281617c3d4d8b9d43a429d4d67abd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "827d5a7ce39d48b781043f72daa61c59": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "82f92ba56cb54986b1a15172edabe273": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_25eeafd0a5fa4237883e89ebc352a610", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8336480276174be381acd41e93f0ce7e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_c0be35b2071447cbbdf2e9ee779385fb" ], "layout": "IPY_MODEL_20c6c0adab0e473ba257edf46ea6e6cf", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "84f3a4e77af64b439254f5cea725f58e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_00f8a8d8f9c6471a895ec1803454f78b", "msg_id": "", "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAA20AAAIsCAYAAABhgUG3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA4z0lEQVR4nO3de3RV9Zn44TcXDASTCC2ahARCQFCBDhSrU2/AgDpKZaxWu8QWL60XanWKtV7mN+KltJap1VqdasfOVKvV2iq9QJWOInSNHau2tQoUlYtIIAQLlRwuIUByfn+0ZkghIegh2UmeZ62srpz93Xu/xzbL9eneZ5+sdDqdDgAAABIpu6MHAAAAoGWiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEiw3I4eoLtpbGyM6urqKCgoiKysrI4eBwAA6CDpdDo2b94cpaWlkZ3d8vU00dbOqquro7y8vKPHAAAAEqKqqirKyspa3C7a2llBQUFE/OW/mMLCwg6eBgAA6CipVCrKy8ubGqEloq2dvXtLZGFhoWgDAAD2+bEpDyIBAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJFiXibYtW7bEpEmT4v777291XV1dXdx2220xevToKC0tjeLi4iguLo6hQ4fG+eefHytWrGjzOW+//fb453/+5/c7OgAAQIu6RLSlUqk47bTTYsmSJbF169ZW15533nmxevXqmDt3bqxduzZqamqipqYmXn755Tj11FNj/PjxUV1dvc9zzps3L2688caora3N1NsAAADYQ25HD/B+1dXVxSmnnBKnn356NDY2trr2t7/9baxZsyZmz54d2dnNe7V3794xderU2LBhQ8yaNSvuuuuuFo+zatWqmDZtWtx8882xdOnSjLwPAACAven0V9rS6XRcffXVMWPGjH2uXbRoUYwbN26PYNvdxIkTY9GiRS1ur6uri0984hPx9a9/PYYNG/aeZgYAAGirTh9t+fn5ce6557Zp7Zo1a6KkpKTVNaWlpbF69eq9bkun0/H5z38+xo4dG5/4xCf2e1YAAID91elvj9wfDQ0NkZOT0+qa3Nzc2LVr1163ffe734033ngjnn322Tafs76+Purr65t+T6VSbd4XAACg019pay8vvfRSzJw5Mx577LHo0aNHm/e77bbboqioqOmnvLz8AE4JAAB0Nd062mpra2PIkCGxcOHCVtdt2LAhPvnJT8aDDz4YpaWl+3WOG264IWpra5t+qqqq3sfEAABAd9Otbo/8W0VFRbF8+fJW1zQ0NMR5550Xl19+eYwbN26/z5GXlxd5eXnvcUIAAKC761ZX2lr7vNq7du3aFbm5/9eyM2bMiN69e8eXvvSlAz0eAADAHrrVlbaysrJYvHhxq2uqq6tjwIABEfGXx/vfd999kZWVtdenTtbV1cWOHTti4cKF8corr0RRUdEBmRsAAOi+ulW0jRw5Mu6+++5obGxs8bva5s+fHyNHjoyIiF69esXGjRtbPN4DDzwQf/jDH+Kb3/zmgRgXAACge90eOWbMmBg4cGBMmzYt1q5dG+l0umnbtm3b4uGHH44777wzrrvuug6cEgAA4P90qWgrLCyMgoKCpt8nT54cX/va15qteeSRR6KioiImTZoUpaWlUVxcHMXFxfF3f/d38eSTT8aCBQva/ITIgoKCZucDAADItKz07pebOOBSqVQUFRVFbW1tFBYWdvQ4AABAB2lrG3SpK20AAABdjWgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASrEtE25YtW2LSpElx//33t7qurq4ubrvtthg9enSUlpZGcXFxFBcXx9ChQ+P888+PFStW7LHPCy+8EBMmTIj+/fvHYYcd1rTP4MGD43Of+1z8+c9/PlBvCwAAoPNHWyqVitNOOy2WLFkSW7dubXXteeedF6tXr465c+fG2rVro6amJmpqauLll1+OU089NcaPHx/V1dVN6zdu3BjnnHNO/Mu//EusWbMm1q9f37TPkiVL4tBDD41LLrnkQL9FAACgG8vt6AHej7q6ujjllFPi9NNPj8bGxlbX/va3v401a9bE7NmzIzu7eav27t07pk6dGhs2bIhZs2bFXXfdFRERL774Yhx//PExYcKEPY7Xs2fPmDFjRpSXl8e2bdsiPz8/c28MAADgrzr1lbZ0Oh1XX311zJgxY59rFy1aFOPGjdsj2HY3ceLEWLRoUdPvAwYMiIsuuqjF9dnZ2dG/f/9Ys2bN/g0OAADQRp36Slt+fn6ce+65bVq7Zs2aKCkpaXVNaWlprF69uun34cOHx/Dhw1tcv3379njrrbdiwIABbRsYAABgP3XqaNsfDQ0NkZOT0+qa3Nzc2LVrV5uOt3379rjsssvinHPOiZ49e7a4rr6+Purr65t+T6VSbRsYAAAgOvntkR3l+eefj1GjRkVjY2Pcfvvtra697bbboqioqOmnvLy8naYEAAC6gm4bbbW1tTFkyJBYuHBhm/fZtGlTXHnllXHeeefFrbfeGt///vdbvcoWEXHDDTdEbW1t009VVdX7nBwAAOhOus3tkX+rqKgoli9f3ub1s2fPjunTp8f5558fS5Ysid69e7dpv7y8vMjLy3uvYwIAAN1ct4m2tnxebdeuXZGb2/wfSTqdji9/+cvxox/9KObNmxdHHnnkgRwTAACgmW4TbWVlZbF48eJW11RXV+/xJMjHHnssfv7zn8cLL7zQ5qtrAAAAmdJtPtM2cuTIWLBgQatfwj1//vwYOXJk0+/pdDq+9KUvxYMPPijYAACADtFtom3MmDExcODAmDZtWqxduzbS6XTTtm3btsXDDz8cd955Z1x33XVNr//pT3+K3NzcVr+rDQAA4EDqMrdHFhYWRkFBQdPvkydPjuOOOy6uv/76ptceeeSRuPPOO2PSpEmxfv36pnArKCiIj3zkI7FgwYIoLS1tWv+nP/0p1q1bF8XFxa2e+z/+4z9i8uTJGX5HAAAAEVnp3S85ccClUqkoKiqK2traKCws7OhxAACADtLWNug2t0cCAAB0RqINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy1i0NTQ0xHe+8504++yzY8yYMTFgwIAYNmxYLF26NCIizjjjjPjMZz4Tf/jDHzJ1SgAAgC4vI9G2ffv2GDNmTFxxxRWxY8eOOOGEE+Lss8+O5cuXx5tvvhkREaeffnr85je/iZNOOileffXVTJwWAACgy8tItH31q1+NZcuWxSuvvBJz5syJu+66K6655ppIp9NNa6ZNmxYvvfRSlJSUxB133JGJ0wIAAHR5GYm2p556KqZMmRLDhw9vdV1+fn780z/9Uzz33HOZOC0AAECXl5FoW7ZsWQwZMqRNa4uLi2PdunWZOC0AAECXl5FoS6VSUVBQ0Ka1eXl5sX379kycFgAAoMvzyH8AAIAEy0i0FRQUxObNm9u0dsuWLW2+KgcAANDdZSTahgwZEsuWLWvT2rfeeisqKyszcVoAAIAuLyPRdsopp8QjjzwSixcvbnXdW2+9FT/4wQ/i1FNPzcRpAQAAurys9O5fpvYebd26NcaMGRMrVqyIU089NSorKyM7Ozu+9a1vxSc/+ckoLy+PqqqqmDNnTvTv3z9+//vfR+/evTMxf6eTSqWiqKgoamtro7CwsKPHAQAAOkhb2yAj0RYRsWPHjvj3f//3+NWvfhWrVq2K2trapm0FBQUxaNCgOOmkk+Lzn/985OXlZeKUnZJoAwAAIjog2mgb0QYAAES0vQ088h8AACDBRBsAAECCiTYAAIAEy92fxZ/+9Kfjrbfeet8nraioiO9///vv+zgAAABd3X5FW2VlZeTm7rnLgw8+GMccc0wceeSRe90vnU7Hq6++Gn/4wx/ixBNPjEGDBr23aQEAALqZjDw9Mjs7O+6555743Oc+1+q6f/u3f4vbb789XnnllSgpKXm/p+2UPD0SAACISOjTI7/0pS9Ffn5+zJo1qz1PCwAA0Gm1a7RlZWXF6aefHr/85S/b87QAAACdVrs/PbJ///6xdu3a9j4tAABAp9Tu0VZUVBRbt25t79MCAAB0ShmJtl69esW2bdvatHb79u3Rq1evTJwWAACgy8tItA0ZMqTN39+2evXqqKyszMRpAQAAuryMRNtxxx0Xjz76aGzcuLHVdRs2bIhHHnkkTjjhhEycFgAAoMvLyPe0bdiwoemLtadOnRoDBw6Mgw8+uGn7li1bYtWqVfHQQw9FdnZ2LFmyJD74wQ++39N2Sr6nDQAAiGh7G+Rm4mQf/OAH47XXXotbb7015s+fH6tWrYpUKtW0vbCwMCoqKmLKlClx4403dttgAwAA2F8ZudJG27nSBgAARLS9Ddr9kf8AAAC0nWgDAABIMNEGAACQYBl5EMl///d/x5o1a9q8vqysLE455ZRMnBoAAKBLy0i0XXHFFbFixYp9rsvKyop0Oh2DBw+OZcuWZeLUAAAAXVpGbo9ctmxZNDY2tvizc+fOePbZZ2PEiBFxww03CDYAAIA2ysiVtn3JycmJcePGxZNPPhmDBw+OE044IU477bT2ODUAAECn1q4PIunfv3+cdtppce+997bnaQEAADqtdn965PDhw+Oll15q79MCAAB0Su0ebf369YsNGza092kBAAA6pXaPtoaGhsjNbZeP0gEAAHR67R5t1dXVMWjQoPY+LQAAQKfUrtG2ffv2ePzxx2PMmDHteVoAAIBOKyP3Kf7xj3+MmpqaFrdv2bIlVq9eHffdd1/86U9/ii9/+cuZOC0AAECXl5Fo+4d/+Id4++23W11TUFAQY8eOjR//+MdRUVGRidMCAAB0eRmJttdffz02bdrU4vbCwsLo06dPJk4FAADQrWQk2oqKiqKoqCgThwIAAGA37f70SAAAANouI9H2gx/8INatW9emtdXV1fHwww9n4rQAAABdXkaiberUqfHTn/60TWsfe+yxmDZtWiZOCwAA0OVlJNrS6XSk0+k2rV29enUMHDgwE6cFAADo8tr1M221tbXx6KOPxt///d+352kBAAA6rff09Mj169fHk08+2ezq2v/+7/9Gz54997p+27ZtUVVVFQ8//HDs2LHDl2sDAAC0UVa6rfc17ubBBx+Miy666P8OkpXV6u2R+fn5UVFREccff3zcfPPNUVJS8t6m3YstW7bEJz/5yTjzzDPjkksuaXFdXV1dfPOb34wf/ehHsX79+mhsbIyIv3yH3Ec+8pG49dZbY/Dgwc322bVrV/zXf/1X3H///VFdXR0NDQ1N72fkyJFxyy23xKhRo/Zr3lQqFUVFRVFbWxuFhYX792YBAIAuo61t8J6utF1wwQVxwQUXNP2enZ0d99xzT3zuc597L4d7z1KpVEyaNCmqqqri5JNPbnXteeedFyUlJTF37twoLS2NrKysiIjYunVrPPHEEzF+/Pj4zW9+E6WlpU37XHPNNVFVVRWPPvpoVFZWRnb2X+4m3b59ezz99NPx8Y9/PH7yk5/sd7gBAAC0VUa+XDsvL6/FWyMPlLq6ujjllFPi9NNPb7pq1pLf/va3sWbNmpg9e3ZTeL2rd+/eMXXq1NiwYUPMmjUr7rrrroiIWLduXfz0pz+NpUuXRq9evZrt07NnzzjjjDNi586dcdNNN8XPfvazzL45AACAv8rIg0heffXVOP/88zNxqDZLp9Nx9dVXx4wZM/a5dtGiRTFu3Lg9gm13EydOjEWLFjX9/tprr8XRRx+9R7DtbsKECc32AQAAyLSMXGk7/PDDM3GY/ZKfnx/nnntum9auWbNmn5+jKy0tjdWrV+/XPkVFRfHnP/+5TTMkTTqdjm07d3X0GAAA0O7ye+Q2fVyqM9jvaGtoaIh169ZFWVnZgZjngGhoaIicnJxW1+Tm5sauXf8XMW3Zpy3q6+ujvr6+6fdUKvW+j5kJ23buioP/7QcdPQYAALS7LdeeH70P6tHRY7TZfkfbsGHD4s0334zTTjst5s6dGxERM2bMiFWrVrX5GBUVFXHrrbfu76k7pdtuuy1uueWWjh4DAADopPY72jZv3hzpdDq2bt3a9FpVVVVUVVW1/aS5Gbkr8z2rra2NMWPGxHe/+90YN25cm/cbPXp0XHPNNfv1+b0bbrghrr766qbfU6lUlJeX78+4B0R+j9zYcm37fg4RAACSIL9Hx/bI/trvaRcvXhyvvfZas8fcf+9738vkTAdcUVFRLF++fL/3e/nll/d7n7y8vMjLy9vv/Q60rKysTnVJGAAAuqv9jrZ+/fpFv379DsQsB8zffl5tb3bt2tXsCmBb9gEAADjQMvLI/6QrKyuLmpqaVtdUV1fHgAED9mufVCoVffv2zciMAAAAe9Pu0bZgwYI49dRT2/WcI0eOjAULFrT6Jdzz58+PkSNHNv1+xBFHxG9/+9vYtm1bm/cBAADItHaPtl//+tfxyiuvtOs5x4wZEwMHDoxp06bF2rVrI51ON23btm1bPPzww3HnnXfGdddd1/R6cXFxnHXWWXH++efH8uXLmwVffX19zJ07N66++uq4+eab2/OtAAAA3Uy7PjZl/fr18cMf/jDGjBmT0eMWFhZGQUFB0++TJ0+O4447Lq6//vqm1x555JG48847Y9KkSbF+/fqmcCsoKIiPfOQjsWDBgigtLW123K9//evxn//5n3HeeefF2rVrm8ItPz8/RowYEbNnz47Ro0dn9L0AAADsLiu9+2WnfTjppJP26/vYdldfXx8bN26Mfv36xdNPPx0jRox4T8fp7FKpVBQVFUVtbW0UFhZ29DgAAEAHaWsb7NeVtgsvvHC/vo9tdz179oxBgwbFaaed1uyqGAAAAC3br2i7+OKLD9QcAAAA7EW3eOQ/AABAZyXaAAAAEky0AQAAJFjGHvlfX18f99xzT/zqV7+KN998M2pra5u2FRUVxaBBg2Ls2LHx+c9/PvLy8jJ1WgAAgC5tvx7535LNmzfHmDFj4q233oozzjgjKioqmj0hcvPmzbFq1aqYO3duDBgwIH73u9912ydIeuQ/AAAQcYAe+d+SmTNnRnV1dSxevDgOP/zwFtctW7YsRo8eHTNnzoxZs2Zl4tQAAABdWkY+0/b000/HlClTWg22iIjDDz88PvWpT8XTTz+didMCAAB0eRmJthUrVsTgwYPbtHbQoEGxcuXKTJwWAACgy8tItG3evDkOPvjgNq09+OCDY/PmzZk4LQAAQJeXkWjr3bt3pFKpTBwKAACA3WQk2vr37x/V1dWZOBQAAAC7yUi0TZw4MZ566qlMHAoAAIDdZCTarr/++ti4cWN861vfysThAAAA+KuMfE/bL3/5yxg3blxMnz49fvKTn8Rxxx0XOTk5e1370ksvRUTEjBkzmr1eVlYWl156aSbGAQAA6DKy0ul0+v0eZPz48bFq1ar3dYxBgwbFs88++35HSby2fus5AADQtbW1DTJypW3BggWZOAwAAAB/IyOfaQMAAODAEG0AAAAJJtoAAAASLCOfaXvXhg0b4vXXX4/q6uqoq6trcV3//v1jwoQJmTw1AABAl5SRaNu5c2dcccUV8eCDD8bOnTv3ub6ysjKWL1+eiVMDAAB0aRm5PfIrX/lKfPe7340vfvGL8cc//jFSqVTs3LmzxZ9ly5Zl4rQAAABdXkautD3xxBNxzjnnxFe/+tVMHA4AAIC/ysiVtuXLl8cxxxyTiUMBAACwm4xEW319feTl5WXiUAAAAOwmI9HWt2/fqKmpycShAAAA2E1Gou3EE0+MZ599NhOHAgAAYDcZibZZs2bFypUr47Of/WwsXbo0tm/fnonDAgAAdHtZ6XQ6nYkDPfXUU3HGGWdEWw43ePDgeOONNzJx2k4nlUpFUVFR1NbWRmFhYUePAwAAdJC2tkFGHvn/3//93zF58uQYOHBgnHPOOVFWVha9evVqcX3//v0zcVoAAIAuLyPRdsstt8RRRx0VL774oqdIAgAAZFBGPtO2aNGiOOusswQbAABAhmUk2rZs2RL9+vXLxKEAAADYTUairaCgIFKpVCYOBQAAwG4yEm1HH310LFmyJBOHAgAAYDcZibbbbrst5s6dGwsWLMjE4QAAAPirjDw9cu7cuTFkyJCYOHFijBo1KgYNGhT5+fktrq+oqIhbb701E6cGAADo0jISbatXr46DDz44TjrppIiI2LhxY2zcuLHlk+Zm5LQAAABdXkbq6YEHHsjEYQAAAPgbGflMGwAAAAeGaAMAAEgw0QYAAJBgGX0iSHV1dbz00kuxatWqqK2tbXFdeXl5XHTRRZk8NQAAQJeUsWibMWNG3H777bF9+/bo1atXbN++Pfr06RO9evWKXbt2xfr16yMrKytKSkpi8ODBog0AAKANMnJ75OOPPx4zZ86Mq6++OjZs2BCvvfZapNPp+P73vx9VVVWxbt26WLRoURx77LExceLE+NWvfpWJ0wIAAHR5GYm2u+++OyZMmBAzZ86Mvn37Rnb2nocdPnx4zJkzJ3784x/HD3/4w0ycFgAAoMvLSLStWLEijjvuuH2u+8AHPhBnnHFGfO9738vEaQEAALq8jERbdXV19OvXr01rhw4dGn/4wx8ycVoAAIAuL2OP/M/KymrTug9+8IOxcePGTJ0WAACgS8tItBUVFcWWLVv2eD2dTu/xWk5Ozl5fBwAAYE8Zibbi4uJYtWpV0++HHHJIRESkUqk91m7evDmKiooycVoAAIAuLyPR9o//+I8xe/bsqKmpiYiI3r17R2lpaTz33HN7rH3uuefi8MMPz8RpAQAAuryMfLn2F77whfjRj34Uhx9+eHzxi1+Mm2++Oa655pr44he/GJs3b46jjz46Ghsb41e/+lU8+eSTHvkPAADQRhmJtoEDB8aLL74YDz74YPTs2TMiIq666qro3bt33HvvvfHzn/88cnJyYsiQIfHYY4/FOeeck4nTAgAAdHlZaU8FaVepVCqKioqitrY2CgsLO3ocAACgg7S1DTL2yH8AAAAyT7QBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgATrNNG2adOmuPbaa2PkyJFRUlISxcXFUVxcHEcddVRMmzYt1q9f3+r+u3btirvvvjs+9KEPNdu/tLQ0RowYEXfccUfs3Lmz2T7pdDq+853v7LFP//794+///u9j7ty5B/ItAwAARG5HD9AWDQ0NMWHChJg8eXIsXLgw+vbtG1lZWRERUVtbGw888EAcf/zx8eqrr0Z+fv5ej3HPPffEvHnzYs6cOTFgwICm/SMi1q9fH1dddVXU19fHDTfc0PT6D3/4w3jooYdizpw5MXDgwKbX0+l0LFmyJM4999woKyuLUaNGHZg3DgAAdHtZ6XQ63dFD7Mvjjz8ejz76aDzxxBMtrrnqqqti0KBBMX369L1uP+qoo+LJJ5+MioqKvW5/5513YvTo0bFq1aqm1z7+8Y/HlVdeGf/wD/+w132++93vxrJly2LWrFltfi+pVCqKioqitrY2CgsL27wfAADQtbS1DTrF7ZGLFi2K8ePHt7pm4sSJsWjRoha3r1u3rtnVsr/Vp0+f2LFjR9TX1ze99vbbb0dpaWmL+5SVlUVVVVWrcwEAALwfnSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1ON7slcm8OOuigqKura/r9qKOOajXKqqqqorKystVjAgAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4E3T3YIiLOOeec+H//7//FkiVLoqGhoen1dDodf/zjH+Mb3/hGnHjiia0es76+PlKpVLMfAACAtuoU0ZYJpaWlsXLlyha3b9iwId5+++1mr40bNy5KSkpixIgRUVhY2PT0yIMPPjiGDx8ep556apxyyimtnve2226LoqKipp/y8vKMvB8AAKB76JTR9vrrr0dlZWW88cYbbd7niiuuiEsuuSRee+21ZlfNGhsbY+XKlXHllVfGwQcf3Gyfz33uc1FcXBxr166NLVu2RE1NTdTU1ERtbW0sWrQoli9fHr///e9bPe8NN9wQtbW1TT8+AwcAAOyPTvHI/781bNiwVq+a7c1ll10WeXl5ceGFF0ZVVVVTuPXs2TOGDx8e06dPj+eff75p/Z///Od4+umnY/ny5dGjR49mx8rNzY0RI0bErFmzYvr06fH000+3eN68vLzIy8vbr1kBAADe1SmibV+fV4v4y5dn5+a2/Hays7Pj4osvjosvvrhN51yxYkUMGTJkj2Db3ZFHHhkvv/xym44HAADwXnSK2yPLysqipqam1TXV1dUxYMCAFrdfcskl0djY2Ooxtm/fHgcddFBERKsBuLt9xSQAAMD70SmibeTIkTF//vxW18yfPz9GjhzZ4vbnn38+qqurW9yeSqUiKysr8vPzIyKioqIili1b1mqULVu2zINFAACAA6pTRNuZZ54Za9asiZtuuik2btzY7NH9qVQq7r777vjFL34Rl156aavHuP7662PTpk17bNu0aVNceeWVcd555zW91qdPnxg7dmxce+21sXnz5mbr0+l0rF69Oq644oq4/PLL3/8bBAAAaEGniLacnJx45plnoq6uLsaOHRulpaVNj98/5phjYvHixfHcc89F7969IyJi4cKFMWTIkGbfifav//qvUVFREWPGjGnat7i4OEpKSuLoo4+O0tLSmDlzZrPzfvvb346cnJz48Ic/3Gyf0tLSmDRpUpx11lmiDQAAOKCy0vv6xmkyKpVKRVFRUdTW1kZhYWFHjwMAAHSQtrZBp7jSBgAA0F2JNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCdJto2bdoU1157bYwcOTJKSkqiuLg4iouL46ijjopp06bF+vXrW91/165dcffdd8eHPvShZvuXlpbGiBEj4o477oidO3c226empiYuuuiiGDRoUNP64uLiKCkpib/7u7+LBx988EC+ZQAAgMjt6AHaoqGhISZMmBCTJ0+OhQsXRt++fSMrKysiImpra+OBBx6I448/Pl599dXIz8/f6zHuueeemDdvXsyZMycGDBjQtH9ExPr16+Oqq66K+vr6uOGGGyIiIp1Ox5QpU+KUU06J++67L/Ly8podb/ny5XH22WdH//79Y+LEiQfonQMAAN1dVjqdTnf0EPvy+OOPx6OPPhpPPPFEi2uuuuqqGDRoUEyfPn2v24866qh48skno6KiYq/b33nnnRg9enSsWrUqIiKqq6tj3Lhx8frrrzcLvN099NBD8dJLL8W3vvWtNr+XVCoVRUVFUVtbG4WFhW3eDwAA6Fra2gad4vbIRYsWxfjx41tdM3HixFi0aFGL29etWxcDBw5scXufPn1ix44dUV9fHxERq1atisGDB7cYbBERxx57bPTv338f0wMAALx3nSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1OtxpgEREHHXRQ1NXVRUTEjh079rgl8m8NHTo0rrvuulbXAAAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4EfTfYdvdf//VfMWHChCgrK2t6EElFRUWcfPLJ8fTTT7ftDQAAALxHneJBJJlQWloaK1eujMGDB+91+4YNG+Ltt99u9tr//u//RmVlZTzyyCNx6KGHNl2pq6+vjxdffDE+85nPxIMPPhgf/ehHWzxvfX190y2XEX+5bxUAAKCtOsWVtr/1+uuvR2VlZbzxxhtt3ueKK66ISy65JF577bVoaGhoer2xsTFWrlwZV155ZRx88MHN9undu3d8/etfj8MOO6zZrZV5eXlx4oknxsyZM+Pee+9t9by33XZbFBUVNf2Ul5e3eWYAAIBOeaVt2LBhsXLlyv3a57LLLou8vLy48MILo6qqqincevbsGcOHD4/p06fH888/32yfoUOHtnpb5ogRI+Kuu+5q9bw33HBDXH311U2/p1Ip4QYAALRZp4i2fX1eLeIvX56dm9vy28nOzo6LL744Lr744jaft1evXq1uz8/Pj61bt7a6Ji8vb58PNAEAAGhJp7g9sqysLGpqalpdU11dHQMGDGhx+yWXXBKNjY2tHmP79u1x0EEHRcRfbo3cvn17q+vr6upa/DJvAACATOgU0TZy5MiYP39+q2vmz58fI0eObHH7888/H9XV1S1uT6VSkZWV1RRhlZWVsXz58lafOLl06dKorKzcx/QAAADvXaeItjPPPDPWrFkTN910U2zcuLFZSKVSqbj77rvjF7/4RVx66aWtHuP666+PTZs27bFt06ZNceWVV8Z5553X9NoHPvCB+PCHPxwzZszY4xbIdDodr7zyStx4443x2c9+9v2/QQAAgBZ0imjLycmJZ555Jurq6mLs2LFRWlra9J1pxxxzTCxevDiee+656N27d0RELFy4MIYMGdLs8fr/+q//GhUVFTFmzJimfYuLi6OkpCSOPvroKC0tjZkzZzY77/333x9bt26NUaNGRUlJSdM+/fv3j0svvTS+/OUvx7hx49rzHwUAANDNZKX39Y3TZFQqlYqioqKora2NwsLCjh4HAADoIG1tg05xpQ0AAKC7Em0AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAguV29ADdTTqdjoiIVCrVwZMAAAAd6d0meLcRWiLa2tnmzZsjIqK8vLyDJwEAAJJg8+bNUVRU1OL2rPS+so6MamxsjOrq6igoKIisrKwOnSWVSkV5eXlUVVVFYWFhh84CtMzfKnQO/lYh+ZL2d5pOp2Pz5s1RWloa2dktf3LNlbZ2lp2dHWVlZR09RjOFhYWJ+B8t0Dp/q9A5+FuF5EvS32lrV9je5UEkAAAACSbaAAAAEky0dWN5eXlx0003RV5eXkePArTC3yp0Dv5WIfk669+pB5EAAAAkmCttAAAACSbaAAAAEky0AQAAJJhoAwAASDDR1s1s2rQprr322hg5cmSUlJREcXFxFBcXx1FHHRXTpk2L9evXd/SIwF5s2bIlJk2aFPfff39HjwLs5uGHH45Ro0Y1+3dqSUlJHHXUUXHHHXfErl27OnpE6PaeeeaZOOGEE6K0tDQOO+ywpr/TI444Ir72ta/Fzp07O3rEfRJt3UhDQ0NMmDAhevfuHQsXLozq6uqoqamJmpqaeP755+OII46I448/PrZt29bRowK7SaVScdppp8WSJUti69atHT0O8FcLFy6Mr33ta/GjH/0o1q1b1/Tv1HXr1sWCBQti4cKFce+993b0mNCtrVq1Ki666KL4xje+EWvXro3169c3/Z3+z//8T7z00ktxxx13dPSY++SR/93I448/Ho8++mg88cQTLa656qqrYtCgQTF9+vR2nAxoSV1dXYwfPz5OP/30aGxsjEMOOSS+8IUvdPRYQERcd911UVlZGZdddtlet7/++usxderUeOGFF9p5MuBdDz30ULzwwgtxzz337HX7ihUr4txzz43f/e537TzZ/nGlrRtZtGhRjB8/vtU1EydOjEWLFrXTRMC+pNPpuPrqq2PGjBkdPQrwNz760Y/GySef3OL28vLyqKqqaseJgL917LHHxuWXX97i9v79+3eKjwfldvQAtJ81a9bEhz70oVbXlJaWxurVq9tpImBf8vPz49xzz+3oMYC9OPPMM1vdvnjx4hgyZEj7DAPs1dChQ1vdvmbNmvjwhz/cTtO8d660dSMNDQ2Rk5PT6prc3FwfmgaA92nt2rVx2WWXxVVXXdXRowB7kU6nY926dXHttdfG1KlTO3qcfRJtAAAZkk6n44EHHohRo0bFhRdeGJ/4xCc6eiTgr6qqqqK8vDyKi4ujT58+UVpaGn369Imzzjqro0fbJ9HWjb3++utRWVkZb7zxRkePAgCd3htvvBGnnHJKfOc734lf/vKX8c///M8dPRKwm3c/Z1pTUxPvvPNOrFu3Lg4++OBO8QA+0daNDRs2LFauXLnPe30BgJY1NDTErbfeGhMnTozzzz8/fv3rX3eKz8hAd5aVlRXFxcVxxx13xLx586KmpqajR2qVB5F0I235vNquXbsiN9f/LACgLbZs2RJTpkyJ3NzcePXVV+OQQw7p6JGA/ZCTkxNHHnlk/PGPf4zi4uKOHqdFrrR1I2VlZfv8fxGqq6tjwIAB7TQRAHRu11xzTZSVlcUTTzwh2CCBxo0bF5s3b251TXZ2dmRnJzuLkj0dGTVy5MiYP39+q2vmz58fI0eObKeJAKDzWrZsWcybNy++8Y1vRFZWVkePA+xFTk5OvPbaay1uT6fTsXTp0qisrGzHqfafaOtGzjzzzFizZk3cdNNNsXHjxkin003bUqlU3H333fGLX/wiLr300g6cEgA6h5dffjnGjx8fvXr16uhRgBZMmTIlrr322r1+D/HWrVtjxowZMWzYsMTfaebDS91ITk5OPPPMM/GVr3wlxo4d2yzcDjnkkBg7dmw899xz0bt37w6eFNibwsLCKCgo6OgxgL/auHFj/PjHP46nnnqqxTU9evSIF154IUpLS9txMuBdF198cWzfvj0mTZoUGzZsaHbRoqCgIE4//fR44IEHOm7ANspK7z45AAAAieL2SAAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy+3oAQCAfXv77bdjx44dkZeXF/369evQWd55553YunVr5OTkRHFxcWRlZXXoPABdnSttAHRJ8+bNi169esWnP/3pjh7lffvd734Xhx12WJSXl8ehhx4aK1as6LBZ6urqori4OMrLy6O0tDRmz57dYbMAdBeiDYBOp7GxMb797W/H5s2bW1zz4osvxvbt2+PXv/51O052YLz7PufMmRPPPPNMDBo0qMNm6dWrVzz77LMxZ86c6NevX6v/HQCQGW6PBKDTqaqqiiuuuCKGDRsWEyZM2Ouaf/zHf4yf/OQnccYZZ7TzdAfOxz72sY4eISIijj/++IiIyM/P7+BJALoH0QZAp5NOp5v9594cc8wx8fLLL7fXSABwwLg9EgAAIMFEGwCdxrPPPhu5ublNn+k6+eSTIysrK7KysiI3NzcWLlzYbP3hhx8e8+bN2+M4N910U3z605+ON954IyZPnhx9+vSJrKysyM/Pj9GjR8cPfvCDiIhYv359TJ06NQ477LDIysqKHj16xLBhw+LKK69s9bNcq1atik996lNx5JFHRl5eXtOMxcXFceKJJ8ZDDz3U6lXC/TFkyJCYN29eVFVVxec///kYOnRo5OfnR1ZWVpSVlcW4ceNi9uzZLZ7vjTfeiDPOOCMOPfTQpjnf/cnPz4+PfOQj8dRTT2VkVgDeG7dHAtBpjB49Ou65555Yv3593HzzzXHFFVfEEUccERERubm5MWrUqGbrly9fHmvWrNnjOG+99Va8+OKLMXbs2Dj22GNj+vTp0adPn9i0aVM89dRT8alPfSqysrJi5syZkZWVFRdccEH0798/GhoaYvHixfHtb387li5dGs8888wex166dGmMGTMmDjnkkDjnnHOivLw8evbsGel0OjZs2BAvv/xyTJ06NZ5//vn49re//b7/maxYsSJ+9rOfxbnnnhsDBw6M0047LUpKSiI/Pz/efvvteOGFF+Lss8+OG2+8MW699dZm++7cuTM+9rGPRWNjY1x55ZVxyCGHNHt8/8aNG+Opp56KM888M1555ZWmf9YAtLM0AHQyb775Zjoi0k8//XSr6yIiff/99+/x+gUXXNDitl27dqVPOOGEdHZ2dnrixInpHTt27LHmvvvuS0dE+ve///0e2yZPnpweNGhQura2tsW57r333nR2dnZ60aJFrc7/rgULFqRb+ld2RKR79OiR/uEPf5hubGzc65pbbrklnZeXl66qqmr2+nPPPdfi+3hXfX19um/fvumvfOUre2wbOHBg+nvf+16b3gMA753bIwHolvr27RsXX3zxHq/n5OTElClTorGxMb7whS9Ejx499ljz7ne/LV68uNnr6XQ6Fi5cGJdffnkUFha2eO7PfOYzUVBQEPPnz3+f7+IvpkyZEp/85Cdb/JLr6dOnR319ffzmN79p9npVVVVERAwdOrTFYx900EFxxx13xAknnJCRWQHYf26PBKBbGjhwYGRn7/3/uywrK4uIaPH70PLz86Nv375RXV3d7PVNmzZFKpWKysrKVs/do0ePGDBgQKxatWr/B9+Lj370o61uLygoiL59+8abb77Z7PW+fftGxF/m7t27d4v7X3DBBe9/SADeM9EGQLfU2neM9erVq01r6urqmr1WW1sbEX/5rNjePkv3t+f/05/+1NZxW5WTk7PPNQUFBU3zvWv06NGRn58f119/fVx33XVRVFTU7Gpdz5494wMf+ECLV/AAaB+iDQAybMqUKW1aN2LEiAM8Sev69esX9913X0ybNi0efvjhva4pKCiIyy67LL7yla/EQQcd1M4TAhAh2gAg47785S/v8STLvTn66KMP/DD78OlPfzrOOOOMWLp0aWzcuLHZtvr6+njllVfia1/7Whx22GFxzTXXdNCUAN2baAOg03n381fbtm3r4EmaKygoiIiIUaNGxcc+9rEOnqbtDjnkkBY/F3f22WfHypUr42c/+5loA+ggnh4JQKfzwQ9+MPLz85uefpgUffv2jYKCgjbNdf7558esWbPaYaqWvfjii/HEE0/sc115eXnU1NS0w0QA7I1oA6DTycrKiuOPPz7uv//+qK+v7+hxmmRlZcVJJ50U//Ef/xE7duxocd3y5cvjsccei8MOO6wdp9vTL3/5y7j88stj586dra5btmxZ0xM1AWh/bo8EoFOaNWtWHHvssXHkkUfGWWedFRUVFXH++edHnz59Onyuo48+Oo444og4++yzo6SkJA466KBIp9Oxbdu2ePPNN+PHP/5xDB06ND7+8Y936Kxnnnlm3HrrrXHiiSfGySefvEdE7tixI1599dWYPXt23HfffR00JQCiDYBOafTo0bFo0aK48cYb4+c//3msXbs2hg8fHuPHj29aM3jw4L1eIRo4cGDs2rWrxWMfdthhceihh8YhhxzS4prKysoYMGDAHq8PHz48lixZEjfeeGPMmTMn3nzzzaarboWFhVFaWhqf/exnY/r06VFUVLQf77jlOdpyFayioiIGDhzY7LWRI0fGT3/607jlllvim9/8ZmzZsqXZ9oMOOigqKiri9ttvj8985jPve1YA3pusdDqd7ughAICWLVy4MMaPHx9J+1d2RUVF3HzzzXHhhRd29CgAXZrPtAEAACSY2yMBoJNYtWpV9OzZM4qLizt0jg0bNsSWLVtavcUUgMwRbQCQcD169IiIiEGDBkXEX57mOGTIkA6Zpa6uLkpKSpqC7d3ZADhwfKYNABJu586dsWDBgtixY0f06tUrxo8fH9nZHfcJh1//+tfxzjvvRE5OTowdOzby8/M7bBaA7kC0AQAAJJgHkQAAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAAS7P8DHVwm8/gqSR0AAAAASUVORK5CYII=", "text/plain": "
" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "856fc62adf644c85b7b7cdfce7689b3d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_24c54e8cdd0d481f8c0f0afbdb68701e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "86732e18ad334890b2d9b143687f7f23": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "86fe3428e76b49aab704d6ceaa169da2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6ac6d6c9b95048b087f9cf2cf5f23e67", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "87a86a4719d4454aba33f18b18548aa1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f07b5418ab45418f9e4300f174e3da35", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8820091fb69f489c894bb23701a88943": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "88a91d1196e34d8088fb0db6f82a54a4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "89cd76fd681d4be892fbb7953f6a64ec": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_342a1f373af3479886efca22e72ec751", "IPY_MODEL_09bbb66f60394be3b41cc3ab53fca438", "IPY_MODEL_6d1ac3317c7747c19b8424fc1458ce25", "IPY_MODEL_34d51f27ede0416f8a21d800cdc55b8c" ], "layout": "IPY_MODEL_75bf3e0b9fc14b729597ffcbc7b0137f", "selected_index": 0, "tabbable": null, "titles": [ "acq_metadata", "sequencers", "settings", "other values" ], "tooltip": null } }, "8a2ede4e6db2466eaaee2d030bccab59": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_c99bedc5401546968e112fca5be96dba" ], "layout": "IPY_MODEL_313e02b461c94dfcbcae4dae875191f6", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "8b51c27f3fef4fa5af44e436d01663b3": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2d7746037ab74333a65629c3e3b85bed", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8b92e34306a840c59c85fc31aad3ff06": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8f09eb87886047629653f3f07a9f1275": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8f506eec85194c5d98217fe397be706a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f31f7f5caec7433ca8ead365b0123a03", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8fee029c5f6a496b98447bb845b9a875": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9051b1b4da4c40ad8a2ae4c7b6db09cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "91136bc333c34f6cbbcd549cacd4b901": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9195e0f0fe6a434197a0d4d023399acf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5f218e3422514ff192e4f793020210a0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "92cc4b15c85c485db601fd60cdc70a20": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_da9d1cb26d6a4e60a97ee1ee2f9e7ee5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "933eb4482f63447cbf1d3816b620405b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9371e98030024c59b749cc09de64c0a0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9a16c096dc514189a8c90d31c9cae4eb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "938485d9f92a48cbaec940b1262719ff": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "93aedf3a2fb341b6a445d87d06b1028a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_8fee029c5f6a496b98447bb845b9a875", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "93c52aa8460948db815e75b361611a33": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f609e883e16f491c8100ec49592f2cee", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9442fcaa668b4d69a4e8dfd3b93c4706": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f213e74d8a5441878392e09b1559530f", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "944a8efe016b41d397f49b14d70cb734": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9472a31972f3462bad0607e73e7fa00f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "96923f128c4b49ee8de608cfae4cef5c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_55c64c76e8bd419ba3ddb6757144a4b7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "98022ca2b88940f39be6febcb1a95eeb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9472a31972f3462bad0607e73e7fa00f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "98bdc3907d154d3d8cb84ba6a839d261": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "98bed7045584480faa2e4ca19f2f4bc8": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_657f232c94c942379e4087d80d4deacc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "98f175ae34354a19ad5ca8fbbbcaaaf9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b3d6fcb256414087a7caac0b6e698aae", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "99aedeccfe394be49bf014b4f07ceb84": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7e12146cdbbf40c2900b460432c8dad3", "msg_id": "", "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
settingvalue
q0:mw-q0.0110
q1:mw-q1.0110
q0:res-q0.ro60
q1:res-q1.ro60
\n
", "text/plain": "setting value\nq0:mw-q0.01 10\nq1:mw-q1.01 10\nq0:res-q0.ro 60\nq1:res-q1.ro 60" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "9a16c096dc514189a8c90d31c9cae4eb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9a687a5670bc48a3b30adac0d8d91d9c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_2a8147340df54758ae6a009c6fd24856", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "9a6ffcb6ddb54856bb7a297e5ed15c6e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_c40d951d9b1843518fe8cbeab4f470d2", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "9ab1f5ff76aa4f66beab3ddf085d66ad": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9b17d25ef2c2415a99512430b399efc3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9c5aaa6748c642f7b3b69881e22ef06e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4637060b984c4076a0be353e84c9e476", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9c84e5e383e4432fad262de67707ea94": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_180af4f9273048ecbb1fdfb72278115f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9e46c4ea7d1d444091a08092c987e68b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_265416052bc24f2ba6b0034ba6d20423", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a049b87e18584eadbc3d81904c6c8cfa": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a08974a2f7ba49de8cfa8ba0d7245c1b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_86732e18ad334890b2d9b143687f7f23", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a16878cb9f9d49da8793c7fb22925d56": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3fbd0e50013a4555af5f940d23529574", "msg_id": "", "outputs": [ { "name": "stdout", "output_type": "stream", "text": " \n set_mrk 2 # set markers to 2 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 80,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_freq 427023411 # set nco frequency to 1.067559e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,0,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 427558528 # set nco frequency to 1.068896e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,1,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 428093645 # set nco frequency to 1.070234e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,2,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 428628763 # set nco frequency to 1.071572e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,3,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 429163880 # set nco frequency to 1.072910e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,4,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 429698997 # set nco frequency to 1.074247e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,5,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 430234114 # set nco frequency to 1.075585e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,6,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 430769231 # set nco frequency to 1.076923e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,7,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 431304348 # set nco frequency to 1.078261e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,8,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 431839465 # set nco frequency to 1.079599e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,9,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 432374582 # set nco frequency to 1.080936e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,10,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 432909699 # set nco frequency to 1.082274e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,11,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 433444816 # set nco frequency to 1.083612e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,12,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 433979933 # set nco frequency to 1.084950e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,13,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 434515050 # set nco frequency to 1.086288e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,14,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 435050167 # set nco frequency to 1.087625e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,15,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 435585284 # set nco frequency to 1.088963e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,16,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 436120401 # set nco frequency to 1.090301e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,17,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 436655518 # set nco frequency to 1.091639e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,18,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 437190635 # set nco frequency to 1.092977e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,19,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 437725753 # set nco frequency to 1.094314e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,20,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 438260870 # set nco frequency to 1.095652e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,21,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 438795987 # set nco frequency to 1.096990e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,22,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 439331104 # set nco frequency to 1.098328e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,23,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 439866221 # set nco frequency to 1.099666e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,24,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 440401338 # set nco frequency to 1.101003e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,25,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 440936455 # set nco frequency to 1.102341e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,26,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 441471572 # set nco frequency to 1.103679e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,27,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 442006689 # set nco frequency to 1.105017e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,28,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 442541806 # set nco frequency to 1.106355e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,29,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 443076923 # set nco frequency to 1.107692e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,30,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 443612040 # set nco frequency to 1.109030e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,31,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 444147157 # set nco frequency to 1.110368e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,32,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 444682274 # set nco frequency to 1.111706e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,33,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 445217391 # set nco frequency to 1.113043e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,34,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 445752508 # set nco frequency to 1.114381e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,35,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 446287625 # set nco frequency to 1.115719e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,36,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 446822742 # set nco frequency to 1.117057e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,37,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 447357860 # set nco frequency to 1.118395e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,38,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 447892977 # set nco frequency to 1.119732e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,39,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 448428094 # set nco frequency to 1.121070e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,40,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 448963211 # set nco frequency to 1.122408e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,41,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 449498328 # set nco frequency to 1.123746e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,42,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 450033445 # set nco frequency to 1.125084e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,43,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 450568562 # set nco frequency to 1.126421e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,44,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 451103679 # set nco frequency to 1.127759e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,45,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 451638796 # set nco frequency to 1.129097e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,46,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 452173913 # set nco frequency to 1.130435e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,47,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 452709030 # set nco frequency to 1.131773e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,48,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 453244147 # set nco frequency to 1.133110e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,49,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 453779264 # set nco frequency to 1.134448e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,50,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 454314381 # set nco frequency to 1.135786e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,51,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 454849498 # set nco frequency to 1.137124e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,52,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 455384615 # set nco frequency to 1.138462e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,53,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 455919732 # set nco frequency to 1.139799e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,54,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 456454849 # set nco frequency to 1.141137e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,55,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 456989967 # set nco frequency to 1.142475e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,56,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 457525084 # set nco frequency to 1.143813e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,57,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 458060201 # set nco frequency to 1.145151e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,58,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 458595318 # set nco frequency to 1.146488e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,59,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 459130435 # set nco frequency to 1.147826e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,60,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 459665552 # set nco frequency to 1.149164e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,61,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 460200669 # set nco frequency to 1.150502e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,62,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 460735786 # set nco frequency to 1.151839e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,63,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 461270903 # set nco frequency to 1.153177e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,64,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 461806020 # set nco frequency to 1.154515e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,65,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 462341137 # set nco frequency to 1.155853e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,66,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 462876254 # set nco frequency to 1.157191e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,67,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 463411371 # set nco frequency to 1.158528e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,68,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 463946488 # set nco frequency to 1.159866e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,69,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 464481605 # set nco frequency to 1.161204e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,70,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 465016722 # set nco frequency to 1.162542e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,71,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 465551839 # set nco frequency to 1.163880e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,72,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 466086957 # set nco frequency to 1.165217e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,73,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 466622074 # set nco frequency to 1.166555e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,74,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 467157191 # set nco frequency to 1.167893e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,75,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 467692308 # set nco frequency to 1.169231e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,76,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 468227425 # set nco frequency to 1.170569e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,77,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 468762542 # set nco frequency to 1.171906e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,78,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 469297659 # set nco frequency to 1.173244e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,79,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 469832776 # set nco frequency to 1.174582e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,80,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 470367893 # set nco frequency to 1.175920e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,81,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 470903010 # set nco frequency to 1.177258e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,82,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 471438127 # set nco frequency to 1.178595e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,83,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 471973244 # set nco frequency to 1.179933e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,84,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 472508361 # set nco frequency to 1.181271e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,85,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 473043478 # set nco frequency to 1.182609e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,86,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 473578595 # set nco frequency to 1.183946e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,87,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 474113712 # set nco frequency to 1.185284e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,88,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 474648829 # set nco frequency to 1.186622e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,89,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 475183946 # set nco frequency to 1.187960e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,90,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 475719064 # set nco frequency to 1.189298e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,91,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 476254181 # set nco frequency to 1.190635e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,92,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 476789298 # set nco frequency to 1.191973e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,93,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 477324415 # set nco frequency to 1.193311e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,94,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 477859532 # set nco frequency to 1.194649e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,95,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 478394649 # set nco frequency to 1.195987e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,96,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 478929766 # set nco frequency to 1.197324e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,97,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 479464883 # set nco frequency to 1.198662e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,98,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 480000000 # set nco frequency to 1.200000e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,99,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n loop R0,@start \n stop \n \n\n" } ], "tabbable": null, "tooltip": null } }, "a27247ced8104122b01ba6e4c158ffbb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_aa638740d01640b2b084a39372dd2f20" ], "layout": "IPY_MODEL_d84ad9a264f54122a5c419d690f3e316", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "a4b2705c28b34aba841e92cbf4720244": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a54ec107dd8b46da905a7dfebc389495": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4783fd428ff04d3ca80a07f031b00977", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a58d6826501e4937b89d01711394a33d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ff20b57377f041fda70a5de2f4aa2ebe", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
offset_ch0_path_INone
offset_ch0_path_QNone
offset_ch1_path_INone
offset_ch1_path_QNone
in0_gainNone
in1_gainNone
distortion_corrections[{'bt': {'coeffs': None, 'config': 'QbloxFilte...
out0_lo_freq_cal_type_defaultLoCalEnum.ON_LO_INTERM_FREQ_CHANGE
out1_lo_freq_cal_type_defaultLoCalEnum.OFF
lo0_freq7500000000.0
lo1_freqNone
out0_att60
out1_attNone
in0_attNone
\n
", "text/plain": "setting value\noffset_ch0_path_I None\noffset_ch0_path_Q None\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'bt': {'coeffs': None, 'config': 'QbloxFilte...\nout0_lo_freq_cal_type_default LoCalEnum.ON_LO_INTERM_FREQ_CHANGE\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 7500000000.0\nlo1_freq None\nout0_att 60\nout1_att None\nin0_att None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a5a6d3269eff4e9988229dd431a1803e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9051b1b4da4c40ad8a2ae4c7b6db09cf", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a5fca4f739d74a82b94ad54787f1947a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a6242590cce04c29b1b14cc2d8ef6a70": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b52d907f7e424d4ba73e9c5ae977a480", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a71dce7c974b4d86b43a9486c8234744": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a956f971862a4430a47188fc2ec3dd53": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aa0013c12b6f429994be60eb63315154": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_1458aa46aed146fdb991d75d38d0ddf0", "placeholder": "​", "style": "IPY_MODEL_b6caff0cda714e5bbeb84b224dc28403", "tabbable": null, "tooltip": null, "value": " [ elapsed time: 00:01 | time left: 00:00 ]  last batch size: 100" } }, "aa5d9516f81a4774b44ab84feb6a3f13": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3a59ea3513654a7b9171fc19cbc8b6dc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "aa638740d01640b2b084a39372dd2f20": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_363b8db9c9734584a0a1c777561596c5", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "ab4e64332b5c4bfda22632ebb04aa109": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "adb5790ac9d9488bb49bbd6460a172b6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bc62b2b970eb4211a00138c55c19d50b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ae6074741de24f05913f85e788c98562": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "af50e3381f0a4d87b2de7542691a44c2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f681eb0f49a9415d9e08b43d0f1af2bd", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "afa6e2e5d56740e8975dcd2b03a348d1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b0354780c6ce4d758a0475bea8d61e0a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b17db8556bb84c09b209c7cd77d94343": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_933eb4482f63447cbf1d3816b620405b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b1ff9872f82a44e29e2f98f796eb3015": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b2d2f170759741bc937f1bf19c7af7a2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b3830d6205f04decb5c934212181a63f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b3d6fcb256414087a7caac0b6e698aae": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b448b3372ed9493ea5738678ed8ac879": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b4ea22fc66ee44b89b775487022e3e15": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ce00942902ed486c88bcb363efa5cf18", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b4f0f7b310ce4af1bf7c1864149a2f2d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6840bc16dbe34f50895310fbbb810ce1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b52d907f7e424d4ba73e9c5ae977a480": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b58e81d315a148418c2e8c3d392508d0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_99aedeccfe394be49bf014b4f07ceb84" ], "layout": "IPY_MODEL_e19a5813cb1b46c89d099bac5e38d581", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "b6bbe3d521554ad89816719804f16e07": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d7156736625d49d9894753781fdcebd5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b6c23c573d7349018fd3f67b48fbd56b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b6caff0cda714e5bbeb84b224dc28403": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "b76f4c5af21342efaceecad90170a991": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b89ff6b982bb43cba0fbd4914c1cfbc2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3eb7f2805e954fe4837cf346d09cc0c7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b921f86b4772437290c5a8ea1c73db4b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_da21acf9fda94cb8b0d3a8aa8f278348", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b926d18e54164bdb88317145a61c295f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ba39dce938364db689ed22ff58db1e2e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4e9221722ad1426893ac6289c3663704", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bb93c034404247a9b83bed087f154eb1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_8a2ede4e6db2466eaaee2d030bccab59", "IPY_MODEL_89cd76fd681d4be892fbb7953f6a64ec" ], "layout": "IPY_MODEL_d5c57e50d81542f68a87b4192bb123d2", "selected_index": 0, "tabbable": null, "titles": [ "settings", "cluster0_module8" ], "tooltip": null } }, "bc62b2b970eb4211a00138c55c19d50b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bcca6e2a6d634a09b89ded09d75dca55": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bcdb26526599471ea12b88f314786c95": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1b5348653d4a4164a13f3c0c13626937", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bce1eb8285574f6eb983770e1bde99b9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_84f3a4e77af64b439254f5cea725f58e" ], "layout": "IPY_MODEL_b926d18e54164bdb88317145a61c295f", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "bd103a84ad154c6d8dd7da4f4031f890": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7312d8e862e94f55b2928e2a5d5edd45", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bd7cdebe61744051a1505811914dc9cb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "be97319b517146ba95abc3998e880ead": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c37272f23dac4a75ab3991350219ad93", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bf7af738c86144958291b5d152b25234": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_8336480276174be381acd41e93f0ce7e" ], "layout": "IPY_MODEL_6cb9907951e94820abf7147b2cbe98b5", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "c00bec08fbef4ce18ac890b3a8696f87": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c0be35b2071447cbbdf2e9ee779385fb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_dddddcefad2243bc9e3450e022ff240e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
num_bins100
index0
\n
", "text/plain": "setting value\nnum_bins 100\nindex 0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "c13946d332c346b79f0ef815b7abc210": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_8f09eb87886047629653f3f07a9f1275", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c30857b1497a46bc87de17fc4a9b9bc6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cbefc91089db4704bbaa7d158d1db0cf", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c3543c253e234c2dae5256f6bf0bfb78": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_938485d9f92a48cbaec940b1262719ff", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
sync_enTrue
channel_namecomplex_output_0
channel_name_measure[complex_input_0]
connected_output_indices(0, 1)
connected_input_indices(0, 1)
seq_fnNone
thresholded_acq_trigger_write_enNone
thresholded_acq_trigger_write_addressNone
thresholded_acq_trigger_write_invertFalse
nco_enTrue
init_offset_awg_path_I0.0
init_offset_awg_path_Q0.0
init_gain_awg_path_I1.0
init_gain_awg_path_Q1.0
modulation_freq100000000.0
mixer_corr_phase_offset_degree0.0
mixer_corr_gain_ratio1.0
auto_sideband_calSidebandCalEnum.ON_INTERM_FREQ_CHANGE
integration_length_acq1900
thresholded_acq_thresholdNone
thresholded_acq_rotationNone
ttl_acq_input_selectNone
ttl_acq_thresholdNone
ttl_acq_auto_bin_incr_enNone
\n
", "text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure [complex_input_0]\nconnected_output_indices (0, 1)\nconnected_input_indices (0, 1)\nseq_fn None\nthresholded_acq_trigger_write_en None\nthresholded_acq_trigger_write_address None\nthresholded_acq_trigger_write_invert False\nnco_en True\ninit_offset_awg_path_I 0.0\ninit_offset_awg_path_Q 0.0\ninit_gain_awg_path_I 1.0\ninit_gain_awg_path_Q 1.0\nmodulation_freq 100000000.0\nmixer_corr_phase_offset_degree 0.0\nmixer_corr_gain_ratio 1.0\nauto_sideband_cal SidebandCalEnum.ON_INTERM_FREQ_CHANGE\nintegration_length_acq 1900\nthresholded_acq_threshold None\nthresholded_acq_rotation None\nttl_acq_input_select None\nttl_acq_threshold None\nttl_acq_auto_bin_incr_en None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "c37272f23dac4a75ab3991350219ad93": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c40d951d9b1843518fe8cbeab4f470d2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c46ebeb5a6c54f28b8dd5c7928242e59": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c505172bbb7040bc95d89d44201b9d88": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c56828a76c7f429ebc4880664e0d68c5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_e2a4863a10dd4107981dd1f389c9608d", "IPY_MODEL_3f4f4ec334d64ca8bf128366a25e2380", "IPY_MODEL_159c742b3e7b460a92c9bcb931502b6c", "IPY_MODEL_069a8f60c327445c89b84607bd0f7a94" ], "layout": "IPY_MODEL_28961e16bc864c47acbece19ada63f66", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "c6078f4aa9bf4aa2bfbf974b93bf6ebf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7989e31fce0e45df9ec71a6741d64aad", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c802d795b3514041b874f2600eb07839": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cda65fbe678347dbbecfd806a61d90b7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c91894565cc84dfdbf160b95de15b2e0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a049b87e18584eadbc3d81904c6c8cfa", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c91f0e0b26084e719446f97c55629cd4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c99bedc5401546968e112fca5be96dba": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d204e062830d40d7b5263700abb067ca", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
reference_sourceinternal
sync_on_external_triggerNone
\n
", "text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "ca6c4179f0e74d14a79f971022d943d9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_71f333f38bf7431b9ec031e2c8fa8e30", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "caedc17786574b82951b58b91e3d417a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cb06f4d1f46f4ce0a95379914e01869d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cb06f4d1f46f4ce0a95379914e01869d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cb57355c8f74428db4604eee4d9905a1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5a66ecc2a661431f94f960cfa4c2d96d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cb7e628307a74b579dec260bf9b89db9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d6424065bba94ebea4ff4e11befde311", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cbb55ffe47094bc1bc698eaea17a03e5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cbefc91089db4704bbaa7d158d1db0cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cc93a2d6dccf4cfe8cb3dbbc3cc6af12": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fe694a638be748fe925c384644243d1b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cda65fbe678347dbbecfd806a61d90b7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cdbb671909e74e529e3a0ebe61d88b8b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ce00942902ed486c88bcb363efa5cf18": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d1158387ae594239a13ebaa4912fbd5d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d204e062830d40d7b5263700abb067ca": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d274bf5d862e433098a55849bde3b803": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d4b5e3ca250b42c7b52090dbeae6581e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c91f0e0b26084e719446f97c55629cd4", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "d4ccdd3fe5f84390a2acb312170fba64": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d5c57e50d81542f68a87b4192bb123d2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d618d74df5f241a88f4401f69ca8dbc1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_07bc070e1c8d42e09ce7743f94941099", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d6424065bba94ebea4ff4e11befde311": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d70dace33da249adb992dff279ef42d8": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cbb55ffe47094bc1bc698eaea17a03e5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d7156736625d49d9894753781fdcebd5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d84ad9a264f54122a5c419d690f3e316": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "da21acf9fda94cb8b0d3a8aa8f278348": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "da366afe9b7f4e8fa7217ad0c9b4f3c0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_37a19d20a0b04215b6b49db47efd2787" ], "layout": "IPY_MODEL_39b03b292eed469eb25a458667557914", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "da68da3bbb734ffb8ea3581ff9571da2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_002c4b2306aa4dba9bc58396e4021992", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "da9d1cb26d6a4e60a97ee1ee2f9e7ee5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "db75d71bf5914d24b46af4f823976f2f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3ffc5ba4f6b8489e9e95acfab7cdf897", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "dd7439d0b72d4f7ebdd3c0b3593387f1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dddddcefad2243bc9e3450e022ff240e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "de882c259c604e7e807cd948064f8c6f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e19a5813cb1b46c89d099bac5e38d581": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e28b5b17ecaf481f80b295221b129d6f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4b44d097c1154a3fb236e9f310d02c4e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e2a4863a10dd4107981dd1f389c9608d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_59850b08b1f84c9484f3736a97a4c184" ], "layout": "IPY_MODEL_5f30fd4fb3a34a588b60e1aa3927f6f2", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "e398b664532e4bd588a0d35e5c940ec9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_0947b12503b64d3193d1b2797c0a13e0", "IPY_MODEL_5a92d23eacef49918ec07a2d13cfb909", "IPY_MODEL_2b4800cac75f460c99f784d3a5ded9a8", "IPY_MODEL_433cfd71119441928cf68e261070dcbd" ], "layout": "IPY_MODEL_b6c23c573d7349018fd3f67b48fbd56b", "selected_index": 0, "tabbable": null, "titles": [ "hardware_description", "hardware_options", "connectivity", "other values" ], "tooltip": null } }, "e3a59c5c82ea43028ac5eb51bc414e1c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e3f06cb2587740d58c632c93794ac1a5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e402f12f0e084d94a4c1eb1479dd99e1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e50171a0a0734d1f86acb96c3ad89121": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e50328926b394b2db762526d90559609": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e57843ed81164f7887c0403f2af5523e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_45d4e4f428164666b00da414c9c6d1e2", "IPY_MODEL_6a2cca6af0384e8892b7ea31f4d7632f" ], "layout": "IPY_MODEL_2ff93a8fb803436e91068ed07a7ea02a", "selected_index": 0, "tabbable": null, "titles": [ "modules", "other values" ], "tooltip": null } }, "e6aa263ddf864cf2b94ccf41a2314a97": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3c8cb1ad390a44788f47da43fd63d20c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e6ad9fa84b674befa4ab62bf2d557d93": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e6ade711da5a4ee19a91b55f8325a7d6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e8e16054c097487a980aa2ce7b8a7518", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e6f613a37d6b4d918a2cc12007450dba": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e7d977aecbe54e259c563c1419d5e676": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e8e16054c097487a980aa2ce7b8a7518": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e962b26c335a4316946e5a0f56f55c4d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e9b773955ac0429fb2bdf23d2f82234e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e9c4a4fb39cc494b95772903911d45a1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1e990511dc484f3480c876ff1b26b9a7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ead60f2805b343348e4a42b2925a281e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ebce7991d19e4623a5869ef770c37c70": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ff510e6407c44b04845aa6af54ca5eb6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "edc59478b2444d89bbc645b5416abad9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "edf03a953cc7426c8525734d964811ea": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_557c190a0d734169bf493df8671ea71e", "max": 100.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_65ba4d3d11794aeb9977d7e4d9f8761c", "tabbable": null, "tooltip": null, "value": 100.0 } }, "edf207a2a1de4db88c07f0cad56695db": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "efe6c9f3f7f84587b113a8a0880adf04": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f057cb563cc94e1685c07a36637143de": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fb396c09dcf54c9cbec10ef63da8b0a2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f07b5418ab45418f9e4300f174e3da35": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f145edec04ab4d028973f10eeb1f4871": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_de882c259c604e7e807cd948064f8c6f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f213e74d8a5441878392e09b1559530f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f24668d9444040b4a7f4ea5c7ca71248": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c00bec08fbef4ce18ac890b3a8696f87", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f30700f5c0a94cf1a22f225b84a6e341": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f31f7f5caec7433ca8ead365b0123a03": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f5c68b0647c64026967458a1726ed0e0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f609e883e16f491c8100ec49592f2cee": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f681eb0f49a9415d9e08b43d0f1af2bd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f7a1d5e9778f46adb03755194a0166fc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_46cbf294dd13494cbf3060c7e5d3ecb9", "IPY_MODEL_c3543c253e234c2dae5256f6bf0bfb78" ], "layout": "IPY_MODEL_d4ccdd3fe5f84390a2acb312170fba64", "selected_index": 0, "tabbable": null, "titles": [ "sequence", "settings" ], "tooltip": null } }, "fb396c09dcf54c9cbec10ef63da8b0a2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fbf389eb5dea4d65999d65cc1a70d155": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fdb7802a48be4ad289aba86bd11874b1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fe694a638be748fe925c384644243d1b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ff20b57377f041fda70a5de2f4aa2ebe": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ff2e839d85f14a588349b25c7de85fbe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_9442fcaa668b4d69a4e8dfd3b93c4706" ], "layout": "IPY_MODEL_715c51970f0140cd943c6540f041ddba", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "ff510e6407c44b04845aa6af54ca5eb6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }