{
"cells": [
{
"cell_type": "markdown",
"id": "c08cb96c",
"metadata": {},
"source": [
"(sec-tutorial-compiling)=\n",
"\n",
"# Tutorial: Compiling to Hardware\n",
"\n",
"```{seealso}\n",
"The complete source code of this tutorial can be found in\n",
"\n",
"{nb-download}`Compiling to Hardware.ipynb`\n",
"```\n",
"\n",
"Compilation allows converting the schedules introduced in {ref}`sec-tutorial-sched-pulse` into a set of instructions that can be executed on the control hardware.\n",
"\n",
"In this notebook, we will define an example schedule, demonstrate how to compile it, and run it on a virtual hardware setup.\n",
"\n",
"## Schedule definition\n",
"\n",
"We start by defining an example schedule."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "69700214",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Schedule \"Simple schedule\" containing (2) 2 (unique) operations."
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from quantify_scheduler import ClockResource, Schedule\n",
"from quantify_scheduler.operations import SquarePulse\n",
"\n",
"sched = Schedule(\"Simple schedule\")\n",
"sched.add(SquarePulse(amp=0.2, duration=8e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"sched.add(SquarePulse(amp=0.1, duration=12e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"\n",
"readout_clock = ClockResource(name=\"q0.ro\", freq=7e9)\n",
"sched.add_resource(readout_clock)\n",
"\n",
"sched\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "7c97e0d8",
"metadata": {},
"source": [
"## Hardware compilation configuration\n",
"\n",
"In our example setup, we will use a Qblox Cluster containing an RF control module (QCM-RF). To compile the schedule, we will need to provide the compiler with a dictionary detailing the hardware compilation configuration.\n",
"\n",
"Please check the documentation on how to properly create such a configuration for the supported backends:\n",
"\n",
"- {ref}`sec-backend-qblox`\n",
"- {ref}`sec-backend-zhinst`\n",
"\n",
"```{admonition} Creating an example Qblox hardware compilation configuration\n",
":class: dropdown\n",
"\n",
"Below we create an example hardware configuration dictionary, for the Qblox backend.\n",
"In this configuration, we include:\n",
"\n",
"- The `\"config_type\"`, which points to the specific {class}`~quantify_scheduler.backends.types.common.HardwareCompilationConfig` datastructure for the backend we want to use (the Qblox backend, in this case).\n",
"- The description of the setup, including:\n",
" - A Cluster containing a QCM-RF module (in the 2nd slot).\n",
"- The hardware options we want to use in the compilation.\n",
"- The connectivity between the control hardware and the quantum device.\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e5edba23",
"metadata": {
"mystnb": {
"code_prompt_show": "Example hardware configuration"
},
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"hardware_comp_cfg = {\n",
" \"config_type\": \"quantify_scheduler.backends.qblox_backend.QbloxHardwareCompilationConfig\",\n",
" \"hardware_description\": {\n",
" \"cluster0\": {\n",
" \"instrument_type\": \"Cluster\",\n",
" \"ref\": \"internal\",\n",
" \"modules\": {\n",
" \"2\": {\n",
" \"instrument_type\": \"QCM_RF\"\n",
" },\n",
" },\n",
" },\n",
" },\n",
" \"hardware_options\": {\n",
" \"modulation_frequencies\": {\n",
" \"q0:res-q0.ro\": {\"interm_freq\": 50e6},\n",
" },\n",
" \"mixer_corrections\": {\n",
" \"q0:res-q0.ro\": {\n",
" \"dc_offset_i\": -0.00552,\n",
" \"dc_offset_q\": -0.00556,\n",
" \"amp_ratio\": 0.9998,\n",
" \"phase_error\": -4.1\n",
" }\n",
" }\n",
" },\n",
" \"connectivity\": {\n",
" \"graph\": [\n",
" (\"cluster0.module2.complex_output_0\", \"q0:res\"),\n",
" ]\n",
" },\n",
"}"
]
},
{
"cell_type": "markdown",
"id": "0362e442",
"metadata": {},
"source": [
"(sec-tutorial-compiling-to-hardware-compilation)=\n",
"## Compilation\n",
"\n",
"Now we are ready to proceed to the compilation stage. For each of the control stack's instruments, the compilation generates:\n",
"\n",
"- The schedule's absolute timing. During the schedule's definition, we didn't assign absolute times to the operations. Instead, only the duration was defined. For the instruments to know how to execute the schedule, the absolute timing of the operations is calculated.\n",
"- A set of parameters that are used to properly configure each instrument for the execution of the schedule. These parameters typically don't change during the execution of the schedule.\n",
"- A compiled program that contains instructions on what the instrument must do in order for the schedule to be executed.\n",
"\n",
"We perform the compilation via {func}`~quantify_scheduler.backends.graph_compilation.QuantifyCompiler.compile`.\n",
"\n",
"We start by setting the directory where the compiled schedule files will be stored, via [set_datadir](https://quantify-os.org/docs/quantify-core/dev/user/concepts.html#data-directory)."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "20b5c6da",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data will be saved in:\n",
"/Users/user/quantify-data\n"
]
}
],
"source": [
"from quantify_core.data import handling as dh\n",
"\n",
"dh.set_datadir(dh.default_datadir())\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "59df7df1",
"metadata": {},
"source": [
"Next, we create a device configuration that contains all knowledge of the physical device under test (DUT). To generate it we use the {class}`~quantify_scheduler.device_under_test.quantum_device.QuantumDevice` class.\n",
"\n",
"The schedule defined at the beginning of this tutorial consists of 2 pulse operations. As such, the hardware compilation configuration must contain the necessary information to execute the schedule. We add the hardware compilation configuration to the `QuantumDevice` object and compile the schedule using this information. We visualize the compiled schedule in a {meth}`pulse diagram <.plot_pulse_diagram>`."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "57550435",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "0",
"line": {
"color": "#636EFA"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "lmR54X/9pb0AAAAAAAAAAJXWJugLLhE+ldYm6AsuIT7gQTrcEcUpPpXWJugLLjE+Ooww4o55NT7gQTrcEcU5PoX3Q9aUED4+PHguiIwoQT6V1iboCy5BPg==",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT8AAAAAAAAAAA==",
"dtype": "f8"
},
"yaxis": "y"
},
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "1",
"line": {
"color": "#EF553B"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "PHguiIwoQT6V1iboCy5BPmixK2XNU0M+O4ww4o55RT4OZzVfUJ9HPuFBOtwRxUk+tBw/WdPqSz6H90PWlBBOPi1ppCkrG1A+ltYm6AsuUT4ARKmm7EBSPmqxK2XNU1M+0x6uI65mVD4QXTQyz3ZVPj2MMOKOeVU+",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5PwAAAAAAAAAA",
"dtype": "f8"
},
"yaxis": "y"
}
],
"layout": {
"height": 300,
"showlegend": false,
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermap": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermap"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "Simple schedule"
},
"width": 1000,
"xaxis": {
"anchor": "y",
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"showgrid": true,
"tickformat": ".2s",
"tickformatstops": [
{
"dtickrange": [
null,
1e-09
],
"value": ".10s"
},
{
"dtickrange": [
1e-09,
1e-06
],
"value": ".7s"
},
{
"dtickrange": [
1e-06,
0.001
],
"value": ".4s"
}
],
"ticksuffix": "s",
"title": {
"text": "Time"
}
},
"yaxis": {
"anchor": "x",
"autorange": true,
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"tickformat": ".2s",
"ticksuffix": "V",
"title": {
"text": "q0:res"
}
}
}
},
"text/html": [
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from quantify_scheduler import QuantumDevice, SerialCompiler\n",
"\n",
"quantum_device = QuantumDevice(\"DUT\")\n",
"\n",
"quantum_device.hardware_config(hardware_comp_cfg)\n",
"compiler = SerialCompiler(name=\"compiler\")\n",
"compiled_sched = compiler.compile(\n",
" schedule=sched, config=quantum_device.generate_compilation_config()\n",
")\n",
"\n",
"compiled_sched.plot_pulse_diagram(plot_backend='plotly')\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "cd107c12",
"metadata": {},
"source": [
"The cell above compiles the schedule, returning a {class}`~quantify_scheduler.schedules.schedule.CompiledSchedule` object. This class differs from {class}`~quantify_scheduler.schedules.schedule.Schedule` in that it is immutable and contains the {attr}`~quantify_scheduler.schedules.schedule.CompiledSchedule.compiled_instructions` attribute. We inspect these instructions below."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "3f07c341",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8631e8a779304d138cb93ab51805eac6",
"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": [
"compiled_sched.compiled_instructions\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "dc89ebbe",
"metadata": {},
"source": [
"## Execution on the hardware\n",
"\n",
"In the compiled schedule, we have all the information necessary to execute the schedule.\n",
"In this specific case, only sequencer {code}`seq0` of the RF control module (QCM-RF) is needed. The compiled schedule contains the file path where the sequencer's program is stored, as well as the QCoDeS parameters that need to be set in the device.\n",
"\n",
"Now that we have compiled the schedule, we are almost ready to execute it with our control setup.\n",
"\n",
"We start by connecting to a dummy cluster device by passing a `dummy_cfg` argument when initializing a `Cluster`:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "c357f142",
"metadata": {},
"outputs": [],
"source": [
"from qblox_instruments import Cluster, ClusterType\n",
"\n",
"Cluster.close_all() # Closes all registered instruments (not just Clusters)\n",
"\n",
"cluster0 = Cluster(\"cluster0\", dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF})\n"
]
},
{
"cell_type": "markdown",
"id": "e35df7fe",
"metadata": {},
"source": [
"Here, {code}`dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF}` initializes a dummy cluster instrument that contains an RF control module in slot 2, as specified by the example hardware config.\n",
"\n",
"We attach these instruments to the {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` via the appropriate {class}`~quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase` component wrapper class. More information on the scheduler execution can be found in the {ref}`Execution section of User guide `."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "469d5708",
"metadata": {},
"outputs": [],
"source": [
"from quantify_scheduler import InstrumentCoordinator\n",
"from quantify_scheduler.qblox import ClusterComponent\n",
"\n",
"ic = InstrumentCoordinator(\"ic\")\n",
"ic.add_component(ClusterComponent(cluster0))\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "6a42e797",
"metadata": {},
"source": [
"The {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` object is responsible for the smooth and in-concert operation of the different instruments, so that the provided schedule is correctly executed.\n",
"Essentially, it \"coordinates\" the control stack instruments, giving the relevant commands to the different instruments of the control stack at each point in time.\n",
"\n",
"The experiment can now be conducted using the methods of {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator`:\n",
"\n",
"1. We prepare the instruments with the appropriate settings and upload the schedule program by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.prepare` method and passing the compiled schedule as an argument.\n",
"2. We start the hardware execution by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.start` method.\n",
"\n",
"Additionally, the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.wait_done` method is useful to wait for the experiment to finish and assure the synchronicity of the python script."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "5ed8d981",
"metadata": {},
"outputs": [],
"source": [
"# Set the qcodes parameters and upload the schedule program\n",
"ic.prepare(compiled_sched)\n",
"\n",
"# Start the hardware execution\n",
"ic.start()\n",
"\n",
"# Wait for the experiment to finish or for a timeout\n",
"ic.wait_done(timeout_sec=10)\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "74c7b4c5",
"metadata": {},
"source": [
"The {class}`~~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` has two more methods that were not covered in this experiment:\n",
"\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.retrieve_acquisition`\n",
" \\- In case the schedule contained acquisitions, this method retrieves the acquired data.\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.stop`\n",
" \\- Stops all running instruments.\n",
"\n",
"Note that the schedule used in this tutorial was defined purely in terms of pulses.\n",
"However, `quantify-scheduler` also supports the usage of quantum gates in schedules. Given that gates may require different pulses depending on the type of quantum system, an extra step of defining the quantum device configuration, i.e. the qubits, is necessary. This use case is covered in the {ref}`sec-tutorial-ops-qubits` tutorial."
]
}
],
"metadata": {
"file_format": "mystnb",
"kernelspec": {
"display_name": "python3",
"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.21"
},
"source_map": [
6,
25,
40,
64,
102,
117,
124,
130,
145,
149,
154,
165,
173,
178,
187,
199,
211
],
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"002f88873dca4d0fb9158a6e6985b0c6": {
"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
}
},
"027385e2baf841ecb61f4ba40fc2b319": {
"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_8904432815e64e5ca14c454bf415f24d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0464a089fee74f24ab5ea52bbd3d0e1a": {
"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_7324f16d97654967a69e6650b4ae2d44",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0544fa20a7ca433aae35c46e6cf9ecc7": {
"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
}
},
"055e4896ca0c4c40a0dd8b5db44cae55": {
"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_39d8aa3f2c6943208dca2e5ab34ba46b",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n reference_source \n internal \n \n \n sync_on_external_trigger \n None \n \n \n
\n
",
"text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"06824ee13b6142889aa881c9fc73df4d": {
"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
}
},
"0804e3d3dae143bc9368740afba96a10": {
"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_7aeed3ffbf3c41d4a74d125c72f5c275"
],
"layout": "IPY_MODEL_e1212207a7b443b6bef41df8298b57ea",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"0888d551af614d96ac6b069d5332fdae": {
"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
}
},
"08b8687c577d428f85a3cb8c48e20bf0": {
"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_843987e2693247d7a52dd1a520ec2078",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0a044f7448914050a47c941cdc55ae8b": {
"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_7fedc8f975ba41608af4eb2bd0788ac0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0a81f807e8e3408784f0213f71c23d35": {
"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_58e8eb53d927468aa2a63bc8fceb2dbd",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"0ae5af5fe880488398edf9dd555d9dfb": {
"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_93c9fb6a2ce744ce847e56cd2aa15a3a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0c13db309fd54108ada8857d2c19db1c": {
"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
}
},
"0e0c8ae706c94a71acb88dad819baf31": {
"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
}
},
"0f520468b46d4b90a07f9bdfe083b9cb": {
"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_57f03d40349b40a3aed66897fad7afc1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0f92bf3babe0407d8cebcd3e8a03433b": {
"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_eae7baa7755e43d5a5615293c2847ab6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"10b3bc048cdf438099c82f43eb0fa04b": {
"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_ce0da0f0477449bab6dc4b6c6b8ad23a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"12a2e15a9ed243e09b9adc51a6990830": {
"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
}
},
"147ee10b18e44c5995796f4758e1b5b7": {
"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_f0fedf62617643b2a04240c426e0de6b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"19605e94c12641d98503bace3324f8f1": {
"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_87f4188937554136953fb1e2e11b1e32",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"1c141d70043643eba79b6ad7adc36ddc": {
"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_9b154bcddbd547119bec1cd6be4409e4",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAkAAAAGwCAYAAABB4NqyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAlEUlEQVR4nO3dCbRV5X0/7u8VZYgCigqIgKJSUUGcWWhia2RJlbji0CgWlWBsa4sjjVMFZ8WYapyIUxo1DlVXFWodwwIFTXFCdGmJGEUDVRmcQFAR4f7X+/5/95YroIAHzr28z7PW9p69zz77vGevK+dz37Gmtra2NgAACrJBtQsAALCuCUAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIqzYbUL0BgtXbo03nvvvWjdunXU1NRUuzgAwCpIUxt++umn0alTp9hgg2+u4xGAViCFny5dulS7GADAGpg5c2Z07tz5G88RgFYg1fzU3cA2bdpUuzgAwCqYP39+rsCo+x7/JgLQCtQ1e6XwIwABQNOyKt1XdIIGAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHGqGoAmTpwYhx56aHTq1ClqampizJgx3/qap556KvbYY49o0aJF7LDDDnH77bev9NwrrrgiX/f000+vcMkBgKasqgFo4cKF0bt37xg1atQqnf/222/HgAED4oADDoiXX345B5sTTzwxnnjiieXOfeGFF+Lmm2+OXXfddS2UHABoyjas5psffPDBeVtVN910U3Tr1i2uuuqqvL/TTjvFM888E7/61a+if//+9ectWLAgBg0aFLfeemtceumla6XsAEDT1aT6AE2aNCn69evX4FgKPun4soYOHZprir5+7sosWrQo5s+f32ADANZfVa0BWl2zZs2KDh06NDiW9lNg+fzzz6NVq1Zx7733xksvvZSbwFbVyJEj46KLLloLJQYAGqMmVQP0bWbOnBmnnXZa3H333dGyZctVft25554b8+bNq9/SdQCA9VeTqgHq2LFjzJ49u8GxtN+mTZtc+zN58uSYM2dOHiVWZ8mSJXm02Q033JCbupo1a7bcddOIsrQBAGVoUgGob9++8eijjzY4Nnbs2Hw8OfDAA+PVV19t8PyQIUOiR48ecfbZZ68w/AAA5alqAEqjtd58880Gw9zT8PZ27dpF165dc9PUu+++G7/73e/y8yeddFKuyTnrrLPihBNOiPHjx8f9998fjzzySH6+devW0bNnzwbvsfHGG8fmm2++3HEAoFxV7QP04osvxu677563ZNiwYfnx+eefn/fff//9mDFjRv35aQh8Cjup1ifNH5SGw//mN79pMAQeAODb1NTW1tZ+61mFSaPK2rZtmztEp/5FAMD69f29Xo0CAwBYFQIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHGqGoAmTpwYhx56aHTq1ClqampizJgx3/qap556KvbYY49o0aJF7LDDDnH77bc3eH7kyJGx9957R+vWraN9+/Zx2GGHxbRp09bipwAAmpqqBqCFCxdG7969Y9SoUat0/ttvvx0DBgyIAw44IF5++eU4/fTT48QTT4wnnnii/pwJEybE0KFD49lnn42xY8fG4sWL46CDDsrvBQCQ1NTW1tY2hluRaoBGjx6da2xW5uyzz45HHnkkXnvttfpjAwcOjE8++SQef/zxFb5m7ty5uSYoBaP9999/lcoyf/78aNu2bcybNy/atGmzBp8GAFjXVuf7u0n1AZo0aVL069evwbH+/fvn4yuTbkLSrl27lZ6zaNGifNOW3QCA9VeTCkCzZs2KDh06NDiW9lNg+fzzz5c7f+nSpbmZbL/99ouePXuu9Lqp31BKjHVbly5d1kr5AYDGoUkFoNWV+gKl5rJ77733G88799xzc01R3TZz5sx1VkYAYN3bMJqQjh07xuzZsxscS/upna9Vq1YNjp988snx8MMP55FmnTt3/sbrphFlaQMAytCkaoD69u0b48aNa3AsjfRKx+ukPt0p/KQO1ePHj49u3bpVoaQAQGNW1QC0YMGCPJw9bXXD3NPjGTNm1DdNHX/88fXnn3TSSTF9+vQ466yz4vXXX49f//rXcf/998cZZ5zRoNnrrrvuinvuuSfPBZT6DaVtRX2EAIAyVXUYfJrUMM3p83WDBw/OExz+9Kc/jXfeeSeft+xrUuCZOnVqbtoaMWJEPm/Z4fQrcttttzU475sYBg8ATc/qfH83mnmAGhMBCACanvV2HiAAgEoQgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDhrHIDeeuutGD58eBxzzDExZ86cfOyxxx6L//mf/6lk+QAAGkcAmjBhQvTq1Suee+65ePDBB2PBggX5+CuvvBIXXHBBpcsIAFD9AHTOOefEpZdeGmPHjo3mzZvXH//hD38Yzz77bCXLBwDQOALQq6++Gocffvhyx9u3bx8ffPBBJcoFANC4AtCmm24a77///nLHp0yZEltvvXUlygUA0LgC0MCBA+Pss8+OWbNmRU1NTSxdujT+8Ic/xM9//vM4/vjjK19KAIBqB6DLL788evToEV26dMkdoHfeeefYf//9Y999980jwwAAGrOa2tra2jV98YwZM+K1117LIWj33XeP7t27x/pg/vz50bZt25g3b160adOm2sUBACr8/b1hfAddu3bNGwBAU7LKAWjYsGGrfNGrr756TcsDANB4AlAa4bWsl156Kb766qvYcccd8/4bb7wRzZo1iz333LPypQQAqEYAevLJJxvU8LRu3TruuOOO2GyzzfKxjz/+OIYMGRI/+MEPKlk+AIDG0Qk6zfXz+9//PnbZZZcGx1OH6IMOOijee++9aMp0ggaA9fv7e4M1fYO5c+cudzwd+/TTT9fkkgAA68waBaC0DEZq7koLof7v//5v3h544IH42c9+FkcccUTlSwkAUEFrNAz+pptuyrM+/+3f/m0sXrz4/7/QhhvmAPTLX/6ykuUDAGhcEyEuXLgw3nrrrfx4++23j4033jjWB/oAAUDTs84mQkyBZ9ddd/0ulwAAWOfWKAAdcMABeRHUlRk/fvx3KRMAQOMLQLvttluD/dQP6OWXX87D4AcPHlypsgEANJ4A9Ktf/WqFxy+88MK8MCoAwHo3DH5ljj322Pjtb39byUsCADTuADRp0qRo2bJlJS8JANA4msC+PtlhGkn//vvvx4svvhgjRoyoVNkAABpPAEpj65cdBbbBBhvkVeEvvvjivBYYAMB6F4Buv/32ypcEAKAx9wHabrvt4sMPP1zu+CeffJKfAwBY7wLQO++8E0uWLFnu+KJFi+Ldd9+tRLkAABpHAHrooYfyljzxxBP1+2kbPXp0XHLJJbHtttuu8vUmTpwYhx56aHTq1Cn3KRozZsy3vuapp56KPfbYI1q0aBE77LDDCpvjRo0alcuRRqT16dMnnn/++dX5mADAem61+gAddthh+WcKK1+f8XmjjTbKoeOqq65arcVUe/fuHSeccMJyI8tW5O23344BAwbESSedFHfffXeMGzcuTjzxxNhqq62if//++Zz77rsvhg0bllesT+Hnmmuuyc9NmzYt2rdvvzofFwBYT63RavDdunWLF154IbbYYovKFaSmJtci1YWsFTn77LPjkUceyUtu1Bk4cGDue/T444/n/RR69t5777jhhhvy/tKlS6NLly5xyimnxDnnnFPV1eDTrf588fJNhwBQolYbNfvGtUUb3WrwqSamGtJEi/369WtwLNXunH766fnxl19+GZMnT45zzz23wRD99Jr02pVJfZfStuwNXBtS+Nn5/CfWyrUBoKmZenH/+F7zNYoi39kqv+t1110Xf//3f5/71aTH3+TUU0+NtWHWrFnRoUOHBsfSfgosn3/+eXz88ce5c/aKznn99ddXet2RI0fGRRddtFbKDAA0PhuuzgKogwYNygFoZYuhJqkqa20FoLUl1RilfkN1UqBKzWZro6ovpV0AIPL3YqMPQMs2e1WrCaxjx44xe/bsBsfSfmrna9WqVTRr1ixvKzonvXZl0oiytK1tKRxWq6oPAFhLi6GubX379s0jv5Y1duzYfDxp3rx57Lnnng3OSZ2g037dOQAAq1wdsWwT0be5+uqrV+m8BQsWxJtvvtmgZunll1+Odu3aRdeuXXPTVJpY8Xe/+11+Pg1/T6O7zjrrrDx0fvz48XH//ffnkWHLljMN0d9rr71in332ycPg03D7IUOGrHL5AYD12yoHoClTpqzSeasznC2tHn/AAQcsF7JSgEkTHKYV5mfMmNFg+H0KO2eccUZce+210blz5/jNb35TPwdQcvTRR8fcuXPj/PPPz52md9tttzxE/usdowGAcq3RPEDru7U1DxAA0Di+v79zH6CZM2fmDQCgqVijAPTVV1/FiBEjcspKy1+kLT0ePnx4LF68uPKlBACooDUak52WlXjwwQfjyiuvrB9dlWZavvDCC+PDDz+MG2+8sZJlBACofh+gVNtz7733xsEHH9zg+KOPPhrHHHNMbntryvQBAoCmZ633AUqTBqZmr69Lo7TSXDwAAI3ZGgWgk08+OS655JIGC4imx5dddll+DgBgvesDlOYESrMrp3l4evfunY+98soreTX2Aw88MI444oj6c1NfIQCAJh+ANt100zjyyCMbHFsbi4cCADSaAHTbbbdVviQAAOtIk1oMFQCgajVAaa6ftNbWk08+GXPmzMkrri/ro48+qkjhAAAaTQA67rjj8iruP/vZz/Iio6uzACoAQJMMQE8//XQ888wz9SPAAADW+z5APXr0iM8//7zypQEAaKwB6Ne//nWcd955MWHChNwfKE09vewGALBezgOUgs4Pf/jDBsfTsmKpP9CSJUsqVT4AgMYRgAYNGhQbbbRR3HPPPTpBAwBlBKDXXnstL4ex4447Vr5EAACNsQ/QXnvtFTNnzqx8aQAAGmsN0CmnnBKnnXZanHnmmdGrV6/cHLasXXfdtVLlAwCouJra1HN5NW2wwcorjtaHTtCpg3fbtm1j3rx50aZNm2oXBwCo8Pf3GtUAvf3222vyMgCARmGNAtA222yTf06dOjVmzJgRX375ZYMaoLrnAQDWmwA0ffr0OPzww+PVV1/NgaeuFa1uOHxTbwIDANZvazQKLHWA7tatW14J/nvf+14eFj9x4sQ8Ouypp56qfCkBAKpdAzRp0qQYP358bLHFFrlDdLNmzeL73/9+jBw5Mk499dQ8RxAAwHpVA5SauFq3bp0fpxD03nvv5cep78+0adMqW0IAgMZQA9SzZ8945ZVXcjNYnz594sorr4zmzZvHLbfcEtttt12lywgAUP0ANHz48Fi4cGF+fPHFF8ePfvSj+MEPfhCbb7553HfffZUtIQBAY5gIcUU++uij2GyzzdaLhVFNhAgATc9anwhxRdq1a1epSwEANL5O0AAATZkABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKE7VA9CoUaNi2223jZYtW0afPn3i+eefX+m5ixcvjosvvji23377fH7v3r3j8ccfb3DOkiVLYsSIEdGtW7do1apVPveSSy6J2tradfBpAICmoKoB6L777othw4bFBRdcEC+99FIONP379485c+as8Pzhw4fHzTffHNdff31MnTo1TjrppDj88MNjypQp9ef84he/iBtvvDFuuOGG+OMf/5j3r7zyyvwaAICkpraKVSOpxmfvvffOYSVZunRpdOnSJU455ZQ455xzlju/U6dOcd5558XQoUPrjx155JG5pueuu+7K+z/60Y+iQ4cO8W//9m8rPefbzJ8/P9q2bRvz5s2LNm3aVOCTAgBr2+p8f1etBujLL7+MyZMnR79+/f6vMBtskPcnTZq0wtcsWrQoN30tKwWbZ555pn5/3333jXHjxsUbb7yR91955ZX8/MEHH7zSsqTrppu27AYArL82rNYbf/DBB7m/TqqtWVbaf/3111f4mtQ8dvXVV8f++++f+/akoPPggw/m69RJNUcpwPTo0SOaNWuWn7vsssti0KBBKy3LyJEj46KLLqrgpwMAGrOqd4JeHddee2107949h5vmzZvHySefHEOGDMk1R3Xuv//+uPvuu+Oee+7J/YruuOOO+Nd//df8c2XOPffcXF1Wt82cOXMdfSIAoKgaoC222CLX0MyePbvB8bTfsWPHFb5myy23jDFjxsQXX3wRH374Ye4TlGp8tttuu/pzzjzzzHxs4MCBeb9Xr17x5z//OdfyDB48eIXXbdGiRd4AgDJUrQYo1eDsueeeuRmrTuoEnfb79u37ja9N/YC23nrr+Oqrr+KBBx6IH//4x/XPffbZZw1qhJIUtNK1AQCqWgOUpCHwqVZmr732in322SeuueaaWLhwYW7WSo4//vgcdFLtTfLcc8/Fu+++G7vttlv+eeGFF+Zgc9ZZZ9Vf89BDD819frp27Rq77LJLHiKf+g2dcMIJVfucAEDjUtUAdPTRR8fcuXPj/PPPj1mzZuVgkyY2rOsYPWPGjAa1OanpK80FNH369Nhkk03ikEMOiTvvvDM23XTT+nPSfD9pIsR/+qd/yvMJpWayf/iHf8jvAQBQ9XmAGivzAAFA09Mk5gECAKgWAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFCcqgegUaNGxbbbbhstW7aMPn36xPPPP7/ScxcvXhwXX3xxbL/99vn83r17x+OPP77cee+++24ce+yxsfnmm0erVq2iV69e8eKLL67lTwIANBVVDUD33XdfDBs2LC644IJ46aWXcqDp379/zJkzZ4XnDx8+PG6++ea4/vrrY+rUqXHSSSfF4YcfHlOmTKk/5+OPP4799tsvNtpoo3jsscfyeVdddVVsttlm6/CTAQCNWU1tbW1ttd481fjsvffeccMNN+T9pUuXRpcuXeKUU06Jc845Z7nzO3XqFOedd14MHTq0/tiRRx6Za3nuuuuuvJ9e94c//CGefvrpVS7HokWL8lZn/vz5uRzz5s2LNm3afMdPCQCsC+n7u23btqv0/V21GqAvv/wyJk+eHP369fu/wmywQd6fNGnSCl+TQkpq+lpWCj/PPPNM/f5DDz0Ue+21V/zkJz+J9u3bx+677x633nrrN5Zl5MiR+YbVbSn8AADrr6oFoA8++CCWLFkSHTp0aHA87c+aNWuFr0nNY1dffXX86U9/yrVFY8eOjQcffDDef//9+nOmT58eN954Y3Tv3j2eeOKJ+Md//Mc49dRT44477lhpWc4999ycFuu2mTNnVvCTAgCNzYbRhFx77bXxd3/3d9GjR4+oqanJnaGHDBkSv/3tb+vPScEo1QBdfvnleT/VAL322mtx0003xeDBg1d43RYtWuQNAChD1WqAtthii2jWrFnMnj27wfG037FjxxW+Zsstt4wxY8bEwoUL489//nO8/vrrsckmm8R2221Xf85WW20VO++8c4PX7bTTTjFjxoy19EkAgKamagGoefPmseeee8a4ceMa1N6k/b59+37ja1M/oK233jq++uqreOCBB+LHP/5x/XNpBNi0adManP/GG2/ENttssxY+BQDQFFW1CSwNgU/NUqnJap999olrrrkm1+6kZq3k+OOPz0EndVJOnnvuuTzHz2677ZZ/XnjhhTk0nXXWWfXXPOOMM2LffffNTWBHHXVUnlfolltuyRsAQNUD0NFHHx1z586N888/P3d8TsEmTWxY1zE6NVulkWF1vvjiizwXUOronJq+DjnkkLjzzjtj0003rT8nDasfPXp07ticJk3s1q1bDlaDBg2qymcEABqfqs4DtD7MIwAANA5NYh4gAIBqEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOJsWO0CNEa1tbX55/z586tdFABgFdV9b9d9j38TAWgFPv300/yzS5cu1S4KALAG3+Nt27b9xnNqalclJhVm6dKl8d5770Xr1q2jpqam4uk0BauZM2dGmzZtKnrtkriPleE+Vob7WBnuY2WUfB9ra2tz+OnUqVNssME39/JRA7QC6aZ17tx5rb5H+qUs7RdzbXAfK8N9rAz3sTLcx8oo9T62/Zaanzo6QQMAxRGAAIDiCEDrWIsWLeKCCy7IP1lz7mNluI+V4T5WhvtYGe7jqtEJGgAojhogAKA4AhAAUBwBCAAojgAEABRHAFqHRo0aFdtuu220bNky+vTpE88//3y1i9SkjBw5Mvbee+88Q3f79u3jsMMOi2nTplW7WE3eFVdckWc8P/3006tdlCbn3XffjWOPPTY233zzaNWqVfTq1StefPHFaherSVmyZEmMGDEiunXrlu/h9ttvH5dccskqreVUsokTJ8ahhx6aZzxO//+OGTOmwfPp/p1//vmx1VZb5fvar1+/+NOf/lS18jZGAtA6ct9998WwYcPy0MSXXnopevfuHf379485c+ZUu2hNxoQJE2Lo0KHx7LPPxtixY2Px4sVx0EEHxcKFC6tdtCbrhRdeiJtvvjl23XXXahelyfn4449jv/32i4022igee+yxmDp1alx11VWx2WabVbtoTcovfvGLuPHGG+OGG26IP/7xj3n/yiuvjOuvv77aRWvU0r976Xsk/WG9IukeXnfddXHTTTfFc889FxtvvHH+zvniiy/WeVkbrTQMnrVvn332qR06dGj9/pIlS2o7depUO3LkyKqWqymbM2dO+hOxdsKECdUuSpP06aef1nbv3r127NixtX/5l39Ze9ppp1W7SE3K2WefXfv973+/2sVo8gYMGFB7wgknNDh2xBFH1A4aNKhqZWpq0r+Do0ePrt9funRpbceOHWt/+ctf1h/75JNPalu0aFH77//+71UqZeOjBmgd+PLLL2Py5Mm5CnLZ9cbS/qRJk6patqZs3rx5+We7du2qXZQmKdWmDRgwoMHvJavuoYceir322it+8pOf5CbZ3XffPW699dZqF6vJ2XfffWPcuHHxxhtv5P1XXnklnnnmmTj44IOrXbQm6+23345Zs2Y1+H87rY+Vul74zvk/FkNdBz744IPczt2hQ4cGx9P+66+/XrVyNWVLly7NfVZSE0TPnj2rXZwm5957781NsakJjDUzffr03HSTmrb/5V/+Jd/LU089NZo3bx6DBw+udvGajHPOOSevXt6jR49o1qxZ/rfysssui0GDBlW7aE1WCj/Jir5z6p5DAKIJ11689tpr+S9FVs/MmTPjtNNOy/2oUod81jyEpxqgyy+/PO+nGqD0O5n6XAhAq+7++++Pu+++O+65557YZZdd4uWXX85/3KTOve4ja5MmsHVgiy22yH/ZzJ49u8HxtN+xY8eqlaupOvnkk+Phhx+OJ598Mjp37lzt4jQ5qTk2db7fY489YsMNN8xb6mCeOkymx+kvcL5dGl2z8847Nzi20047xYwZM6pWpqbozDPPzLVAAwcOzKPojjvuuDjjjDPyqE/WTN33iu+cbyYArQOpSnzPPffM7dzL/vWY9vv27VvVsjUlqa9fCj+jR4+O8ePH52GzrL4DDzwwXn311fyXdt2WajJSk0N6nMI63y41v359GobUj2WbbbapWpmaos8++yz3iVxW+h1M/0ayZtK/jSnoLPudk5oZ02gw3zn/RxPYOpL6CaTq3PRFs88++8Q111yThzEOGTKk2kVrUs1eqZr8P//zP/NcQHVt2alzX5rnglWT7t3X+02lIbJpLhv9qVZdqqVIHXhTE9hRRx2V5/W65ZZb8saqS3PZpD4/Xbt2zU1gU6ZMiauvvjpOOOGEahetUVuwYEG8+eabDTo+pz9g0qCQdC9TM+Kll14a3bt3z4EozbWUmhXT/Gn8P9UehlaS66+/vrZr1661zZs3z8Pin3322WoXqUlJv64r2m677bZqF63JMwx+zfzXf/1Xbc+ePfPw4h49etTecsst1S5SkzN//vz8u5f+bWzZsmXtdtttV3veeefVLlq0qNpFa9SefPLJFf57OHjw4Pqh8CNGjKjt0KFD/v088MADa6dNm1btYjcqNek/dWEIAKAE+gABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABjcpTTz0VNTU18cknn6zz907vm7ZNN920Yte88MIL66+blsABGgcBCKiav/qrv8prFi0rra/1/vvv5zXequG2227Li5pWys9//vP8eTp37lyxawLfncVQgUalefPmeSXrakm1P+3bt6/Y9TbZZJO8pRXOgcZDDRBQFT/96U9jwoQJce2119Y3Eb3zzjvLNYHdfvvtOZQ8/PDDseOOO8b3vve9+Ju/+Zv47LPP4o477ohtt902Nttsszj11FNjyZIl9ddftGhRrn3Zeuut82r3ffr0yddekyas3XbbLe688878XqlmauDAgfHpp5/Wn/Mf//Ef0atXr2jVqlVsvvnm0a9fv1i4cGGF7hSwNqgBAqoiBZ/U1NSzZ8+4+OKL87Ett9wyh6CvS2Hnuuuui3vvvTcHjyOOOCIOP/zwHIweffTRmD59ehx55JGx3377xdFHH51fc/LJJ8fUqVPzazp16hSjR4+Ov/7rv45XX301unfvvlplfeutt2LMmDE5hH388cdx1FFHxRVXXBGXXXZZbt465phj4sorr8xlSuV7+umnwzrT0LgJQEBVpJqU1NyVanS+rclr8eLFceONN8b222+f91MNUKqRmT17dm5e2nnnneOAAw6IJ598MgegGTNm5L486WcKP0mqDXr88cfz8csvv3y1yrp06dJcE9W6deu8f9xxx8W4cePqA9BXX32VQ9k222yTn0+1QUDjJgABjV4KSXXhJ+nQoUNujkrhZ9ljc+bMyY9TLU9qDvuLv/iLBtdJzWKpiWp1pfeqCz/JVlttVf9evXv3jgMPPDCHnv79+8dBBx2UA1pqlgMaLwEIaPQ22mijBvupj9CKjqWammTBggW50/HkyZOX63y8bGj6Lu9f917p+mPHjo3//u//jt///vdx/fXXx3nnnRfPPfdcdOvWbbXfC1g3dIIGqiY1gS3bcblSdt9993zdVEuzww47NNjWxgizFIhS/6OLLroopkyZkj9X6nMENF5qgICqSU1LqaYkdXxONTPt2rWryHVT09egQYPi+OOPj6uuuioHorlz5+Z+O7vuumsMGDAgKiWVP103NX2l4fNpP73XTjvtVLH3ACpPDRBQNaljcmpCSp2Y0wiw1Gm5UlJn5xSA/vmf/zkPnz/ssMPihRdeiK5du0YltWnTJiZOnBiHHHJIDl7Dhw/Poevggw+u6PsAlVVTa6wmQH1TVmq6SmFpbdR2pVmvvz7zNVAdaoAAlpHm9KnkshVpyH1q3qtk7Rbw3akBAvh/3nzzzfwzNctVagTXRx99lLckNfNVa40zoCEBCAAojiYwAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAlOb/AxOWelY8/siZAAAAAElFTkSuQmCC",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"1ca12b25479c46fc976f09176aa66dce": {
"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_c43e4e672f38458b80001c6a4d8e7e0d",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAkAAAAGwCAYAAABB4NqyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAlCklEQVR4nO3dCbRV1X0/8N8TAYkCggOIgqASUUGcWWi0VVlSNS6nxqEYEbUtKY40UVmiokaxthon4piocVjqikKtA0hBQVOccFgaKkZRocrkBEIMIryuvf//98oTUMAH9z3257PW8d1z7rnn7nPBd7/ssaq6uro6AAAKskGlCwAAsK4JQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAirNhpQvQEC1dujQ++uijaNmyZVRVVVW6OADAKkhTG37xxRfRoUOH2GCDb6/jEYBWIIWfjh07VroYAMAamDFjRmyzzTbfeo4AtAKp5qfmA2zVqlWliwMArIL58+fnCoya7/FvIwCtQE2zVwo/AhAANC6r0n1FJ2gAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFKeiAWjixIlxxBFHRIcOHaKqqipGjRr1na955plnYo899ojmzZvHDjvsEHfddddKz73qqqvydc8555x6LjkA0JhVNAAtXLgwevbsGSNGjFil89977704/PDD48ADD4zXXnstB5vTTz89xowZs9y5L730Utx6662x6667roWSAwCN2YaVfPNDDz00b6vqlltuiS5dusQ111yT93faaad47rnn4le/+lX07du39rwFCxZEv3794vbbb49f/vKXa6XsAEDj1aj6AE2aNCn69OlT51gKPun4sgYNGpRrir557sosWrQo5s+fX2cDANZfFa0BWl2zZs2Kdu3a1TmW9lNg+fLLL6NFixbxwAMPxCuvvJKbwFbV8OHD49JLL10LJQYAGqJGVQP0XWbMmBFnn3123HfffbHRRhut8uuGDBkS8+bNq93SdQCA9VejqgFq3759zJ49u86xtN+qVatc+zN58uSYM2dOHiVWY8mSJXm02U033ZSbupo0abLcddOIsrQBAGVoVAGod+/e8cQTT9Q5Nnbs2Hw8Ofjgg+ONN96o8/yAAQOiW7ducf75568w/AAA5aloAEqjtd555506w9zT8Pa2bdtGp06dctPUhx9+GL/73e/y8wMHDsw1Oeedd16ceuqpMX78+HjooYfi8ccfz8+3bNkyunfvXuc9Nt5449hss82WOw4AlKuifYBefvnl2H333fOWDB48OD+++OKL8/7MmTNj+vTpteenIfAp7KRanzR/UBoOf8cdd9QZAg8A8F2qqqurq7/zrMKkUWWtW7fOHaJT/yIAYP36/l6vRoEBAKwKAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOBUNQBMnTowjjjgiOnToEFVVVTFq1KjvfM0zzzwTe+yxRzRv3jx22GGHuOuuu+o8P3z48Nh7772jZcuWseWWW8ZRRx0VU6dOXYt3AQA0NhUNQAsXLoyePXvGiBEjVun89957Lw4//PA48MAD47XXXotzzjknTj/99BgzZkztORMmTIhBgwbF888/H2PHjo3FixfHIYcckt8LACCpqq6urm4IH0WqARo5cmSusVmZ888/Px5//PF48803a4+dcMIJ8fnnn8fo0aNX+Jq5c+fmmqAUjA444IBVKsv8+fOjdevWMW/evGjVqtUa3A0AsK6tzvd3o+oDNGnSpOjTp0+dY3379s3HVyZ9CEnbtm1Xes6iRYvyh7bsBgCsvxpVAJo1a1a0a9euzrG0nwLLl19+udz5S5cuzc1k++23X3Tv3n2l1039hlJirNk6duy4VsoPADQMjSoAra7UFyg1lz3wwAPfet6QIUNyTVHNNmPGjHVWRgBg3dswGpH27dvH7Nmz6xxL+6mdr0WLFnWOn3HGGfHYY4/lkWbbbLPNt143jShLGwBQhkZVA9S7d+8YN25cnWNppFc6XiP16U7hJ3WoHj9+fHTp0qUCJQUAGrKKBqAFCxbk4expqxnmnh5Pnz69tmnq5JNPrj1/4MCBMW3atDjvvPPirbfeil//+tfx0EMPxbnnnlun2evee++N+++/P88FlPoNpW1FfYQAgDJVdBh8mtQwzenzTf37988THJ5yyinx/vvv5/OWfU0KPFOmTMlNWxdddFE+b9nh9Cty55131jnv2xgGDwCNz+p8fzeYeYAaEgEIABqf9XYeIACA+iAAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcQQgAKA4AhAAUBwBCAAojgAEABRHAAIAiiMAAQDFEYAAgOIIQABAcdY4AL377rsxdOjQOPHEE2POnDn52JNPPhl//OMf67N8AAANIwBNmDAhevToES+88EI88sgjsWDBgnz89ddfj0suuaS+ywgAUPkAdMEFF8Qvf/nLGDt2bDRr1qz2+EEHHRTPP/98fZYPAKBhBKA33ngjjj766OWOb7nllvHxxx/XR7kAABpWANp0001j5syZyx1/9dVXY+utt66PcgEANKwAdMIJJ8T5558fs2bNiqqqqli6dGn84Q9/iJ///Odx8skn138pAQAqHYCuvPLK6NatW3Ts2DF3gN55553jgAMOiH333TePDAMAaMiqqqurq9f0xdOnT48333wzh6Ddd989unbtGuuD+fPnR+vWrWPevHnRqlWrShcHAKjn7+8N43vo1KlT3gAAGpNVDkCDBw9e5Ytee+21a1oeAICGE4DSCK9lvfLKK/H111/HjjvumPfffvvtaNKkSey55571X0oAgEoEoKeffrpODU/Lli3j7rvvjjZt2uRjn332WQwYMCD233//+iwfAEDD6ASd5vp56qmnYpdddqlzPHWIPuSQQ+Kjjz6KxkwnaABYv7+/N1jTN5g7d+5yx9OxL774Yk0uCQCwzqxRAErLYKTmrrQQ6v/8z//k7eGHH47TTjstjjnmmPovJQBAPVqjYfC33HJLnvX57/7u72Lx4sX/70IbbpgD0L/+67/WZ/kAABrWRIgLFy6Md999Nz/efvvtY+ONN471gT5AAND4rLOJEFPg2XXXXb/PJQAA1rk1CkAHHnhgXgR1ZcaPH/99ygQA0PAC0G677VZnP/UDeu211/Iw+P79+9dX2QAAGk4A+tWvfrXC48OGDcsLowIArHfD4FfmpJNOit/+9rf1eUkAgIYdgCZNmhQbbbRRfV4SAKBhNIF9c7LDNJJ+5syZ8fLLL8dFF11UX2UDAGg4ASiNrV92FNgGG2yQV4W/7LLL8lpgAADrXQC666676r8kAAANuQ/QdtttF5988slyxz///PP8HADAeheA3n///ViyZMlyxxctWhQffvhhfZQLAKBhBKBHH300b8mYMWNq99M2cuTIuPzyy6Nz586rfL2JEyfGEUccER06dMh9ikaNGvWdr3nmmWdijz32iObNm8cOO+ywwua4ESNG5HKkEWm9evWKF198cXVuEwBYz61WH6Cjjjoq/0xh5ZszPjdt2jSHjmuuuWa1FlPt2bNnnHrqqcuNLFuR9957Lw4//PAYOHBg3HfffTFu3Lg4/fTTY6uttoq+ffvmcx588MEYPHhwXrE+hZ/rrrsuPzd16tTYcsstV+d2AYD11BqtBt+lS5d46aWXYvPNN6+/glRV5VqkmpC1Iueff348/vjjecmNGieccELuezR69Oi8n0LP3nvvHTfddFPeX7p0aXTs2DHOPPPMuOCCCyq6Gnz6qL9cvHzTIQCUqEXTJt+6tmiDWw0+1cRUQpposU+fPnWOpdqdc845Jz/+6quvYvLkyTFkyJA6Q/TTa9JrVyb1XUrbsh/g2pDCz84Xj1kr1waAxmbKZX3jB83WKIp8b6v8rjfccEP8wz/8Q+5Xkx5/m7POOivWhlmzZkW7du3qHEv7KbB8+eWX8dlnn+XO2Ss656233lrpdYcPHx6XXnrpWikzANDwbLg6C6D269cvB6CVLYaapKqstRWA1pZUY5T6DdVIgSo1m62Nqr6UdgGAyN+LDT4ALdvsVakmsPbt28fs2bPrHEv7qZ2vRYsW0aRJk7yt6Jz02pVJI8rStralcFipqj4AYC0thrq29e7dO4/8WtbYsWPz8aRZs2ax55571jkndYJO+zXnAACscnXEsk1E3+Xaa69dpfMWLFgQ77zzTp2apddeey3atm0bnTp1yk1TaWLF3/3ud/n5NPw9je4677zz8tD58ePHx0MPPZRHhi1bzjREf6+99op99tknD4NPw+0HDBiwyuUHANZvqxyAXn311VU6b3WGs6XV4w888MDlQlYKMGmCw7TC/PTp0+sMv09h59xzz43rr78+ttlmm7jjjjtq5wBKjj/++Jg7d25cfPHFudP0brvtlofIf7NjNABQrjWaB2h9t7bmAQIAGsb39/fuAzRjxoy8AQA0FmsUgL7++uu46KKLcspKy1+kLT0eOnRoLF68uP5LCQBQj9ZoTHZaVuKRRx6Jq6++unZ0VZppediwYfHJJ5/EzTffXJ9lBACofB+gVNvzwAMPxKGHHlrn+BNPPBEnnnhibntrzPQBAoDGZ633AUqTBqZmr29Ko7TSXDwAAA3ZGgWgM844Iy6//PI6C4imx1dccUV+DgBgvesDlOYESrMrp3l4evbsmY+9/vrreTX2gw8+OI455pjac1NfIQCARh+ANt100zj22GPrHFsbi4cCADSYAHTnnXfWf0kAANaRRrUYKgBAxWqA0lw/aa2tp59+OubMmZNXXF/Wp59+Wi+FAwBoMAHopz/9aV7F/bTTTsuLjK7OAqgAAI0yAD377LPx3HPP1Y4AAwBY7/sAdevWLb788sv6Lw0AQEMNQL/+9a/jwgsvjAkTJuT+QGnq6WU3AID1ch6gFHQOOuigOsfTsmKpP9CSJUvqq3wAAA0jAPXr1y+aNm0a999/v07QAEAZAejNN9/My2HsuOOO9V8iAICG2Ador732ihkzZtR/aQAAGmoN0Jlnnhlnn312/OIXv4gePXrk5rBl7brrrvVVPgCAeldVnXour6YNNlh5xdH60Ak6dfBu3bp1zJs3L1q1alXp4gAA9fz9vUY1QO+9996avAwAoEFYowC07bbb5p9TpkyJ6dOnx1dffVWnBqjmeQCA9SYATZs2LY4++uh44403cuCpaUWrGQ7f2JvAAID12xqNAksdoLt06ZJXgv/BD36Qh8VPnDgxjw575pln6r+UAACVrgGaNGlSjB8/PjbffPPcIbpJkybxox/9KIYPHx5nnXVWniMIAGC9qgFKTVwtW7bMj1MI+uijj/Lj1Pdn6tSp9VtCAICGUAPUvXv3eP3113MzWK9eveLqq6+OZs2axW233RbbbbddfZcRAKDyAWjo0KGxcOHC/Piyyy6LH//4x7H//vvHZpttFg8++GD9lhAAoCFMhLgin376abRp02a9WBjVRIgA0Pis9YkQV6Rt27b1dSkAgIbXCRoAoDETgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMWpeAAaMWJEdO7cOTbaaKPo1atXvPjiiys9d/HixXHZZZfF9ttvn8/v2bNnjB49us45S5YsiYsuuii6dOkSLVq0yOdefvnlUV1dvQ7uBgBoDCoagB588MEYPHhwXHLJJfHKK6/kQNO3b9+YM2fOCs8fOnRo3HrrrXHjjTfGlClTYuDAgXH00UfHq6++WnvOv/zLv8TNN98cN910U/z3f/933r/66qvzawAAkqrqClaNpBqfvffeO4eVZOnSpdGxY8c488wz44ILLlju/A4dOsSFF14YgwYNqj127LHH5pqee++9N+//+Mc/jnbt2sVvfvOblZ7zXebPnx+tW7eOefPmRatWrerhTgGAtW11vr8rVgP01VdfxeTJk6NPnz7/V5gNNsj7kyZNWuFrFi1alJu+lpWCzXPPPVe7v++++8a4cePi7bffzvuvv/56fv7QQw9daVnSddOHtuwGAKy/NqzUG3/88ce5v06qrVlW2n/rrbdW+JrUPHbttdfGAQcckPv2pKDzyCOP5OvUSDVHKcB069YtmjRpkp+74oorol+/fisty/Dhw+PSSy+tx7sDABqyineCXh3XX399dO3aNYebZs2axRlnnBEDBgzINUc1Hnroobjvvvvi/vvvz/2K7r777vi3f/u3/HNlhgwZkqvLarYZM2asozsCAIqqAdp8881zDc3s2bPrHE/77du3X+Frtthiixg1alT85S9/iU8++ST3CUo1Ptttt13tOb/4xS/ysRNOOCHv9+jRIz744INcy9O/f/8VXrd58+Z5AwDKULEaoFSDs+eee+ZmrBqpE3Ta792797e+NvUD2nrrrePrr7+Ohx9+OI488sja5/785z/XqRFKUtBK1wYAqGgNUJKGwKdamb322iv22WefuO6662LhwoW5WSs5+eSTc9BJtTfJCy+8EB9++GHstttu+eewYcNysDnvvPNqr3nEEUfkPj+dOnWKXXbZJQ+RT/2GTj311IrdJwDQsFQ0AB1//PExd+7cuPjii2PWrFk52KSJDWs6Rk+fPr1ObU5q+kpzAU2bNi022WSTOOyww+Kee+6JTTfdtPacNN9Pmgjxn/7pn/J8QqmZ7B//8R/zewAAVHweoIbKPEAA0Pg0inmAAAAqRQACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAURwACAIojAAEAxRGAAIDiCEAAQHEEIACgOAIQAFAcAQgAKI4ABAAUp+IBaMSIEdG5c+fYaKONolevXvHiiy+u9NzFixfHZZddFttvv30+v2fPnjF69Ojlzvvwww/jpJNOis022yxatGgRPXr0iJdffnkt3wkA0FhUNAA9+OCDMXjw4LjkkkvilVdeyYGmb9++MWfOnBWeP3To0Lj11lvjxhtvjClTpsTAgQPj6KOPjldffbX2nM8++yz222+/aNq0aTz55JP5vGuuuSbatGmzDu8MAGjIqqqrq6sr9eapxmfvvfeOm266Ke8vXbo0OnbsGGeeeWZccMEFy53foUOHuPDCC2PQoEG1x4499thcy3Pvvffm/fS6P/zhD/Hss8+ucjkWLVqUtxrz58/P5Zg3b160atXqe94lALAupO/v1q1br9L3d8VqgL766quYPHly9OnT5/8Ks8EGeX/SpEkrfE0KKanpa1kp/Dz33HO1+48++mjstdde8ZOf/CS23HLL2H333eP222//1rIMHz48f2A1Wwo/AMD6q2IB6OOPP44lS5ZEu3bt6hxP+7NmzVrha1Lz2LXXXht/+tOfcm3R2LFj45FHHomZM2fWnjNt2rS4+eabo2vXrjFmzJj42c9+FmeddVbcfffdKy3LkCFDclqs2WbMmFGPdwoANDQbRiNy/fXXx9///d9Ht27doqqqKneGHjBgQPz2t7+tPScFo1QDdOWVV+b9VAP05ptvxi233BL9+/df4XWbN2+eNwCgDBWrAdp8882jSZMmMXv27DrH03779u1X+JotttgiRo0aFQsXLowPPvgg3nrrrdhkk01iu+22qz1nq622ip133rnO63baaaeYPn36WroTAKCxqVgAatasWey5554xbty4OrU3ab93797f+trUD2jrrbeOr7/+Oh5++OE48sgja59LI8CmTp1a5/y33347tt1227VwFwBAY1TRJrA0BD41S6Umq3322Seuu+66XLuTmrWSk08+OQed1Ek5eeGFF/IcP7vttlv+OWzYsByazjvvvNprnnvuubHvvvvmJrDjjjsuzyt022235Q0AoOIB6Pjjj4+5c+fGxRdfnDs+p2CTJjas6Ridmq3SyLAaf/nLX/JcQKmjc2r6Ouyww+Kee+6JTTfdtPacNKx+5MiRuWNzmjSxS5cuOVj169evIvcIADQ8FZ0HaH2YRwAAaBgaxTxAAACVIgABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMXZsNIFaIiqq6vzz/nz51e6KADAKqr53q75Hv82AtAKfPHFF/lnx44dK10UAGANvsdbt279redUVa9KTCrM0qVL46OPPoqWLVtGVVVVvafTFKxmzJgRrVq1itKUfv9J6Z+B+y/7/pPSP4PS739tfgYp0qTw06FDh9hgg2/v5aMGaAXSh7bNNtus1fdIf+Cl/sVPSr//pPTPwP2Xff9J6Z9B6fe/tj6D76r5qaETNABQHAEIACiOALSONW/ePC655JL8s0Sl339S+mfg/su+/6T0z6D0+28on4FO0ABAcdQAAQDFEYAAgOIIQABAcQQgAKA4AtA6NGLEiOjcuXNstNFG0atXr3jxxRejFBMnTowjjjgiz86ZZtceNWpUlGT48OGx995759nFt9xyyzjqqKNi6tSpUZKbb745dt1119qJz3r37h1PPvlklOqqq67K/y+cc845UYJhw4bl+11269atW5Tmww8/jJNOOik222yzaNGiRfTo0SNefvnlKEHnzp2X+zuQtkGDBlWkPALQOvLggw/G4MGD87C/V155JXr27Bl9+/aNOXPmRAkWLlyY7zmFwBJNmDAh/0/+/PPPx9ixY2Px4sVxyCGH5M+lFGl29fSlP3ny5PwL/6CDDoojjzwy/vjHP0ZpXnrppbj11ltzICzJLrvsEjNnzqzdnnvuuSjJZ599Fvvtt180bdo0h/8pU6bENddcE23atIlS/t7PXObPP/0uTH7yk59UpkBpGDxr3z777FM9aNCg2v0lS5ZUd+jQoXr48OHVpUl/7UaOHFldsjlz5uTPYcKECdUla9OmTfUdd9xRXZIvvviiumvXrtVjx46t/qu/+qvqs88+u7oEl1xySXXPnj2rS3b++edX/+hHP6p0MRqMs88+u3r77bevXrp0aUXeXw3QOvDVV1/lf/X26dOnznpjaX/SpEkVLRuVMW/evPyzbdu2UaIlS5bEAw88kGvAUlNYSVJN4OGHH17n90Ep/vSnP+Vm8O222y769esX06dPj5I8+uijsddee+Uaj9QUvvvuu8ftt98epX4v3nvvvXHqqafW+6Ljq0oAWgc+/vjj/Au/Xbt2dY6n/VmzZlWsXFTG0qVLc7+PVBXevXv3KMkbb7wRm2yySZ79deDAgTFy5MjYeeedoxQp9KUm8NQnrDSp3+Ndd90Vo0ePzv3B3nvvvdh///3zyt2lmDZtWr73rl27xpgxY+JnP/tZnHXWWXH33XdHaUaNGhWff/55nHLKKRUrg9XgoQI1AG+++WZx/R+SHXfcMV577bVcA/b73/8++vfvn/tHlRCCZsyYEWeffXbu95AGQpTm0EMPrX2c+j6lQLTtttvGQw89FKeddlqU8o+fVAN05ZVX5v1UA5R+F9xyyy35/4WS/OY3v8l/J1KNYKWoAVoHNt9882jSpEnMnj27zvG03759+4qVi3XvjDPOiMceeyyefvrp3Cm4NM2aNYsddtgh9txzz1wLkjrGX3/99VGC1AyeBj3sscceseGGG+Ythb8bbrghP061xCXZdNNN44c//GG88847UYqtttpqubC/0047FdcU+MEHH8R//ud/xumnn17RcghA6+iXfvqFP27cuDr/Ekj7pfV/KFXq+53CT2ryGT9+fHTp0qXSRWoQ0v8HixYtihIcfPDBuQkw1YDVbKk2IPWFSY/TP5JKsmDBgnj33XdzKChFavb+5vQXb7/9dq4JK8mdd96Z+0ClvnCVpAlsHUlD4FMVZ/qFt88++8R1112XO4AOGDAgSvllt+y/9FL7f/qlnzoBd+rUKUpo9rr//vvj3//93/NcQDV9v1q3bp3nAinBkCFDcpV3+vNO/T7S5/HMM8/kvhAlSH/u3+zztfHGG+f5YEroC/bzn/88zwWWvuw/+uijPCVICn0nnnhilOLcc8+NfffdNzeBHXfccXkuuNtuuy1vJf2j584778zfh6nms6IqMvasUDfeeGN1p06dqps1a5aHxT///PPVpXj66afzsO9vbv37968uwYruPW133nlndSlOPfXU6m233Tb//d9iiy2qDz744OqnnnqqumQlDYM//vjjq7faaqv857/11lvn/Xfeeae6NP/xH/9R3b179+rmzZtXd+vWrfq2226rLsmYMWPy776pU6dWuijVVek/lY1gAADrlj5AAEBxBCAAoDgCEABQHAEIACiOAAQAFEcAAgCKIwABAMURgACA4ghAQIOSlseoqqqKzz//fJ2/d3rftKWFOuvLsGHDaq+blsABGgYBCKiYv/7rv45zzjmnzrG0VtLMmTPzOmmVkNYpSgtU1ucaWOl+ttlmm3q7JvD9WQwVaFCaNWsW7du3r9j7p9qftFJ1fdlkk03yVtpq79DQqQECKuKUU06JCRMmxPXXX1/bRPT+++8v1wR211135VDy2GOPxY477hg/+MEP4m//9m/jz3/+c9x9993RuXPnaNOmTZx11lmxZMmS2usvWrQo175svfXWedX1Xr165WuvSRPWbrvtFvfcc09+r1QzdcIJJ+QV7Wv8/ve/jx49ekSLFi3y6u59+vSJhQsX1tMnBawNaoCAikjBJzU1de/ePS677LJ8bIsttsgh6JtS2LnhhhvigQceyMHjmGOOiaOPPjoHoyeeeCKmTZsWxx57bOy3335x/PHH59ecccYZMWXKlPyaDh06xMiRI+Nv/uZv4o033oiuXbuuVlnffffdGDVqVA5hn332WRx33HFx1VVXxRVXXJGbt0488cS4+uqrc5lS+Z599tmwzjQ0bAIQUBGpJiU1d6Uane9q8lq8eHHcfPPNsf322+f9VAOUamRmz56dm5d23nnnOPDAA+Ppp5/OAWj69Om5L0/6mcJPkmqDRo8enY9feeWVq1XWpUuX5pqoli1b5v2f/vSnMW7cuNoA9PXXX+dQtu222+bnU20Q0LAJQECDl0JSTfhJ2rVrl5ujUvhZ9ticOXPy41TLk5rDfvjDH9a5TmoWS01Uqyu9V034Sbbaaqva9+rZs2ccfPDBOfT07ds3DjnkkBzQUrMc0HAJQECD17Rp0zr7qY/Qio6lmppkwYIFudPx5MmTl+t8vGxo+j7vX/Ne6fpjx46N//qv/4qnnnoqbrzxxrjwwgvjhRdeiC5duqz2ewHrhk7QQMWkJrBlOy7Xl9133z1fN9XS7LDDDnW2tTHCLAWi1P/o0ksvjVdffTXfV+pzBDRcaoCAiklNS6mmJHV8TjUzbdu2rZfrpqavfv36xcknnxzXXHNNDkRz587N/XZ23XXXOPzww6O+pPKn66amrzR8Pu2n99ppp53q7T2A+qcGCKiY1DE5NSGlTsxpBFjqtFxfUmfnFID++Z//OQ+fP+qoo+Kll16KTp06RX1q1apVTJw4MQ477LAcvIYOHZpD16GHHlqv7wPUr6pqYzUBapuyUtNVCktro7YrzXr9zZmvgcpQAwSwjDSnT30uW5GG3Kfmvfqs3QK+PzVAAP/fO++8k3+mZrn6GsH16aef5i1JzXyVWuMMqEsAAgCKowkMACiOAAQAFEcAAgCKIwABAMURgACA4ghAAEBxBCAAoDgCEAAQpflfwqukG2gf1oIAAAAASUVORK5CYII=",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"204000723ec24d75950be6589d32fcf8": {
"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
}
},
"22a947f1a5624a2584ec830cd87b220a": {
"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_7eeebd4118d4424fbd8fadd5177cdddc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"245fff7bf6fb4da89be305b559252c05": {
"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_e11336e31bbd4c6aa6366cddc02d4b19",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"29d1b7803fd94336a6e89dc84098b209": {
"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
}
},
"2b255c66e6bc406fbe1615fe15f7285b": {
"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_9a8008e586b8426f8db897689d4e2ac1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2bb9cd9f9c054b62b60c1b39bf647cb7": {
"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
}
},
"2c4ffc79109542b2ae760ad981518f34": {
"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
}
},
"2c5681f6e97847188891a44addf212c7": {
"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
}
},
"2f3ad84ed7144c1c83b8b6927b4d75b1": {
"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_f2e3b2cb24c54633946a7ece08da7bbc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2f46d729ddf947c38ae73c2b962ac5ce": {
"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
}
},
"31169d82e30a496f9ee36a0e37881352": {
"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
}
},
"3212d4278ad24f69b177f5f07b4e5bee": {
"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_86c1f011773f4053abef1155dea927d6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"35a4a1841aea4ef9a474beb042dbf9c9": {
"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
}
},
"36a7448ac307400086d92c2d08479bde": {
"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
}
},
"37753531be524da0a851381336a0525a": {
"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_ee99023f7273439b9265fbca6b848ce7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"39d8aa3f2c6943208dca2e5ab34ba46b": {
"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
}
},
"3fe50cbac5d347489e4b2dd02e89af7e": {
"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_63dda8bee1554b1194fddba41e10e0c1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"41c4151a479143238e342bedab24250c": {
"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_2f46d729ddf947c38ae73c2b962ac5ce",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"425e2241567f4536a62b5dcbf61d9218": {
"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_31169d82e30a496f9ee36a0e37881352",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"47feecd0539e4ebab7c8089b67c011e4": {
"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_2bb9cd9f9c054b62b60c1b39bf647cb7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"48718be54c2b459085db4a40c8bde176": {
"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
}
},
"49268063c34d460eb3989ace96943af6": {
"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
}
},
"4ade9417da9b48d1b827f8ba32a991df": {
"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_b1067bade2b04a3b81f7054729ced2b2",
"IPY_MODEL_d1fa40c6d63d423583fa59d56e46200f"
],
"layout": "IPY_MODEL_49268063c34d460eb3989ace96943af6",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequence",
"settings"
],
"tooltip": null
}
},
"4bd22c6f77104010b1731464d3649ab0": {
"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_ba224a5d81f74281922a31e6b52754dc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4be8e1e900f84464981d9a973a3e1fbf": {
"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_e662e8a91eaf4b8ebc2e7faf0f96478f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4c3711dcef2b4659984f17e0bf7464b6": {
"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
}
},
"55513559c1c6473e8e912083a57f1f3d": {
"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
}
},
"57cb083c0d4d4bd0b2ffeea14b164ce4": {
"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
}
},
"57f03d40349b40a3aed66897fad7afc1": {
"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
}
},
"58e8eb53d927468aa2a63bc8fceb2dbd": {
"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
}
},
"5a80f0f0b83545dd85f030533a0bac35": {
"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_7b4d50fd593c4fdb9cc44e3d260e0502",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5bc5db3503b54262b969378f78738469": {
"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
}
},
"5dc640392f7c45d281de32953ee0068a": {
"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_204000723ec24d75950be6589d32fcf8",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5eefc907da7a4bbc959e40c04866b84e": {
"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
}
},
"63dda8bee1554b1194fddba41e10e0c1": {
"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
}
},
"64fbc1c1476a46f38128f8f6801b1b70": {
"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
}
},
"67441f9cbf0841c49e7a02569181bbce": {
"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_d53868c29a3e4d0992e7358f8e7e8f64",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"681ec8b27de34ccdb161565f2f83c50b": {
"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_91ab2f61308a4966a53cc6c64000d8e9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"691a8f261c9042228ebb352d6c6a6074": {
"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_9c8e1f6331f84b8cbc028b49c38ff81b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"69d42e2b5f9046f69a04cb250cfa0879": {
"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
}
},
"6a1c1f65d9ca4486aa0e0ac6b90be153": {
"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_ce9b9db91e0e4321a123922c598e95cc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6b8dd4375ebc4698a0eb63a8418a9ec6": {
"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_2c5681f6e97847188891a44addf212c7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"711b2c8f154c4ef0b13cb30c0d7e8da7": {
"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_57cb083c0d4d4bd0b2ffeea14b164ce4",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"72f61a7f0592452996490c2294a0a15c": {
"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_0c13db309fd54108ada8857d2c19db1c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7324f16d97654967a69e6650b4ae2d44": {
"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
}
},
"7490f9d7c37a44eaa5925289b38e6d6f": {
"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
}
},
"75b457c1a3994c3bb117ec9235df54c5": {
"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_9078ce8def7f4ab1891d723b9cccc934",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7aeed3ffbf3c41d4a74d125c72f5c275": {
"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_4c3711dcef2b4659984f17e0bf7464b6",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n offset_ch0_path_I \n -5.52 \n \n \n offset_ch0_path_Q \n -5.56 \n \n \n offset_ch1_path_I \n None \n \n \n offset_ch1_path_Q \n None \n \n \n in0_gain \n None \n \n \n in1_gain \n None \n \n \n distortion_corrections \n [{'bt': {'coeffs': None, 'config': 'QbloxFilte... \n \n \n out0_lo_freq_cal_type_default \n LoCalEnum.OFF \n \n \n out1_lo_freq_cal_type_default \n LoCalEnum.OFF \n \n \n lo0_freq \n 6950000000.0 \n \n \n lo1_freq \n None \n \n \n lo2_freq \n None \n \n \n lo3_freq \n None \n \n \n lo4_freq \n None \n \n \n lo5_freq \n None \n \n \n out0_att \n None \n \n \n out1_att \n None \n \n \n out2_att \n None \n \n \n out3_att \n None \n \n \n out4_att \n None \n \n \n out5_att \n None \n \n \n in0_att \n None \n \n \n in1_att \n None \n \n \n
\n
",
"text/plain": "setting value\noffset_ch0_path_I -5.52\noffset_ch0_path_Q -5.56\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.OFF\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 6950000000.0\nlo1_freq None\nlo2_freq None\nlo3_freq None\nlo4_freq None\nlo5_freq None\nout0_att None\nout1_att None\nout2_att None\nout3_att None\nout4_att None\nout5_att None\nin0_att None\nin1_att None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"7b4d50fd593c4fdb9cc44e3d260e0502": {
"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
}
},
"7c8d49a5503f41108a8c20540fc2407a": {
"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_91058adb269a42aba86fb658fcfc2ace",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7eeebd4118d4424fbd8fadd5177cdddc": {
"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
}
},
"7fedc8f975ba41608af4eb2bd0788ac0": {
"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
}
},
"843987e2693247d7a52dd1a520ec2078": {
"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
}
},
"8631e8a779304d138cb93ab51805eac6": {
"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_9c9461d31b604277bcf79c5a176d5f4d"
],
"layout": "IPY_MODEL_a66a14eca7cd47529919fcb0ad09a912",
"selected_index": 0,
"tabbable": null,
"titles": [
"cluster0"
],
"tooltip": null
}
},
"86c1f011773f4053abef1155dea927d6": {
"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
}
},
"87f4188937554136953fb1e2e11b1e32": {
"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
}
},
"8904432815e64e5ca14c454bf415f24d": {
"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
}
},
"898aa8912f0046f8b6f4a4eb25265949": {
"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
}
},
"89b34a1fa60c42489d1e100b4d4afb1a": {
"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_5eefc907da7a4bbc959e40c04866b84e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8c667ebe6e714f0f8e264d35e35e17c8": {
"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_e0b0559e45574fffb65b34a8ab83d4be",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9029cf92cab54e3cb9590c9b7687d4ce": {
"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_64fbc1c1476a46f38128f8f6801b1b70",
"msg_id": "",
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": " \n set_mrk 1 # set markers to 1 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 1,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_awg_gain 6554,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (8 ns) \n wait 4 # auto generated wait (4 ns) \n set_awg_gain 3277,0 # setting gain for SquarePulse \n play 1,1,4 # play SquarePulse (12 ns) \n wait 8 # auto generated wait (8 ns) \n loop R0,@start \n stop \n \n\n"
}
],
"tabbable": null,
"tooltip": null
}
},
"9078ce8def7f4ab1891d723b9cccc934": {
"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
}
},
"90c409ac21214a3f9080739a8032ca00": {
"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
}
},
"91058adb269a42aba86fb658fcfc2ace": {
"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
}
},
"9112f306f5fe44fa9882a50c99d24242": {
"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_f814093a11d945128b74083367522801",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"91ab2f61308a4966a53cc6c64000d8e9": {
"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
}
},
"921907cfcd4c4c34bb57e8814a177bbd": {
"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_d22a4f7c262a4fb69904d4d6c8299e83",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"93c9fb6a2ce744ce847e56cd2aa15a3a": {
"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
}
},
"95de813e30e240efb29c242817faba6d": {
"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
}
},
"95e443ae53b34265b1998d88c80b1d92": {
"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_cd82380d82484cf58226fef691f6b706",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"96d174f7a97547738e47c9b2a7b5db82": {
"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_5bc5db3503b54262b969378f78738469",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"972daa94dbda430988889bb8970b8def": {
"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
}
},
"9874d8e96372442f915f14c0daf24338": {
"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
}
},
"98a5e051d5de4dfeac59d2bcbcec765b": {
"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_69d42e2b5f9046f69a04cb250cfa0879",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"98ae8918993c41f2924f5f5215cac0ab": {
"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_7490f9d7c37a44eaa5925289b38e6d6f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9a8008e586b8426f8db897689d4e2ac1": {
"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
}
},
"9b154bcddbd547119bec1cd6be4409e4": {
"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
}
},
"9c8e1f6331f84b8cbc028b49c38ff81b": {
"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
}
},
"9c9461d31b604277bcf79c5a176d5f4d": {
"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_e7d93661db03425b9aac18a1fbd543fb",
"IPY_MODEL_fcc80d362ac4456bace58e4f8e0eac8c"
],
"layout": "IPY_MODEL_972daa94dbda430988889bb8970b8def",
"selected_index": 0,
"tabbable": null,
"titles": [
"settings",
"cluster0_module2"
],
"tooltip": null
}
},
"a2b403a3b50b4a3a91c9e8b68f7c9add": {
"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_d976403fecea4ff99608a4db11a6461a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a3f083b9945b4125901379d305efdc36": {
"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
}
},
"a66a14eca7cd47529919fcb0ad09a912": {
"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
}
},
"afe611ce95d94da49866962ba23e7f5c": {
"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
}
},
"b1067bade2b04a3b81f7054729ced2b2": {
"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_b7175475794449168e3a4bdb1e82aba1",
"IPY_MODEL_9029cf92cab54e3cb9590c9b7687d4ce"
],
"layout": "IPY_MODEL_06824ee13b6142889aa881c9fc73df4d",
"selected_index": 0,
"tabbable": null,
"titles": [
"waveforms",
"program"
],
"tooltip": null
}
},
"b34a4ba05fd74501bf512e3ad7e88bb2": {
"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_b742e3e5af6c4cba9a25cccf768d517a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b3c8c036d6e1400ea2e532d2fdb1dba7": {
"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_12a2e15a9ed243e09b9adc51a6990830",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b7175475794449168e3a4bdb1e82aba1": {
"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_1ca12b25479c46fc976f09176aa66dce",
"IPY_MODEL_1c141d70043643eba79b6ad7adc36ddc"
],
"layout": "IPY_MODEL_35a4a1841aea4ef9a474beb042dbf9c9",
"selected_index": 0,
"tabbable": null,
"titles": [
"0",
"1"
],
"tooltip": null
}
},
"b742e3e5af6c4cba9a25cccf768d517a": {
"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
}
},
"ba09fae36a4141f886fceee6123a63e2": {
"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_898aa8912f0046f8b6f4a4eb25265949",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ba224a5d81f74281922a31e6b52754dc": {
"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
}
},
"bbee065f64774ee19b92b84a518eae36": {
"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_0e0c8ae706c94a71acb88dad819baf31",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bcb1fec4f7f54c4598e38d8d4a841531": {
"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_d79255ec20ca47ee8576ad31b280c769",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bfa53f1c6d124d5787424b8f606950b4": {
"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_fa2d374c79f04be2975cc78e31c21bb4",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n repetitions \n 1 \n \n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"c01f200f77a94e87965ffcd674ded652": {
"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
}
},
"c3cb9848df1d484ca45ba60c17b4ad49": {
"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_a3f083b9945b4125901379d305efdc36",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c43e4e672f38458b80001c6a4d8e7e0d": {
"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
}
},
"c4b8fc5b02464dc28e912a9d6fbd3f72": {
"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_d7770bd17996493e8a6042d91845d602",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c5258798f7d84dafbd6cf8a64bb1202b": {
"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_0544fa20a7ca433aae35c46e6cf9ecc7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c5c113c9fb17497f9b671ee8c948efde": {
"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_c730be4a8d3a4db8b92a76fa914ab98c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c730be4a8d3a4db8b92a76fa914ab98c": {
"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
}
},
"caa8631387f641bb99fd208f83f3d468": {
"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
}
},
"caeae200a85a45fb9715cc1b943a189d": {
"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_afe611ce95d94da49866962ba23e7f5c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cd82380d82484cf58226fef691f6b706": {
"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
}
},
"ce0da0f0477449bab6dc4b6c6b8ad23a": {
"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
}
},
"ce9b9db91e0e4321a123922c598e95cc": {
"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
}
},
"d0e9fc40d4b64630b90faa35d3845af2": {
"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_caa8631387f641bb99fd208f83f3d468",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d1fa40c6d63d423583fa59d56e46200f": {
"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_95de813e30e240efb29c242817faba6d",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n sync_en \n True \n \n \n channel_name \n complex_output_0 \n \n \n channel_name_measure \n None \n \n \n connected_output_indices \n (0, 1) \n \n \n connected_input_indices \n () \n \n \n seq_fn \n None \n \n \n thresholded_acq_trigger_write_en \n None \n \n \n thresholded_acq_trigger_write_address \n None \n \n \n thresholded_acq_trigger_write_invert \n False \n \n \n nco_en \n True \n \n \n init_offset_awg_path_I \n 0.0 \n \n \n init_offset_awg_path_Q \n 0.0 \n \n \n init_gain_awg_path_I \n 1.0 \n \n \n init_gain_awg_path_Q \n 1.0 \n \n \n modulation_freq \n 50000000.0 \n \n \n mixer_corr_phase_offset_degree \n -4.1 \n \n \n mixer_corr_gain_ratio \n 0.9998 \n \n \n auto_sideband_cal \n SidebandCalEnum.OFF \n \n \n integration_length_acq \n None \n \n \n thresholded_acq_threshold \n None \n \n \n thresholded_acq_rotation \n None \n \n \n ttl_acq_input_select \n None \n \n \n ttl_acq_threshold \n None \n \n \n ttl_acq_auto_bin_incr_en \n None \n \n \n
\n
",
"text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure None\nconnected_output_indices (0, 1)\nconnected_input_indices ()\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 50000000.0\nmixer_corr_phase_offset_degree -4.1\nmixer_corr_gain_ratio 0.9998\nauto_sideband_cal SidebandCalEnum.OFF\nintegration_length_acq None\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
}
},
"d22a4f7c262a4fb69904d4d6c8299e83": {
"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
}
},
"d53868c29a3e4d0992e7358f8e7e8f64": {
"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
}
},
"d62948e86273488b9d0483d8b56e607a": {
"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_c01f200f77a94e87965ffcd674ded652",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d7770bd17996493e8a6042d91845d602": {
"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
}
},
"d79255ec20ca47ee8576ad31b280c769": {
"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
}
},
"d976403fecea4ff99608a4db11a6461a": {
"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
}
},
"dd1c1224bb6b4595a033b4e80d8b9d09": {
"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_4ade9417da9b48d1b827f8ba32a991df"
],
"layout": "IPY_MODEL_2c4ffc79109542b2ae760ad981518f34",
"selected_index": 0,
"tabbable": null,
"titles": [
"seq0"
],
"tooltip": null
}
},
"e0b0559e45574fffb65b34a8ab83d4be": {
"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
}
},
"e11336e31bbd4c6aa6366cddc02d4b19": {
"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
}
},
"e1212207a7b443b6bef41df8298b57ea": {
"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
}
},
"e662e8a91eaf4b8ebc2e7faf0f96478f": {
"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
}
},
"e7d93661db03425b9aac18a1fbd543fb": {
"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_055e4896ca0c4c40a0dd8b5db44cae55"
],
"layout": "IPY_MODEL_48718be54c2b459085db4a40c8bde176",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"eae7baa7755e43d5a5615293c2847ab6": {
"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
}
},
"ec6032d270fc4c6f9efcc8a3e621fefd": {
"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_36a7448ac307400086d92c2d08479bde",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ee99023f7273439b9265fbca6b848ce7": {
"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
}
},
"f0fedf62617643b2a04240c426e0de6b": {
"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
}
},
"f154dce8f2e142e79dc9804523f16c25": {
"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_0888d551af614d96ac6b069d5332fdae",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f2e3b2cb24c54633946a7ece08da7bbc": {
"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
}
},
"f3efebb28cea40888872ca1662827323": {
"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_002f88873dca4d0fb9158a6e6985b0c6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f814093a11d945128b74083367522801": {
"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
}
},
"f863dacf92be4af38d009fc043e48eb1": {
"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_29d1b7803fd94336a6e89dc84098b209",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f9dc6d68687a4b5d975f1ac7ac1f7ad8": {
"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_55513559c1c6473e8e912083a57f1f3d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fa2d374c79f04be2975cc78e31c21bb4": {
"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
}
},
"fcc80d362ac4456bace58e4f8e0eac8c": {
"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_dd1c1224bb6b4595a033b4e80d8b9d09",
"IPY_MODEL_0804e3d3dae143bc9368740afba96a10",
"IPY_MODEL_bfa53f1c6d124d5787424b8f606950b4"
],
"layout": "IPY_MODEL_90c409ac21214a3f9080739a8032ca00",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequencers",
"settings",
"other values"
],
"tooltip": null
}
},
"ffc7a93792e749498da4cb909a6ac83f": {
"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_9874d8e96372442f915f14c0daf24338",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}