diff --git a/dev/_modules/hnn_core/gui/gui.html b/dev/_modules/hnn_core/gui/gui.html
index d33531971..96c1d99af 100644
--- a/dev/_modules/hnn_core/gui/gui.html
+++ b/dev/_modules/hnn_core/gui/gui.html
@@ -551,7 +551,7 @@
def _on_upload_connectivity ( change ):
return on_upload_params_change (
- change , self . params , self . widget_tstop , self . widget_dt ,
+ change , self . widget_tstop , self . widget_dt ,
self . _log_out , self . drive_boxes , self . drive_widgets ,
self . _drives_out , self . _connectivity_out ,
self . connectivity_widgets , self . layout [ 'drive_textbox' ],
@@ -559,7 +559,7 @@ Source code for hnn_core.gui.gui
def _on_upload_drives ( change ):
return on_upload_params_change (
- change , self . params , self . widget_tstop , self . widget_dt ,
+ change , self . widget_tstop , self . widget_dt ,
self . _log_out , self . drive_boxes , self . drive_widgets ,
self . _drives_out , self . _connectivity_out ,
self . connectivity_widgets , self . layout [ 'drive_textbox' ],
@@ -1364,11 +1364,12 @@ Source code for hnn_core.gui.gui
return net
-def add_drive_tab ( params , drives_out , drive_widgets , drive_boxes , tstop ,
+def add_drive_tab ( params , log_out , drives_out , drive_widgets , drive_boxes , tstop ,
layout ):
net = jones_2009_model ( params )
+
drive_specs = _extract_drive_specs_from_hnn_params (
- params , list ( net . cell_types . keys ()), legacy_mode = net . _legacy_mode )
+ net . _params , list ( net . cell_types . keys ()), legacy_mode = net . _legacy_mode )
# clear before adding drives
drives_out . clear_output ()
@@ -1377,6 +1378,7 @@ Source code for hnn_core.gui.gui
drive_boxes . pop ()
drive_names = sorted ( drive_specs . keys ())
+
for idx , drive_name in enumerate ( drive_names ): # order matters
specs = drive_specs [ drive_name ]
should_render = idx == ( len ( drive_names ) - 1 )
@@ -1408,18 +1410,16 @@ Source code for hnn_core.gui.gui
drive_widgets , drive_boxes , connectivity_out ,
connectivity_textfields , tstop , layout ):
"""Add drive and connectivity ipywidgets from params."""
- log_out . clear_output ()
with log_out :
# Add connectivity
add_connectivity_tab ( params , connectivity_out , connectivity_textfields )
# Add drives
- add_drive_tab ( params , drives_out , drive_widgets , drive_boxes , tstop ,
+ add_drive_tab ( params , log_out , drives_out , drive_widgets , drive_boxes , tstop ,
layout )
def on_upload_data_change ( change , data , viz_manager , log_out ):
if len ( change [ 'owner' ] . value ) == 0 :
- logger . info ( "Empty change" )
return
data_dict = change [ 'new' ][ 0 ]
@@ -1452,38 +1452,32 @@ Source code for hnn_core.gui.gui
change [ 'owner' ] . value = []
-def on_upload_params_change ( change , params , tstop , dt , log_out , drive_boxes ,
+def on_upload_params_change ( change , tstop , dt , log_out , drive_boxes ,
drive_widgets , drives_out , connectivity_out ,
connectivity_textfields , layout , load_type ):
if len ( change [ 'owner' ] . value ) == 0 :
- logger . info ( "Empty change" )
return
- logger . info ( "Loading connectivity..." )
param_dict = change [ 'new' ][ 0 ]
params_fname = param_dict [ 'name' ]
- param_data = param_dict [ 'content' ]
-
- param_data = codecs . decode ( param_data , encoding = "utf-8" )
+ file_contents = codecs . decode ( param_dict [ 'content' ], encoding = "utf-8" )
- ext = Path ( params_fname ) . suffix
- read_func = { '.json' : _read_json , '.param' : _read_legacy_params }
- params_network = read_func [ ext ]( param_data )
+ with log_out :
+ params = read_params ( params_fname , file_contents )
# update simulation settings and params
- log_out . clear_output ()
with log_out :
- if 'tstop' in params_network . keys ():
- tstop . value = params_network [ 'tstop' ]
- if 'dt' in params_network . keys ():
- dt . value = params_network [ 'dt' ]
+ if 'tstop' in params . keys ():
+ tstop . value = params [ 'tstop' ]
+ if 'dt' in params . keys ():
+ dt . value = params [ 'dt' ]
- params . update ( params_network )
# init network, add drives & connectivity
if load_type == 'connectivity' :
add_connectivity_tab ( params , connectivity_out , connectivity_textfields )
elif load_type == 'drives' :
- add_drive_tab ( params , drives_out , drive_widgets , drive_boxes , tstop ,
- layout )
+ with log_out :
+ add_drive_tab ( params , log_out , drives_out , drive_widgets , drive_boxes , tstop ,
+ layout )
else :
raise ValueError
# Resets file counter to 0
@@ -1609,7 +1603,6 @@ Source code for hnn_core.gui.gui
simulation_status_contents , connectivity_textfields ,
viz_manager , simulations_list_widget ):
"""Run the simulation and plot outputs."""
- log_out . clear_output ()
simulation_data = all_data [ "simulation_data" ]
with log_out :
# clear empty trash simulations
diff --git a/dev/_modules/hnn_core/params.html b/dev/_modules/hnn_core/params.html
index 5d051e18f..0be8abd2a 100644
--- a/dev/_modules/hnn_core/params.html
+++ b/dev/_modules/hnn_core/params.html
@@ -206,13 +206,16 @@ Source code for hnn_core.params
return params_input
-[docs] def read_params ( params_fname ):
+
[docs] def read_params ( params_fname , file_contents = None ):
"""Read param values from a file (.json or .param).
Parameters
----------
params_fname : str
Full path to the file (.param)
+
file_contents : str | None
+
If file_contents are provided as a string,
+
it is parsed into a dictionary.
Returns
-------
@@ -227,10 +230,12 @@
Source code for hnn_core.params
raise ValueError ( 'Unrecognized extension, expected one of' +
' .json, .param. Got %s ' % ext )
+ if file_contents is None :
+ with open ( params_fname , 'r' ) as fp :
+ file_contents = fp . read ()
+
read_func = { '.json' : _read_json , '.param' : _read_legacy_params }
- with open ( params_fname , 'r' ) as fp :
- param_data = fp . read ()
- params_dict = read_func [ ext ]( param_data )
+ params_dict = read_func [ ext ]( file_contents )
if len ( params_dict ) == 0 :
raise ValueError ( "Failed to read parameters from file: %s " %
diff --git a/dev/_sources/whats_new.rst.txt b/dev/_sources/whats_new.rst.txt
index 4e9f3c4bb..4a932695c 100644
--- a/dev/_sources/whats_new.rst.txt
+++ b/dev/_sources/whats_new.rst.txt
@@ -79,6 +79,9 @@ Bug
- Fix GUI plotting bug due to deprecation of matplotlib color cycling method,
by `George Dang`_ in :gh:`695`.
+- Fix loading of drives in the GUI: drives are now overwritten instead of updated,
+ by `Mainak Jas`_ in :gh:`795`.
+
API
~~~
- :func:`~hnn_core.CellResponse.write` and :func:`~hnn_core.Cell_response.read_spikes`
diff --git a/dev/api.html b/dev/api.html
index 828f507c9..cb77eb19a 100644
--- a/dev/api.html
+++ b/dev/api.html
@@ -287,7 +287,7 @@ Parallel backends (Input and Output:
-read_params
(params_fname)
+read_params
(params_fname[, file_contents])
Read param values from a file (.json or .param).
read_dipole
(fname)
diff --git a/dev/generated/hnn_core.read_params.html b/dev/generated/hnn_core.read_params.html
index 402910c78..1438b4cb3 100644
--- a/dev/generated/hnn_core.read_params.html
+++ b/dev/generated/hnn_core.read_params.html
@@ -149,13 +149,16 @@
hnn_core.read_params
-hnn_core. read_params ( params_fname ) [source]
+hnn_core. read_params ( params_fname , file_contents = None ) [source]
Read param values from a file (.json or .param).
Parameters:
params_fname str Full path to the file (.param)
+file_contents str | None If file_contents are provided as a string,
+it is parsed into a dictionary.
+
Returns:
diff --git a/dev/gui/basic_gui_usage.html b/dev/gui/basic_gui_usage.html
index 81ab54fed..b269754a0 100644
--- a/dev/gui/basic_gui_usage.html
+++ b/dev/gui/basic_gui_usage.html
@@ -198,7 +198,7 @@ Basic GUI usage\n Save Simulation \n \n "}}, "7f413fd4abb9430ba24a8e8738f70154": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "15%"}}, "63ee989b2e1f42a3b3cfe77470d40023": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "095d08914220439196ac06db4dccd687": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_7f413fd4abb9430ba24a8e8738f70154", "style": "IPY_MODEL_63ee989b2e1f42a3b3cfe77470d40023", "tabbable": null, "tooltip": null}}, "2f66e0fc2bf54652bf319d6398d04a19": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "397cb8a7d82a4a55860bf403bea55338": {"model_name": "RadioButtonsModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "RadioButtonsModel", "_options_labels": ["Evoked", "Poisson", "Rhythmic", "Tonic"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "RadioButtonsView", "description": "Drive:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_402336685397411285bfe50981851c27", "style": "IPY_MODEL_2f66e0fc2bf54652bf319d6398d04a19", "tabbable": null, "tooltip": null}}, "9221061886354b6fab73cca0b59f5b7a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "7c5103d2bb434ac3a9d63d7d08fbaa7b": {"model_name": "RadioButtonsModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "RadioButtonsModel", "_options_labels": ["proximal", "distal"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "RadioButtonsView", "description": "Location", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_402336685397411285bfe50981851c27", "style": "IPY_MODEL_9221061886354b6fab73cca0b59f5b7a", "tabbable": null, "tooltip": null}}, "71a1f55379584c699c157e13ba57a233": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "978bf135b3994a68bd0e43469ce1ecd2": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "primary", "description": "Add drive", "disabled": false, "icon": "", "layout": "IPY_MODEL_7bce2d1ed32a4ffaa2ca1afcd9a9bd84", "style": "IPY_MODEL_71a1f55379584c699c157e13ba57a233", "tabbable": null, "tooltip": null}}, "b4276aaa223e47b981d572ee13ad12f1": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "e1eaef584fbb45b4a22ac1ae1c2e6035": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "success", "description": "Run", "disabled": false, "icon": "", "layout": "IPY_MODEL_874631a1d54e43ea844e946982b35e9f", "style": "IPY_MODEL_b4276aaa223e47b981d572ee13ad12f1", "tabbable": null, "tooltip": null}}, "4a9d6a4d727b49449f08418dd3a70220": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "c8b35502d427498bab922169f0db0412": {"model_name": "FileUploadModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FileUploadModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FileUploadView", "accept": ".json,.param", "button_style": "success", "description": "Load local network connectivity", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_c24e0d6de6fd42a1933a68b765cdcc6c", "multiple": false, "style": "IPY_MODEL_4a9d6a4d727b49449f08418dd3a70220", "tabbable": null, "tooltip": null, "value": []}}, "eef1515a804443dd97b7db57e4c9db99": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "749f13d769ef45d9992d2360129d9121": {"model_name": "FileUploadModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FileUploadModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FileUploadView", "accept": ".json,.param", "button_style": "success", "description": "Load external drives", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_7bce2d1ed32a4ffaa2ca1afcd9a9bd84", "multiple": false, "style": "IPY_MODEL_eef1515a804443dd97b7db57e4c9db99", "tabbable": null, "tooltip": null, "value": []}}, "53be230d23bf4d4499ed527148f8b302": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "4d8ea4e3567b4cdf96a516ef7f93f5ee": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "success", "description": "Delete drives", "disabled": false, "icon": "", "layout": "IPY_MODEL_7bce2d1ed32a4ffaa2ca1afcd9a9bd84", "style": "IPY_MODEL_53be230d23bf4d4499ed527148f8b302", "tabbable": null, "tooltip": null}}, "7a83ffad7f764c5f8a1441555aa90cec": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "540d616c311f42b2bc4e4a6f03f9e122": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_7a83ffad7f764c5f8a1441555aa90cec", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Accordion(children=(VBox(children=(BoundedFloatText(value=63.53, description='Mean time:', max=1000000.0, step\u2026", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "02b6372f0e8f419aaf6f3b1070add6d1"}}}], "tabbable": null, "tooltip": null}}, "926baf14a1f14868bb52fa90434c1027": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d7f7c46f1f9c4b72af02ed4dab39f0a5": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_926baf14a1f14868bb52fa90434c1027", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Accordion(children=(VBox(children=(VBox(children=(HTML(value=' \\n Receptor: gabaa
'), BoundedF\u2026", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "9c3f0cc1d8034454878b2d60ff89d0ec"}}}], "tabbable": null, "tooltip": null}}, "84cfb15d2f6b47be80bcfc75ee2bcf70": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e230a9260b5048a78dfac7eac7713759": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_84cfb15d2f6b47be80bcfc75ee2bcf70", "msg_id": "", "outputs": [{"name": "stdout", "output_type": "stream", "text": "2024-06-13 15:17:59,742 - [INFO] Saving default.txt\n"}], "tabbable": null, "tooltip": null}}, "4e0d8e9a61b6480ab79f433779021a29": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8b64d5f249af45fcbee3e7ae644cad8e": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_4e0d8e9a61b6480ab79f433779021a29", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Tab()", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "4695343eb1954b05a856a000ed1a26d5"}}}], "tabbable": null, "tooltip": null}}, "cdda63cc6c764dd7aa7bd264ee2456a8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8b1bda8fc5d644a89a88f201de77b5b6": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_cdda63cc6c764dd7aa7bd264ee2456a8", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Tab()", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "be5bbfc96ab54aa09795cbcb5abe3586"}}}], "tabbable": null, "tooltip": null}}, "253e23a9fc7b43c59c2a9aee4ff7cab9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4695343eb1954b05a856a000ed1a26d5": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_d4dfade458ca4b30aeea0f652f55c53d"], "layout": "IPY_MODEL_253e23a9fc7b43c59c2a9aee4ff7cab9", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "c698b8e4b4cd4b04b092dad5af17d48d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "be5bbfc96ab54aa09795cbcb5abe3586": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_408e3359b9964e4c9a4baf1412d67200"], "layout": "IPY_MODEL_c698b8e4b4cd4b04b092dad5af17d48d", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "13900eaf707646d5931d139c13278e95": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "3fcf3c4b373b4656885ec0e25ba5962b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "initial"}}, "3780593c7f824555952faf10b4980139": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["Drive-Dipole (2x1)", "Dipole Layers (3x1)", "Drive-Spikes (2x1)", "Dipole-Spectrogram (2x1)", "Dipole-Spikes (2x1)", "Drive-Dipole-Spectrogram (3x1)", "PSD Layers (3x1)", "[Blank] 2row x 1col (1:3)", "[Blank] 2row x 1col (1:1)", "[Blank] 1row x 2col (1:1)", "[Blank] single figure", "[Blank] 2row x 2col (1:1)"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Layout template:", "description_allow_html": false, "disabled": false, "index": 7, "layout": "IPY_MODEL_13900eaf707646d5931d139c13278e95", "style": "IPY_MODEL_3fcf3c4b373b4656885ec0e25ba5962b", "tabbable": null, "tooltip": null}}, "fb41274cf673463aa1355949521c5f88": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "a541769ef12f47c29b1503db6dd35b2a": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "primary", "description": "Make figure", "disabled": false, "icon": "", "layout": "IPY_MODEL_7bce2d1ed32a4ffaa2ca1afcd9a9bd84", "style": "IPY_MODEL_fb41274cf673463aa1355949521c5f88", "tabbable": null, "tooltip": null}}, "df684ebce9fa4319bd11fd61a39dc3ac": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "hidden", "width": "98%"}}, "25a4697b77744949ae4e0d05d964f7d5": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "initial"}}, "3bae052d62d645c1a68020a235c005aa": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": [], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Dataset:", "description_allow_html": false, "disabled": false, "index": null, "layout": "IPY_MODEL_df684ebce9fa4319bd11fd61a39dc3ac", "style": "IPY_MODEL_25a4697b77744949ae4e0d05d964f7d5", "tabbable": null, "tooltip": null}}, "d65e4ee8927b410db676f90c909fdcd0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "74c70dacaf54431cb05d6dd22b9e7573": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_d65e4ee8927b410db676f90c909fdcd0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null}}, "17d22cf0bc304658931f9505310a4273": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "footer", "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}}, "28f6a8141d1c4b32b7a6065e968332e5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "2126851c73b845d9afd42e6ff333c88b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_17d22cf0bc304658931f9505310a4273", "placeholder": "\u200b", "style": "IPY_MODEL_28f6a8141d1c4b32b7a6065e968332e5", "tabbable": null, "tooltip": null, "value": "Simulation finished
"}}, "38580a7f8e6a4d79a613b599da6912a2": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e230a9260b5048a78dfac7eac7713759"], "layout": "IPY_MODEL_77ea528c225449ab8d1789d9d1f8c101", "tabbable": null, "tooltip": null}}, "806dc69ceb66456e80b752dca61d47bd": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e1eaef584fbb45b4a22ac1ae1c2e6035", "IPY_MODEL_ab9aa370341e46fb80807241817b7141", "IPY_MODEL_7e0bd6c251a34dce8f3a951f33ab7761", "IPY_MODEL_095d08914220439196ac06db4dccd687"], "layout": "IPY_MODEL_aa74c09668d9477fbb9ea76b21ad35d3", "tabbable": null, "tooltip": null}}, "6126e771750f49d494f9c121cc7ae6be": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "header", "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}}, "a4f90f23486a432ebc927011311f7d69": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "03a6f45ad5d24f5cbfc1b9260766124c": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_6126e771750f49d494f9c121cc7ae6be", "placeholder": "\u200b", "style": "IPY_MODEL_a4f90f23486a432ebc927011311f7d69", "tabbable": null, "tooltip": null, "value": "\n HUMAN NEOCORTICAL NEUROSOLVER
"}}, "d7edfad88cc6407bb6eb977b8400cb2d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "2a1dc17e318a42eab0cf23092bb22d1c": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_eacfd6e942b4422b98e52920d301ae5d", "IPY_MODEL_76ab9093311c4a9591e3c7ddb4a72f4a", "IPY_MODEL_acc5cb05d00848db84f27ea4ca3f93e2", "IPY_MODEL_0e28bd52e3e84359b08130e7e9bbb268", "IPY_MODEL_20b0833cd7a644ca8118be97edcc9d88", "IPY_MODEL_74c70dacaf54431cb05d6dd22b9e7573"], "layout": "IPY_MODEL_d7edfad88cc6407bb6eb977b8400cb2d", "tabbable": null, "tooltip": null}}, "ad90a84938ac443cbe64d91d33df3d94": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_2a1dc17e318a42eab0cf23092bb22d1c"], "layout": "IPY_MODEL_f5782728b03346e8ba4cc8cc339ff99c", "tabbable": null, "tooltip": null}}, "1017d37b03524b4582e39c29e8f230c6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1861ccccf6554d319cd05885dd26f1a7": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_c8b35502d427498bab922169f0db0412"], "layout": "IPY_MODEL_1017d37b03524b4582e39c29e8f230c6", "tabbable": null, "tooltip": null}}, "674fa275bed94d1c95a91ec10c0f3633": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3e1632e2727e4e268385420201e5e8e3": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_1861ccccf6554d319cd05885dd26f1a7", "IPY_MODEL_d7f7c46f1f9c4b72af02ed4dab39f0a5"], "layout": "IPY_MODEL_674fa275bed94d1c95a91ec10c0f3633", "tabbable": null, "tooltip": null}}, "fea8463a09f64a57a59b2cb7080f965a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "beb8e4c67ebe4e0ca4438f896c283ffb": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": [], "layout": "IPY_MODEL_fea8463a09f64a57a59b2cb7080f965a", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null}}, "e3aad772cca4413685cc25ffe52f725d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1", "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}}, "b19dab1156bb4b31b2ceace9227eb743": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_978bf135b3994a68bd0e43469ce1ecd2", "IPY_MODEL_397cb8a7d82a4a55860bf403bea55338", "IPY_MODEL_7c5103d2bb434ac3a9d63d7d08fbaa7b"], "layout": "IPY_MODEL_e3aad772cca4413685cc25ffe52f725d", "tabbable": null, "tooltip": null}}, "0e9df06a80c14312b806f98945ef3d82": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1", "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}}, "f0b015d758e141c793335aa34de19fb4": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_749f13d769ef45d9992d2360129d9121", "IPY_MODEL_4d8ea4e3567b4cdf96a516ef7f93f5ee"], "layout": "IPY_MODEL_0e9df06a80c14312b806f98945ef3d82", "tabbable": null, "tooltip": null}}, "b5fa1f1e6feb455a97e3c6bbb8561b5c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "97ab1b60ff18411e8ff118d8850385e8": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_f0b015d758e141c793335aa34de19fb4", "IPY_MODEL_b19dab1156bb4b31b2ceace9227eb743"], "layout": "IPY_MODEL_b5fa1f1e6feb455a97e3c6bbb8561b5c", "tabbable": null, "tooltip": null}}, "befabeaf323a4d409ec945e060a2db4e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "02d09b8cf4214b02b66ccc8e67b11bef": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_97ab1b60ff18411e8ff118d8850385e8", "IPY_MODEL_540d616c311f42b2bc4e4a6f03f9e122"], "layout": "IPY_MODEL_befabeaf323a4d409ec945e060a2db4e", "tabbable": null, "tooltip": null}}, "e0ae4b942908453ea1ea8d6f339af38a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "976a494e0d2f4a86bae8a7de276fa40e": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "4dd4d97c664f441bb553779320606ea0": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e0ae4b942908453ea1ea8d6f339af38a", "placeholder": "\u200b", "style": "IPY_MODEL_976a494e0d2f4a86bae8a7de276fa40e", "tabbable": null, "tooltip": null, "value": "Run simulation to add figures here."}}, "ced0d0c054614bd09e6ab96cbca31405": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_8b1bda8fc5d644a89a88f201de77b5b6"], "layout": "IPY_MODEL_d09bda06c1624732bd70f882e4346205", "tabbable": null, "tooltip": null}}, "7e0c826960844b50b2ef3fc8ae4a88d3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "stretch", "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": "flex", "flex": null, "flex_flow": "column", "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}}, "4a553307de5145008259f06411e04145": {"model_name": "BoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "BoxView", "box_style": "", "children": ["IPY_MODEL_3780593c7f824555952faf10b4980139", "IPY_MODEL_3bae052d62d645c1a68020a235c005aa", "IPY_MODEL_a541769ef12f47c29b1503db6dd35b2a"], "layout": "IPY_MODEL_7e0c826960844b50b2ef3fc8ae4a88d3", "tabbable": null, "tooltip": null}}, "c145d85d06e940a0ac9b1b6d82457a9b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "163db1d58b8d486db9721254b077d5fb": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "adcf697106d14d4db46a7295ef9469b1": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c145d85d06e940a0ac9b1b6d82457a9b", "placeholder": "\u200b", "style": "IPY_MODEL_163db1d58b8d486db9721254b077d5fb", "tabbable": null, "tooltip": null, "value": "Figure config:"}}, "d2a18cf43c054f4b9e75106d69ecc8ac": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b3fb8f2261af4b00aff5d18bcac3d4e8": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_4a553307de5145008259f06411e04145", "IPY_MODEL_adcf697106d14d4db46a7295ef9469b1", "IPY_MODEL_8b64d5f249af45fcbee3e7ae644cad8e"], "layout": "IPY_MODEL_d2a18cf43c054f4b9e75106d69ecc8ac", "tabbable": null, "tooltip": null}}, "dbfe55eaf8b74cb88c4adcdceefcde84": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "899f02663d1844f89e257c9c171abfd6": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_ad90a84938ac443cbe64d91d33df3d94", "IPY_MODEL_3e1632e2727e4e268385420201e5e8e3", "IPY_MODEL_02d09b8cf4214b02b66ccc8e67b11bef", "IPY_MODEL_b3fb8f2261af4b00aff5d18bcac3d4e8"], "layout": "IPY_MODEL_dbfe55eaf8b74cb88c4adcdceefcde84", "selected_index": 0, "tabbable": null, "titles": ["Simulation", "Network connectivity", "External drives", "Visualization"], "tooltip": null}}, "f65ef2c2098f4a82950dec475bdcdf9a": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_899f02663d1844f89e257c9c171abfd6"], "layout": "IPY_MODEL_45755f004d154dc99c0f8d4b0b4bd47d", "tabbable": null, "tooltip": null}}, "a8f9fdd5f267490080ac7b717e1f6585": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_f65ef2c2098f4a82950dec475bdcdf9a", "IPY_MODEL_806dc69ceb66456e80b752dca61d47bd", "IPY_MODEL_38580a7f8e6a4d79a613b599da6912a2"], "layout": "IPY_MODEL_c8f91a64101449aaa5356a364fcde1d8", "tabbable": null, "tooltip": null}}, "d808a8d1c6d1492590ea545d24c7c85c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "\"header header\"\n\"left-sidebar right-sidebar\"\n\"footer footer\"", "grid_template_columns": "576px 714px", "grid_template_rows": "50px 760px 30px", "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}}, "ab8a5a4f6bb64ff3804e7d30a118a898": {"model_name": "GridBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "GridBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "GridBoxView", "box_style": "", "children": ["IPY_MODEL_03a6f45ad5d24f5cbfc1b9260766124c", "IPY_MODEL_2126851c73b845d9afd42e6ff333c88b", "IPY_MODEL_a8f9fdd5f267490080ac7b717e1f6585", "IPY_MODEL_ced0d0c054614bd09e6ab96cbca31405"], "layout": "IPY_MODEL_d808a8d1c6d1492590ea545d24c7c85c", "tabbable": null, "tooltip": null}}, "5036296b9c4f42d9a982a2dea3862b5b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "89dd9a82eca343f6a1ccad57af136a8b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8d40c33577f947f8b44a1ec066640407": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_89dd9a82eca343f6a1ccad57af136a8b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_5036296b9c4f42d9a982a2dea3862b5b", "tabbable": null, "tooltip": null, "value": 0.02}}, "10485dd970a34182a1bc8cdd6c23bb72": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c1d16ee5418843228ad61a1ded1bda5b": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1650448fd3654ac3b939527d4a895f18": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_10485dd970a34182a1bc8cdd6c23bb72", "placeholder": "\u200b", "style": "IPY_MODEL_c1d16ee5418843228ad61a1ded1bda5b", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "90450f01c0de412889cffbada2e2924b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1739bdaa009943f3a59cbf8bd360949a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "bde6566a26b5473182749efb7b42a372": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_90450f01c0de412889cffbada2e2924b", "placeholder": "\u200b", "style": "IPY_MODEL_1739bdaa009943f3a59cbf8bd360949a", "tabbable": null, "tooltip": null, "value": " "}}, "df65b958b0ae4eb4941b70f40e3b425b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8bed47f4ac244cbf923e9d5481c51eb1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_1650448fd3654ac3b939527d4a895f18", "IPY_MODEL_8d40c33577f947f8b44a1ec066640407", "IPY_MODEL_bde6566a26b5473182749efb7b42a372"], "layout": "IPY_MODEL_df65b958b0ae4eb4941b70f40e3b425b", "tabbable": null, "tooltip": null}}, "ee28e49f1fa3448e9a5f7bf72cd25a1b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "92fec2c3103b4c018e39fd58908110ff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b2ff48a3f96e4aa7be06b37ed26e1f97": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_92fec2c3103b4c018e39fd58908110ff", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_ee28e49f1fa3448e9a5f7bf72cd25a1b", "tabbable": null, "tooltip": null, "value": 0.05}}, "2c541d9644354b4992ecc41473691d8b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d52e7b18630f4ec08b467291709b7614": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "f07f667596294efe8ce4aa30beab1653": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2c541d9644354b4992ecc41473691d8b", "placeholder": "\u200b", "style": "IPY_MODEL_d52e7b18630f4ec08b467291709b7614", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "4f0fd0251fc148f689472915337eb0c5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a25836a0bc5c4cd8a5bf405f9133a7a5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "abedd26369ce41c381facb4f768b3b70": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_4f0fd0251fc148f689472915337eb0c5", "placeholder": "\u200b", "style": "IPY_MODEL_a25836a0bc5c4cd8a5bf405f9133a7a5", "tabbable": null, "tooltip": null, "value": " "}}, "ffc28790b3464412826bf5b70fb8454c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ff300104c0fa4bd5ab3d650b910fe1af": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_f07f667596294efe8ce4aa30beab1653", "IPY_MODEL_b2ff48a3f96e4aa7be06b37ed26e1f97", "IPY_MODEL_abedd26369ce41c381facb4f768b3b70"], "layout": "IPY_MODEL_ffc28790b3464412826bf5b70fb8454c", "tabbable": null, "tooltip": null}}, "54b5448ea44c4f028e1dcc6b4b315a37": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "c404b27f8e8146dd81b8ec2fe9967515": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "80706246520d4805814318a4ca15c12f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_c404b27f8e8146dd81b8ec2fe9967515", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_54b5448ea44c4f028e1dcc6b4b315a37", "tabbable": null, "tooltip": null, "value": 0.05}}, "ba0743f4f5ff4c55bfb20298a79bc902": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e564a3c51f224994bcc350e87fb9a447": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "a1501410249c49388c2f1e70c49ca60a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ba0743f4f5ff4c55bfb20298a79bc902", "placeholder": "\u200b", "style": "IPY_MODEL_e564a3c51f224994bcc350e87fb9a447", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabab
"}}, "e19328c308764bf586275d1c923bea87": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7b5fc6dff53c45318ba3d618565d846c": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "3736eeb4ef1542aba02ebe18229a5b72": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e19328c308764bf586275d1c923bea87", "placeholder": "\u200b", "style": "IPY_MODEL_7b5fc6dff53c45318ba3d618565d846c", "tabbable": null, "tooltip": null, "value": " "}}, "a39f49de328a4ad5be0c6060873189d5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b4667964f3cf46cab94ffff8456b7cc7": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_a1501410249c49388c2f1e70c49ca60a", "IPY_MODEL_80706246520d4805814318a4ca15c12f", "IPY_MODEL_3736eeb4ef1542aba02ebe18229a5b72"], "layout": "IPY_MODEL_a39f49de328a4ad5be0c6060873189d5", "tabbable": null, "tooltip": null}}, "271a7bf8e3164ee38e3d18ba083a937e": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "a636d187df5f49dbbd92fce43064c46c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "01bc4a19cd574206843da85078abe6ba": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a636d187df5f49dbbd92fce43064c46c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_271a7bf8e3164ee38e3d18ba083a937e", "tabbable": null, "tooltip": null, "value": 0.001}}, "0f1a21534e8d4262aa7029b348dc6b90": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "87464fdb9ab543e29aef0e66df9c8071": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "3bf24692f6b04c8889b50d8d94060660": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_0f1a21534e8d4262aa7029b348dc6b90", "placeholder": "\u200b", "style": "IPY_MODEL_87464fdb9ab543e29aef0e66df9c8071", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "188a04a757464c19930b89ecfadaeaf8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e7c1aaf843cc40e19091b7b12bb432c2": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "66a5de91e51844f3ac082f987f639fcc": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_188a04a757464c19930b89ecfadaeaf8", "placeholder": "\u200b", "style": "IPY_MODEL_e7c1aaf843cc40e19091b7b12bb432c2", "tabbable": null, "tooltip": null, "value": " "}}, "3318ba2ea89742ad9a68c7f174592029": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "816fbab21f124e708ab03ccc4a14124a": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_3bf24692f6b04c8889b50d8d94060660", "IPY_MODEL_01bc4a19cd574206843da85078abe6ba", "IPY_MODEL_66a5de91e51844f3ac082f987f639fcc"], "layout": "IPY_MODEL_3318ba2ea89742ad9a68c7f174592029", "tabbable": null, "tooltip": null}}, "844360ad4aeb47abbe4acaa9e3c0b15a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "822c92d6b209426bae0dbbf1eaf7d192": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fafa4a9d6820483bbd4e0c5850ec4416": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_822c92d6b209426bae0dbbf1eaf7d192", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_844360ad4aeb47abbe4acaa9e3c0b15a", "tabbable": null, "tooltip": null, "value": 0.0005}}, "2c349ba615cf4473831a1ee46a775dbb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f147c17b9d5147778a157145fa18c90a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "fd0038ea2f9e4c7b99e22748cf5ec45d": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2c349ba615cf4473831a1ee46a775dbb", "placeholder": "\u200b", "style": "IPY_MODEL_f147c17b9d5147778a157145fa18c90a", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "e419787ee6aa44b29aea6cce8ca6c89e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b6b38f14fa124643b2332acb9eb51ec8": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "78d4752ad1af473e85897c615d952573": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e419787ee6aa44b29aea6cce8ca6c89e", "placeholder": "\u200b", "style": "IPY_MODEL_b6b38f14fa124643b2332acb9eb51ec8", "tabbable": null, "tooltip": null, "value": " "}}, "566366f777be4da787ff548fa5fe5623": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "42a435d152534a68b8a4de69719901c1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fd0038ea2f9e4c7b99e22748cf5ec45d", "IPY_MODEL_fafa4a9d6820483bbd4e0c5850ec4416", "IPY_MODEL_78d4752ad1af473e85897c615d952573"], "layout": "IPY_MODEL_566366f777be4da787ff548fa5fe5623", "tabbable": null, "tooltip": null}}, "4c39d08d3cc446e292053d601afd1da4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "52277795781f4cd4a574151a618d40e8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a771c9843f154dda9b76d1fd269e2c32": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_52277795781f4cd4a574151a618d40e8", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_4c39d08d3cc446e292053d601afd1da4", "tabbable": null, "tooltip": null, "value": 0.0005}}, "81fd6b17173c4de49e66c24ab9919289": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c244d50c80574aa1a364a01d37fafc0a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "9e1d27ffcdf1460ab4acb39872e9e1ba": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_81fd6b17173c4de49e66c24ab9919289", "placeholder": "\u200b", "style": "IPY_MODEL_c244d50c80574aa1a364a01d37fafc0a", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "b3df37f6da1545608e21ddce982a3bf3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6b5f91ca6bf54b6aa145eff42b76b245": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "43d0159d5c53408d9fd27bad9d4d3e2a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b3df37f6da1545608e21ddce982a3bf3", "placeholder": "\u200b", "style": "IPY_MODEL_6b5f91ca6bf54b6aa145eff42b76b245", "tabbable": null, "tooltip": null, "value": " "}}, "03ff2e0f4dc94b0b85d6dccc2b593c21": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0bda35b3beee46a8935c3bfa5864b331": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_9e1d27ffcdf1460ab4acb39872e9e1ba", "IPY_MODEL_a771c9843f154dda9b76d1fd269e2c32", "IPY_MODEL_43d0159d5c53408d9fd27bad9d4d3e2a"], "layout": "IPY_MODEL_03ff2e0f4dc94b0b85d6dccc2b593c21", "tabbable": null, "tooltip": null}}, "8f530faabebf4589b2c781385661dae9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "a2d9286d04f64f378b823484675458f8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d112157fca9242e1a7b9d127d18e5959": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a2d9286d04f64f378b823484675458f8", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8f530faabebf4589b2c781385661dae9", "tabbable": null, "tooltip": null, "value": 0.0005}}, "4177de5a52c34091b48473123de86510": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5b5bf0a501bd44f6b316b9642e2a7a38": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "3490b456aebc4354add79599ecccba8b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_4177de5a52c34091b48473123de86510", "placeholder": "\u200b", "style": "IPY_MODEL_5b5bf0a501bd44f6b316b9642e2a7a38", "tabbable": null, "tooltip": null, "value": "\n Receptor: nmda
"}}, "c5e0333cc8454f06830b5060f9576365": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "01f7e37402fe4f32a4bb5694eb13f0f5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "f06133128cb64081944d2e09ce8ada56": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c5e0333cc8454f06830b5060f9576365", "placeholder": "\u200b", "style": "IPY_MODEL_01f7e37402fe4f32a4bb5694eb13f0f5", "tabbable": null, "tooltip": null, "value": " "}}, "9e53a8fc6b894eb0accc354766c101ea": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f2715f74bc0d403f876965e15537aca6": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_3490b456aebc4354add79599ecccba8b", "IPY_MODEL_d112157fca9242e1a7b9d127d18e5959", "IPY_MODEL_f06133128cb64081944d2e09ce8ada56"], "layout": "IPY_MODEL_9e53a8fc6b894eb0accc354766c101ea", "tabbable": null, "tooltip": null}}, "cd49de48d0244075b26d0d41ce1ac972": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "4b32a5d863fe47d2ad9f0ed6a8b62045": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4f1e03204fb24eb08b55bf9e4f8ccdf0": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_4b32a5d863fe47d2ad9f0ed6a8b62045", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_cd49de48d0244075b26d0d41ce1ac972", "tabbable": null, "tooltip": null, "value": 0.00025}}, "1cbe6c3b81364e3e93d9b28c645e306b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "dadc034491b74af99fa092a1a87fa452": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "6db27cbd3e7c4c8db46d8a9121f9f61d": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_1cbe6c3b81364e3e93d9b28c645e306b", "placeholder": "\u200b", "style": "IPY_MODEL_dadc034491b74af99fa092a1a87fa452", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "3faa7256dc9943f2abac9d5e3d1b96d3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a2cef57a373b4b96a7cb4b9dd61204e4": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "15c612d3862643559ac5e5573fab36a7": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3faa7256dc9943f2abac9d5e3d1b96d3", "placeholder": "\u200b", "style": "IPY_MODEL_a2cef57a373b4b96a7cb4b9dd61204e4", "tabbable": null, "tooltip": null, "value": " "}}, "03febaa2df5e4c7a89fc3e4601e61a63": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "667e5c5067c44d7187207031748364a8": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_6db27cbd3e7c4c8db46d8a9121f9f61d", "IPY_MODEL_4f1e03204fb24eb08b55bf9e4f8ccdf0", "IPY_MODEL_15c612d3862643559ac5e5573fab36a7"], "layout": "IPY_MODEL_03febaa2df5e4c7a89fc3e4601e61a63", "tabbable": null, "tooltip": null}}, "190920e0d46644ce98c844b395ab3cf9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "b6da7fdbea834178a829eb0b9aa23919": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0bacdfb3139a4689a9983de8310da538": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_b6da7fdbea834178a829eb0b9aa23919", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_190920e0d46644ce98c844b395ab3cf9", "tabbable": null, "tooltip": null, "value": 0.00025}}, "69f53598f0c245d29f2f5afe22b4f84d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "37addc6bb0b74ee78fbb6d81b1656f67": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "ffa92cb5bf6d4c0cad8aa86cc5900bb5": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_69f53598f0c245d29f2f5afe22b4f84d", "placeholder": "\u200b", "style": "IPY_MODEL_37addc6bb0b74ee78fbb6d81b1656f67", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "48ed01b583c9419d9b34ce6f48abce18": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "abfd338ba0db4f05a7ed9766de53c6d3": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "ae368533a4d843c9a1a7c6d276d66a15": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_48ed01b583c9419d9b34ce6f48abce18", "placeholder": "\u200b", "style": "IPY_MODEL_abfd338ba0db4f05a7ed9766de53c6d3", "tabbable": null, "tooltip": null, "value": " "}}, "07dc91552c4a4635a89e5c81486b9d87": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a804eabb02e14d54a73460ce9dd04c0c": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_ffa92cb5bf6d4c0cad8aa86cc5900bb5", "IPY_MODEL_0bacdfb3139a4689a9983de8310da538", "IPY_MODEL_ae368533a4d843c9a1a7c6d276d66a15"], "layout": "IPY_MODEL_07dc91552c4a4635a89e5c81486b9d87", "tabbable": null, "tooltip": null}}, "2152ac6910f84e73a1131496e647e206": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "2e1de34e87eb4a51b50467b8f2727130": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "671ddc44fb0d4c40a77bc80c2a2d036d": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_2e1de34e87eb4a51b50467b8f2727130", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2152ac6910f84e73a1131496e647e206", "tabbable": null, "tooltip": null, "value": 0.00025}}, "7cdf5c5e99404087a71064b265d4af05": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ae7f05b788fd4db2a75c07fb00281847": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "b7671a24a789417e86d095c5d2789238": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_7cdf5c5e99404087a71064b265d4af05", "placeholder": "\u200b", "style": "IPY_MODEL_ae7f05b788fd4db2a75c07fb00281847", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "fcdc7991d0fe4b70bc3159e9f53bf17a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "62fdc8a6d4d8421f92144c4dd180753e": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "71a2b47cf9f8471bae6914835929a6cf": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_fcdc7991d0fe4b70bc3159e9f53bf17a", "placeholder": "\u200b", "style": "IPY_MODEL_62fdc8a6d4d8421f92144c4dd180753e", "tabbable": null, "tooltip": null, "value": " "}}, "6f3ec992b8a44c69a80189858ad9be1b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "726283e2229e4009bdcd6871ea28153d": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_b7671a24a789417e86d095c5d2789238", "IPY_MODEL_671ddc44fb0d4c40a77bc80c2a2d036d", "IPY_MODEL_71a2b47cf9f8471bae6914835929a6cf"], "layout": "IPY_MODEL_6f3ec992b8a44c69a80189858ad9be1b", "tabbable": null, "tooltip": null}}, "59a5e218fe484cc390ab3ef8369a6d10": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "5a846a0267aa4773b163a56c856674ab": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d040754873a942ce97ab641b3fc9cf42": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5a846a0267aa4773b163a56c856674ab", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_59a5e218fe484cc390ab3ef8369a6d10", "tabbable": null, "tooltip": null, "value": 0.02}}, "9674b3a77568450184d2c9354bc607b3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b0d37fdb8c1347fba5ce244e43294b96": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "517f080352b64ad8b68bdcba9f1d760a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9674b3a77568450184d2c9354bc607b3", "placeholder": "\u200b", "style": "IPY_MODEL_b0d37fdb8c1347fba5ce244e43294b96", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "b5d2d2efbde0460a8388ef2e0e07e2ae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e74c9b0b33184f639626cc6a812d06c4": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "92f5a517db6344cfaa731c5caacf2047": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b5d2d2efbde0460a8388ef2e0e07e2ae", "placeholder": "\u200b", "style": "IPY_MODEL_e74c9b0b33184f639626cc6a812d06c4", "tabbable": null, "tooltip": null, "value": " "}}, "f06d0c212a9c4ed2945890649457e63e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c02a39cc64d84170aa6f5d7f2f4314e2": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_517f080352b64ad8b68bdcba9f1d760a", "IPY_MODEL_d040754873a942ce97ab641b3fc9cf42", "IPY_MODEL_92f5a517db6344cfaa731c5caacf2047"], "layout": "IPY_MODEL_f06d0c212a9c4ed2945890649457e63e", "tabbable": null, "tooltip": null}}, "d20f9672e1b54ea2b3b259a7f58b1609": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "8bf035cc6d3744b0ab822ba9241ece27": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8a6de12ae7804e628208d5b765337e2d": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8bf035cc6d3744b0ab822ba9241ece27", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d20f9672e1b54ea2b3b259a7f58b1609", "tabbable": null, "tooltip": null, "value": 0.025}}, "ff9bdda7e26f409a809cb660ce45dc85": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1dd8efc2eba3461ebccb86a50a93f2bd": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "ae139f396f114c0fa3bd431797b2d01d": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ff9bdda7e26f409a809cb660ce45dc85", "placeholder": "\u200b", "style": "IPY_MODEL_1dd8efc2eba3461ebccb86a50a93f2bd", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "06fc1c288d4144dfa7247bb7fe1d5013": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "be22ed90e42148e8891f85d283826fd1": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d41fafacbbb440b5b2a109559830df32": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_06fc1c288d4144dfa7247bb7fe1d5013", "placeholder": "\u200b", "style": "IPY_MODEL_be22ed90e42148e8891f85d283826fd1", "tabbable": null, "tooltip": null, "value": " "}}, "ab79b3eb8c7c44d3a5a6054980630c59": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c6101733398d4627aed237fafaed4c48": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_ae139f396f114c0fa3bd431797b2d01d", "IPY_MODEL_8a6de12ae7804e628208d5b765337e2d", "IPY_MODEL_d41fafacbbb440b5b2a109559830df32"], "layout": "IPY_MODEL_ab79b3eb8c7c44d3a5a6054980630c59", "tabbable": null, "tooltip": null}}, "759823e1778e451e9ab361230a94eae7": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "ac4063033b794db08a24f9e612273b95": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "feb613144f004b3e9fe96c55e356b910": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_ac4063033b794db08a24f9e612273b95", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_759823e1778e451e9ab361230a94eae7", "tabbable": null, "tooltip": null, "value": 0.025}}, "f941cd4615874c95bce8143723c60930": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ac4bfd790c984a1eab0fbbd9e98a3948": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "275819350669486a8592d9faccfad2fc": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f941cd4615874c95bce8143723c60930", "placeholder": "\u200b", "style": "IPY_MODEL_ac4bfd790c984a1eab0fbbd9e98a3948", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabab
"}}, "a3041b1f9801440ba0511ccb0ee5fd82": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "675b0a90bccb471e9b024b8409cb5b95": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "cef884ff66e747adb949ae8bf389cd27": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a3041b1f9801440ba0511ccb0ee5fd82", "placeholder": "\u200b", "style": "IPY_MODEL_675b0a90bccb471e9b024b8409cb5b95", "tabbable": null, "tooltip": null, "value": " "}}, "4880f99f19844a6aaef263966cfeddff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "2308df182ef6422b8098a61a5d2ea618": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_275819350669486a8592d9faccfad2fc", "IPY_MODEL_feb613144f004b3e9fe96c55e356b910", "IPY_MODEL_cef884ff66e747adb949ae8bf389cd27"], "layout": "IPY_MODEL_4880f99f19844a6aaef263966cfeddff", "tabbable": null, "tooltip": null}}, "6336c02528854728a0e6f55d504088b4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "55550cd76af1491daa67b88efd717a1b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c93f0998a9854e3f80637993e93c5e3f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_55550cd76af1491daa67b88efd717a1b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6336c02528854728a0e6f55d504088b4", "tabbable": null, "tooltip": null, "value": 0.0005}}, "ffd1c63a44664b2ca4e343ab2094e52c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "aebfd566c1344ace994f4068b2d318d9": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "cb5d4033cf284e7eb2ee66005405892c": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ffd1c63a44664b2ca4e343ab2094e52c", "placeholder": "\u200b", "style": "IPY_MODEL_aebfd566c1344ace994f4068b2d318d9", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "321f65cd908d41bdb7f50dbe33a1a671": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "dc8726e81bc24adcbebe9cb7e06a3d41": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "6e8abcd85421425abead6c3312a28d70": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_321f65cd908d41bdb7f50dbe33a1a671", "placeholder": "\u200b", "style": "IPY_MODEL_dc8726e81bc24adcbebe9cb7e06a3d41", "tabbable": null, "tooltip": null, "value": " "}}, "495c8e4f4a1543b09b7f4366ffc37a96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "05a19644745247e28fa4272a4e04096a": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_cb5d4033cf284e7eb2ee66005405892c", "IPY_MODEL_c93f0998a9854e3f80637993e93c5e3f", "IPY_MODEL_6e8abcd85421425abead6c3312a28d70"], "layout": "IPY_MODEL_495c8e4f4a1543b09b7f4366ffc37a96", "tabbable": null, "tooltip": null}}, "8359d20cde1143bca01a97e5404aa25f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "029f6335601c432c97cbac786cb104c2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "bfeef19690894b74965c71c438994a80": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_029f6335601c432c97cbac786cb104c2", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8359d20cde1143bca01a97e5404aa25f", "tabbable": null, "tooltip": null, "value": 0.0005}}, "d4c2af1b1b23462d877fd921a8f71c2b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "46047b49967c453b9f7ea56b03947fed": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "045ce376e41d44fb8bf0d901a70fee41": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d4c2af1b1b23462d877fd921a8f71c2b", "placeholder": "\u200b", "style": "IPY_MODEL_46047b49967c453b9f7ea56b03947fed", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "a8eeea35cc72420282c6e6e194718709": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ab092328a87949a1b25929048439e59f": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "5fec9c0def1c478091c9125a46a4d419": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a8eeea35cc72420282c6e6e194718709", "placeholder": "\u200b", "style": "IPY_MODEL_ab092328a87949a1b25929048439e59f", "tabbable": null, "tooltip": null, "value": " "}}, "b986b8a842f44da8808263c40d4662b6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f6507af52c42422ca1005a778c672feb": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_045ce376e41d44fb8bf0d901a70fee41", "IPY_MODEL_bfeef19690894b74965c71c438994a80", "IPY_MODEL_5fec9c0def1c478091c9125a46a4d419"], "layout": "IPY_MODEL_b986b8a842f44da8808263c40d4662b6", "tabbable": null, "tooltip": null}}, "0b9f838c83b14ee18694a82941f7ae0c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "11f11c52d28e472ca41fd00ce7e525a5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c492ce6d4d954bbc9c0b8c26fe23958e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_11f11c52d28e472ca41fd00ce7e525a5", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0b9f838c83b14ee18694a82941f7ae0c", "tabbable": null, "tooltip": null, "value": 0.0005}}, "834f5b6665f24412aac8f37fab832906": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "00a938fa463342c9ba013c0319b1a258": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d3113573d5464f4ca2a0869893b5d520": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_834f5b6665f24412aac8f37fab832906", "placeholder": "\u200b", "style": "IPY_MODEL_00a938fa463342c9ba013c0319b1a258", "tabbable": null, "tooltip": null, "value": "\n Receptor: nmda
"}}, "06a526c9056e4263bdd4045a22a89c3c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8fe1c617de8b478190cd93f80624504c": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1483c90f58be475aa7f843a40f65daf4": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_06a526c9056e4263bdd4045a22a89c3c", "placeholder": "\u200b", "style": "IPY_MODEL_8fe1c617de8b478190cd93f80624504c", "tabbable": null, "tooltip": null, "value": " "}}, "1c71e5ab81804d9296ae34a4b4090c87": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "29a27165f1ae4f0c85f49f3841c7c3e1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_d3113573d5464f4ca2a0869893b5d520", "IPY_MODEL_c492ce6d4d954bbc9c0b8c26fe23958e", "IPY_MODEL_1483c90f58be475aa7f843a40f65daf4"], "layout": "IPY_MODEL_1c71e5ab81804d9296ae34a4b4090c87", "tabbable": null, "tooltip": null}}, "a66787434cbc4ddd94bf66d1065b8d9c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "904df197aeff42a296ab1aa7d2a68a79": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_8bed47f4ac244cbf923e9d5481c51eb1"], "layout": "IPY_MODEL_a66787434cbc4ddd94bf66d1065b8d9c", "tabbable": null, "tooltip": null}}, "ce2999b5ec6043d0b442f681ac245f22": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8d11af7ad1ff45a2865cde2391dad5ab": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_ff300104c0fa4bd5ab3d650b910fe1af", "IPY_MODEL_b4667964f3cf46cab94ffff8456b7cc7"], "layout": "IPY_MODEL_ce2999b5ec6043d0b442f681ac245f22", "tabbable": null, "tooltip": null}}, "2af5750d4f5f46318a0c61ce2ada5cd1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f8699c29aa674cb6951cafc7549fac4f": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_816fbab21f124e708ab03ccc4a14124a"], "layout": "IPY_MODEL_2af5750d4f5f46318a0c61ce2ada5cd1", "tabbable": null, "tooltip": null}}, "ef6e186aac694fd1acf1cb5014529d08": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3b11de5a4e3142079c75f2d31638fe08": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_42a435d152534a68b8a4de69719901c1"], "layout": "IPY_MODEL_ef6e186aac694fd1acf1cb5014529d08", "tabbable": null, "tooltip": null}}, "47351187a1364561aa7a06e0a891f1c7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f302f38f44dc4c778b21ce98d43a21be": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_0bda35b3beee46a8935c3bfa5864b331", "IPY_MODEL_f2715f74bc0d403f876965e15537aca6"], "layout": "IPY_MODEL_47351187a1364561aa7a06e0a891f1c7", "tabbable": null, "tooltip": null}}, "9045ec6f2c18416488010377727793a6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "43f7ff417d074f31a8b3f8f474b2efc7": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_667e5c5067c44d7187207031748364a8"], "layout": "IPY_MODEL_9045ec6f2c18416488010377727793a6", "tabbable": null, "tooltip": null}}, "7ce37485a77b4d2d965c47dd61bfe1d5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3f658c52b70b41cf9322b2dbb927f86a": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_a804eabb02e14d54a73460ce9dd04c0c"], "layout": "IPY_MODEL_7ce37485a77b4d2d965c47dd61bfe1d5", "tabbable": null, "tooltip": null}}, "1f5fcecc942446c28e9de7ed29941d4b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9570d2c594274c79b65573c4ce721507": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_726283e2229e4009bdcd6871ea28153d"], "layout": "IPY_MODEL_1f5fcecc942446c28e9de7ed29941d4b", "tabbable": null, "tooltip": null}}, "dfc462c548314a038a556c8f9d0262de": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "78f0074366b44caa811d8e74c17d86b1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_c02a39cc64d84170aa6f5d7f2f4314e2"], "layout": "IPY_MODEL_dfc462c548314a038a556c8f9d0262de", "tabbable": null, "tooltip": null}}, "a39eb6a08a8e437faed826ac22bd4821": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "48cd2b25478347df8fce2f5229031711": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_c6101733398d4627aed237fafaed4c48", "IPY_MODEL_2308df182ef6422b8098a61a5d2ea618"], "layout": "IPY_MODEL_a39eb6a08a8e437faed826ac22bd4821", "tabbable": null, "tooltip": null}}, "1b2f557e627843f2855d4d15801a345c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "989d3fb2f8644c26b5a6d90510a4f381": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_05a19644745247e28fa4272a4e04096a"], "layout": "IPY_MODEL_1b2f557e627843f2855d4d15801a345c", "tabbable": null, "tooltip": null}}, "c8b57b87dcb8468bae9c4a92806e67fe": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "10c3cbc7953d46f08ae27f9cf0ee6eed": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_f6507af52c42422ca1005a778c672feb", "IPY_MODEL_29a27165f1ae4f0c85f49f3841c7c3e1"], "layout": "IPY_MODEL_c8b57b87dcb8468bae9c4a92806e67fe", "tabbable": null, "tooltip": null}}, "05a16581e90c494bbeae295e11253f8e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9c3f0cc1d8034454878b2d60ff89d0ec": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": ["IPY_MODEL_904df197aeff42a296ab1aa7d2a68a79", "IPY_MODEL_8d11af7ad1ff45a2865cde2391dad5ab", "IPY_MODEL_f8699c29aa674cb6951cafc7549fac4f", "IPY_MODEL_3b11de5a4e3142079c75f2d31638fe08", "IPY_MODEL_f302f38f44dc4c778b21ce98d43a21be", "IPY_MODEL_43f7ff417d074f31a8b3f8f474b2efc7", "IPY_MODEL_3f658c52b70b41cf9322b2dbb927f86a", "IPY_MODEL_9570d2c594274c79b65573c4ce721507", "IPY_MODEL_78f0074366b44caa811d8e74c17d86b1", "IPY_MODEL_48cd2b25478347df8fce2f5229031711", "IPY_MODEL_989d3fb2f8644c26b5a6d90510a4f381", "IPY_MODEL_10c3cbc7953d46f08ae27f9cf0ee6eed"], "layout": "IPY_MODEL_05a16581e90c494bbeae295e11253f8e", "selected_index": null, "tabbable": null, "titles": ["L2_basket\u2192L2_basket (soma)", "L2_basket\u2192L2_pyramidal (soma)", "L2_basket\u2192L5_pyramidal (distal)", "L2_pyramidal\u2192L2_basket (soma)", "L2_pyramidal\u2192L2_pyramidal (proximal)", "L2_pyramidal\u2192L5_basket (soma)", "L2_pyramidal\u2192L5_pyramidal (proximal)", "L2_pyramidal\u2192L5_pyramidal (distal)", "L5_basket\u2192L5_basket (soma)", "L5_basket\u2192L5_pyramidal (soma)", "L5_pyramidal\u2192L5_basket (soma)", "L5_pyramidal\u2192L5_pyramidal (proximal)"], "tooltip": null}}, "7728e64db2024d349d6634523b446387": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fc0f41aec77a4db294296fd590ccc708": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8706627447734032ae4169221cb5ea20": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7728e64db2024d349d6634523b446387", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_fc0f41aec77a4db294296fd590ccc708", "tabbable": null, "tooltip": null, "value": 63.53}}, "ad171148ab9c4800ab76df13f66b68ab": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d4b4108d17f943cba815de23c8a1da9f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "b6d17045062349a49413f5fc2233ed4c": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_ad171148ab9c4800ab76df13f66b68ab", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d4b4108d17f943cba815de23c8a1da9f", "tabbable": null, "tooltip": null, "value": 3.85}}, "8d53ea546cae47848935f833adeab75a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "049c234ec1484308b10710118cbfad29": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "59c0dde9f80e4ca2b23e10d07e21cb6d": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8d53ea546cae47848935f833adeab75a", "step": 1, "style": "IPY_MODEL_049c234ec1484308b10710118cbfad29", "tabbable": null, "tooltip": null, "value": 1}}, "f77a295dfc28459690b3c85780ee50c4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0de46a96356049d3b3e3d13d82dca015": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "ff69adb580e747dbb1a080db46e79d69": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_f77a295dfc28459690b3c85780ee50c4", "step": 1, "style": "IPY_MODEL_0de46a96356049d3b3e3d13d82dca015", "tabbable": null, "tooltip": null, "value": 2}}, "1cf6933fc37c4e9883547e4b5384d4e0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "78945e22860d462898cfadcf5f00f4ed": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "7967e2b109d84ce48cb9fd2f8be68f2d": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_1cf6933fc37c4e9883547e4b5384d4e0", "style": "IPY_MODEL_78945e22860d462898cfadcf5f00f4ed", "tabbable": null, "tooltip": null, "value": false}}, "77cc9c90215243ac8a9af08820b22d77": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7c1e4bc5036b457b90610307a441d60d": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "956ecf50cfc843e9842fabce90c5f272": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_77cc9c90215243ac8a9af08820b22d77", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_7c1e4bc5036b457b90610307a441d60d", "tabbable": null, "tooltip": null, "value": 0.1423}}, "2bf0efba57f245699970688649c7b700": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0a6cccdd678940328b3873efac349495": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "399558d5990249439de35a4fc5168c59": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_2bf0efba57f245699970688649c7b700", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0a6cccdd678940328b3873efac349495", "tabbable": null, "tooltip": null, "value": 0.080074}}, "1a64b09af491407ea38c0ee9a40faaf9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "cd0fcddf131a4b198f393ea9e44c3801": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "27b62689c7664c59a2b4cb77e75f96ff": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1a64b09af491407ea38c0ee9a40faaf9", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_cd0fcddf131a4b198f393ea9e44c3801", "tabbable": null, "tooltip": null, "value": 0.1}}, "d631de324f4746f4a88f00b50284ee99": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e9731d4ad5844e75bdb979c4f283b997": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "f3ecb7d6314e43b7b26d626871fab3f9": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d631de324f4746f4a88f00b50284ee99", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_e9731d4ad5844e75bdb979c4f283b997", "tabbable": null, "tooltip": null, "value": 7e-06}}, "4099d1ef72374abea397d652fdec8a36": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a7615af945714d0bbd9ebd18327a4879": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "dd0866b3ed9b4ec38b1171d2696f8d81": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_4099d1ef72374abea397d652fdec8a36", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a7615af945714d0bbd9ebd18327a4879", "tabbable": null, "tooltip": null, "value": 0.004317}}, "247dff8d19c549c9a3eb741b68fd399d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0888464e66764d058dbcdf3fc1a6dae6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "2bdc7c5471af430b98e95a0dfe6d5a27": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_247dff8d19c549c9a3eb741b68fd399d", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_0888464e66764d058dbcdf3fc1a6dae6", "tabbable": null, "tooltip": null, "value": 0.1}}, "cf5be0ef46e94260a97f5405369ccb93": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "168fa57953f04db3864e6011ac20019a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "663fdfa1ba7743cbabff7472dd5f03c4": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_cf5be0ef46e94260a97f5405369ccb93", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_168fa57953f04db3864e6011ac20019a", "tabbable": null, "tooltip": null, "value": 0.006562}}, "1b896beff2464a64992b77b93cfd0d5b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c251a84b48294d0589b15d56ac457e4a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "01d1b98d9bfb4a53a765fdfa4ec5a72c": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1b896beff2464a64992b77b93cfd0d5b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_c251a84b48294d0589b15d56ac457e4a", "tabbable": null, "tooltip": null, "value": 0.019482}}, "5eab6f85c9504905ae26da480f44a8a8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "341b6d5f9fa8413da06aae284e2c8718": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "9fa6ee86493441f9b42229b5227c72dc": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eab6f85c9504905ae26da480f44a8a8", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_341b6d5f9fa8413da06aae284e2c8718", "tabbable": null, "tooltip": null, "value": 0.1}}, "a4a6fbe5b7e14d51a9c275d19691e31d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "15a29c9633af4a9fa73f7cd387ea779b": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "3a66dc2b5d8c498180304c6d80f97f79": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a4a6fbe5b7e14d51a9c275d19691e31d", "placeholder": "\u200b", "style": "IPY_MODEL_15a29c9633af4a9fa73f7cd387ea779b", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "e4d89b42d27245db98bead43428c8e00": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e93d04951ea74b6c8583669530fba742": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "8b7c32253a55426c88ceeb152d9e39a3": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e4d89b42d27245db98bead43428c8e00", "placeholder": "\u200b", "style": "IPY_MODEL_e93d04951ea74b6c8583669530fba742", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "049ac7ce421441b9925bede4620d7563": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "022ce96bf3504cd2b83fcb2d56bec127": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "0d3edc88bcae453698a7bba30c9d0648": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_049ac7ce421441b9925bede4620d7563", "placeholder": "\u200b", "style": "IPY_MODEL_022ce96bf3504cd2b83fcb2d56bec127", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "f2f334dd25ba441e8eda935316d4baef": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3cec0c667cf04eb783cb4078f2f3e384": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_8706627447734032ae4169221cb5ea20", "IPY_MODEL_b6d17045062349a49413f5fc2233ed4c", "IPY_MODEL_59c0dde9f80e4ca2b23e10d07e21cb6d", "IPY_MODEL_ff69adb580e747dbb1a080db46e79d69", "IPY_MODEL_7967e2b109d84ce48cb9fd2f8be68f2d", "IPY_MODEL_3a66dc2b5d8c498180304c6d80f97f79", "IPY_MODEL_956ecf50cfc843e9842fabce90c5f272", "IPY_MODEL_f3ecb7d6314e43b7b26d626871fab3f9", "IPY_MODEL_663fdfa1ba7743cbabff7472dd5f03c4", "IPY_MODEL_8b7c32253a55426c88ceeb152d9e39a3", "IPY_MODEL_399558d5990249439de35a4fc5168c59", "IPY_MODEL_dd0866b3ed9b4ec38b1171d2696f8d81", "IPY_MODEL_01d1b98d9bfb4a53a765fdfa4ec5a72c", "IPY_MODEL_0d3edc88bcae453698a7bba30c9d0648", "IPY_MODEL_27b62689c7664c59a2b4cb77e75f96ff", "IPY_MODEL_2bdc7c5471af430b98e95a0dfe6d5a27", "IPY_MODEL_9fa6ee86493441f9b42229b5227c72dc"], "layout": "IPY_MODEL_f2f334dd25ba441e8eda935316d4baef", "tabbable": null, "tooltip": null}}, "3e4d18fbc0bf45058798c3e031a4534e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d52269e2acca406ba80befbda7214ee7": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "fd3220414a6349f09bd2e0c0f00f7383": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3e4d18fbc0bf45058798c3e031a4534e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d52269e2acca406ba80befbda7214ee7", "tabbable": null, "tooltip": null, "value": 26.61}}, "dc3b8bd5b8ea47d39779694d9276eb4a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "614fe2a37884408299b1c2457fdb2de9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "0acb1fc55a3041f4b66e44c8b145e7cf": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_dc3b8bd5b8ea47d39779694d9276eb4a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_614fe2a37884408299b1c2457fdb2de9", "tabbable": null, "tooltip": null, "value": 2.47}}, "bb79868f221a40bfbaecdf0719997382": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ec4bdefd3ae44a12ab618b857f9aaba4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "879235025ebc48af9dd182f9ac0f2811": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_bb79868f221a40bfbaecdf0719997382", "step": 1, "style": "IPY_MODEL_ec4bdefd3ae44a12ab618b857f9aaba4", "tabbable": null, "tooltip": null, "value": 1}}, "0f4c27aca94e415da71ce19dbbf373b1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4ba480ba56b4464fab1781616b0ba69b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "5a2efcb22c57418aa3821f1a4519c651": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0f4c27aca94e415da71ce19dbbf373b1", "step": 1, "style": "IPY_MODEL_4ba480ba56b4464fab1781616b0ba69b", "tabbable": null, "tooltip": null, "value": 2}}, "48bd44291305495ba0500011228a3a3d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "81c4d4ac790e43c78109494587e7733a": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "8e87581ac5974e67b2abb8340a78b968": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_48bd44291305495ba0500011228a3a3d", "style": "IPY_MODEL_81c4d4ac790e43c78109494587e7733a", "tabbable": null, "tooltip": null, "value": false}}, "7afb567852764bb382fb82bb94f349cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "be16c04fd11341ab9d2e45ae20104ca8": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8cb4616598504f99b67f27d6e63bb98b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7afb567852764bb382fb82bb94f349cd", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_be16c04fd11341ab9d2e45ae20104ca8", "tabbable": null, "tooltip": null, "value": 0.00865}}, "662561d10a4a423b89d28c955203e75d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "58bc964556b8408aa23ccaa54ea8f4ac": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "1af5d1e3d23c4b77bc6ed86a9bec7351": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_662561d10a4a423b89d28c955203e75d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_58bc964556b8408aa23ccaa54ea8f4ac", "tabbable": null, "tooltip": null, "value": 0.0}}, "33983135a9ab4d0e8b0d3a0ade01146f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d51fcc3faece49a08170f7f060e3f56a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "d79e397c05b845deac96c5b53a221c0f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_33983135a9ab4d0e8b0d3a0ade01146f", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_d51fcc3faece49a08170f7f060e3f56a", "tabbable": null, "tooltip": null, "value": 1.0}}, "d75884dd4e7844aca94fa4c8bbb6dfac": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "49f29dde73584202afae89fe98952b72": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "b8ca1afc9588438bb00f43df40b9d6c8": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d75884dd4e7844aca94fa4c8bbb6dfac", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_49f29dde73584202afae89fe98952b72", "tabbable": null, "tooltip": null, "value": 0.01525}}, "6365adb0d57e46ba8c5774488aee7c45": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ae257d5eae1b46b7a78ee7f1df6d00cc": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "f1db7b2e9e984de59e85fa4a092c2b00": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_6365adb0d57e46ba8c5774488aee7c45", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_ae257d5eae1b46b7a78ee7f1df6d00cc", "tabbable": null, "tooltip": null, "value": 0.0}}, "08fdeeb84d744225a58248d5daedca29": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6ef501b37cfb4ceead6e29de8b3558da": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "c7759c8e2de6459087e0fdbecc8ea68e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_08fdeeb84d744225a58248d5daedca29", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_6ef501b37cfb4ceead6e29de8b3558da", "tabbable": null, "tooltip": null, "value": 0.1}}, "d8f0e40f9dcf4d93858549643688ec3d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3cd0ebd862d54a5fb59c8964897f95f4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "14d83cd016de493ab96c01a36d18a346": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d8f0e40f9dcf4d93858549643688ec3d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_3cd0ebd862d54a5fb59c8964897f95f4", "tabbable": null, "tooltip": null, "value": 0.19934}}, "90ae3ca0ba714a1f80d13b08a2d8fe48": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b257bc47e8e94075bf90e6b9b5b39fbb": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "4fc8be1f3aa64e0a966caf5298a57cd2": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_90ae3ca0ba714a1f80d13b08a2d8fe48", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_b257bc47e8e94075bf90e6b9b5b39fbb", "tabbable": null, "tooltip": null, "value": 0.0}}, "db5cbb22fd914048b55256ad095a21b3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fdbd0e40b1bd4b9291c4e125971fa7c5": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "ddb4da011e1f4178802bea23ae640f97": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_db5cbb22fd914048b55256ad095a21b3", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_fdbd0e40b1bd4b9291c4e125971fa7c5", "tabbable": null, "tooltip": null, "value": 1.0}}, "3bb1bbcd76524a959f5415cf6d6af70a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6a71e418699f424cab1a4975f649fa45": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8d0b2f3208674f77ae469de2f39d508a": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3bb1bbcd76524a959f5415cf6d6af70a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6a71e418699f424cab1a4975f649fa45", "tabbable": null, "tooltip": null, "value": 0.08831}}, "5b6427c890d24405a907fe247a4c6159": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a9230d92f73044d29905664ad4a762b2": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a28f6b297fe44ab18ed7c2622abc14ee": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5b6427c890d24405a907fe247a4c6159", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a9230d92f73044d29905664ad4a762b2", "tabbable": null, "tooltip": null, "value": 0.0}}, "a1805ec1e44940279710ad024933e875": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4fa9c858d8b64f9b9e33ba87b844d703": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "9060e1d5f62545a69efd7a12b7784eda": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a1805ec1e44940279710ad024933e875", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_4fa9c858d8b64f9b9e33ba87b844d703", "tabbable": null, "tooltip": null, "value": 0.1}}, "866a332a2838412aa643b52a72ec3432": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6e78a775cf3f40b2b3b92baa6d277b1a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "3ae4c3041c7443e9b4949c31ee224ec3": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_866a332a2838412aa643b52a72ec3432", "placeholder": "\u200b", "style": "IPY_MODEL_6e78a775cf3f40b2b3b92baa6d277b1a", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "8ad7e9c013fb46689b2aba1cd4633d41": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "331e6f9d5b3a4acca51f91e8f828512c": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d17cad5614594df9a7210f2f963634d9": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_8ad7e9c013fb46689b2aba1cd4633d41", "placeholder": "\u200b", "style": "IPY_MODEL_331e6f9d5b3a4acca51f91e8f828512c", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "6caa57ba77ba42c28c2f343b50254d2c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8e851641c35942f78478194082699a5f": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "185e04a8405d438a801a0f186050a686": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_6caa57ba77ba42c28c2f343b50254d2c", "placeholder": "\u200b", "style": "IPY_MODEL_8e851641c35942f78478194082699a5f", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "571dedbfe8984c7eb8389721c8547bd6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "cb07c305d3794257bfc25d534141ebd5": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fd3220414a6349f09bd2e0c0f00f7383", "IPY_MODEL_0acb1fc55a3041f4b66e44c8b145e7cf", "IPY_MODEL_879235025ebc48af9dd182f9ac0f2811", "IPY_MODEL_5a2efcb22c57418aa3821f1a4519c651", "IPY_MODEL_8e87581ac5974e67b2abb8340a78b968", "IPY_MODEL_3ae4c3041c7443e9b4949c31ee224ec3", "IPY_MODEL_8cb4616598504f99b67f27d6e63bb98b", "IPY_MODEL_b8ca1afc9588438bb00f43df40b9d6c8", "IPY_MODEL_14d83cd016de493ab96c01a36d18a346", "IPY_MODEL_8d0b2f3208674f77ae469de2f39d508a", "IPY_MODEL_d17cad5614594df9a7210f2f963634d9", "IPY_MODEL_1af5d1e3d23c4b77bc6ed86a9bec7351", "IPY_MODEL_f1db7b2e9e984de59e85fa4a092c2b00", "IPY_MODEL_4fc8be1f3aa64e0a966caf5298a57cd2", "IPY_MODEL_a28f6b297fe44ab18ed7c2622abc14ee", "IPY_MODEL_185e04a8405d438a801a0f186050a686", "IPY_MODEL_d79e397c05b845deac96c5b53a221c0f", "IPY_MODEL_c7759c8e2de6459087e0fdbecc8ea68e", "IPY_MODEL_ddb4da011e1f4178802bea23ae640f97", "IPY_MODEL_9060e1d5f62545a69efd7a12b7784eda"], "layout": "IPY_MODEL_571dedbfe8984c7eb8389721c8547bd6", "tabbable": null, "tooltip": null}}, "6f08c7a6766042a4b875e424ef69628f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "27e720d0038747489efd684f4a2f8831": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "c44c1fbaaf3a44cbbc924d098337ffdb": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_6f08c7a6766042a4b875e424ef69628f", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_27e720d0038747489efd684f4a2f8831", "tabbable": null, "tooltip": null, "value": 137.12}}, "a01e5810e0b14714a5311e2eeae86a3e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "399c0bcf1ee544609f20c4158c8d1aa9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "eaa76470046f455dadb76ef9e8a538d0": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a01e5810e0b14714a5311e2eeae86a3e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_399c0bcf1ee544609f20c4158c8d1aa9", "tabbable": null, "tooltip": null, "value": 8.33}}, "41eac0c5760645d6aa3488c95284b624": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7740ed0fe78d45588b17468b6ebc5883": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "3bd8f02db95b4dbbb916cb782eafae6c": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_41eac0c5760645d6aa3488c95284b624", "step": 1, "style": "IPY_MODEL_7740ed0fe78d45588b17468b6ebc5883", "tabbable": null, "tooltip": null, "value": 1}}, "60750fc3912d430289e2980bc1af9538": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "59e17b93680542ca8cfcf0303d603241": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "33c5c49c37f7485c834737e507410bd2": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_60750fc3912d430289e2980bc1af9538", "step": 1, "style": "IPY_MODEL_59e17b93680542ca8cfcf0303d603241", "tabbable": null, "tooltip": null, "value": 2}}, "b353aead6697460087c9a716a8bcd524": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4b61051535e34c0e946ef6c6d751a6a0": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "bf4f4461bba04f81bf9206e82975c5e6": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_b353aead6697460087c9a716a8bcd524", "style": "IPY_MODEL_4b61051535e34c0e946ef6c6d751a6a0", "tabbable": null, "tooltip": null, "value": false}}, "88f4ce24567a4b29801bd8382625a49c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1713467d20c54a2184a168e238bef711": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "dec249378ed74929b9ba490e64709275": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_88f4ce24567a4b29801bd8382625a49c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1713467d20c54a2184a168e238bef711", "tabbable": null, "tooltip": null, "value": 0.684013}}, "0df790a105c049a69f24a4aa91e557f7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "812655983434443ba07e6db64f9989e7": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "053b363d851949c086b4769f47bcd405": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0df790a105c049a69f24a4aa91e557f7", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_812655983434443ba07e6db64f9989e7", "tabbable": null, "tooltip": null, "value": 0.0}}, "16b24584a9e14ecebff50887b184182e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "654085f432d14c13ba42dc8ee26c0b3d": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a28e7508b86a47f187058b560a0e2e16": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_16b24584a9e14ecebff50887b184182e", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_654085f432d14c13ba42dc8ee26c0b3d", "tabbable": null, "tooltip": null, "value": 1.0}}, "aac2f4b9580e4b63bf33c1b49dbb3c1a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f7ff1b52f24644bea0250ff117e6498b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "6539849061e54bd392ec13792a3d1f3e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_aac2f4b9580e4b63bf33c1b49dbb3c1a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f7ff1b52f24644bea0250ff117e6498b", "tabbable": null, "tooltip": null, "value": 1.43884}}, "3622e217d4f44a268b3bef5064eecdf0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1023850db4a541ab929fa67cbc6bace4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "bbec6b999d4f48acbd86d425d447fffb": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3622e217d4f44a268b3bef5064eecdf0", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1023850db4a541ab929fa67cbc6bace4", "tabbable": null, "tooltip": null, "value": 0.0}}, "8c4a5a88aac04f5b9c3d3b5652fd1ea2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "bcb2c9e6f723431fb4baa29c44e6e4c1": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "70e254af19c1450b9d25776cb9a93bec": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8c4a5a88aac04f5b9c3d3b5652fd1ea2", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_bcb2c9e6f723431fb4baa29c44e6e4c1", "tabbable": null, "tooltip": null, "value": 0.1}}, "b9138065681c4c2ebb1c350c4da6b210": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8be2622d88f74bd9afefc70fcc1f357d": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "887dac10a63f42fdbcb20f5faf4ac365": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_b9138065681c4c2ebb1c350c4da6b210", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8be2622d88f74bd9afefc70fcc1f357d", "tabbable": null, "tooltip": null, "value": 0.008958}}, "f9ec8269c6cf410db2306d960a469ea0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8f9979775276481c9707541c527491c0": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "735ffe43c5a74abaa10a4be472782b65": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_f9ec8269c6cf410db2306d960a469ea0", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8f9979775276481c9707541c527491c0", "tabbable": null, "tooltip": null, "value": 0.0}}, "45ea64ae3e5241d09f2e8d558846db1e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "92f048d820ef406e8e867a58a3647cde": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8bd52374a10e45409fb84776c76ebbc5": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_45ea64ae3e5241d09f2e8d558846db1e", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_92f048d820ef406e8e867a58a3647cde", "tabbable": null, "tooltip": null, "value": 1.0}}, "60218b238b284c00acc2bef6f8759bae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "909da4be317b40bab7c6bb2c08503a3b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "68894daa83b6482391982ea8c52f8374": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_60218b238b284c00acc2bef6f8759bae", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_909da4be317b40bab7c6bb2c08503a3b", "tabbable": null, "tooltip": null, "value": 3e-06}}, "42c7dc0b8b59457a9808b43d7de0bcdc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9b5b812204fc4ebf8355782b9f913500": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a89c710737d24358ade53e3c295cd114": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_42c7dc0b8b59457a9808b43d7de0bcdc", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9b5b812204fc4ebf8355782b9f913500", "tabbable": null, "tooltip": null, "value": 0.0}}, "0fd84e77d3754fb889ffd2183f41cded": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e9ecc41fad0148d5b78819c72699fa59": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "c5264e6984ca460bbf8e91278a58d320": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0fd84e77d3754fb889ffd2183f41cded", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_e9ecc41fad0148d5b78819c72699fa59", "tabbable": null, "tooltip": null, "value": 0.1}}, "7f60ac88654c4a33ba0a73e973c15908": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6c4fd2eab90c4ddab076e8ef9a50f658": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "87a999fa15804246a33c32129ab99f4c": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_7f60ac88654c4a33ba0a73e973c15908", "placeholder": "\u200b", "style": "IPY_MODEL_6c4fd2eab90c4ddab076e8ef9a50f658", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "01bd658c730642ae82f8f57387c72ce1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a9c8c51bda634c60a592698e0a650ca1": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "acf92a2ba5424f89a97da62c3df8d3b4": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_01bd658c730642ae82f8f57387c72ce1", "placeholder": "\u200b", "style": "IPY_MODEL_a9c8c51bda634c60a592698e0a650ca1", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "63ccd1ba0b75463cbd226510690fbeff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f5c5361ef96b4d15ae22c5f5f930e092": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "46cfd1fedd4a46bc9f1322890325a9f4": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_63ccd1ba0b75463cbd226510690fbeff", "placeholder": "\u200b", "style": "IPY_MODEL_f5c5361ef96b4d15ae22c5f5f930e092", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "1f15d16b52f248009195333d5103a92c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9d8bde7fa81c4cf6af18f2471fdd7226": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_c44c1fbaaf3a44cbbc924d098337ffdb", "IPY_MODEL_eaa76470046f455dadb76ef9e8a538d0", "IPY_MODEL_3bd8f02db95b4dbbb916cb782eafae6c", "IPY_MODEL_33c5c49c37f7485c834737e507410bd2", "IPY_MODEL_bf4f4461bba04f81bf9206e82975c5e6", "IPY_MODEL_87a999fa15804246a33c32129ab99f4c", "IPY_MODEL_dec249378ed74929b9ba490e64709275", "IPY_MODEL_6539849061e54bd392ec13792a3d1f3e", "IPY_MODEL_887dac10a63f42fdbcb20f5faf4ac365", "IPY_MODEL_68894daa83b6482391982ea8c52f8374", "IPY_MODEL_acf92a2ba5424f89a97da62c3df8d3b4", "IPY_MODEL_053b363d851949c086b4769f47bcd405", "IPY_MODEL_bbec6b999d4f48acbd86d425d447fffb", "IPY_MODEL_735ffe43c5a74abaa10a4be472782b65", "IPY_MODEL_a89c710737d24358ade53e3c295cd114", "IPY_MODEL_46cfd1fedd4a46bc9f1322890325a9f4", "IPY_MODEL_a28e7508b86a47f187058b560a0e2e16", "IPY_MODEL_70e254af19c1450b9d25776cb9a93bec", "IPY_MODEL_8bd52374a10e45409fb84776c76ebbc5", "IPY_MODEL_c5264e6984ca460bbf8e91278a58d320"], "layout": "IPY_MODEL_1f15d16b52f248009195333d5103a92c", "tabbable": null, "tooltip": null}}, "c5cac0b813e84ce599f1e53ec6b1d137": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "02b6372f0e8f419aaf6f3b1070add6d1": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": ["IPY_MODEL_3cec0c667cf04eb783cb4078f2f3e384", "IPY_MODEL_cb07c305d3794257bfc25d534141ebd5", "IPY_MODEL_9d8bde7fa81c4cf6af18f2471fdd7226"], "layout": "IPY_MODEL_c5cac0b813e84ce599f1e53ec6b1d137", "selected_index": null, "tabbable": null, "titles": ["evdist1 (distal)", "evprox1 (proximal)", "evprox2 (proximal)"], "tooltip": null}}, "236ae9fa3f41490398ce7449f595e81c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "408e3359b9964e4c9a4baf1412d67200": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_236ae9fa3f41490398ce7449f595e81c", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "", "image/png": "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22t6rq5atQpbtmx55vEnTpxAeHg46tevj7lz5+LatWt47733IJPJYGFhgRkzZuDYsWPP1ZiKUqvVeOuttxAXF4e9e/fC1tZWs83Dw0MzLdtjGRkZpXrl/ptMJoO1tXWphYiIKubxTBhDWvJuHtFjDas7oo63PXILi/Fn7J0XOpfWQU+pVEIul5dZb21tjeLi4mcer1AoYG9vrzlGLpfD0/P/e5V4enqW+5hUFwRBwOjRo3Hq1Cns378fzs7Opba3aNECZ86cQW5urmbdoUOH0LJly0qriYjIFF1NeYBLdx5AbmGGVxp7i10OkV4Z2bZkYomfjyVArX7+frNaB70ePXpg3LhxuHbtmmZdXFwcJkyYgB49ejzzeF9f31Lv4P3+++/w8vLSfH337t1y757pwjvvvIO//voLv/32GwAgNTUVqampmunbevbsiWrVqmHkyJG4fPkyVq1ahQ0bNmDixImVVhMRkSl63Anj5UbVILfQerQvIqP2SiNvuNpaIvFeHg7FpT/7gHJoHfS+++472NnZoU6dOnB0dISjoyPq1asHe3t7fPfdd888/q233kJWVpbm6z59+pR63Llt2za0a9dO27Iq7KeffsK9e/fQsmVLeHl5aZbk5JK55SwsLLBr1y6kp6ejadOmCA8Px/fff88x9IiIdEhRpMKO8yWdMDgTBlFZFuZSjGjrBwD49sjzd1J97nH04uLiEB8fD0EQEBwcjNq1az93EcaE4+gRET3bxuhkTP/jAup42WP35PZil0Okl3IKlGg1/yDyi1TYNr4NGvs6abZVNG88973y4OBgBAcHP+/hRERkwtY/6oQxlDNhEJXL3kqGsOa+WH0iESuO3MTKYc20PofWQa+oqAg///wzjhw5goyMDM0UZo8dPXpU6yKIiMh0xKXk4OLtbFhbmKFfE3bCIHqasR0C8OvJJBy6moab6Q8RqOVc0FoHvdGjR2P37t0YMGAA6tWrV6H5bYmIiB5b92he25cberMTBtEzeDpYoW/jatgacxuL9l/H94NDtDpe679h27dvx549e9C6dWttDyUiIhNXoFRhx7mSccHYCYOoYqZ1q4kd5+5gz8UUxKfmoJanfYWP1brXra+vL6ysrLQ9jIiICNvP3UVuYTHqeNmjfjVHscshMgjVneTo37Q6BAAL913X6litg97y5csxffp0xMbGorCwEGq1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"}}], "tabbable": null, "tooltip": null}}, "f3793a2a9b4340ea85ff8d676ee5f3dc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0c0e2a05c5aa476f95503e3804d73103": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_da6c522a46ae4e6ebe3665d26b30085b", "IPY_MODEL_f2148145570744dd91934061ed5ade68"], "layout": "IPY_MODEL_f3793a2a9b4340ea85ff8d676ee5f3dc", "selected_index": 1, "tabbable": null, "titles": ["ax0", "ax1"], "tooltip": null}}, "d373fd9e6c5e44deb802a562aaeecb42": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "db3f2590e9b24599a51d48cf9deaaa1c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "256fc92a3d2e40edba7813ad87f36843": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Simulation Data:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "style": "IPY_MODEL_db3f2590e9b24599a51d48cf9deaaa1c", "tabbable": null, "tooltip": null}}, "5d93d7168b29421d8706887e0375ef42": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "3f019c8c5af545e98a1043f1f51afdcb": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["current dipole", "layer2 dipole", "layer5 dipole", "input histogram", "spikes", "PSD", "spectrogram", "network"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Type:", "description_allow_html": false, "disabled": true, "index": 3, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "style": "IPY_MODEL_5d93d7168b29421d8706887e0375ef42", "tabbable": null, "tooltip": null}}, "26cd106638144d6a9d84491e3b4de6b6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "a115652b96f84fd4bab580b1f6254010": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["None"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Data to Compare:", "description_allow_html": false, "disabled": true, "index": 0, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "style": "IPY_MODEL_26cd106638144d6a9d84491e3b4de6b6", "tabbable": null, "tooltip": null}}, "79eb4f6eda734a869a53cccf065e9c74": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "e4832edfdb18480aafda85be436f8b95": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["viridis", "plasma", "inferno", "magma", "cividis"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Spectrogram Colormap:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "style": "IPY_MODEL_79eb4f6eda734a869a53cccf065e9c74", "tabbable": null, "tooltip": null}}, "37db0004b99f4a95bf483a13721ee562": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "a4f144ac79fe4c44936be9f5daeac5f8": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Dipole Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "step": null, "style": "IPY_MODEL_37db0004b99f4a95bf483a13721ee562", "tabbable": null, "tooltip": null, "value": 30.0}}, "cf75d16a59ac47848b64ea74f05755e1": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "c82be2c8f1a44b04a22efe80934397af": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "step": null, "style": "IPY_MODEL_cf75d16a59ac47848b64ea74f05755e1", "tabbable": null, "tooltip": null, "value": 3000.0}}, "5d4578a744684b06ac86c5e7b3c87235": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "282d9a34c1bc4956a28d00d5db20ec39": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "step": null, "style": "IPY_MODEL_5d4578a744684b06ac86c5e7b3c87235", "tabbable": null, "tooltip": null, "value": 0.0}}, "d02f0849e4bb47d5bbc94a248445d447": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "d0d1c28d6cea43299a3b26f4a7fe2370": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "step": null, "style": "IPY_MODEL_d02f0849e4bb47d5bbc94a248445d447", "tabbable": null, "tooltip": null, "value": 1.0}}, "c3df13d1014a46c9ad47473218fedd24": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "031ee51b2b5a457f9a1784ef83fe2998": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Max Spectral Frequency (Hz):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d373fd9e6c5e44deb802a562aaeecb42", "step": null, "style": "IPY_MODEL_c3df13d1014a46c9ad47473218fedd24", "tabbable": null, "tooltip": null, "value": 100.0}}, "c0e891cf4ef04317b79c8171fe58cd70": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f981e3f5a99f4c93996217b5555627cb": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_23e9434281214dfc8d3abb36db7658f6"], "layout": "IPY_MODEL_c0e891cf4ef04317b79c8171fe58cd70", "tabbable": null, "tooltip": null}}, "7b6379efb6d349b1b716b6f05ac1ce4b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1b0d413ec4ba462b9cd0c07308990a2c": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "cfda1839441e43e49ce254154e03bbb6": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Add plot", "disabled": true, "icon": "", "layout": "IPY_MODEL_7b6379efb6d349b1b716b6f05ac1ce4b", "style": "IPY_MODEL_1b0d413ec4ba462b9cd0c07308990a2c", "tabbable": null, "tooltip": null}}, "fe70af7b4aac44d394402d7b12e003b1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5956b87ce65a438db35b5b382ea682ea": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "43ab0609c0674a1cb8c57ec465d81c35": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Clear axis", "disabled": false, "icon": "", "layout": "IPY_MODEL_fe70af7b4aac44d394402d7b12e003b1", "style": "IPY_MODEL_5956b87ce65a438db35b5b382ea682ea", "tabbable": null, "tooltip": null}}, "99a00fc0e93645bd94d1e7bb0e2055b4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "space-between", "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}}, "099d25711c3046babb91497e1e103a2d": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_cfda1839441e43e49ce254154e03bbb6", "IPY_MODEL_43ab0609c0674a1cb8c57ec465d81c35"], "layout": "IPY_MODEL_99a00fc0e93645bd94d1e7bb0e2055b4", "tabbable": null, "tooltip": null}}, "13fc0fa5a005413ca4d49ebb885b4729": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "da6c522a46ae4e6ebe3665d26b30085b": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_3f019c8c5af545e98a1043f1f51afdcb", "IPY_MODEL_256fc92a3d2e40edba7813ad87f36843", "IPY_MODEL_a4f144ac79fe4c44936be9f5daeac5f8", "IPY_MODEL_c82be2c8f1a44b04a22efe80934397af", "IPY_MODEL_a115652b96f84fd4bab580b1f6254010", "IPY_MODEL_282d9a34c1bc4956a28d00d5db20ec39", "IPY_MODEL_d0d1c28d6cea43299a3b26f4a7fe2370", "IPY_MODEL_031ee51b2b5a457f9a1784ef83fe2998", "IPY_MODEL_e4832edfdb18480aafda85be436f8b95", "IPY_MODEL_099d25711c3046babb91497e1e103a2d", "IPY_MODEL_f981e3f5a99f4c93996217b5555627cb"], "layout": "IPY_MODEL_13fc0fa5a005413ca4d49ebb885b4729", "tabbable": null, "tooltip": null}}, "1e3276b9a75e49628520036563e07449": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "d4f1ddcbb42c4065baa39b1e663cd90a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "3cbba77f54aa425386a80dec5f059238": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Simulation Data:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "style": "IPY_MODEL_d4f1ddcbb42c4065baa39b1e663cd90a", "tabbable": null, "tooltip": null}}, "f8bd39487836423d9effce002b9ca85e": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "d379ad205b81499db7fcbb651c6f89d3": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["current dipole", "layer2 dipole", "layer5 dipole", "input histogram", "spikes", "PSD", "spectrogram", "network"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Type:", "description_allow_html": false, "disabled": true, "index": 0, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "style": "IPY_MODEL_f8bd39487836423d9effce002b9ca85e", "tabbable": null, "tooltip": null}}, "ee06766fbe0143968bd36f3f0f2d3e69": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "975c42fd62bf4ebd97be815975e3772b": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["None"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Data to Compare:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "style": "IPY_MODEL_ee06766fbe0143968bd36f3f0f2d3e69", "tabbable": null, "tooltip": null}}, "911b0f91c8a04a10a1c22b9635f09457": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "b84e67b38f50401ba8f2302fba049080": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["viridis", "plasma", "inferno", "magma", "cividis"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Spectrogram Colormap:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "style": "IPY_MODEL_911b0f91c8a04a10a1c22b9635f09457", "tabbable": null, "tooltip": null}}, "338a43acdd2e4720ba7131ce15ed6573": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "b427fbf2c3164fc8a5a026341bdb3ad8": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Dipole Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "step": null, "style": "IPY_MODEL_338a43acdd2e4720ba7131ce15ed6573", "tabbable": null, "tooltip": null, "value": 30.0}}, "0bb6149e3aa847de989528601b342481": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "027c36096a50429fbd527cfa212bf328": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "step": null, "style": "IPY_MODEL_0bb6149e3aa847de989528601b342481", "tabbable": null, "tooltip": null, "value": 3000.0}}, "7ca1e3b2243e438cbde498dfc2df9919": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "7f4a9ba0a5a343cb881ff13e977da697": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "step": null, "style": "IPY_MODEL_7ca1e3b2243e438cbde498dfc2df9919", "tabbable": null, "tooltip": null, "value": 0.0}}, "2b32e2bd91d7428bac0d103bb601f40f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "fc96d68ec339433494cd2f24020eed9b": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "step": null, "style": "IPY_MODEL_2b32e2bd91d7428bac0d103bb601f40f", "tabbable": null, "tooltip": null, "value": 1.0}}, "48d1370bd75d42a690cacaedd5e494ab": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "22081415cfdb4016b6790d44ddf50350": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Max Spectral Frequency (Hz):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1e3276b9a75e49628520036563e07449", "step": null, "style": "IPY_MODEL_48d1370bd75d42a690cacaedd5e494ab", "tabbable": null, "tooltip": null, "value": 100.0}}, "90ca1e9cf63143ad924bfdb051f80733": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f61c5400add94f76abdf5fcea396c9be": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_2d7d44f524bc45beb744cee0aadfb912"], "layout": "IPY_MODEL_90ca1e9cf63143ad924bfdb051f80733", "tabbable": null, "tooltip": null}}, "804fd2856fbe4f7d918e5fb9b3bbb908": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7bae5ff25160453e81b00b96bcbd0306": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "31cc28cd0f9843e682f78dba22a89149": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Add plot", "disabled": false, "icon": "", "layout": "IPY_MODEL_804fd2856fbe4f7d918e5fb9b3bbb908", "style": "IPY_MODEL_7bae5ff25160453e81b00b96bcbd0306", "tabbable": null, "tooltip": null}}, "0104af16cd6e495a89f81a6b3273a046": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6c36f616b5ce4c67815a2232a72c5023": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "8a006c517aed47a29ca4801ac9c3fc37": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Clear axis", "disabled": false, "icon": "", "layout": "IPY_MODEL_0104af16cd6e495a89f81a6b3273a046", "style": "IPY_MODEL_6c36f616b5ce4c67815a2232a72c5023", "tabbable": null, "tooltip": null}}, "9bd0db09f6e04d8e99f49541ff9b0ecb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "space-between", "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}}, "05039b09c7cd4a7880de6bcf2fbc2d1d": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_31cc28cd0f9843e682f78dba22a89149", "IPY_MODEL_8a006c517aed47a29ca4801ac9c3fc37"], "layout": "IPY_MODEL_9bd0db09f6e04d8e99f49541ff9b0ecb", "tabbable": null, "tooltip": null}}, "db14e9d0426f4809baff28b36763b515": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "f2148145570744dd91934061ed5ade68": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_d379ad205b81499db7fcbb651c6f89d3", "IPY_MODEL_3cbba77f54aa425386a80dec5f059238", "IPY_MODEL_b427fbf2c3164fc8a5a026341bdb3ad8", "IPY_MODEL_027c36096a50429fbd527cfa212bf328", "IPY_MODEL_975c42fd62bf4ebd97be815975e3772b", "IPY_MODEL_7f4a9ba0a5a343cb881ff13e977da697", "IPY_MODEL_fc96d68ec339433494cd2f24020eed9b", "IPY_MODEL_22081415cfdb4016b6790d44ddf50350", "IPY_MODEL_b84e67b38f50401ba8f2302fba049080", "IPY_MODEL_05039b09c7cd4a7880de6bcf2fbc2d1d", "IPY_MODEL_f61c5400add94f76abdf5fcea396c9be"], "layout": "IPY_MODEL_db14e9d0426f4809baff28b36763b515", "tabbable": null, "tooltip": null}}, "93d0823a77ed4fcebda13784a68de435": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "d1e7e680b5c84024a3c8080d2134b3b6": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "03d9eabd338d475a9188d6d1fc09fc98": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "danger", "description": "Close Figure 1", "disabled": false, "icon": "close", "layout": "IPY_MODEL_93d0823a77ed4fcebda13784a68de435", "style": "IPY_MODEL_d1e7e680b5c84024a3c8080d2134b3b6", "tabbable": null, "tooltip": null}}, "3835fdeea1974e54b45ac6ee80e7f1be": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d4dfade458ca4b30aeea0f652f55c53d": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_03d9eabd338d475a9188d6d1fc09fc98", "IPY_MODEL_0c0e2a05c5aa476f95503e3804d73103"], "layout": "IPY_MODEL_3835fdeea1974e54b45ac6ee80e7f1be", "tabbable": null, "tooltip": null}}, "cd5203cb4ee14c5cb3df46722bb3887e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b2d1f4b4fecb4dfbb8ffe0b0cad9a434": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "23e9434281214dfc8d3abb36db7658f6": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_cd5203cb4ee14c5cb3df46722bb3887e", "placeholder": "\u200b", "style": "IPY_MODEL_b2d1f4b4fecb4dfbb8ffe0b0cad9a434", "tabbable": null, "tooltip": null, "value": "default: input histogram"}}, "ed9cfaed82024de79f94e14f987a62ee": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9b848b68395342a885b571947e05c60f": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "2d7d44f524bc45beb744cee0aadfb912": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ed9cfaed82024de79f94e14f987a62ee", "placeholder": "\u200b", "style": "IPY_MODEL_9b848b68395342a885b571947e05c60f", "tabbable": null, "tooltip": null, "value": "default: current dipole"}}}, "version_major": 2, "version_minor": 0}
+{"state": {"cca8c01084dd4297aabf87c1d271caa4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "30px", "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": "auto"}}, "17f1e13fe11443918b3528cdcf0329e2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "30px", "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": "10%"}}, "5da1df0c08844386a9ebd13870ad7e62": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "30px", "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": "100%"}}, "05ab88d0c3b1491aa760871e99e4ceea": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "30px", "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": "auto"}}, "1d88795c5ae1449cb24ab11fb01a200d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1px solid gray", "border_left": "1px solid gray", "border_right": "1px solid gray", "border_top": "1px solid gray", "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": "140px", "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": "auto", "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0a24d1fa4141463b814f75b5828905bb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "99%"}}, "a4f94e9cf42d4e0798c5483b4fd6e090": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "526px"}}, "c18dc64436b64885890a4c9d19d36f62": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1px solid gray", "border_left": "1px solid gray", "border_right": "1px solid gray", "border_top": "1px solid gray", "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": "right-sidebar", "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": "760px", "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": "scroll", "padding": null, "right": null, "top": null, "visibility": null, "width": "714px"}}, "08e10d480caf47ca85d3e9c4b8ddd5dc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1px solid gray", "border_left": "1px solid gray", "border_right": "1px solid gray", "border_top": "1px solid gray", "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": "670px", "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": "scroll", "padding": null, "right": null, "top": null, "visibility": null, "width": "674px"}}, "120c00221b6a43e3945cf48be5a9bbb1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "left-sidebar", "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": "770px", "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": "576px"}}, "917776b3c6e74157ab3dedcd2581b89f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "560px", "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": "576px"}}, "3644d78d0f8e446ab6c58acc28b72afb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "60px", "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": "576px"}}, "6c4f9a6af470422abfedc820e0650116": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "460px", "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": "576px"}}, "5c9f41cecfe14535aeb3a0d7dee0a494": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "auto"}}, "04eef0e60abc4638ab5eb3e6e4b67dcf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "auto", "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": "270px"}}, "5fe8303eb02c42c182fb180585374711": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fab13e89ca394f68b3f5e8dc843061fe": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "2e52c59c724b4bb082006a0038c2bf0a": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "tstop (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5fe8303eb02c42c182fb180585374711", "max": 1000000.0, "min": 0.0, "step": 1.0, "style": "IPY_MODEL_fab13e89ca394f68b3f5e8dc843061fe", "tabbable": null, "tooltip": null, "value": 170.0}}, "72a82f60cea34a59b06aaf1273e09225": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6f9bc9fa8e8e46768b55988509287f76": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "25f97faab2744915837a78fae039c37e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "dt (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_72a82f60cea34a59b06aaf1273e09225", "max": 10.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6f9bc9fa8e8e46768b55988509287f76", "tabbable": null, "tooltip": null, "value": 0.025}}, "51271ef007e342d0a1c08af2dc9e1e8c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b63f9071c82a4a6d91b7d9150d605a3f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "f952687c6b86410da876454ef4133b81": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Trials:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_51271ef007e342d0a1c08af2dc9e1e8c", "step": 1, "style": "IPY_MODEL_b63f9071c82a4a6d91b7d9150d605a3f", "tabbable": null, "tooltip": null, "value": 1}}, "2e697de7ead14da5948e3e498f1f53bd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "999d43b2ec5944e2a7df4841db454aa6": {"model_name": "TextStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TextStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "6f52e8e056ba4c2583555efccc5adc5f": {"model_name": "TextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TextView", "continuous_update": true, "description": "Name:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_2e697de7ead14da5948e3e498f1f53bd", "placeholder": "ID of your simulation", "style": "IPY_MODEL_999d43b2ec5944e2a7df4841db454aa6", "tabbable": null, "tooltip": null, "value": "default"}}, "1493ce475b9b48e0b842b044c48aea62": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7eab315751c845659dda0a577d3c8d66": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "8480ae0e3b184fc3ba68d0cefdc6f202": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["Joblib", "MPI"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Backend:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1493ce475b9b48e0b842b044c48aea62", "style": "IPY_MODEL_7eab315751c845659dda0a577d3c8d66", "tabbable": null, "tooltip": null}}, "41063c019e3745f6a4cbca22523f19ce": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fd52ec1546894cca8dc4d694bdd8c149": {"model_name": "TextStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TextStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d5f4de43326f4c448e298a3b637eb7a4": {"model_name": "TextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TextView", "continuous_update": true, "description": "MPI cmd:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_41063c019e3745f6a4cbca22523f19ce", "placeholder": "Fill if applies", "style": "IPY_MODEL_fd52ec1546894cca8dc4d694bdd8c149", "tabbable": null, "tooltip": null, "value": "mpiexec"}}, "3bbb5550c136447bac4cd59f1e9d1e9f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0d3366ccb8dc424faced2496c43d4e29": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "a1f2a6d2d56349ef9ec2cdc38f9c3d1d": {"model_name": "BoundedIntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedIntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Cores:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3bbb5550c136447bac4cd59f1e9d1e9f", "max": 4, "min": 1, "step": 1, "style": "IPY_MODEL_0d3366ccb8dc424faced2496c43d4e29", "tabbable": null, "tooltip": null, "value": 1}}, "0dc51ca722464064ae80c736f7e047ab": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "ef4f1ade7b9e42efaf882c9500267730": {"model_name": "FileUploadModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FileUploadModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FileUploadView", "accept": ".txt,.csv", "button_style": "success", "description": "Load data", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_cca8c01084dd4297aabf87c1d271caa4", "multiple": false, "style": "IPY_MODEL_0dc51ca722464064ae80c736f7e047ab", "tabbable": null, "tooltip": null, "value": []}}, "7d782c2aa42441dd96744fb367ac4a1b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "da2ec578f8f74d03a062c76cfea48935": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "2d490c17c95b4fe1b363c528efd8fb3d": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_7d782c2aa42441dd96744fb367ac4a1b", "placeholder": "\u200b", "style": "IPY_MODEL_da2ec578f8f74d03a062c76cfea48935", "tabbable": null, "tooltip": null, "value": "\n \n Save Simulation \n \n "}}, "56a64893f8cd4e73921f0152e1ee6e52": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "15%"}}, "e79d5465c3784cd8a7f04e15c2431ed3": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "efb209e928a642a7ad795b9378cb2247": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_56a64893f8cd4e73921f0152e1ee6e52", "style": "IPY_MODEL_e79d5465c3784cd8a7f04e15c2431ed3", "tabbable": null, "tooltip": null}}, "d2c487e6ed4c4f06887fa26830087578": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "fafa3b6aaa5f4c02948de2dd44aa273d": {"model_name": "RadioButtonsModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "RadioButtonsModel", "_options_labels": ["Evoked", "Poisson", "Rhythmic", "Tonic"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "RadioButtonsView", "description": "Drive:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_5c9f41cecfe14535aeb3a0d7dee0a494", "style": "IPY_MODEL_d2c487e6ed4c4f06887fa26830087578", "tabbable": null, "tooltip": null}}, "b2254c7d8cd841028656961052694910": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "f7a1fba83cdd481cb9e945495135e09f": {"model_name": "RadioButtonsModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "RadioButtonsModel", "_options_labels": ["proximal", "distal"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "RadioButtonsView", "description": "Location", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_5c9f41cecfe14535aeb3a0d7dee0a494", "style": "IPY_MODEL_b2254c7d8cd841028656961052694910", "tabbable": null, "tooltip": null}}, "89ee8e6da32146f484da30947a2a646a": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "a86e11ca32ad48caa74e1d200b1e9886": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "primary", "description": "Add drive", "disabled": false, "icon": "", "layout": "IPY_MODEL_cca8c01084dd4297aabf87c1d271caa4", "style": "IPY_MODEL_89ee8e6da32146f484da30947a2a646a", "tabbable": null, "tooltip": null}}, "72bb1b58dc504144a9d953d8cf8f1886": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "c64326ec5305410eba18a41d74b71b18": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "success", "description": "Run", "disabled": false, "icon": "", "layout": "IPY_MODEL_17f1e13fe11443918b3528cdcf0329e2", "style": "IPY_MODEL_72bb1b58dc504144a9d953d8cf8f1886", "tabbable": null, "tooltip": null}}, "1a4423c1f841487a99d66d24979c15c5": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "b7ae1ad0764d41efa7dddd1dc38e0502": {"model_name": "FileUploadModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FileUploadModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FileUploadView", "accept": ".json,.param", "button_style": "success", "description": "Load local network connectivity", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_5da1df0c08844386a9ebd13870ad7e62", "multiple": false, "style": "IPY_MODEL_1a4423c1f841487a99d66d24979c15c5", "tabbable": null, "tooltip": null, "value": []}}, "06786b7345a94221ae40de199bbd9054": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "985db1e4004a451586b59bc9c38246d7": {"model_name": "FileUploadModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FileUploadModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FileUploadView", "accept": ".json,.param", "button_style": "success", "description": "Load external drives", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_cca8c01084dd4297aabf87c1d271caa4", "multiple": false, "style": "IPY_MODEL_06786b7345a94221ae40de199bbd9054", "tabbable": null, "tooltip": null, "value": []}}, "740fb5d3219640668f49007f246bd78b": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "39e93b5bed294f719eb05edcb0fd0ab0": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "success", "description": "Delete drives", "disabled": false, "icon": "", "layout": "IPY_MODEL_cca8c01084dd4297aabf87c1d271caa4", "style": "IPY_MODEL_740fb5d3219640668f49007f246bd78b", "tabbable": null, "tooltip": null}}, "f5a863fdc730413ebd780f48aba102a7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d82bc75ee53d443cb281bf1776b512d1": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_f5a863fdc730413ebd780f48aba102a7", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Accordion(children=(VBox(children=(BoundedFloatText(value=63.53, description='Mean time:', max=1000000.0, step\u2026", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "256355a9d98a46308d5792ca48359748"}}}], "tabbable": null, "tooltip": null}}, "872a5edba4d644aa8997c76eaa182f32": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "62f60dd971384878921191f3188c2e28": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_872a5edba4d644aa8997c76eaa182f32", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Accordion(children=(VBox(children=(VBox(children=(HTML(value='\\n Receptor: gabaa
'), BoundedF\u2026", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "4285bf96e8b94deebce2734e4ae85794"}}}], "tabbable": null, "tooltip": null}}, "4d70978d59624e0f90b51224648db0e7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e183e528de134697b34f5a107a4a1006": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_4d70978d59624e0f90b51224648db0e7", "msg_id": "", "outputs": [{"name": "stdout", "output_type": "stream", "text": "2024-06-13 15:57:56,000 - [INFO] Saving default.txt\n"}], "tabbable": null, "tooltip": null}}, "7195764d9fe0498b9a726e9c48cb9e24": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "42e05bb1e6564eb693f98336525f8ad1": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_7195764d9fe0498b9a726e9c48cb9e24", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Tab()", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "39ff98a305e74bbfbb3e45a678dc4af2"}}}], "tabbable": null, "tooltip": null}}, "9e3b7267e5b24efd89fe740da3728b39": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9a91e68c987c4729b0454b5e4d602975": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_9e3b7267e5b24efd89fe740da3728b39", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "Tab()", "application/vnd.jupyter.widget-view+json": {"version_major": 2, "version_minor": 0, "model_id": "a7eb27b21ccd4682ab829af65c414bb5"}}}], "tabbable": null, "tooltip": null}}, "8a9541d02c40413b8465af390ab5a430": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "39ff98a305e74bbfbb3e45a678dc4af2": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_05717cd6b4c34f8b83de5e485f212749"], "layout": "IPY_MODEL_8a9541d02c40413b8465af390ab5a430", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "6af839bb75804dd8bb2852e326dbfc0c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a7eb27b21ccd4682ab829af65c414bb5": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_6bfff02b5a3347cda4ae76f5ccb40820"], "layout": "IPY_MODEL_6af839bb75804dd8bb2852e326dbfc0c", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "7ad7221a3290498f9180cc2f51eaeed5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "9032d3c804234447853736574b47f096": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "initial"}}, "3e24cf63cefd45349a9f574a6b2be2ce": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["Drive-Dipole (2x1)", "Dipole Layers (3x1)", "Drive-Spikes (2x1)", "Dipole-Spectrogram (2x1)", "Dipole-Spikes (2x1)", "Drive-Dipole-Spectrogram (3x1)", "PSD Layers (3x1)", "[Blank] 2row x 1col (1:3)", "[Blank] 2row x 1col (1:1)", "[Blank] 1row x 2col (1:1)", "[Blank] single figure", "[Blank] 2row x 2col (1:1)"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Layout template:", "description_allow_html": false, "disabled": false, "index": 7, "layout": "IPY_MODEL_7ad7221a3290498f9180cc2f51eaeed5", "style": "IPY_MODEL_9032d3c804234447853736574b47f096", "tabbable": null, "tooltip": null}}, "0cbb857f45df4518b818003b2a3ad18b": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": "#8A2BE2", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "6d1581c50427473991820853d53cb4ae": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "primary", "description": "Make figure", "disabled": false, "icon": "", "layout": "IPY_MODEL_cca8c01084dd4297aabf87c1d271caa4", "style": "IPY_MODEL_0cbb857f45df4518b818003b2a3ad18b", "tabbable": null, "tooltip": null}}, "712b459d09c34ad9a3579d5d6226cadb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "hidden", "width": "98%"}}, "ef54a536c8b4495c8ae8bbaa606752c6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "initial"}}, "2b817148a1c94cf6a1e24debdcbbaa58": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": [], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Dataset:", "description_allow_html": false, "disabled": false, "index": null, "layout": "IPY_MODEL_712b459d09c34ad9a3579d5d6226cadb", "style": "IPY_MODEL_ef54a536c8b4495c8ae8bbaa606752c6", "tabbable": null, "tooltip": null}}, "2092ba707f1c435e9dd5a543eeee8f82": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ef5c69f3d3b6432d80e9add90e5802d9": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_2092ba707f1c435e9dd5a543eeee8f82", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null}}, "45b0cc587f5043d78c7ec9aaea9d5f75": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "footer", "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}}, "cb8e978c423d4b82b4963a2df04c95f0": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "15dcdd0dcacf49a5be6e070501d3cfa3": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_45b0cc587f5043d78c7ec9aaea9d5f75", "placeholder": "\u200b", "style": "IPY_MODEL_cb8e978c423d4b82b4963a2df04c95f0", "tabbable": null, "tooltip": null, "value": "Simulation finished
"}}, "dd0b0d5efdea476a9abb8cd47eec140c": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e183e528de134697b34f5a107a4a1006"], "layout": "IPY_MODEL_1d88795c5ae1449cb24ab11fb01a200d", "tabbable": null, "tooltip": null}}, "eed49f901f4a4df88c74013189f4e050": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_c64326ec5305410eba18a41d74b71b18", "IPY_MODEL_ef4f1ade7b9e42efaf882c9500267730", "IPY_MODEL_2d490c17c95b4fe1b363c528efd8fb3d", "IPY_MODEL_efb209e928a642a7ad795b9378cb2247"], "layout": "IPY_MODEL_3644d78d0f8e446ab6c58acc28b72afb", "tabbable": null, "tooltip": null}}, "e43364b64ef14e38aec7dbfa3f751ad8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "header", "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}}, "650ea828681b41148fa141e2d6d8b674": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1a7e334767994ce18772f06aa01e84f6": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e43364b64ef14e38aec7dbfa3f751ad8", "placeholder": "\u200b", "style": "IPY_MODEL_650ea828681b41148fa141e2d6d8b674", "tabbable": null, "tooltip": null, "value": "\n HUMAN NEOCORTICAL NEUROSOLVER
"}}, "90428653fc22471f930ef6086d8076cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "17bb8c9f5dd14c01bdc165ecce3af342": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_6f52e8e056ba4c2583555efccc5adc5f", "IPY_MODEL_2e52c59c724b4bb082006a0038c2bf0a", "IPY_MODEL_25f97faab2744915837a78fae039c37e", "IPY_MODEL_f952687c6b86410da876454ef4133b81", "IPY_MODEL_8480ae0e3b184fc3ba68d0cefdc6f202", "IPY_MODEL_ef5c69f3d3b6432d80e9add90e5802d9"], "layout": "IPY_MODEL_90428653fc22471f930ef6086d8076cd", "tabbable": null, "tooltip": null}}, "f2a12204a98540afaab79b4f0a6eef84": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_17bb8c9f5dd14c01bdc165ecce3af342"], "layout": "IPY_MODEL_6c4f9a6af470422abfedc820e0650116", "tabbable": null, "tooltip": null}}, "21841bf28a2c45f28321a1aba3edae13": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "19b29af007b24531938be6ca7b3b95af": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_b7ae1ad0764d41efa7dddd1dc38e0502"], "layout": "IPY_MODEL_21841bf28a2c45f28321a1aba3edae13", "tabbable": null, "tooltip": null}}, "05609fb780e34dd1974559248dee2124": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b101839238d3489684fa1034e3262745": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_19b29af007b24531938be6ca7b3b95af", "IPY_MODEL_62f60dd971384878921191f3188c2e28"], "layout": "IPY_MODEL_05609fb780e34dd1974559248dee2124", "tabbable": null, "tooltip": null}}, "9c40b8dcea3a4a87b4a42914556cefbf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ee324cf124f04a4d93bd534f5f716f7c": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": [], "layout": "IPY_MODEL_9c40b8dcea3a4a87b4a42914556cefbf", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null}}, "8aa7dbfc63ec45f4b8d67b815d97bfb5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1", "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}}, "16b5907cf8ae42a1afaf0b9680b4d2f9": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_a86e11ca32ad48caa74e1d200b1e9886", "IPY_MODEL_fafa3b6aaa5f4c02948de2dd44aa273d", "IPY_MODEL_f7a1fba83cdd481cb9e945495135e09f"], "layout": "IPY_MODEL_8aa7dbfc63ec45f4b8d67b815d97bfb5", "tabbable": null, "tooltip": null}}, "3871a254b625474d9b866d641ec6d75b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "1", "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}}, "ba69a14c297c4756afebe6994e4b1d7f": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_985db1e4004a451586b59bc9c38246d7", "IPY_MODEL_39e93b5bed294f719eb05edcb0fd0ab0"], "layout": "IPY_MODEL_3871a254b625474d9b866d641ec6d75b", "tabbable": null, "tooltip": null}}, "d6520b5868f54cbd9c10c9a457d5d606": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "11714626d1d741ba8a3da0ec0f79fa61": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ba69a14c297c4756afebe6994e4b1d7f", "IPY_MODEL_16b5907cf8ae42a1afaf0b9680b4d2f9"], "layout": "IPY_MODEL_d6520b5868f54cbd9c10c9a457d5d606", "tabbable": null, "tooltip": null}}, "ea22a088c2394677aff4c3c3ae9ac6cc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4d7328d8daee4eca95c4b955d08d7b39": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_11714626d1d741ba8a3da0ec0f79fa61", "IPY_MODEL_d82bc75ee53d443cb281bf1776b512d1"], "layout": "IPY_MODEL_ea22a088c2394677aff4c3c3ae9ac6cc", "tabbable": null, "tooltip": null}}, "e87359a69336465d8fac181c82302395": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e4ec28b4a2414a52b4028ab75eb9fe87": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "dabedd8e830a45339173081db840d21d": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e87359a69336465d8fac181c82302395", "placeholder": "\u200b", "style": "IPY_MODEL_e4ec28b4a2414a52b4028ab75eb9fe87", "tabbable": null, "tooltip": null, "value": "Run simulation to add figures here."}}, "2e39884127414633b8c2d16283dae05b": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_9a91e68c987c4729b0454b5e4d602975"], "layout": "IPY_MODEL_c18dc64436b64885890a4c9d19d36f62", "tabbable": null, "tooltip": null}}, "dbe82d83b86944cebab7c57dc19e8e81": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "stretch", "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": "flex", "flex": null, "flex_flow": "column", "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}}, "4c9e8507b7884f66ae4fec45a739549a": {"model_name": "BoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "BoxView", "box_style": "", "children": ["IPY_MODEL_3e24cf63cefd45349a9f574a6b2be2ce", "IPY_MODEL_2b817148a1c94cf6a1e24debdcbbaa58", "IPY_MODEL_6d1581c50427473991820853d53cb4ae"], "layout": "IPY_MODEL_dbe82d83b86944cebab7c57dc19e8e81", "tabbable": null, "tooltip": null}}, "650ce9e90d434ac7af35ee073ffc731f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "40a1bc4abc454229a7eda23bc19f4f7e": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "d25cca586d2b4d719eed739c62b0fffa": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_650ce9e90d434ac7af35ee073ffc731f", "placeholder": "\u200b", "style": "IPY_MODEL_40a1bc4abc454229a7eda23bc19f4f7e", "tabbable": null, "tooltip": null, "value": "Figure config:"}}, "19eee04a7daa427aa7f443b30953967a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8dfb00e7a0664e0aa59efd30c1646530": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_4c9e8507b7884f66ae4fec45a739549a", "IPY_MODEL_d25cca586d2b4d719eed739c62b0fffa", "IPY_MODEL_42e05bb1e6564eb693f98336525f8ad1"], "layout": "IPY_MODEL_19eee04a7daa427aa7f443b30953967a", "tabbable": null, "tooltip": null}}, "db1b35d367334d4f8ba0869dd49b4fb9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fd961112b02f4842965efedd5a8c7891": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_f2a12204a98540afaab79b4f0a6eef84", "IPY_MODEL_b101839238d3489684fa1034e3262745", "IPY_MODEL_4d7328d8daee4eca95c4b955d08d7b39", "IPY_MODEL_8dfb00e7a0664e0aa59efd30c1646530"], "layout": "IPY_MODEL_db1b35d367334d4f8ba0869dd49b4fb9", "selected_index": 0, "tabbable": null, "titles": ["Simulation", "Network connectivity", "External drives", "Visualization"], "tooltip": null}}, "2353b50c8bfa469c81ea377587beda5b": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fd961112b02f4842965efedd5a8c7891"], "layout": "IPY_MODEL_917776b3c6e74157ab3dedcd2581b89f", "tabbable": null, "tooltip": null}}, "14aac744f27845288d16cf5955194ddf": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_2353b50c8bfa469c81ea377587beda5b", "IPY_MODEL_eed49f901f4a4df88c74013189f4e050", "IPY_MODEL_dd0b0d5efdea476a9abb8cd47eec140c"], "layout": "IPY_MODEL_120c00221b6a43e3945cf48be5a9bbb1", "tabbable": null, "tooltip": null}}, "ca492a4d96ea4b16b82726ed369a00bc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "\"header header\"\n\"left-sidebar right-sidebar\"\n\"footer footer\"", "grid_template_columns": "576px 714px", "grid_template_rows": "50px 760px 30px", "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}}, "fa92ec2ce5b24f26a94aa3921c6c1978": {"model_name": "GridBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "GridBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "GridBoxView", "box_style": "", "children": ["IPY_MODEL_1a7e334767994ce18772f06aa01e84f6", "IPY_MODEL_15dcdd0dcacf49a5be6e070501d3cfa3", "IPY_MODEL_14aac744f27845288d16cf5955194ddf", "IPY_MODEL_2e39884127414633b8c2d16283dae05b"], "layout": "IPY_MODEL_ca492a4d96ea4b16b82726ed369a00bc", "tabbable": null, "tooltip": null}}, "046d5032afe14223ae69f2aa238e2cb6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "c4afd71cbb1c497da931e3277c6d41aa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3adf1cf1ad1a47f4983fd00c33485d79": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_c4afd71cbb1c497da931e3277c6d41aa", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_046d5032afe14223ae69f2aa238e2cb6", "tabbable": null, "tooltip": null, "value": 0.02}}, "e81d5c44f57749a692e5e67d8dd1fa41": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b45e25a1c78d472d89e97d965c1a7c9e": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "e1882e2daa474966af0f1714b88bbc03": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e81d5c44f57749a692e5e67d8dd1fa41", "placeholder": "\u200b", "style": "IPY_MODEL_b45e25a1c78d472d89e97d965c1a7c9e", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "115fc84507124da0a67de6ab40f9b764": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "be72c1653cb94c80af97f83ac3835a56": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "02e0f6bb88a3453689610ebbd0f80ee3": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_115fc84507124da0a67de6ab40f9b764", "placeholder": "\u200b", "style": "IPY_MODEL_be72c1653cb94c80af97f83ac3835a56", "tabbable": null, "tooltip": null, "value": " "}}, "df941dcfb77344ed8c31a4fea2b09b0a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d7c12734d44b404392def701685ea845": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_e1882e2daa474966af0f1714b88bbc03", "IPY_MODEL_3adf1cf1ad1a47f4983fd00c33485d79", "IPY_MODEL_02e0f6bb88a3453689610ebbd0f80ee3"], "layout": "IPY_MODEL_df941dcfb77344ed8c31a4fea2b09b0a", "tabbable": null, "tooltip": null}}, "235d2437e0de4da3870be60793895e55": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "7722011f16e440179fd75cfd291ff2b7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b7effc3a2b49419ca4f5b1d4d0335d9d": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7722011f16e440179fd75cfd291ff2b7", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_235d2437e0de4da3870be60793895e55", "tabbable": null, "tooltip": null, "value": 0.05}}, "54cbb558d8854c8cabfb4a70788c5b01": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b032d236e75245718424715ca91b6e7e": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "14bc1d9981b742eb8496d6f05f60a754": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_54cbb558d8854c8cabfb4a70788c5b01", "placeholder": "\u200b", "style": "IPY_MODEL_b032d236e75245718424715ca91b6e7e", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "156400f60d934a15ac1391d7e825abeb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f8c501993ab24f4485a0e2bd54bca70a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "71216f64fecf4062b8ee6bf9c9662e6f": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_156400f60d934a15ac1391d7e825abeb", "placeholder": "\u200b", "style": "IPY_MODEL_f8c501993ab24f4485a0e2bd54bca70a", "tabbable": null, "tooltip": null, "value": " "}}, "605375892f99448fb00654deef111afe": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "25ab71d8b4f647a2984d74844695d5c7": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_14bc1d9981b742eb8496d6f05f60a754", "IPY_MODEL_b7effc3a2b49419ca4f5b1d4d0335d9d", "IPY_MODEL_71216f64fecf4062b8ee6bf9c9662e6f"], "layout": "IPY_MODEL_605375892f99448fb00654deef111afe", "tabbable": null, "tooltip": null}}, "8f762fc051fd48f285a689b3b127bcd9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "a4812aa56fa4497bb08c3380cec64ba0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "62321bd0bb1c4579822b52da6a69b09e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a4812aa56fa4497bb08c3380cec64ba0", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8f762fc051fd48f285a689b3b127bcd9", "tabbable": null, "tooltip": null, "value": 0.05}}, "b46bff5218204c0593a57993e2a03ebe": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d902c3db404d491e965f1275b6b798ec": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "fa032d318775400a98b7e6c5fa83e519": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b46bff5218204c0593a57993e2a03ebe", "placeholder": "\u200b", "style": "IPY_MODEL_d902c3db404d491e965f1275b6b798ec", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabab
"}}, "eea3a7a30fa848fd86c580f41ed24d84": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "32e20ff76751466db2e71515d571069d": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "a26fa04889ef4f919e1f1331a615eed6": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_eea3a7a30fa848fd86c580f41ed24d84", "placeholder": "\u200b", "style": "IPY_MODEL_32e20ff76751466db2e71515d571069d", "tabbable": null, "tooltip": null, "value": " "}}, "eca8713f22e04e73b929c6103e3d8a43": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f5c8d6af014146b7ae9ed626e174eb63": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fa032d318775400a98b7e6c5fa83e519", "IPY_MODEL_62321bd0bb1c4579822b52da6a69b09e", "IPY_MODEL_a26fa04889ef4f919e1f1331a615eed6"], "layout": "IPY_MODEL_eca8713f22e04e73b929c6103e3d8a43", "tabbable": null, "tooltip": null}}, "3ff7814fa224453c833fb5f4c90846ed": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "18ad5feeae744eeb991fc19fcc71fd73": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "19a7294d17a04c229c001a545f89554f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_18ad5feeae744eeb991fc19fcc71fd73", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_3ff7814fa224453c833fb5f4c90846ed", "tabbable": null, "tooltip": null, "value": 0.001}}, "9fb76d13a0c7463097a05435ae4bc28f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "590ed6b7ad2b4db899c9878a2ccfe19d": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "5299ad50b0ad4f9699e3f2e5c3def08b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9fb76d13a0c7463097a05435ae4bc28f", "placeholder": "\u200b", "style": "IPY_MODEL_590ed6b7ad2b4db899c9878a2ccfe19d", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "3528ba0e529c4a88b6dd79559d1d5dae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "290e61c845ca49f587fe6ad4ac70deb3": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "29a6d5d153ee4c9d901b62a18dd549f0": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3528ba0e529c4a88b6dd79559d1d5dae", "placeholder": "\u200b", "style": "IPY_MODEL_290e61c845ca49f587fe6ad4ac70deb3", "tabbable": null, "tooltip": null, "value": " "}}, "b006c6be1e4c45ceb81a7d9fb370dccf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fba3d6a6e2444d7dbac1189d2a8347a3": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_5299ad50b0ad4f9699e3f2e5c3def08b", "IPY_MODEL_19a7294d17a04c229c001a545f89554f", "IPY_MODEL_29a6d5d153ee4c9d901b62a18dd549f0"], "layout": "IPY_MODEL_b006c6be1e4c45ceb81a7d9fb370dccf", "tabbable": null, "tooltip": null}}, "2e82d180af014d1899331e2879d466e1": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "a74c95c4d71c48c2a6bc38458e3dcd3c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4eaf8da828a9464c8d19be192b8cc55c": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_a74c95c4d71c48c2a6bc38458e3dcd3c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2e82d180af014d1899331e2879d466e1", "tabbable": null, "tooltip": null, "value": 0.0005}}, "1855895e04544088ae753397fb7f6daa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0d6f991fc8d64eff9e69e81d1f0d4113": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "385913348db743ae9524d4efc0c7836b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_1855895e04544088ae753397fb7f6daa", "placeholder": "\u200b", "style": "IPY_MODEL_0d6f991fc8d64eff9e69e81d1f0d4113", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "a7c57439b05b4a8f8b3d3f0f5f65f744": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7ae95ea09ff84d089499ccfd179882e5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "94314d44dade436c92c743893240706f": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a7c57439b05b4a8f8b3d3f0f5f65f744", "placeholder": "\u200b", "style": "IPY_MODEL_7ae95ea09ff84d089499ccfd179882e5", "tabbable": null, "tooltip": null, "value": " "}}, "5157cfbafb864058914faab5e07eea61": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fb02419723d1451fa53f14127a5e7be2": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_385913348db743ae9524d4efc0c7836b", "IPY_MODEL_4eaf8da828a9464c8d19be192b8cc55c", "IPY_MODEL_94314d44dade436c92c743893240706f"], "layout": "IPY_MODEL_5157cfbafb864058914faab5e07eea61", "tabbable": null, "tooltip": null}}, "a9384496ddb547e69139197c3a56dbd3": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "73e5bd09dc2448a99db0b355758535ba": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0ca0d13f0fd24af88950ef29c72f2b8d": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_73e5bd09dc2448a99db0b355758535ba", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a9384496ddb547e69139197c3a56dbd3", "tabbable": null, "tooltip": null, "value": 0.0005}}, "835ef005115740f7aab372263a80b90c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ff0b7f7f6067487aa581c6ecc2429a51": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "6fac422e7eb14a589f24f9a5b48b38b6": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_835ef005115740f7aab372263a80b90c", "placeholder": "\u200b", "style": "IPY_MODEL_ff0b7f7f6067487aa581c6ecc2429a51", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "2c6d09a4dfac4fbcabab3a7f8ca809be": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3ee41d6213e14f3ab772d3762b4dacea": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "9fe8e1c63fa7451591fc4c92c3c02c9e": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2c6d09a4dfac4fbcabab3a7f8ca809be", "placeholder": "\u200b", "style": "IPY_MODEL_3ee41d6213e14f3ab772d3762b4dacea", "tabbable": null, "tooltip": null, "value": " "}}, "59f03af835ae4d43bcf686a00a3e49f3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5d3eeeb2576046d08100fbc0461fcaff": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_6fac422e7eb14a589f24f9a5b48b38b6", "IPY_MODEL_0ca0d13f0fd24af88950ef29c72f2b8d", "IPY_MODEL_9fe8e1c63fa7451591fc4c92c3c02c9e"], "layout": "IPY_MODEL_59f03af835ae4d43bcf686a00a3e49f3", "tabbable": null, "tooltip": null}}, "83c5c0f1b54e4d589210ab9672b6337f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "6b6a480627354cda84bb5aff9434ba99": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b857a38d4ef34d5f8142898cd0d4f430": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_6b6a480627354cda84bb5aff9434ba99", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_83c5c0f1b54e4d589210ab9672b6337f", "tabbable": null, "tooltip": null, "value": 0.0005}}, "3e738dfd445041c0b8125d11a0f66f81": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "10fa3fdcf8ec4e7b995f6e8f7e72db56": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "c8db5d4baf904a63b426c5639aa8928a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3e738dfd445041c0b8125d11a0f66f81", "placeholder": "\u200b", "style": "IPY_MODEL_10fa3fdcf8ec4e7b995f6e8f7e72db56", "tabbable": null, "tooltip": null, "value": "\n Receptor: nmda
"}}, "9540ecc6ccea45ae9436b9abfd5965e1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1d67c2fc0c724649a8e19761ec97c350": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "606497f639354b6eb5bc775bcaab3746": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9540ecc6ccea45ae9436b9abfd5965e1", "placeholder": "\u200b", "style": "IPY_MODEL_1d67c2fc0c724649a8e19761ec97c350", "tabbable": null, "tooltip": null, "value": " "}}, "2d9a970fdaa440898dc23ef018adf057": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "754d9f195c454a5398dd87a8ea79b1d1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_c8db5d4baf904a63b426c5639aa8928a", "IPY_MODEL_b857a38d4ef34d5f8142898cd0d4f430", "IPY_MODEL_606497f639354b6eb5bc775bcaab3746"], "layout": "IPY_MODEL_2d9a970fdaa440898dc23ef018adf057", "tabbable": null, "tooltip": null}}, "8edf559bcd1040faa700a7fd814211a0": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "d1361ccec3d646d7954c876d005e2630": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f179f6db00ad47db844de3589344c37f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d1361ccec3d646d7954c876d005e2630", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8edf559bcd1040faa700a7fd814211a0", "tabbable": null, "tooltip": null, "value": 0.00025}}, "568108c123b646028e70160385e2ee86": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7e0509efd2c742a5a9ee7038518e1be5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "7fe3449739914eb382c1ba48cdbe12e3": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_568108c123b646028e70160385e2ee86", "placeholder": "\u200b", "style": "IPY_MODEL_7e0509efd2c742a5a9ee7038518e1be5", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "9480daf1251f4a5e8fa60101e84017aa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9940813d853549d69594efa6e13dab42": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "a14f901027d246f9a6a8035d56e3e80a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9480daf1251f4a5e8fa60101e84017aa", "placeholder": "\u200b", "style": "IPY_MODEL_9940813d853549d69594efa6e13dab42", "tabbable": null, "tooltip": null, "value": " "}}, "52a70e07553f45aa85e20f845675c9a0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f6f8e2118d1845f891fdaa1a30bb3234": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_7fe3449739914eb382c1ba48cdbe12e3", "IPY_MODEL_f179f6db00ad47db844de3589344c37f", "IPY_MODEL_a14f901027d246f9a6a8035d56e3e80a"], "layout": "IPY_MODEL_52a70e07553f45aa85e20f845675c9a0", "tabbable": null, "tooltip": null}}, "5af619d848ae480db4db18c1c3d35317": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "d5ec8f8406c1483b9f744d619d0a4a21": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d54455b9e461419faf2b72ffe4d2221f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d5ec8f8406c1483b9f744d619d0a4a21", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_5af619d848ae480db4db18c1c3d35317", "tabbable": null, "tooltip": null, "value": 0.00025}}, "ff8fe9fbcdc74f64bb003a0b7bfe923a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a8527065042f4e1ab26a52345e894b59": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "bad35298137546168977f4d33b68d0eb": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ff8fe9fbcdc74f64bb003a0b7bfe923a", "placeholder": "\u200b", "style": "IPY_MODEL_a8527065042f4e1ab26a52345e894b59", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "f543304ce0e948fc8e8f5285ad01a0f0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a9430a6a222a48138cc2bc890a10d79f": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "84706402097443298e8a42b2daa81f8b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f543304ce0e948fc8e8f5285ad01a0f0", "placeholder": "\u200b", "style": "IPY_MODEL_a9430a6a222a48138cc2bc890a10d79f", "tabbable": null, "tooltip": null, "value": " "}}, "8719e65f03104144a3e8fcc51a440aed": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "159ddb44a574428aababf7012846515b": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_bad35298137546168977f4d33b68d0eb", "IPY_MODEL_d54455b9e461419faf2b72ffe4d2221f", "IPY_MODEL_84706402097443298e8a42b2daa81f8b"], "layout": "IPY_MODEL_8719e65f03104144a3e8fcc51a440aed", "tabbable": null, "tooltip": null}}, "433a55334a934baf99f939a7e0369d3a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "e643a3718520466e9d0038731e52d6b5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6bf0c998ce12406190d2100058ceac35": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_e643a3718520466e9d0038731e52d6b5", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_433a55334a934baf99f939a7e0369d3a", "tabbable": null, "tooltip": null, "value": 0.00025}}, "4cb336145c09489398fe2f167150a9c4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "b0490c9ef2f747c9a52b9c0e2caa0de5": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d021b37916e944c3a44252c5d3f1eb72": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_4cb336145c09489398fe2f167150a9c4", "placeholder": "\u200b", "style": "IPY_MODEL_b0490c9ef2f747c9a52b9c0e2caa0de5", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "d7379718055247e6be7094b0862cbfdc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e0a60d5d07124ae98a056c9a60e99d85": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1340c0c5aa54423786eb28109b49d0f9": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d7379718055247e6be7094b0862cbfdc", "placeholder": "\u200b", "style": "IPY_MODEL_e0a60d5d07124ae98a056c9a60e99d85", "tabbable": null, "tooltip": null, "value": " "}}, "9386843defda4a56ab39472a3f4a1858": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "58b33441244c40f9bf14c372a85e7905": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_d021b37916e944c3a44252c5d3f1eb72", "IPY_MODEL_6bf0c998ce12406190d2100058ceac35", "IPY_MODEL_1340c0c5aa54423786eb28109b49d0f9"], "layout": "IPY_MODEL_9386843defda4a56ab39472a3f4a1858", "tabbable": null, "tooltip": null}}, "0bc100582b3b42f1948ca527b66bba2c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "7bbf1a7c34e343dda575d9b733a63055": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "47a6d866096c4c939dee99e9cf713d2b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7bbf1a7c34e343dda575d9b733a63055", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0bc100582b3b42f1948ca527b66bba2c", "tabbable": null, "tooltip": null, "value": 0.02}}, "621367e6c4f948ec8b09de57449718e0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8390cbb9374a4e0e8c3c25a6fb07cc61": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "68cd7d3c2f17403eb676dbdf2dd7267a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_621367e6c4f948ec8b09de57449718e0", "placeholder": "\u200b", "style": "IPY_MODEL_8390cbb9374a4e0e8c3c25a6fb07cc61", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "bdb1b3ca7f2e4e41936a713ed4479d2b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5502fecb0eb2427a8798e1e3d996814b": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "7e69d122de824abca50740c916f39b35": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_bdb1b3ca7f2e4e41936a713ed4479d2b", "placeholder": "\u200b", "style": "IPY_MODEL_5502fecb0eb2427a8798e1e3d996814b", "tabbable": null, "tooltip": null, "value": " "}}, "9173eb242d6b4dedb25fa2dd0b53513d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "93ce66192fcf40438413bcc8376138a4": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_68cd7d3c2f17403eb676dbdf2dd7267a", "IPY_MODEL_47a6d866096c4c939dee99e9cf713d2b", "IPY_MODEL_7e69d122de824abca50740c916f39b35"], "layout": "IPY_MODEL_9173eb242d6b4dedb25fa2dd0b53513d", "tabbable": null, "tooltip": null}}, "362b3bcbd8cc40bd98793eedd194f278": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "0ac0c20109cd4335a590c0709c63fb1a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "44f002a1ae5949c8a0c6af181ec4ee94": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0ac0c20109cd4335a590c0709c63fb1a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_362b3bcbd8cc40bd98793eedd194f278", "tabbable": null, "tooltip": null, "value": 0.025}}, "ef9da4dec4d24993979bf9ef0128ec9c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9c820b0c88434fb988b1b6a08e7782b2": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "4558a75c767642958d557fcef295e5f0": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ef9da4dec4d24993979bf9ef0128ec9c", "placeholder": "\u200b", "style": "IPY_MODEL_9c820b0c88434fb988b1b6a08e7782b2", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabaa
"}}, "3d91fc6b673b47168e8f5fcba77cdd96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f480c0d059d84fa68dfd27cec3e85306": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d6fdebe4bbd54668b2a713675536457e": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3d91fc6b673b47168e8f5fcba77cdd96", "placeholder": "\u200b", "style": "IPY_MODEL_f480c0d059d84fa68dfd27cec3e85306", "tabbable": null, "tooltip": null, "value": " "}}, "f5f9f5a7011040e78ae4029a1e049c6a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "99c9551af1e347e4923796c0e9177cea": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_4558a75c767642958d557fcef295e5f0", "IPY_MODEL_44f002a1ae5949c8a0c6af181ec4ee94", "IPY_MODEL_d6fdebe4bbd54668b2a713675536457e"], "layout": "IPY_MODEL_f5f9f5a7011040e78ae4029a1e049c6a", "tabbable": null, "tooltip": null}}, "e8c4b49ed09b4aec9e563c2ce356bd88": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "471c5a5ee0894a9c966c1528edfe0a84": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3333f7dd1ebf41a2b1a214923b1ed00b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_471c5a5ee0894a9c966c1528edfe0a84", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_e8c4b49ed09b4aec9e563c2ce356bd88", "tabbable": null, "tooltip": null, "value": 0.025}}, "c41eb59c15ee4f9a8aaa8e25cf3de4ae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "dc0955189f7d45b5a58c51263a8bdd9e": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1022579d38064f1982f213293fa97db9": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c41eb59c15ee4f9a8aaa8e25cf3de4ae", "placeholder": "\u200b", "style": "IPY_MODEL_dc0955189f7d45b5a58c51263a8bdd9e", "tabbable": null, "tooltip": null, "value": "\n Receptor: gabab
"}}, "2bfff5b738424d35859d917019fabe28": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9343038c26e44eb19029eed19fc12756": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "babf78094050461d817cb52c1f063e3a": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2bfff5b738424d35859d917019fabe28", "placeholder": "\u200b", "style": "IPY_MODEL_9343038c26e44eb19029eed19fc12756", "tabbable": null, "tooltip": null, "value": " "}}, "409f3b37445347f583db384d7a21d091": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7f94a77d3a5d45d69bbd5e085d33d877": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_1022579d38064f1982f213293fa97db9", "IPY_MODEL_3333f7dd1ebf41a2b1a214923b1ed00b", "IPY_MODEL_babf78094050461d817cb52c1f063e3a"], "layout": "IPY_MODEL_409f3b37445347f583db384d7a21d091", "tabbable": null, "tooltip": null}}, "2d3e7701f1ca4ae1a1fcdcb7c39ea38e": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "0927342b1a014eb0a870a5b35e255f82": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d3abcb42c0ef491c869c32698e45d36a": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0927342b1a014eb0a870a5b35e255f82", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2d3e7701f1ca4ae1a1fcdcb7c39ea38e", "tabbable": null, "tooltip": null, "value": 0.0005}}, "16c3acb02e2b4bf8a80fb6d09b46934a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "23e033de31704dc0bb169d7d2e3176ff": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "af1b793719fd41ecbcf183037d6d82fc": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_16c3acb02e2b4bf8a80fb6d09b46934a", "placeholder": "\u200b", "style": "IPY_MODEL_23e033de31704dc0bb169d7d2e3176ff", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "dc5decac05fa438883dffe890dec37c3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "2dcf5ab5d8cb4428a96fedd56be98d80": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1a144edec9c94d4992db0cc34969777d": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_dc5decac05fa438883dffe890dec37c3", "placeholder": "\u200b", "style": "IPY_MODEL_2dcf5ab5d8cb4428a96fedd56be98d80", "tabbable": null, "tooltip": null, "value": " "}}, "38fab7b41744461abfde6cd1bf7c9825": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "90ef74136aba4077a39030710c0101c4": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_af1b793719fd41ecbcf183037d6d82fc", "IPY_MODEL_d3abcb42c0ef491c869c32698e45d36a", "IPY_MODEL_1a144edec9c94d4992db0cc34969777d"], "layout": "IPY_MODEL_38fab7b41744461abfde6cd1bf7c9825", "tabbable": null, "tooltip": null}}, "d916612a476f4b2fa0f5c79bd35e6f4d": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "c5e7531f669a4089af01b744279aaf59": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "04c78922b4c84bf0be9fd23be941e007": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_c5e7531f669a4089af01b744279aaf59", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d916612a476f4b2fa0f5c79bd35e6f4d", "tabbable": null, "tooltip": null, "value": 0.0005}}, "1fe951dd5f404460857c7afed7bb7f49": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ec8d8b5494e44a6096101503b915a417": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "e4cdd460752145f29a029078c355f231": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_1fe951dd5f404460857c7afed7bb7f49", "placeholder": "\u200b", "style": "IPY_MODEL_ec8d8b5494e44a6096101503b915a417", "tabbable": null, "tooltip": null, "value": "\n Receptor: ampa
"}}, "dd981c7f683a4932af5a0a3bc5196fe3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "bbea80cde29344fb984178e1943a6a0b": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "8330f00a852a47fca07cf6a1fc05cf39": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_dd981c7f683a4932af5a0a3bc5196fe3", "placeholder": "\u200b", "style": "IPY_MODEL_bbea80cde29344fb984178e1943a6a0b", "tabbable": null, "tooltip": null, "value": " "}}, "da44b9f82e5840568e28c590c39c0a26": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "cbee08299086492180d29e1329ca5794": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_e4cdd460752145f29a029078c355f231", "IPY_MODEL_04c78922b4c84bf0be9fd23be941e007", "IPY_MODEL_8330f00a852a47fca07cf6a1fc05cf39"], "layout": "IPY_MODEL_da44b9f82e5840568e28c590c39c0a26", "tabbable": null, "tooltip": null}}, "53eede5b4b5c4c23ae33d74a6be9ad59": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": ""}}, "45ddcf1d410f4f7bb3fcfb50dc058622": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e305b6a08c8447cf99f3c1dabbac4a37": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "weight", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_45ddcf1d410f4f7bb3fcfb50dc058622", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_53eede5b4b5c4c23ae33d74a6be9ad59", "tabbable": null, "tooltip": null, "value": 0.0005}}, "63be6c1c61db4568bfdd67f7011c838a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4b9c8cd3f97b4ea8a6c594ed99df3e4a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "bdd2940da9534e67ab9f8a347759a58b": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_63be6c1c61db4568bfdd67f7011c838a", "placeholder": "\u200b", "style": "IPY_MODEL_4b9c8cd3f97b4ea8a6c594ed99df3e4a", "tabbable": null, "tooltip": null, "value": "\n Receptor: nmda
"}}, "5f6d75b887fb409883ac6249d5bd5174": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "93bb3a124794497cb72a39db122f4275": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "8684877d8760490f91957ada3d640d26": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_5f6d75b887fb409883ac6249d5bd5174", "placeholder": "\u200b", "style": "IPY_MODEL_93bb3a124794497cb72a39db122f4275", "tabbable": null, "tooltip": null, "value": " "}}, "dfa4323fd3774b12806496abcf3cb117": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a3215f9e1ac642bc8fd639925778a1d0": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_bdd2940da9534e67ab9f8a347759a58b", "IPY_MODEL_e305b6a08c8447cf99f3c1dabbac4a37", "IPY_MODEL_8684877d8760490f91957ada3d640d26"], "layout": "IPY_MODEL_dfa4323fd3774b12806496abcf3cb117", "tabbable": null, "tooltip": null}}, "e16f1a27a3614929876a8c33c0602fd7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "158181c1c3a241da8c2514344f2244cf": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_d7c12734d44b404392def701685ea845"], "layout": "IPY_MODEL_e16f1a27a3614929876a8c33c0602fd7", "tabbable": null, "tooltip": null}}, "5f283afc7ee5432eb9cda1274eed05e5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e85b5e2c1332445b807fd8d4823ba63f": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_25ab71d8b4f647a2984d74844695d5c7", "IPY_MODEL_f5c8d6af014146b7ae9ed626e174eb63"], "layout": "IPY_MODEL_5f283afc7ee5432eb9cda1274eed05e5", "tabbable": null, "tooltip": null}}, "9be94a04d0ee47419cb2f4f80908377c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7eee4c2476874763b1312055e0b1efea": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fba3d6a6e2444d7dbac1189d2a8347a3"], "layout": "IPY_MODEL_9be94a04d0ee47419cb2f4f80908377c", "tabbable": null, "tooltip": null}}, "f64901d1fe654b42b89f62bbefecbc96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3bc387fbec354918a412b56ef58602f8": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_fb02419723d1451fa53f14127a5e7be2"], "layout": "IPY_MODEL_f64901d1fe654b42b89f62bbefecbc96", "tabbable": null, "tooltip": null}}, "7b2e67e7bb924aefad7cd4d5d0537151": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "70410c2bd7604215b6cf322bf7d6480d": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_5d3eeeb2576046d08100fbc0461fcaff", "IPY_MODEL_754d9f195c454a5398dd87a8ea79b1d1"], "layout": "IPY_MODEL_7b2e67e7bb924aefad7cd4d5d0537151", "tabbable": null, "tooltip": null}}, "4c527c87725b4b6e92800ece04778e33": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1c13dafd2b5a4e0c931d420fd4b4864e": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_f6f8e2118d1845f891fdaa1a30bb3234"], "layout": "IPY_MODEL_4c527c87725b4b6e92800ece04778e33", "tabbable": null, "tooltip": null}}, "98050043e68b499da3d416f9e253ca79": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0837c7d2061545c2a52619fc6ceb61d1": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_159ddb44a574428aababf7012846515b"], "layout": "IPY_MODEL_98050043e68b499da3d416f9e253ca79", "tabbable": null, "tooltip": null}}, "116d96da88d04ca986847decb49dc96e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "2102f83e0e28449194ed379735ebd780": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_58b33441244c40f9bf14c372a85e7905"], "layout": "IPY_MODEL_116d96da88d04ca986847decb49dc96e", "tabbable": null, "tooltip": null}}, "ba462a6ed1994e258909fb6abca9854c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d1e7330020284bfba0d2a65a3a458832": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_93ce66192fcf40438413bcc8376138a4"], "layout": "IPY_MODEL_ba462a6ed1994e258909fb6abca9854c", "tabbable": null, "tooltip": null}}, "12f649a1fa034b08b30bb724a6cc3be1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "66b62b4d8e6746c6b64d7a59e37d7503": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_99c9551af1e347e4923796c0e9177cea", "IPY_MODEL_7f94a77d3a5d45d69bbd5e085d33d877"], "layout": "IPY_MODEL_12f649a1fa034b08b30bb724a6cc3be1", "tabbable": null, "tooltip": null}}, "0b22a00598b24412883fb03885497567": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5711e8ea2d9a4b629926ce9d3fe86c2a": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_90ef74136aba4077a39030710c0101c4"], "layout": "IPY_MODEL_0b22a00598b24412883fb03885497567", "tabbable": null, "tooltip": null}}, "be8095f2e34d4c6b8012f48b0c42aee8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e911b3af4d0b474dbc2c58de54c19e87": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_cbee08299086492180d29e1329ca5794", "IPY_MODEL_a3215f9e1ac642bc8fd639925778a1d0"], "layout": "IPY_MODEL_be8095f2e34d4c6b8012f48b0c42aee8", "tabbable": null, "tooltip": null}}, "083c4e027eb64a549b1770c9911fa513": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4285bf96e8b94deebce2734e4ae85794": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": ["IPY_MODEL_158181c1c3a241da8c2514344f2244cf", "IPY_MODEL_e85b5e2c1332445b807fd8d4823ba63f", "IPY_MODEL_7eee4c2476874763b1312055e0b1efea", "IPY_MODEL_3bc387fbec354918a412b56ef58602f8", "IPY_MODEL_70410c2bd7604215b6cf322bf7d6480d", "IPY_MODEL_1c13dafd2b5a4e0c931d420fd4b4864e", "IPY_MODEL_0837c7d2061545c2a52619fc6ceb61d1", "IPY_MODEL_2102f83e0e28449194ed379735ebd780", "IPY_MODEL_d1e7330020284bfba0d2a65a3a458832", "IPY_MODEL_66b62b4d8e6746c6b64d7a59e37d7503", "IPY_MODEL_5711e8ea2d9a4b629926ce9d3fe86c2a", "IPY_MODEL_e911b3af4d0b474dbc2c58de54c19e87"], "layout": "IPY_MODEL_083c4e027eb64a549b1770c9911fa513", "selected_index": null, "tabbable": null, "titles": ["L2_basket\u2192L2_basket (soma)", "L2_basket\u2192L2_pyramidal (soma)", "L2_basket\u2192L5_pyramidal (distal)", "L2_pyramidal\u2192L2_basket (soma)", "L2_pyramidal\u2192L2_pyramidal (proximal)", "L2_pyramidal\u2192L5_basket (soma)", "L2_pyramidal\u2192L5_pyramidal (proximal)", "L2_pyramidal\u2192L5_pyramidal (distal)", "L5_basket\u2192L5_basket (soma)", "L5_basket\u2192L5_pyramidal (soma)", "L5_pyramidal\u2192L5_basket (soma)", "L5_pyramidal\u2192L5_pyramidal (proximal)"], "tooltip": null}}, "3e900ddf019041159e9d9759a14d36e5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "343de4b4448743ac9b8bce4c57b6c78a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "3dc3c51b50224a40ab5f04409ab430d6": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3e900ddf019041159e9d9759a14d36e5", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_343de4b4448743ac9b8bce4c57b6c78a", "tabbable": null, "tooltip": null, "value": 63.53}}, "f7612ccc145946679cfee2a9cc83be60": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7e0c22ea97fb49fc9c604731ac2ff91f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "44c85ba2880e4656b6e61969e4921b4f": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_f7612ccc145946679cfee2a9cc83be60", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_7e0c22ea97fb49fc9c604731ac2ff91f", "tabbable": null, "tooltip": null, "value": 3.85}}, "d2635e8e19cc4d06a9c4281504a559b5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3c9b815df3e742b7af6e08ec54c2ccbc": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "7bdfacc44caf437aac6642bf2bd4f684": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d2635e8e19cc4d06a9c4281504a559b5", "step": 1, "style": "IPY_MODEL_3c9b815df3e742b7af6e08ec54c2ccbc", "tabbable": null, "tooltip": null, "value": 1}}, "60ed85d7a5e044d9b39359b158037a96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4c3baaf8dfe24f30ba65eff05765881a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "ff931309102a4b8e9fd699f8b6867c74": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_60ed85d7a5e044d9b39359b158037a96", "step": 1, "style": "IPY_MODEL_4c3baaf8dfe24f30ba65eff05765881a", "tabbable": null, "tooltip": null, "value": 2}}, "69ab6982faf146f89cac65d17a1361f9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ab6e790bc69b4bc882c68d741f443bae": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "5346d3087bed430c8ee18f76fec2f90d": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_69ab6982faf146f89cac65d17a1361f9", "style": "IPY_MODEL_ab6e790bc69b4bc882c68d741f443bae", "tabbable": null, "tooltip": null, "value": false}}, "fbd9ca6d15724b9dba8ea6e8b9746003": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f400acdf08694679b74ca7204498da17": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "05e6f97ee4b44de1908cd0bdd24a496a": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_fbd9ca6d15724b9dba8ea6e8b9746003", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f400acdf08694679b74ca7204498da17", "tabbable": null, "tooltip": null, "value": 0.1423}}, "89b026ea42eb45ed8762d34adeb83dd4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "24c68be5f8d244efb20485de02426b3c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8aafc3f413bf4fd2875de1756be25fd9": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_89b026ea42eb45ed8762d34adeb83dd4", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_24c68be5f8d244efb20485de02426b3c", "tabbable": null, "tooltip": null, "value": 0.080074}}, "1352eed5c2f84dbd9c26414b412eba79": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "d231ff749589407190f539ca93538b4c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "3584822ca26f4747ba49f8b8e9b2c44c": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1352eed5c2f84dbd9c26414b412eba79", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_d231ff749589407190f539ca93538b4c", "tabbable": null, "tooltip": null, "value": 0.1}}, "4165a508a6d8405e827a4b6bfafdc278": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "77136ce84c79421abe6a366d7a4ae253": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "3714148be71f482f9b0a0da854749d2b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_4165a508a6d8405e827a4b6bfafdc278", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_77136ce84c79421abe6a366d7a4ae253", "tabbable": null, "tooltip": null, "value": 7e-06}}, "766a9ac01a074b22a10400a914352ec4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "49058584be804745889324a17a9b7cc0": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "1309100c30064ea9afa8f1451e428f68": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_766a9ac01a074b22a10400a914352ec4", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_49058584be804745889324a17a9b7cc0", "tabbable": null, "tooltip": null, "value": 0.004317}}, "d00199092bbe40b0a13ad1b993815afa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8e1c52f6ce814ad5b42c7edd918e5cad": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a91e9dc78db54f31918d7c1918893e2b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d00199092bbe40b0a13ad1b993815afa", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_8e1c52f6ce814ad5b42c7edd918e5cad", "tabbable": null, "tooltip": null, "value": 0.1}}, "dbee39fe180640a683ca5c8adc52af59": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1f831546099f48ef81f7a69cf5291a8f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "f89a4fb1bdd440608afb8f4a056cb7cc": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_dbee39fe180640a683ca5c8adc52af59", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1f831546099f48ef81f7a69cf5291a8f", "tabbable": null, "tooltip": null, "value": 0.006562}}, "058fabd3c951434e89986273b2bb1c4c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7f3743f9b71d4bc7b46dd09c7a9d01a2": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "2608542046ed4848a262a3e16cdb5f59": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_058fabd3c951434e89986273b2bb1c4c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_7f3743f9b71d4bc7b46dd09c7a9d01a2", "tabbable": null, "tooltip": null, "value": 0.019482}}, "32db4b2094734941b7aaef413c650a59": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "e86ed19bc39f48bf87811983600f5d82": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "797f958010544b6eb218fbeddd0b977d": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_32db4b2094734941b7aaef413c650a59", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_e86ed19bc39f48bf87811983600f5d82", "tabbable": null, "tooltip": null, "value": 0.1}}, "85b13c428f9641c7b6c2215a3c87ce56": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3fc77821290d44f9b394c06545c5d617": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "a5c42e7acd604ac7a3fee1042f429831": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_85b13c428f9641c7b6c2215a3c87ce56", "placeholder": "\u200b", "style": "IPY_MODEL_3fc77821290d44f9b394c06545c5d617", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "37fca24d59894699a2de0b9b0fe3ce7f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7ef48e8c31514875a81139ead2f25411": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "842af775289747d197899f7028fc4e26": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_37fca24d59894699a2de0b9b0fe3ce7f", "placeholder": "\u200b", "style": "IPY_MODEL_7ef48e8c31514875a81139ead2f25411", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "a1a52dea82c74d5789fe8819d3e9e291": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "48d4a0a7d1924db8b2dff81771d9af58": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "c3cd1cdcf5e14e189d683d34cd02f253": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a1a52dea82c74d5789fe8819d3e9e291", "placeholder": "\u200b", "style": "IPY_MODEL_48d4a0a7d1924db8b2dff81771d9af58", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "d22df2538c5e4eeb84c3ec82851a41f9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ed11b67e104f420f87f26dde1dc016cd": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_3dc3c51b50224a40ab5f04409ab430d6", "IPY_MODEL_44c85ba2880e4656b6e61969e4921b4f", "IPY_MODEL_7bdfacc44caf437aac6642bf2bd4f684", "IPY_MODEL_ff931309102a4b8e9fd699f8b6867c74", "IPY_MODEL_5346d3087bed430c8ee18f76fec2f90d", "IPY_MODEL_a5c42e7acd604ac7a3fee1042f429831", "IPY_MODEL_05e6f97ee4b44de1908cd0bdd24a496a", "IPY_MODEL_3714148be71f482f9b0a0da854749d2b", "IPY_MODEL_f89a4fb1bdd440608afb8f4a056cb7cc", "IPY_MODEL_842af775289747d197899f7028fc4e26", "IPY_MODEL_8aafc3f413bf4fd2875de1756be25fd9", "IPY_MODEL_1309100c30064ea9afa8f1451e428f68", "IPY_MODEL_2608542046ed4848a262a3e16cdb5f59", "IPY_MODEL_c3cd1cdcf5e14e189d683d34cd02f253", "IPY_MODEL_3584822ca26f4747ba49f8b8e9b2c44c", "IPY_MODEL_a91e9dc78db54f31918d7c1918893e2b", "IPY_MODEL_797f958010544b6eb218fbeddd0b977d"], "layout": "IPY_MODEL_d22df2538c5e4eeb84c3ec82851a41f9", "tabbable": null, "tooltip": null}}, "857845bed720414db8210c880e95736e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "37eeabd1b9994a78ab9db2945e4195b3": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "8bfdd1d4ea6342a48ba2167bc794c313": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_857845bed720414db8210c880e95736e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_37eeabd1b9994a78ab9db2945e4195b3", "tabbable": null, "tooltip": null, "value": 26.61}}, "fb12513bc10c4a0d830327cff4f75592": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1f52b19d11734bc6825b90e3e818ba12": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "6306e50223e14d2b90e13d702dc2376a": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_fb12513bc10c4a0d830327cff4f75592", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1f52b19d11734bc6825b90e3e818ba12", "tabbable": null, "tooltip": null, "value": 2.47}}, "764950c9800843729c0c9ee76440b92c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "cdc7218f1ec64d44949dbd6f56d808ee": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "c4478e18ab11426981b1a1cb11914f98": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_764950c9800843729c0c9ee76440b92c", "step": 1, "style": "IPY_MODEL_cdc7218f1ec64d44949dbd6f56d808ee", "tabbable": null, "tooltip": null, "value": 1}}, "bf384623571744f783cea032ad56e595": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4af598a869234f05850720eb95fc1da2": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "7a9389203b4f4a1ea15e48c08ffaa1a7": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_bf384623571744f783cea032ad56e595", "step": 1, "style": "IPY_MODEL_4af598a869234f05850720eb95fc1da2", "tabbable": null, "tooltip": null, "value": 2}}, "8620054de0b64277aed6afb5aaccc4c0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "08f5a7c9a75341248fe115b3e57caf9e": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "af5dd053e10640a9b169f102b18b8a7a": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_8620054de0b64277aed6afb5aaccc4c0", "style": "IPY_MODEL_08f5a7c9a75341248fe115b3e57caf9e", "tabbable": null, "tooltip": null, "value": false}}, "ccbd6f429ca545ae98c193ff3e417483": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7c503c9c91d84936a8f7a1af458120c9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "3582d385b9b4468eaa0bf74ff59279ec": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_ccbd6f429ca545ae98c193ff3e417483", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_7c503c9c91d84936a8f7a1af458120c9", "tabbable": null, "tooltip": null, "value": 0.00865}}, "d8f4b064bf8f465aa4cf157de933d20e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "60d7f48937454be0a5cf27950a279ad9": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "2c14d7f06e804395ba908e65e5774c08": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_d8f4b064bf8f465aa4cf157de933d20e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_60d7f48937454be0a5cf27950a279ad9", "tabbable": null, "tooltip": null, "value": 0.0}}, "fc18063ba5ac4e0a89f5aa676b7c2d7c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7b14d2a015a6469d9e0a7a54fd15d49e": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "964cc69070124139b03a4e159264e726": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_fc18063ba5ac4e0a89f5aa676b7c2d7c", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_7b14d2a015a6469d9e0a7a54fd15d49e", "tabbable": null, "tooltip": null, "value": 1.0}}, "211349abe3ba44ddb41a394185389215": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "351affda6f6f439982d15f90ed9678d6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "678eabd8d3a64f87bb23f72c1794c4b0": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_211349abe3ba44ddb41a394185389215", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_351affda6f6f439982d15f90ed9678d6", "tabbable": null, "tooltip": null, "value": 0.01525}}, "81be3a6ce0b44e2fbff4ef806773b553": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8697329484ec40ce990ab1901dfb6997": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "5fad4e3c8ae04bf9b2a83cbbf9c44622": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_81be3a6ce0b44e2fbff4ef806773b553", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8697329484ec40ce990ab1901dfb6997", "tabbable": null, "tooltip": null, "value": 0.0}}, "4ea48ab221554d58961193621c6584b2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3c7f80fd9e6c4f2cb8f2d782142ae71a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "7f417137d0814b8f9915e238426f836e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_4ea48ab221554d58961193621c6584b2", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_3c7f80fd9e6c4f2cb8f2d782142ae71a", "tabbable": null, "tooltip": null, "value": 0.1}}, "aee04d65075b4d9582ad7b4574ceeddb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9486e52bb5e346d9b4f7c2987def8e5a": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "b4d89ff1733f4e78843419433f0ddcab": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_aee04d65075b4d9582ad7b4574ceeddb", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9486e52bb5e346d9b4f7c2987def8e5a", "tabbable": null, "tooltip": null, "value": 0.19934}}, "7abdc0dd454f4781aba51572da2609db": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "09d2d3b3cee248738389cd0e4b932fa7": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "9e798615483e45e1b81ea2d24f8f8e3c": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7abdc0dd454f4781aba51572da2609db", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_09d2d3b3cee248738389cd0e4b932fa7", "tabbable": null, "tooltip": null, "value": 0.0}}, "8f29a91a23794371a69aa33117f46035": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f1d77d0290e44f3f859a1c25f72ec0a3": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "831381ebfe564ee78d9a94b570c07daa": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8f29a91a23794371a69aa33117f46035", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_f1d77d0290e44f3f859a1c25f72ec0a3", "tabbable": null, "tooltip": null, "value": 1.0}}, "1f043b626a2446a2a8d36bf6203ab7b3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5ee66ae5bd8c47aab9886b47cc677ea8": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "99da7722e1534483b12c252921185e75": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1f043b626a2446a2a8d36bf6203ab7b3", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_5ee66ae5bd8c47aab9886b47cc677ea8", "tabbable": null, "tooltip": null, "value": 0.08831}}, "7fe70b23115e4472ac371d1e35738e87": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "fa474049c69b4aebb92733a0f6669125": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a0af2d0de6b04f1681745865177cc247": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7fe70b23115e4472ac371d1e35738e87", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_fa474049c69b4aebb92733a0f6669125", "tabbable": null, "tooltip": null, "value": 0.0}}, "2f3b3171d5d74481912b70778d82a6bb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3053f0e9c4384502aa37586bb0f379d6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "2764ead1de324aa58c5ff9e3ac531c54": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_2f3b3171d5d74481912b70778d82a6bb", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_3053f0e9c4384502aa37586bb0f379d6", "tabbable": null, "tooltip": null, "value": 0.1}}, "a96eab2f400d47a1b0935a99da620661": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "9ff0ea535cdc48b5aa4ae6889d1a0c10": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "86c9007bc06a45c6a3adde02b24f34e5": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a96eab2f400d47a1b0935a99da620661", "placeholder": "\u200b", "style": "IPY_MODEL_9ff0ea535cdc48b5aa4ae6889d1a0c10", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "13da679499814d218555a2903692310d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f3a6d085726046939c254e2e9d008693": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "290038a3dce143c9bfbbe3a027259763": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_13da679499814d218555a2903692310d", "placeholder": "\u200b", "style": "IPY_MODEL_f3a6d085726046939c254e2e9d008693", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "fbe65d6c37f1438498e2cd726a3fc0da": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a4d7bf185dae4f2cac5097769850af26": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "d5c8ef4a90154e8a82b8ef048bc20b7c": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_fbe65d6c37f1438498e2cd726a3fc0da", "placeholder": "\u200b", "style": "IPY_MODEL_a4d7bf185dae4f2cac5097769850af26", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "094de157356748ddadcaec87fb817a46": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "7b9e659691d14e38aa51d4906379e308": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_8bfdd1d4ea6342a48ba2167bc794c313", "IPY_MODEL_6306e50223e14d2b90e13d702dc2376a", "IPY_MODEL_c4478e18ab11426981b1a1cb11914f98", "IPY_MODEL_7a9389203b4f4a1ea15e48c08ffaa1a7", "IPY_MODEL_af5dd053e10640a9b169f102b18b8a7a", "IPY_MODEL_86c9007bc06a45c6a3adde02b24f34e5", "IPY_MODEL_3582d385b9b4468eaa0bf74ff59279ec", "IPY_MODEL_678eabd8d3a64f87bb23f72c1794c4b0", "IPY_MODEL_b4d89ff1733f4e78843419433f0ddcab", "IPY_MODEL_99da7722e1534483b12c252921185e75", "IPY_MODEL_290038a3dce143c9bfbbe3a027259763", "IPY_MODEL_2c14d7f06e804395ba908e65e5774c08", "IPY_MODEL_5fad4e3c8ae04bf9b2a83cbbf9c44622", "IPY_MODEL_9e798615483e45e1b81ea2d24f8f8e3c", "IPY_MODEL_a0af2d0de6b04f1681745865177cc247", "IPY_MODEL_d5c8ef4a90154e8a82b8ef048bc20b7c", "IPY_MODEL_964cc69070124139b03a4e159264e726", "IPY_MODEL_7f417137d0814b8f9915e238426f836e", "IPY_MODEL_831381ebfe564ee78d9a94b570c07daa", "IPY_MODEL_2764ead1de324aa58c5ff9e3ac531c54"], "layout": "IPY_MODEL_094de157356748ddadcaec87fb817a46", "tabbable": null, "tooltip": null}}, "3c9027662517446db5df2b46b9b46534": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "0973996106d845ee8b078b66ee49ef83": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "7ac67553b2804c49aa982ae4df7b09dd": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Mean time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3c9027662517446db5df2b46b9b46534", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0973996106d845ee8b078b66ee49ef83", "tabbable": null, "tooltip": null, "value": 137.12}}, "33aab25ab0e94e6a9afbb4fd9c276c96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8a1d9805e74c43879bae01169cfe5bf3": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "a53fa3b2cb6149a7846476cf86fd5b83": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Std dev time:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_33aab25ab0e94e6a9afbb4fd9c276c96", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8a1d9805e74c43879bae01169cfe5bf3", "tabbable": null, "tooltip": null, "value": 8.33}}, "ea1e0cd00d5040d9bf8260832298c68b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "492e336200bb4747aedc60b4b0a08f79": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "186e038b084641aa9ae89a31c695921f": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "No. Spikes:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_ea1e0cd00d5040d9bf8260832298c68b", "step": 1, "style": "IPY_MODEL_492e336200bb4747aedc60b4b0a08f79", "tabbable": null, "tooltip": null, "value": 1}}, "8a227bd43cf044b6addf7976910339e9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "31f179e1534048afb4bd4dd38ea29a57": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "ba1d69e7097d49b0abca900788426967": {"model_name": "IntTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, "description": "Seed: ", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8a227bd43cf044b6addf7976910339e9", "step": 1, "style": "IPY_MODEL_31f179e1534048afb4bd4dd38ea29a57", "tabbable": null, "tooltip": null, "value": 2}}, "bdc11eb1faa34ad187cedae898d54661": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5d0b257b0f0048caa616251791b3c7fd": {"model_name": "CheckboxStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "125px"}}, "ca552bffb3f14e5db1fa340517e0fe05": {"model_name": "CheckboxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "CheckboxView", "description": "Synchronous Inputs", "description_allow_html": false, "disabled": false, "indent": true, "layout": "IPY_MODEL_bdc11eb1faa34ad187cedae898d54661", "style": "IPY_MODEL_5d0b257b0f0048caa616251791b3c7fd", "tabbable": null, "tooltip": null, "value": false}}, "8ca0d29ca4ea4732b56b42b8a7499b79": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6ba6066643ba4f36a6f6d1c06b6c5e3e": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "544b836aedd045f8ba98371143d9d03b": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_8ca0d29ca4ea4732b56b42b8a7499b79", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6ba6066643ba4f36a6f6d1c06b6c5e3e", "tabbable": null, "tooltip": null, "value": 0.684013}}, "7f30cbc5718749c0bdeb3ceed3b5dc7d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "4bbc915b69024989928215a0888e1edb": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "7533530138de46b7ac7494f38a122c89": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_7f30cbc5718749c0bdeb3ceed3b5dc7d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_4bbc915b69024989928215a0888e1edb", "tabbable": null, "tooltip": null, "value": 0.0}}, "41881c700a4f42e5a208b3e8b01cdfcb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "29c8bbedf75b4965a9d108c37e2025af": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "cef977fcf2ae46a8829b5438df351db2": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_41881c700a4f42e5a208b3e8b01cdfcb", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_29c8bbedf75b4965a9d108c37e2025af", "tabbable": null, "tooltip": null, "value": 1.0}}, "4fb886138c114dc2b00f5febaca5bfff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "18e29d5bcedb4d6f83995a276196c318": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "25273baf411b4988aebf410f495aabc9": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_4fb886138c114dc2b00f5febaca5bfff", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_18e29d5bcedb4d6f83995a276196c318", "tabbable": null, "tooltip": null, "value": 1.43884}}, "876c4431b3c1407bba4ebdeb88f0d0f9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "bd2fca237c144fb1a29031de11a850c2": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "068b0bafa83a4c1983f62ffaa14b8b05": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_876c4431b3c1407bba4ebdeb88f0d0f9", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_bd2fca237c144fb1a29031de11a850c2", "tabbable": null, "tooltip": null, "value": 0.0}}, "0aef20bd2b824a068ab131b749b999c4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "bc90eab6d2c24a8daec3b91d9a520fd4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "cbc79ec1b27840759452970fae0f2ef0": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_0aef20bd2b824a068ab131b749b999c4", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_bc90eab6d2c24a8daec3b91d9a520fd4", "tabbable": null, "tooltip": null, "value": 0.1}}, "36c137be99d748f2b769f07400e30f33": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "12b5dd8b37af4cc2926bf7ba27f1e9f4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "0b5370e67cdc43a3b171d193a58cb9dd": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_36c137be99d748f2b769f07400e30f33", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_12b5dd8b37af4cc2926bf7ba27f1e9f4", "tabbable": null, "tooltip": null, "value": 0.008958}}, "f4a3200651b245e2814277b541491e96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "a0b1ad4d25cc4506b67a60d99fa6c0b4": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "439cf19bd4904412bb6c54f9129bb0ce": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_f4a3200651b245e2814277b541491e96", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a0b1ad4d25cc4506b67a60d99fa6c0b4", "tabbable": null, "tooltip": null, "value": 0.0}}, "e5540e29ce49427fbeb0d13a4b43b4a2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ff144b6596e9436c9cc4243c5315c525": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "bbf8d4091e3342a38542902016d84e0e": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L5_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_e5540e29ce49427fbeb0d13a4b43b4a2", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_ff144b6596e9436c9cc4243c5315c525", "tabbable": null, "tooltip": null, "value": 1.0}}, "776d44bc0030473e8c1f5c44fc87b049": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6a249108523645b0bd25215bf5394087": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "bde8460fc54d4a458355f39ef984e264": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_776d44bc0030473e8c1f5c44fc87b049", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6a249108523645b0bd25215bf5394087", "tabbable": null, "tooltip": null, "value": 3e-06}}, "3298fa7d91164f428ac75a2cdc8c7da2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "3b9f5a3a535f495d8f291a7cad61db98": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "9271ed3f56744861b06dce6e4fa902d9": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_3298fa7d91164f428ac75a2cdc8c7da2", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_3b9f5a3a535f495d8f291a7cad61db98", "tabbable": null, "tooltip": null, "value": 0.0}}, "ecd05c26b3ba4ec3ae44291a33469344": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "f824e25def3c4ef4a62e33280b16ba35": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "125px"}}, "6e1af9e4850443cfa3af673897752683": {"model_name": "BoundedFloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "L2_basket:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_ecd05c26b3ba4ec3ae44291a33469344", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_f824e25def3c4ef4a62e33280b16ba35", "tabbable": null, "tooltip": null, "value": 0.1}}, "19f09d86bdc44ca8b47ead69d8545df2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "04fa9d3bb5d24bc393d28c224575d6d0": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "1ef32be0ce034f6e8207342b8a3f20db": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_19f09d86bdc44ca8b47ead69d8545df2", "placeholder": "\u200b", "style": "IPY_MODEL_04fa9d3bb5d24bc393d28c224575d6d0", "tabbable": null, "tooltip": null, "value": "AMPA weights "}}, "7764d88e41f24c29afb4238d8570d587": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "5da4a67cf600432f8478694183fa08ec": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "9e5abc6569d6499394c815b4e12d7781": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_7764d88e41f24c29afb4238d8570d587", "placeholder": "\u200b", "style": "IPY_MODEL_5da4a67cf600432f8478694183fa08ec", "tabbable": null, "tooltip": null, "value": "NMDA weights "}}, "876c4eefa18a4b95b2aaa0dbdd21e699": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "699719fe03e44e90b2fa24817794459a": {"model_name": "HTMLStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null}}, "9c2e3a0c5cd14ff6a3c3a9bed7cb9c66": {"model_name": "HTMLModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_876c4eefa18a4b95b2aaa0dbdd21e699", "placeholder": "\u200b", "style": "IPY_MODEL_699719fe03e44e90b2fa24817794459a", "tabbable": null, "tooltip": null, "value": "Synaptic delays "}}, "ee1b1145746d4426bf0859b16f284954": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "1dd3794aabe04cfd948be15912f388d7": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_7ac67553b2804c49aa982ae4df7b09dd", "IPY_MODEL_a53fa3b2cb6149a7846476cf86fd5b83", "IPY_MODEL_186e038b084641aa9ae89a31c695921f", "IPY_MODEL_ba1d69e7097d49b0abca900788426967", "IPY_MODEL_ca552bffb3f14e5db1fa340517e0fe05", "IPY_MODEL_1ef32be0ce034f6e8207342b8a3f20db", "IPY_MODEL_544b836aedd045f8ba98371143d9d03b", "IPY_MODEL_25273baf411b4988aebf410f495aabc9", "IPY_MODEL_0b5370e67cdc43a3b171d193a58cb9dd", "IPY_MODEL_bde8460fc54d4a458355f39ef984e264", "IPY_MODEL_9e5abc6569d6499394c815b4e12d7781", "IPY_MODEL_7533530138de46b7ac7494f38a122c89", "IPY_MODEL_068b0bafa83a4c1983f62ffaa14b8b05", "IPY_MODEL_439cf19bd4904412bb6c54f9129bb0ce", "IPY_MODEL_9271ed3f56744861b06dce6e4fa902d9", "IPY_MODEL_9c2e3a0c5cd14ff6a3c3a9bed7cb9c66", "IPY_MODEL_cef977fcf2ae46a8829b5438df351db2", "IPY_MODEL_cbc79ec1b27840759452970fae0f2ef0", "IPY_MODEL_bbf8d4091e3342a38542902016d84e0e", "IPY_MODEL_6e1af9e4850443cfa3af673897752683"], "layout": "IPY_MODEL_ee1b1145746d4426bf0859b16f284954", "tabbable": null, "tooltip": null}}, "a44958eb08c542cc9207e9409ad64059": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "256355a9d98a46308d5792ca48359748": {"model_name": "AccordionModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "AccordionView", "box_style": "", "children": ["IPY_MODEL_ed11b67e104f420f87f26dde1dc016cd", "IPY_MODEL_7b9e659691d14e38aa51d4906379e308", "IPY_MODEL_1dd3794aabe04cfd948be15912f388d7"], "layout": "IPY_MODEL_a44958eb08c542cc9207e9409ad64059", "selected_index": null, "tabbable": null, "titles": ["evdist1 (distal)", "evprox1 (proximal)", "evprox2 (proximal)"], "tooltip": null}}, "39da637bde154ce994ed7379750b4d29": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "6bfff02b5a3347cda4ae76f5ccb40820": {"model_name": "OutputModel", "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "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_39da637bde154ce994ed7379750b4d29", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "", "image/png": "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22t6rq5atQpbtmx55vEnTpxAeHg46tevj7lz5+LatWt47733IJPJYGFhgRkzZuDYsWPP1ZiKUqvVeOuttxAXF4e9e/fC1tZWs83Dw0MzLdtjGRkZpXrl/ptMJoO1tXWphYiIKubxTBhDWvJuHtFjDas7oo63PXILi/Fn7J0XOpfWQU+pVEIul5dZb21tjeLi4mcer1AoYG9vrzlGLpfD0/P/e5V4enqW+5hUFwRBwOjRo3Hq1Cns378fzs7Opba3aNECZ86cQW5urmbdoUOH0LJly0qriYjIFF1NeYBLdx5AbmGGVxp7i10OkV4Z2bZkYomfjyVArX7+frNaB70ePXpg3LhxuHbtmmZdXFwcJkyYgB49ejzzeF9f31Lv4P3+++/w8vLSfH337t1y757pwjvvvIO//voLv/32GwAgNTUVqampmunbevbsiWrVqmHkyJG4fPkyVq1ahQ0bNmDixImVVhMRkSl63Anj5UbVILfQerQvIqP2SiNvuNpaIvFeHg7FpT/7gHJoHfS+++472NnZoU6dOnB0dISjoyPq1asHe3t7fPfdd888/q233kJWVpbm6z59+pR63Llt2za0a9dO27Iq7KeffsK9e/fQsmVLeHl5aZbk5JK55SwsLLBr1y6kp6ejadOmCA8Px/fff88x9IiIdEhRpMKO8yWdMDgTBlFZFuZSjGjrBwD49sjzd1J97nH04uLiEB8fD0EQEBwcjNq1az93EcaE4+gRET3bxuhkTP/jAup42WP35PZil0Okl3IKlGg1/yDyi1TYNr4NGvs6abZVNG88973y4OBgBAcHP+/hRERkwtY/6oQxlDNhEJXL3kqGsOa+WH0iESuO3MTKYc20PofWQa+oqAg///wzjhw5goyMDM0UZo8dPXpU6yKIiMh0xKXk4OLtbFhbmKFfE3bCIHqasR0C8OvJJBy6moab6Q8RqOVc0FoHvdGjR2P37t0YMGAA6tWrV6H5bYmIiB5b92he25cberMTBtEzeDpYoW/jatgacxuL9l/H94NDtDpe679h27dvx549e9C6dWttDyUiIhNXoFRhx7mSccHYCYOoYqZ1q4kd5+5gz8UUxKfmoJanfYWP1brXra+vL6ysrLQ9jIiICNvP3UVuYTHqeNmjfjVHscshMgjVneTo37Q6BAAL913X6litg97y5csxffp0xMbGorCwEGq1utRSUbdu3Xri+sfDnBARkfH59dQ/ANgJg0hbU7vWhMxMiv1XUnHl7oMKH6d10KtRowYePnyIZs2aQS6XQyaTlVoq4tixY2jQoAEOHDhQZn2jRo2wd+9ebcsiIiI9d+Xu/8+EwU4YRNrxcrDGwGY+AIAvdl97xt7/T+t39N544w2YmZnhf//7Hzw8PJ6rM0b79u2xbNky9OvXD2vWrMGAAQPw999/IywsDF999VWFZtggIiLDspYzYRC9kClda+KPmNs4dj0Dp5MyK3SM1n/TLly4gNjY2BceIHn48OFwcHDAkCFDsH//fvz222/4+eef8cYbb7zQeYmISP/kFRZjx/mSThhvtWEnDKLn4WZniRFt/fH9kRv4cnd8hY7R+tFt69atS81V+yL69euH4cOH4+eff8Zrr73GkEdEZKS2xd6FokiFBtUdUcfLQexyiAzW+E4BcLCW4dKd7Artr/UdvSFDhmDSpEm4evUq6tevX+a9vC5dulT4XF988QXWr1+PJUuWIDw8HLNmzcLnn3+ubUlERKTn1keVdMIY1op384hehJ2VDBO7BOGzbecqtL/WQW/UqFEAgA8++KDMNolEApVKVaHzTJ8+HatWrcLBgwfRrFkzdOnSBT169EB2djaWL1+ubVlERKSnLt3JxtWUHNhamuPlRuyEQfSihrX2w+qj8ajIOCVaP7r973Aq/14qGvKOHz+OjRs34tixY2jWrGTetvr16+PYsWPYvXs39u3bp21ZRESkpx53wujbuBqsZGYiV0Nk+CzMpdg5sV2F9pUIgiBUcj1PVFhYCEtLywqvNxQKhQJyuRz5+fmwtrYWuxwiIlHlFRaj2bwDUBSpsHdKe9TWYkR/IipfRfOG1nf0dKW8MGfIIY+IiEp73AmjYXVHhjwiEYgW9IiIyLgJgoBfTiQCAIayEwaRKBj0iIioUhy9noGEjFw421igb2N2wiASA4MeERFViu+PJAAAhrf2g6U5O2EQieG5gt7p06cxZswYdO3aFSkpKQCAzZs34/Tp0zotjoiIDNPVlAc4lZAJS3MphrepIXY5RCZL66D3xx9/oEuXLpBIJDh+/DgUCgUAID09HZ9++qmu6yMiIgP0fUTJu3n9Q6rDUW4hcjVEpkvroBceHo6VK1fixx9/LDUrRvv27XH27NnnKkIQhDJj8hERkWFKzynA3xfuQgLgnY4BYpdDZNK0Dno3btxAq1atyqy3trZGTk5Ohc+TnJyM119/HW5ubjA3N4dMJiu1EBGRYVp5PAnFagGdgt1Rw8VG7HKITJrWU6D5+/sjJiYGfn5+pdbv2rULdevWrfB53njjDQiCgBUrVsDDwwMSiUTbUoiISM/kFxXjf6dL5rUd3ylQ5GqISOugN2vWLIwbNw6pqalQq9XYt28fbt68iW+//RYbNmyo8HnOnTuHmJgY1KpVS9sSiIhIT607+Q9yC4pRr5oDmvs5i10OkcnTOugNGjQI7u7umDdvHmxsbDBt2jQ0atQIGzduxMsvv1zh87Ru3Ro3btxg0CMiMhIFShV+OloypMrU0JoiV0NEwHMEPQDo0qULunTp8kIXXrNmDd5++21cu3YNdevWLfNe3ouen4iIqtavp/7B/bwi1PK0Q2gdd7HLISJUMOhp0wtWKq1Y/44LFy7g9OnT2LNnT5ltEokEKpWqwtckIiJxFShV+CGi5G7etK61+N41kZ6oUCp7Uq/Y8paKGj9+PN544w2kpKSUGVqFIY+IyLD8L+oWMnMLEeRuhx71PMQuh4geqdAdvcOHD+v8wpmZmZgyZQo8PPgDgYjIkBUWq/B9xE0AwLSuNXk3j0iPVCjodezYUecXHjRoEHbv3o0JEybo/NxERFR1NkbfRsbDQvi72aJnfU+xyyGif3muzhi3bt3Ct99+i2vXrgEAgoODMX78ePj6+lb4HI6Ojpg1axb27NmDBg0alHns+9lnnz1PaUREVIWKitVYcfgGAGBKaE1IpbybR6RPtA56e/bsQb9+/dCkSRO0bt0aABAREYGlS5di+/bt6N69e4XOEx0djcaNGyMvLw+nTp3StgwiItIDm87cRnpOAfxcbfByQy+xyyGi/5AIgiBoc0CjRo3Qr18/hIeHl1o/e/ZsbN++HefPn9dpgYZGoVBALpcjPz8f1tbWYpdDRFRplCo1Onx1BCkPFPgmrDFebVJN7JKITEZF84bWc91eu3YNQ4YMKbN+6NChmke5zystLQ2LFy9Gw4YNX+g8pP8URSpk5RUhp0AJLf+tQUR6YsvZ20h5oICPsxx9G3mLXQ4RPYHWj259fHywb98+1KxZetTzffv2wcfHR+sCCgsLsX37dqxduxb79+9HcHAwXnnlFa3PQ/pLEATEpT7Ewbh0HLt+DzfSc5GZW6jZbmtpjpoeduhc2w39Q6qhupNcxGqJqCKKVWosP1Tybt6kLjVhxnfziPTSc811O2rUKBw7dgytWrUCAJw6dQpbt27FqlWrKnyeyMhIrFmzBps3b0a1atUQFxeH/fv3o3PnztqWRHoqM7cQv59Jxpazd5CYkVtqm7lUAmsLcxQVq5BbWIzYW1mIvZWFb/bHo02QG8a090OHWm4cpoFIT/0Zexd3sxWo5mSNV5vwbh6RvtI66A0bNgxBQUFYvnw51q1bB0EQEBwcjIiICE3njKeZO3cu1q1bB7VajbCwMBw9elTT65Zj6hmHu9kKfHvkJracSUZhccmsKvbWMnSu7Y5Otd3Q1NcJ3o5WMDeTQhAEZOQWIirhPv66kIJDcWk4cSMDJ25koK63A6b3qIWOtTmVEpE+KVapsfTgdQDAxC41YW6m9VtARFRFtO6M8aLMzc0xdepUfP7557CystKsl8lkOH/+POrWrVuV5eicKXfGyClQYvG+6/jtVBKK1SV/rFoHumJYa1+EBnvAwvzZvwwycwux/tQtrDqRiAcKJQCgZ30vzH+1PpxtLCq1fiKqmN+ibmHmnxdRzckaR97vBBmDHlGVq2jeeK5x9B4+fIhff/211Dh6gwcPhr29/TOPXblyJX799Vd4enri5ZdfxhtvvFHhIVlIP6nUAn6LuoXF+67hgUIJCYDu9TwxOTQI9bwdtDqXi60lJnetidHt/fHL8UR8e/gG9lxKwdl/7mPVW83QoJpjpbSBiCqmQKnC0gMld/Pe716bIY9Iz2l9Ry8iIgL9+vWDg4MDmjZtCgCIiYlBdnY2tm3bVuFZNG7duoVff/0V69atw71795CdnY21a9fijTfegJmZmfYt0ROmdkfv5M17mLX9Cm6kPwQANPJxxNxX6qFBdUednD/pXi4mbDiHS3cewMJciiVhjdG7AcfqIhLLT0cTMP/vqwhws8WBqR04QDKRSCqaN7QOenXr1kXXrl2xZMkSSKUl/5ITBAFTpkzBvn37cPXqVa2LjYyMxLp167Bp0yZIJBK89NJLWLt2rdbn0QemEvSS7+fj07+u4ODVNACAu70VZvaug76NvHTegaKwWIUPt1zE9nN3IJVI8NWAhhjQtLpOr0FEz5ZXWIw2Cw7hgUKJn4Y2Rfd6nO6MSCyVFvTkcjnOnTuHWrVqlVofHx+Pxo0bIz8///kqBlBUVIRt27Zh3bp12Llz53OfR0zGHvTyCoux9OANrD6RCKVKDUtzKcZ0CMS7nQNhJau8O7GCIOCrvdfw/ZGbkACY+2oDDG5Z8Sn3iOjFzf87Dj8dvYl61Rywc0Jb9oonElGlvaPXtWtXRERElAl6ERER6NSpk1bnunfvHk6fPo309HSo1WrN+v79+2tbFlUytVrAlpjbWLA7DvfzigAAfRp645M+wfByqPxAK5FIML1nMKxlZvh6fzxmbbsIF1sL9OQdBaIqkZiRi1UnEgAA4S/XZcgjMhBaB7127dphxowZOHLkCJo3bw6JRILTp09j7969+PDDD0uNpTdy5Mhyz7Nx40aMGDECUqkUrq6upX5oSCSSpx5LVetM0n3M3nEZV+7mAADqetvj81fqoWkN5yqvZVJoTRQWq/Ht4RuYtCEWG95uKUodRKZm1o4rKFYJeLmRN5r58e8ckaHQ+tGtv79/xU4skSAhIeGp53nrrbfwySefGHTni/8ypke3qQ8K8Pmuq9h14S4AwNnGAjN6BWNASHVRX8AWBAHTNp3Hn7F34CS3wJ4p7eFhb/XsA4nouRy4mobRa8/A2sIMER90grsd/74Ria3SHt0mJia+UGGPZWZmYujQoUYV8oxFgVKF74/cxA8RN1FYrIbMTIoRbf0xOTQINpbPNSKPTkkedci4laXA2aT7GLX2DLaOa1OhcfqISDuFxSrM2XEZQMkddYY8IsMi2m/GN99802A7XBgrRZEKq08koePCI1h68DoKi9UIreOBQ+91xMe9g/Ui5D0mM5PixyEhcLOzxKU7DzD70S8iItKtlccScSdLAV8XG4xuV7EnOkSkPyr0m3vYsGH49ttvYWdnh2HDhj1133Xr1lXowg4ODpgzZw727dunmQLt3z777LMKnaeyLFiwAMuWLUN2dja6du2Kn376CZ6exvni//W0h9h89g42Rt/SzEYR4GaLz1+ph7ZBriJXVz5XW0v8NLQpXv/xJH4/fQvNajhx2BUiHcp4WIgVh28AKOmAwcGRiQxPhYLevx+v6upR6+nTp9G4cWPk5eXh1KlTpbaJ3Ztr9erVmjl5AwICMGXKFISFhSEiIkLUunRFEAQk3MvDX+dTsOP8XSRk5Gq2BXvZ491OgejdwAtmBjAQahNfJ8x+qR5mb7+ET7ZdQhMfBwS624ldFpFRWLA7DooiFdoGuaJzMOecJjJEVT7XrSEICQlBr169MG/ePABAQkICAgMDERsbi8aNGz/1WH3tjHE7Kx/Hb9xDRPw9RCfex73cQs02W0tzdK3ribBm1dAqwEX0oK0tQRAwdn0M9l1ORS0PO/w1sS0szfnuJ9GLuHznAV5afhxSqQR7J7dHkAf/AUWkTyqtM4ZKpUJMTAySkpIgkUjg7++PJk2aaGbJeBpBELQKEdrurwuFhYU4f/48Fi5cqFkXEBAAPz8/REVFlQl6SqUSxcXFmq8VCkVVlVqGIAjIylciLacA6Q8LEZ/2EOeSHyDmVhZSskvX5SCXoU2gK/o38UbHWu4G3ZFBIpFg0esN0eP2A8SnPcTcXXH4/JV6YpdFZLAEQcCsHZchAHijhS9DHpEB0yro7dq1C+PGjcPt27dLrff19cWPP/6IHj16PPX4OnXqYMaMGRgwYABsbW3L3e/8+fNYvnw5goKCMGPGDG1KfGGZmZlQq9Vwdy/9mMLNzQ3p6ell9p83bx7Cw8PLrN998S5sbGwgM5PATCqFuVRSsjz6WhAEqAUBagFQqR/9vxpQCQLUagGFxSrkF5VeFMpH/330/wqlCgVFKmQrlMh4WICsvCIUq598g9bW0hwhNZzRvqYL2td0RS13O6Oao9LeSobvBjfBgB9O4teTSWhf0wXd6xrnO5VElW33pVTE/JMFOysZPuheW+xyiOgFVDjoXbhwAf3798ewYcMwceJEBAcHQxAEXL16FcuXL0e/fv0QHR2N+vXrl3uO9evXY9asWZgwYQLatm2LkJAQeHl5wdLSEtnZ2YiLi8OJEyfw4MEDTJs2DZMmTdJJI7Wh7ZPsmTNnYvr06ZqvFQoFXFxcMGXjeUhllrou75lsLc3hYmsJV1tLVHeyRhNfRzT1dUJdb3uDeOfuRTTxdcLUbrWwaO81vL/5AvZNcYSnA4eCINJGYbEKc3eVzFk+tWtNOMhlzziCiPRZhd/RGzFiBJRKJdavX//E7YMHD4alpWWpmTHKc/PmTfzxxx84ceIE/vnnHxQUFMDFxQWNGjVCt27d8NJLL5XphVtVCgsLIZfLsW/fPoSGhmrW+/v7Y8aMGRg7duxTj3/8zHzIj8cAcwuoVAKKBQHFKjVUagEqtYBilQBIADOJBBKJBGZSQCqRlCxSCcwkgKXMDFYyM8hlUlhZmEMuk8LawhxyC7Myi72VDO52VnC3t6zU+WYNgVot4M2VUTiVkImQGk7YPLa10QdcIl1acfgGFu29Bj9XGxyY2gHm7GlLpJcq+o5ehYNeUFAQVq1ahQ4dOjxxe0REBEaNGoUbN248X8V6JCQkBL1798bcuXMBlAwSHRAQYNCdMUxJxsNCdP/mKLLyizCxS028173Wsw8iImQ8LESHhYehKFJhzYjm6FSbPW2J9FVF80aF/6l29+5dBAQElLs9ICAAd+/e1a5KPTVhwgQsXboUf/75J86fP49Ro0ahffv2zwx5pB/c7CyxJKwRAODbw9cRlZgpckVEhuGLR8OptKvpxpBHZCQqHPQKCgpgYWFR7nYLCwsUFhaWu92QjBw5Eh9//DHGjx+PVq1awcbGBps2bRK7LNJCx9ruGNUuAGoBmPi/c8jOLxK7JCK9dulONv6MuQ0zqQSfvlxH7HKISEcq/OhWKpVi6tSpsLGxeeL2vLw8LFmyBCqVSqcFGho+utUfSpUa/b6NxOW7D9A52B2rhjczuDECiaqCIAjo//1JxN7KwpBWNTC3X/md6ohIP+h8HL0OHTogJibmmfsQ6QuZmRTfD26CnkuP4XBcOlZHJmFkW87VSfRff19MReytLNhbczgVImNT4aB35MiRSiyDqHL4uthgQf+GmPR7LL74Ow4t/Z1Rz9tB7LKeS1GxGhfvZOPK3YfIVxbD1cYS9as5oJaHLe9U0nNTqtT4YnccAGBKKIdTITI2Ws+MQWRo+jb2xtHrGdhy9jbGrY/BnintIbcwnD/6d7MV+PbITew4dxcPC5Rlttf0sMPsl+qgfU03EaojQ/d7dDJuZ+WjmpM1hrauIXY5RKRjnOtWx/iOnn5SFKnQe9kxJN7LQ78m1bAkrLHYJT3Tg3wlFu67ht+jb5WMvQjA19kG9as7wMHKHGkPC3Em6T5yFCXhb3CrGvj05bqQcdwzqqACpQptvzyMzNxCLB3UGK80riZ2SURUQZU21y2RIbK2MMMPQ0Lw8vIT2BZ7B+1ruuK1kOpil/VEarWAjWeSsWB3HB48CnHd63liYudA1K/mUOoxbWGxCt8fScCKQ9fx26l/cD0tF2tHNIe1hWkPnE0VsyYyCZm5hajpYYeXG3qLXQ4RVQL+059MRm1Pe3zyUl0AwCfbLiHpXq7IFZWVmVuI1388iY+2XsQDhRJNfJ2wa1I7/DS0KRpUdyzzLp6luRmmdK2J38e0gpPcAqcTMzF8dTSKitUitYAMRVGxGiuPJQIAPuhey6jmviai/8egRyZlaCtfdKvrCUWRCu/8FqtXgSg+NQcvLT+Bs/9kwUlugUWvN8LWca0r1HmkmZ8zNo/9/7A3c9ulKqiYDNmfsXdwL7cQ/q426FrHQ+xyiKiSMOiRSZFIJFj0ekN4OlghLiUH8/6OE7skAMDhuHT0+y4SKQ8UCPayx54p7TGgaXWtetMGedjhl+HNIDOTYvOZZKyJTKq8gsmgCYKAHyJuAgDe6RjIu3lERoxBj0yOg7UM377ZBFKJBGsjE7H3cqqo9fxyPBGj1kYjv0iFrnU98Oe4NvCwt3quc4XUcMK8VxsAAObuuoIrdx/oslQyEgfj0pF4Lw+utpZ4tQk7YBAZMwY9MklNazhjardaAIApv5/D1ZSqD0TFKjVmbL2Iz3degVooubPy05CmL9yRYmCz6ni9mQ+KVQIm/n4OhcWmPVsNlfXt4ZK7eSPa+cHCnL8GiIwZ/4aTyZrQORA963tBoVThrdVncC+36uZqzilQYsgvp/H76VswN5Ng0euNMKNXsM4eoX36cl14O1rjZnqu5pc6EQDE/JOF2FtZkFuYYVgrjptHZOwY9MhkSSQSLAlrhHreDkjLKcDwVdHIKyyu9Osm3cvFy8tP4FRCJhysZfjf6JYY0FS3Q73YWJpj4YCGAIAfjtxE8v18nZ6fDNeKIyXB/40WNWBnxVkwiIwdgx6ZNCuZGVaPaAZ3eytcvvsAb62JRoGy8h51nkrIRN8VkfgnMw/+rjbYObEtWvi7VMq12ga5omd9LxSp1OyFSwCApHt5OHw1DeZmEozpwHmfiUwBgx6ZPHc7K/z+dks4yS0QnXgfY389C6VK98OurI1MwuCVUcgpUKJNkCt2TGgLH2cbnV/n3z7rWxfWFmY4Gp+BA1fTKvVapP++PXITAoCXGno/d4cfIjIsDHpEAALcbPHb6BawtTJHRHyGTh/jFhWr8eGWC5iz4zJUagHDWvth3YjmVfLYzN3eChO71AQAfLX3Gjjjoem6l1uIbbF3AADvdgoUuRoiqioMekSP1PV2wG+jW8LBWobIm/cw4IeTSHmgeKFzXk97iJdWHMemM8mQmUnx5YCG+OyVejCvwvloR7b1g7ONBeJTH2L/Fd7VM1WrTiRBqVKjfU031PSwE7scIqoiDHpE/9KouiP+HN8GXg7WuJqSg27fHMX2c3e0vhP2QKFE+F9X0HvZccSnPoSngxU2jW2FsGY+lVR5+axkZninY8kdnG8OXOddPRNUoFThf1G3AADjOgWIXA0RVSUGPaL/CHCzxc6JbdE2yBW5BcWY/Ps5vPpdJCLi06FWPz0kPVAoseLwDbT78jBWn0iEUqVGvybVsH9qBzTxdaqiFpQ1tFVJD8urKTmIvZUlWh0kjj9j7yA7vwg1PezQOqByOv8QkX4yF7sAIn3kYmuJ9aNa4NdTt7B43zWcS87G8FXR8Ha0Rpdgd7QKcEYNZxtYmEuRW1iMG+m5OHwtAxHX0qF41Gu3ia8TPn25Dhr5iBfwHrO2MMPAZj745XgCfjyWiB9rOItdElURQRCw8ngiAGB0O3+tptUjIsMnEfgcR6cUCgXkcjny8/NhbW0tdjmkAzkFSqw8logNp28h4+GzB1Vu6ueM8R0D0CXYXa9+qd7JVqD9l4cgkUgQOaMLe12aiOM3MjBk5Wk4yS1w6uMusDR/sZlXiEg/VDRv8I4e0TPYW8kwrVstTOoShOik+zh07R7iUnNwN0uBYrUAK5kUvs42aOLriF71PeHvWrlDpjyvao7W6FTbA4fi0rD25D/4sEdtsUuiKvBjRMndvMGtfBnyiEwQgx5RBZmbSdE60BWtA13FLuW5jWxXA4fi0rDlzG28160WzHQ05Rrpp8R7eTh+PQMyMyneauMndjlEJAJ2xiAyIW0CXOHlYI30hwU4fiND7HKokv10NAECgN4NvOBqayl2OUQkAgY9IhMilUo08+quj0oWuRqqTA8USvz5aIDkdzpyujMiU8WgR2RiBrXwgQTA4bg0ZOcXiV0OVZJNZ5JRoFShaQ0n1PFyELscIhIJgx6RianmaI0WAS4oVgn4I+aO2OVQJRAEAb+eKhkgeWRbP3GLISJRMegRmaDBLXwBAL9H8/GtMYq8mYlbmXlwsbVE93qeYpdDRCJi0CMyQT3qe8DWyhzX0x7iyt0HYpdDOrbqRBIAIKy5D2RVOK8yEekf/gQgMkGW5mboVd8LALD5LB/fGpO0nAIcuZYOqUSCYa1qiF0OEYmMQY/IRIU1K+l9u+P8XaieMYcvGY5fT/0DlVpAp9ru8HTg7CdEpo5Bj8hENa3hBG9Ha2TmFuLEzXtil0M6UKxS4/fTJe9djmjLu3lExKBHZLIkEgleaVwNALDpzG2RqyFd2HclDfdyC+HjLEe7IMOdwYWIdIdBj8iEDXz0+PbAlTTkFxWLXA29qNWRSQCAIa18IZFwejsiYtAjMmn+rjao6+2AAqUKh66mi10OvYB/MvMQnXgfluZSDGrmK3Y5RKQnGPSITNzLDUt63247nyJyJfQitj4a/LpLHQ84yGUiV0NE+oJBj8jEvdyoJOgdv54BRZFK5Groee24UBLUXwupJnIlRKRPGPSITFx1JznqeNmjQKnC4Wt8fGuIrqU+RGJGLuysZOhQ003scohIjzDoERH6PHp8u/38XZEroefxeM7ibnU9YGHOH+tE9P/4E4GI0LehNwDg6LUMFCj5+NaQCIKAnRdKAnr/EG+RqyEifcOgR0TwdZGjlqcdFEoVjsZniF0OaeHC7WzczVbA2cYCrQM4dh4RlcagR0QAgD71Hz++Ze9bQ/JHTMndvJ71vWAm5dh5RFQagx4RAfj/9/SOxmegWKUWuRqqCLVawN8XH/W2bcLHtkRUFoMeEQEAgtxt4eMsx8MCJaKT7otdDlVAdNJ93MsthIe9FUJqOIldDhHpIQY9ItLoWscDALDrYqrIlVBF/BFb8tj2pYbenPKMiJ6IQY+INHrXLwl6B6+mQxAEkauhpylWqbH3cslj2/58bEtE5WDQIyKNkBrOcJDLkPJAgfi0XLHLoac4ceMeHuQr4eMsR11ve7HLISI9xaBHRBpmUgk61nIHAM1L/qSfHj+2fbkRH9sSUflMKuj9/PPPaNOmDRwcHODm5obXXnsNCQkJpfZJTU1Fv379IJfL4eXlhfnz54tULZE4+jTwBADsu5ImciVUnsJiFQ5eLfn+9G/CuW2JqHwmFfQiIiIwfPhwHDt2DAcPHkRBQQF69eoFpVKp2ScsLAz3799HZGQkvvvuO3zxxRdYtWqViFUTVa0ONd1gaS7F1ZQcpOUUiF0OPcHh/2vv3qOqqvO/gb/PHQ4HQe4gKIhKXhETkjQVSRnHNHMyfSbLrJSmHpul0+9Xj9m47Jemq+axmp7fmkbKLtqMaYxUlj/JGybeSG4qIgQoqMgB5SYHOJzzff5Az0gioB7YnH3er7X2Svbe7P35HGivN/vy3WeMuNbUgsF+7hjkZ5C6HCLqxdRSF9CTNm/e3ObrpKQkBAUFIS8vD6NGjUJOTg7S0tKQn5+PIUOGYPTo0Vi2bBk++OADPPvssxJVTdSzXLUqxAz0xsGzRuw6WY6FD4ZKXRL9SnJm67ttZ40OlLgSIurtnOqM3q9VVlYCALy8vAAAx44dQ3BwMIYMGWJbJz4+Hrm5uTCZTO1uw2w2w2QytZmIHN304a2Xb384xWFWepuG5hYcyK8AAMwezcu2RNQxpw16QgisXLkSCQkJCA4OBgBUVFTAz8+vzXq+vr6wWq22UPhra9asgV6vt03e3t7dXjtRd5s23B8KAD+XXEVDc4vU5dBNUk9fRlOLFSP6eSDESy91OUTUy8ki6L3wwgtQKBS3nSZPnnzL9/zpT39Cbm4uNm3aZJt3N+OGvf7662hoaLBNVVVV99IKUa/gY9DhvsA+MFusOFTY/h85JI0b77Z9dDTHziOizsniHr1169Zh5cqVt12u0+nafL1ixQp89dVXOHjwIAID/32Pi7+/PyoqKtqsazQaoVQq4ePj0+62NRoNNBrNPVRP1DvFRfgh71Itdp+uwNRhAVKXQwBqTGak/2KEUgE8GsmgR0Sdk0XQ8/T0hKenZ5fWXb16NZKSknDgwAGEhYW1WRYTE4OysjIUFBRg8ODBAIC9e/di5MiRcHV1tXfZRL3a1GF++O/9hUg7a4QQgmO19QI/nCxHi0Xg/lAv+PVxkbocInIAsrh021Xr1q3D+vXr8fnnn6Nv374oLy9HeXk5mpubAQCjRo3CxIkTsXjxYmRnZyMlJQUbNmzAyy+/LHHlRD0vMtgTHnoNLtc24hcj35LRG+y4/rTtY7xsS0Rd5FRB729/+xtMJhOmT5+OwMBA25Senm5bZ+vWrfDw8EBsbCwSExPx6quvcmgVckpKpQITBvkCAHafruhkbepuVfVNOFZ8BSqlAjNGclgVIuoaWVy67aqSkpJO1wkICEBKSkr3F0PkAKYO9cPOnIvYc6YCL04Ol7ocp/ZtziVYhcCD4T7o66aVuhwichBOdUaPiO7M5AhfKBVA9vmrqGs0d/4N1G12XH+3LV95RkR3gkGPiG7LU6/F8H6eaLEK/MRhViRzqcaE7NKr0KqUSBjuL3U5RORAGPSIqENTIlrv00vlfXqSScm6CAFgwmBfuLtwOCci6joGPSLq0NRhrWeQbgyzQj0vJevGZVs+bUtEd4ZBj4g6NDyoD7zctKisb8KZ8jqpy3E656quIe9SLVw1Kjw8jJdtiejOMOgRUYcUCgUmDL5x+fayxNU4n+QTrWPnxd3nBxeNSuJqiMjRMOgRUaemDfUDAOw5w/v0eto3OZcAAHPG8GlbIrpzDHpE1KmJEb5QKhTILatBjYnDrPSU/PI6FBvrYXBRY+L1s6pERHeCQY+IOtXHRYPIEE9YhUDaWaPU5TiN5OuvPJs2LABaNQ/XRHTneOQgoi6Zct/116Hl8T69niCEwLfZrU/bPsanbYnoLjHoEVGX3Bhm5aezlbBaOcxKd8s8X42L1SZ4uWnxYLiP1OUQkYNi0COiLonwd4evuw5XG5px6mKt1OXI3rafywAAM0YFQqVUSFwNETkqBj0i6hKFQmF7ICCVl2+7VYvFih9OlgMA5t4fLHE1ROTIGPSIqMumXX/P6o95HGalOx0sqER1QzNCvPQY2c9D6nKIyIEx6BFRl00Y5AO1SoG8izWorG+SuhzZunHZdvboflAoeNmWiO4egx4RdZmbTo2xoV4QAPbwrF63aGhuwd7rA1M/fj8HSSaie8OgR0R3ZNr1p2//5xTv0+sO/3PqMhrNFgzv54EB3m5Sl0NEDo5Bj4juyI2gd/iXSjS1WCSuRn62Hi8FAMyJ4tk8Irp3DHpEdEeC++ox0NcAk9mCI0VVUpcjK6VXGnC0qAoalRK/47tticgOGPSI6I7FD209q7frJC/f2tPmo+chADw8zB+eeq3U5RCRDDDoEdEd+80wPwDA/nwjhOBbMuyhxWLF9utP2z49rr/E1RCRXDDoEdEdG92/Lzz0GlyqMaGgol7qcmRhz5kKVNU3IcRLj3EDvaUuh4hkgkGPiO6YSqnApCGtZ/W+y7kkcTXy8MWR8wCA+TEhHDuPiOyGQY+I7srMUQEAgF2nyiWuxPFdqjEhvdAItVKB+WNDpC6HiGSEQY+I7spDg33hqlHhbHkdSq80SF2OQ9ty9DysAoi7zx/eBp3U5RCRjDDoEdFdcdGoMGGILwDgu1xevr1bFqvAVxmtD2E8FcuHMIjIvhj0iOiuzRwZCAD4PpeXb+/WgbMVqKhtRKCnKyaE+0hdDhHJDIMeEd21+KF+0KiUOFlWjYraRqnLcUifpp8DAMwfGwKlkg9hEJF9MegR0V1z06kxLtwbAsD3J3lW706dq7qGg2eNUKsUeJJj5xFRN2DQI6J7MnNU6+XbnbxP744l/VQMAWD6iED48CEMIuoGDHpEdE+mDfOHSqnAzyVXUd3QLHU5DuNaUwu+vv4mjMUPhUlcDRHJFYMeEd0TT70W9w/wglUIjql3B7ZmlKKh2YJRwZ4YFewpdTlEJFMMekR0z25cvk0+cVHiShyD2WLF39OKAADP82weEXUjBj0iumezIoOgVimQUVKFy3z6tlPJJy6gvKYRIV56zLg+RA0RUXdg0COie+ah12DCIF9YBfCvzAtSl9OrWawCH+4rBAD877hBUHFIFSLqRgx6RGQXT9wfDAD4+gSDXke+y7mE0isNCPBwwZwx/aQuh4hkjkGPiOxiylA/GHRqFFyuw9nLdVKX0ysJIfDXva1n8/4wKRwaFQ/BRNS9eJQhIrtw0agwbXgAAGDr8TKJq+mdUk9fRmFFHbwNOsyLDpG6HCJyAgx6RGQ386NbL98mnyiD2WKVuJrexWIVWLcrHwCwZGIYXDQqiSsiImfAoEdEdhMd6oUB3m642tCM1FOXpS6nV0k+cQFFxnr4ubtgYWyo1OUQkZNg0CMiu1EoFHjygdZ3tn525JzE1fQejWYL3tndejbvT9OG8GweEfUYBj0isqsnxgZDo1LiaFEVSq80SF1Or/D+nkJU1DYizNeAx68/nUxE1BMY9IjIrjz1WttDGZ8f5lm9wst12Jj2CwDg7cdGcNw8IupRDHpEZHcLY1sv327/uQzNLc77UEaj2YIXv8xEi1VgzphgjBvoLXVJRORkGPSIyO6iQ70Q5tP6UMY32c75/lshBP5jew7OXq5DkKcrVj0yTOqSiMgJMegRkd0pFAosfmggAOCjtCIIISSuqOf9/WARvs2+CK1aiaSn74eHXiN1SUTkhBj0iKhbzBnTDx56DQou1+FwUZXU5fSoHZkXsO77MwCAdXNGYViQh8QVEZGzctqg98c//hEKhQJJSUlt5peXl2P27NnQ6/UIDAzE2rVrJaqQyLG5aFRY8MAAAMB/7y+SuJqec7DAiFe2ZUMAeCUhgu+zJSJJqaUuQAp79+7F/v37ERgYeMuyefPmQQiB9PR0FBcX4+mnn0ZAQACeffZZCSolcmyLxofi72lF+KnAiMLLdRjk7y51Sd3q5IUaLPniZ7RYBRaMG4CXJodLXRIROTmnO6NXU1ODxYsXY9OmTdBqtW2W5eTkIC0tDUlJSRg9ejQee+wxLFu2DB988IFE1RI5Nh+DDjMjgwAAG/YUSlxN9yqprMfTnxyDqdmCacMD8Oas4VAoOJQKEUnL6YLe0qVLsWDBAowZM+aWZceOHUNwcDCGDBlimxcfH4/c3FyYTKZ2t2c2m2EymdpMRPRvyx4eDJVSgR9yL6Kwok7qcrpFSWU95n50BFeuNWNsqBf++r9GQ8nx8oioF3CqoJecnIzc3FysXLmy3eUVFRXw8/NrM8/X1xdWqxWVlZXtfs+aNWug1+ttk7c3x8kiulmIlx6zo/rBKoC/pBZIXY7dnau6hif+fhTGuiZEhnjis0XR0Kn5ijMi6h1kEfReeOEFKBSK206TJ0+G0WjE0qVL8dlnn0GjaX+Yg7sZAuL1119HQ0ODbaqqcq6nC4m6YvnUIVArFdiVewm5ZdVSl2M3meev4tH/l46K2kaMDPbAlucfgJvOKW99JqJeSiFkMMBVdXU16uvrb7tcp9Ph1KlTiIuLg0r177+0LRYLlEolYmNj8dNPPyEpKQmrV69GaWmpbZ0DBw5gypQpqK+vh6ura6e1mEwm6PV6NDQ0dGl9Imex6ptT+Cy9BMP7eeDbl8Y79KXNGpMZfztQhI1pv6DFKhAT5o2PF94PdxeOlUdEPaOreUMWf3p6enrC09Ozw3Wio6ORm5vbZl5CQgISExOxYMECAEBMTAzKyspQUFCAwYMHA2h9QnfkyJEMbUT36JVpQ/Bt9kWculCDL4+VYsG4/lKXBACwWgXqGltQ22hGjcmMWpMZJrMFzS1WNLa0/tdktsJktqChyYKCinocyK+AyWwBAMyP6Y//enQ4NCpZXCAhIpmRRdDrCjc3N4wYMaLNPI1Gg6CgIAwc2DqC/6hRozBx4kQsXrwY77//PkpKSrBhwwa89957ElRMJC/uLhqsnDEMy7/KwtrvT2PSEG+EeLn12P6FEKi61oziymsorKhHTlkNTl6oxdnLtWi6i/fxRod5YfnDgxEb7tMN1RIR2YfTBL2u2rp1KxITExEbG4s+ffrg1Vdf5Rh6RHbyWFQQvsm+iP35FVj6j2x8/YdYqLrxEq7VKnCw0IhtP1/AwbNG1JjM7a7nplPDoFPD3UUNg04DV60KWrUSWpUSWrUSOrUSeq0KrloV/Nx1iL/PDwN9Dd1WNxGRvcjiHr3ehPfoEXXsyrVmPPx/D+DKtWYkTgrH/5l+n9330Wi24OufL+Cjg0U4X3XNNl+vVaG/txsGeLthWIA7ovp7YGQ/T/R103awNSKi3sep7tEjIsfh5abFe/NG45lNx/DRgV8wNMAds6Ps85qwK9easelQCb44cg7VDc0AAF93HeaODcHvxvTDQB83DmJMRE6FQY+IetzEIb54bfpQrP0+D/+5PQc+Bh0mDL67e92EEDh5oQabj5ZiR2aZ7X67wf7u+MOkgZgZGcQHJYjIafHSrZ3x0i1R1wgh8B/bc7D95zJoVUq8M3cUHh3d9TN7hRX1+PrEBXyXcxGlVxps8x8c5IMXJw/E+HAfnr0jItnqat5g0LMzBj2irrNaBf7z69awBwATBvvipckDER3qBXU7Z+HOVzUgJfsCvsm6hIKbXqfmqdciYXgAnh0/ABEBfXqsfiIiqTDoSYRBj+jOCCHw2eFzePv7PNtlV3cXDYYF9UGotxv0WhWqG5qRWVqNksp/P1jhplMjfqg/fjcmCOPDfdoNhkREcsWgJxEGPaK7Y6xrwsaDxdiZexEXrpraXUevVWHCYF/MieqHuPt8+U5ZInJaDHoSYdAjujdCCJReMSGvvBYlVddgaraij6saQwPccf8AL2jVPHNHRMThVYjIISkUCvT31qO/t17qUoiIHB7/NCYiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIplSS12A3AghAAAmk0niSoiIiEiubuSMG7njdhj07Kyurg4A4O3tLXElREREJHeNjY3Q6/W3Xc6gZ2cGgwEAUFlZ2eEHL0cmkwne3t6oqqqCq6ur1OX0OGfu35l7B9i/M/fvzL0Dzt2/1L0LIdDY2AhPT88O12PQszOlsvW2R71e73S/9De4uro6be+Ac/fvzL0D7N+Z+3fm3gHn7l/K3rtyQokPYxARERHJFIMeERERkUwx6NmZWq3GqlWroFY731VxZ+4dcO7+nbl3gP07c//O3Dvg3P07Su8K0dlzuURERETkkHhGj4iIiEimGPSIiIiIZIpBj4iIiEimGPSIiIiIZIpBz87WrVuHoKAg6PV6zJo1C+Xl5VKXZHdr167FmDFjYDAYEBgYiEWLFsFoNLZZ5+zZs4iLi4OrqytCQ0PxySefSFRt95o9ezYUCgV+/PFH2zxn6P3EiROIj4+HXq9H37598cQTT9iWybn/6upqPPfccwgICIDBYMCDDz6ItLQ023I59Z6cnIz4+Hh4eHhAoVCgpaWlzfKu9OrIx8OO+s/KysITTzyBoKAguLm5ISoqCtu3b79lG47af2c/+xsyMjKg0WgwYcKEW5Y5au9A5/23tLRg1apV6N+/P3Q6HYYMGYLU1NQ26/Sm/hn07GjTpk1466238OGHHyI9PR21tbWYN2+e1GXZ3U8//YTly5cjIyMDKSkpOH36dJs+zWYzZsyYAR8fHxw/fhxvvPEGEhMTsWfPHgmrtr9NmzbZXip9gzP0npeXhylTpmDChAk4fvw40tPTMX/+fADy73/58uU4fvw4duzYgezsbMTExOCRRx7B1atXZdd7Q0MDpkyZgtdee+2WZV3p1dGPhx31n5mZieDgYGzduhW5ublYtGgR5s+fj/3799vWceT+O+r9BpPJhIULF2Ly5Mm3LHPk3oHO+09MTMS//vUvJCUlIT8/H0lJSQgMDLQt73X9C7KbqKgosWLFCtvXv/zyiwAgMjMzpSuqB6SnpwsAorq6WgghREpKitDpdKK2tta2zlNPPSUeffRRiSq0v5KSEhESEiJKS0sFAJGamiqEcI7e58yZI5555pl2l8m9/2HDhokNGzbYvq6trRUAxOHDh2Xb+759+wQAYTabbfO60qtcjoft9d+eadOmiWXLltm+lkP/HfW+dOlSsXz5crFq1Soxfvz4Nsvk0LsQ7fefk5Mj1Gq1KCwsvO339bb+eUbPTpqampCdnY0pU6bY5g0cOBChoaE4evSohJV1v8rKSri4uMDNzQ0AcOzYMURHR8Pd3d22Tnx8vGw+B6vVioULF2L16tUIDg5us0zuvVssFuzatQthYWGYPHky/P39MXXqVOTk5ACQf/+xsbFISUlBZWUlLBYLPvnkEwQFBWHEiBGy7/1mnfXqjMfDyspKeHl5AZB//3v27EFqairWrFlzyzK5975z506Eh4fjq6++QkhICCIiIrB69WpYLBYAvbP/3j2cswOpqqqC1WqFn59fm/m+vr6oqKiQqKru19TUhDfffBMLFy60jQ5eUVHR7ufw6/v4HNWGDRtgMBiwaNGiW5bJvXej0YiGhga88847ePfddxEdHY0PP/wQ8fHxKCwslH3/f/3rX/H000/D19cXKpUKPj4+2LVrFwwGg+x7v1lnvTrb8fDrr79GXl6e7T49OfdfU1OD559/Hv/4xz/g4uJyy3I59w4AJSUlKC4uxu7du7F9+3ZcvHgRiYmJ0Gg0WLFiRa/sn0HPToQTvmDEYrFgwYIFAIB3333XNl/On0VeXh7+8pe/ICMjo93lcu4daD2bCQCPP/44EhMTAQAfffQRvvvuO3zzzTey7//9999HQUEBUlNT4e3tjc8//xyzZs1CZmam7Hu/WWe9OtNnkZ6ejkWLFiEpKQlhYWEA5N3/yy+/jHnz5mHcuHHtLpdz70DrMbC5uRmffvopBgwYAAA4f/48PvjgA6xYsaJX9s+gZyc+Pj5QKpW3JHaj0XhLspcDq9WKZ555BmfOnMGBAwdgMBhsy/z9/XHmzJk26xuNRvj6+vZ0mXZ39OhRlJeXo3///m3mJyQkYP78+QgLC5Nt70Dr77lKpUJERIRtnkajwcCBA1FaWirrn73JZMKf//xn/Pjjj5g4cSIAICoqCjt37sSXX34p695/rbNeneV4ePz4cfz2t7/FO++8g9///ve2+XLu/8CBAygrK7P9cW+1WiGEgFqtxqlTpxAaGirb3oHW332dTmcLeQAQERGBsrIyAL3zZ8979OxEp9MhMjIS+/bts80rLi5GSUkJHnjgAQkrsz8hBJ5//nkcOXIEqamptvtSboiJiUFGRgbq6+tt8/bu3SuLz2H27NnIyclBVlaWbQJaz2qtX79e1r0DgFarRVRUFAoLC23zWlpaUFJSgv79+8u6f7PZDLPZDJVK1Wa+UqmE1WqVde+/1lmvznA8zMzMREJCAlauXGk7u32DnPvfvXt3m+PfCy+8gKioKGRlZSEsLEzWvQPAuHHj0NTUZAt2AFBYWIiQkBAAvfRnL8kjIDL18ccfC4PBIJKTk0VWVpaIi4sTDz30kNRl2d2SJUuEj4+POHr0qLh06ZJtamlpEUII0dTUJMLDw8XcuXPFyZMnxccffyw0Go348ccfJa68e+Cmp26dofctW7YIFxcXsXnzZpGfny9eeukl4e/vL2pqamTf//jx40VMTIw4cuSIKCgoEK+//rrQarXi9OnTsuu9qqpKZGZmio0bNwoAIiMjQ2RmZoq6urou9erox8OO+s/NzRXe3t7ixRdfbHMMvDHygBCO3X9Hvf9ae0/dOnLvQnTcv9lsFkOHDhW/+c1vxMmTJ0VqaqoICgoS69evt31/b+ufQc/O1q5dKwICAoSLi4t45JFHxKVLl6Quye4AtDsVFxfb1jlz5oyYNGmS0Ol0on///iIpKUm6grvZzUFPCOfo/b333hMhISHCYDCIyZMni9zcXNsyOfdfVlYm5s+fL/z8/ISbm5sYO3as2Llzp225nHrftGlTu/+f79u3TwjRtV4d+XjYUf+rVq1qd9nChQvbbMNR++/sZ3+z9oKeEI7buxCd919UVCQSEhKEq6urGDBggFi9erXtRMcNval/hRC98M5BIiIiIrpnvEePiIiISKYY9IiIiIhkikGPiIiISKYY9IiIiIhkikGPiIiISKYY9IiIiIhkikGPiIiISKYY9IiIiIhkikGPiKgToaGhSEpK6vH9Xrt2DcHBwSguLu6W7W/ZsgXTp0/vlm0TUe/AN2MQkVNTKBQdLt+3bx+GDx8Og8EAV1fXHqqq1bp163Dq1Cl88cUX3bJ9i8WCQYMG4YsvvsCECRO6ZR9EJC0GPSJyauXl5bZ/r1+/HkePHkVycrJtnpeXF7RabY/XJYRAWFgYNm7ciKlTp3bbflasWIFz585hy5Yt3bYPIpIOL90SkVMLCAiwTW5ubtBqtW3mabXaNpduS0pKoFAokJycjLFjx8LV1RUPP/wwqqqqsG3bNoSHh6Nv375YtmwZbv472mg04sknn4Snpyd8fHzw5JNPoqqq6rZ1HTt2DBUVFYiLi7PN+/TTTxEcHIx//vOfCAsLg8FgwNKlS2GxWPDGG2/A29sbwcHB2Lx5s+17qqqqMHfuXHh5ecHNzQ2RkZE4fPiwbfmMGTOwY8cOmM1me36sRNRLqKUugIjIEb355pt4//334eHhgblz52Lu3Llwd3dHSkoKzp07hzlz5mDKlCmYOXMmAODxxx9HcHAwDh48CIVCgVdffRULFizADz/80O72Dx06hJEjR0KtbnuYrqqqwpdffolvv/3Wtp/8/HxER0fj8OHD2LZtGxYvXoyEhAT4+vrijTfeQF1dHdLS0uDq6ors7Ow2ZyjHjBmDxsZGZGVlITo6uvs+MCKSBIMeEdFdWLFiBSZNmgQAeO6557BixQqUl5fDz88PI0aMQFxcHPbv34+ZM2ciLS0N+fn52LNnjy24bdy4Ef369UNZWRmCg4Nv2f65c+cQGBh4y/ympiZs3LgR/v7+tv2UlZVhzZo1AIDXXnsNb7/9No4cOYKZM2eitLQU48ePx4gRIwAA4eHhbbbn6uoKDw8PnDt3jkGPSIYY9IiI7sLIkSNt//b394evry/8/PzazDMajQCA3NxcGI1GeHp63rKdoqKidoNeY2MjdDrdLfN9fX3h7+/fZj8eHh62r1UqFby9vW37Xrx4MebNm4fdu3dj6tSpmDdvHiIiItps09XVFSaTqYudE5Ej4T16RER3QaPR2P6tUCjafH1jntVqBQDU19dj0KBByMrKajMVFBTc9iyat7c3qqurO9xvV/Y9a9YsFBUV4amnnsKJEycwatQobN26tc36V69ehY+PT9caJyKHwqBHRNTNIiMjcf78efTp0weDBg1qM91uyJbIyEicOXPGLvsPDAzEkiVLsGPHDjz33HP47LPPbMuKi4thMpkQGRlpl30RUe/CoEdE1M2mTZuGkSNHYs6cOTh48CCKioqQmpqKJUuW3PZ74uLicPHiRZSVld3TvletWoXvvvsORUVFyMjIwKFDh9pcuj106BCGDh2KoKCge9oPEfVODHpERN1MqVRi165diIiIwJw5czB8+HAsXbq03Xv2bvDz88P06dOxbdu2e9q3Wq3GK6+8gmHDhmHGjBmIiYnBW2+9ZVu+bds2LFq06J72QUS9FwdMJiLqpQ4fPoyFCxciLy8PKpXK7tsvLi5GbGws8vPz2zzQQUTywTN6RES9VGxsLJYtW4YLFy50y/YvXLiAjz/+mCGPSMZ4Ro+IiIhIpnhGj4iIiEimGPSIiIiIZIpBj4iIiEimGPSIiIiIZIpBj4iIiEimGPSIiIiIZIpBj4iIiEimGPSIiIiIZOr/A1i463aKrVMcAAAAAElFTkSuQmCC"}}], "tabbable": null, "tooltip": null}}, "0b1901b07c0848098643759df9ff24aa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ac4ba1c2ec994915a82817f78817b667": {"model_name": "TabModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "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_b663e4b728cc44bc9e8d0e63b6790359", "IPY_MODEL_6a5ed4f3824a4c178e42e18933f1f1a6"], "layout": "IPY_MODEL_0b1901b07c0848098643759df9ff24aa", "selected_index": 1, "tabbable": null, "titles": ["ax0", "ax1"], "tooltip": null}}, "5eb8d616845046869993d8d96a10f109": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "3c702f27c3444762932a6d6cb7eec33b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "a16f3a39f51d43dc846f39333942bd58": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Simulation Data:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "style": "IPY_MODEL_3c702f27c3444762932a6d6cb7eec33b", "tabbable": null, "tooltip": null}}, "2b3dcdfa2d334d6398b1b4aca8a7d8b6": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "e7d1dc336dcb44aaaa571df6af6dc7ca": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["current dipole", "layer2 dipole", "layer5 dipole", "input histogram", "spikes", "PSD", "spectrogram", "network"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Type:", "description_allow_html": false, "disabled": true, "index": 3, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "style": "IPY_MODEL_2b3dcdfa2d334d6398b1b4aca8a7d8b6", "tabbable": null, "tooltip": null}}, "7fd093f6ca4d47c7a7f43e25c6beb68f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "def3e1ddf33a4191af829b7cdbb50cd1": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["None"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Data to Compare:", "description_allow_html": false, "disabled": true, "index": 0, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "style": "IPY_MODEL_7fd093f6ca4d47c7a7f43e25c6beb68f", "tabbable": null, "tooltip": null}}, "bfa2418a62444ee8a622e7857c1ab7a5": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "0e562ab778304936aca4703279153aa0": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["viridis", "plasma", "inferno", "magma", "cividis"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Spectrogram Colormap:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "style": "IPY_MODEL_bfa2418a62444ee8a622e7857c1ab7a5", "tabbable": null, "tooltip": null}}, "923a8cc753374b95aa3a0c1be42b471b": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "2fc6fcdabd154ff2a9297e0f74d574fe": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Dipole Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "step": null, "style": "IPY_MODEL_923a8cc753374b95aa3a0c1be42b471b", "tabbable": null, "tooltip": null, "value": 30.0}}, "0de59e3827e24debb0e380411672f88d": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "7b38ebe895514e5a91e5fdf2971c665e": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "step": null, "style": "IPY_MODEL_0de59e3827e24debb0e380411672f88d", "tabbable": null, "tooltip": null, "value": 3000.0}}, "301d8f5a35ca4bc1aa51b620c6562813": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "d13ae6aa694a49af9b3d09d4a59a825e": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "step": null, "style": "IPY_MODEL_301d8f5a35ca4bc1aa51b620c6562813", "tabbable": null, "tooltip": null, "value": 0.0}}, "2ed5609c53104099b8b72fa75d8f03df": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "704f474ed6f44c1fbcd77d37996caa8e": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "step": null, "style": "IPY_MODEL_2ed5609c53104099b8b72fa75d8f03df", "tabbable": null, "tooltip": null, "value": 1.0}}, "c86d437215c7469d8bfde056b14dca74": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "8f6680468b6240ccb9f5dacaac473bf1": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Max Spectral Frequency (Hz):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_5eb8d616845046869993d8d96a10f109", "step": null, "style": "IPY_MODEL_c86d437215c7469d8bfde056b14dca74", "tabbable": null, "tooltip": null, "value": 100.0}}, "3c5d5d99e16840d8ab6be2aa772c3d16": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "56fd818965bf40889247c2e1803b7b36": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_00e980fae3bf4f588c9cb1f835a37b77"], "layout": "IPY_MODEL_3c5d5d99e16840d8ab6be2aa772c3d16", "tabbable": null, "tooltip": null}}, "f1327715ba884d2c848fcc370867ce1d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "ceb33a76e5d34b668a7b0b988fda170a": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "9e0d7d43369441389fde8f993179e077": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Add plot", "disabled": true, "icon": "", "layout": "IPY_MODEL_f1327715ba884d2c848fcc370867ce1d", "style": "IPY_MODEL_ceb33a76e5d34b668a7b0b988fda170a", "tabbable": null, "tooltip": null}}, "20d981314841464fb489a2cc76dfa80a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "09476833c9a84602a2e7deb6402ad00a": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "99d3a06914114a6b8027426e7324a727": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Clear axis", "disabled": false, "icon": "", "layout": "IPY_MODEL_20d981314841464fb489a2cc76dfa80a", "style": "IPY_MODEL_09476833c9a84602a2e7deb6402ad00a", "tabbable": null, "tooltip": null}}, "f065537b2d2444dfb9e34ff8b22b222b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "space-between", "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}}, "48a45e8158fa4f828fe9132b8b16bc83": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_9e0d7d43369441389fde8f993179e077", "IPY_MODEL_99d3a06914114a6b8027426e7324a727"], "layout": "IPY_MODEL_f065537b2d2444dfb9e34ff8b22b222b", "tabbable": null, "tooltip": null}}, "dfc60a7011654f5db8f59b0d765ee6b9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "b663e4b728cc44bc9e8d0e63b6790359": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_e7d1dc336dcb44aaaa571df6af6dc7ca", "IPY_MODEL_a16f3a39f51d43dc846f39333942bd58", "IPY_MODEL_2fc6fcdabd154ff2a9297e0f74d574fe", "IPY_MODEL_7b38ebe895514e5a91e5fdf2971c665e", "IPY_MODEL_def3e1ddf33a4191af829b7cdbb50cd1", "IPY_MODEL_d13ae6aa694a49af9b3d09d4a59a825e", "IPY_MODEL_704f474ed6f44c1fbcd77d37996caa8e", "IPY_MODEL_8f6680468b6240ccb9f5dacaac473bf1", "IPY_MODEL_0e562ab778304936aca4703279153aa0", "IPY_MODEL_48a45e8158fa4f828fe9132b8b16bc83", "IPY_MODEL_56fd818965bf40889247c2e1803b7b36"], "layout": "IPY_MODEL_dfc60a7011654f5db8f59b0d765ee6b9", "tabbable": null, "tooltip": null}}, "1aa59b8926d242818e5f731218adb924": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "0850f1d6550a4feab94870622013641c": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "72a33474ff3246f0af220ce45f9b6f26": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["default"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Simulation Data:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "style": "IPY_MODEL_0850f1d6550a4feab94870622013641c", "tabbable": null, "tooltip": null}}, "43e41c00a3c14a3299e16a49f06e420f": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "6e9cfa055ddf4633bc6fb2884b2ac9ac": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["current dipole", "layer2 dipole", "layer5 dipole", "input histogram", "spikes", "PSD", "spectrogram", "network"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Type:", "description_allow_html": false, "disabled": true, "index": 0, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "style": "IPY_MODEL_43e41c00a3c14a3299e16a49f06e420f", "tabbable": null, "tooltip": null}}, "c3897062ba024653a0b1df453afaca43": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "7b8ec5f5821c4e458c2016a09783c674": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["None"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Data to Compare:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "style": "IPY_MODEL_c3897062ba024653a0b1df453afaca43", "tabbable": null, "tooltip": null}}, "05db4d187aeb4a9e81105bd7b52b2402": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "20ae8aa0431f495f92512015c8f3c9db": {"model_name": "DropdownModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DropdownModel", "_options_labels": ["viridis", "plasma", "inferno", "magma", "cividis"], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "DropdownView", "description": "Spectrogram Colormap:", "description_allow_html": false, "disabled": false, "index": 0, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "style": "IPY_MODEL_05db4d187aeb4a9e81105bd7b52b2402", "tabbable": null, "tooltip": null}}, "c69011c1a6304a839b0780188b1aabe5": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "b4a2ff934fba4fadbacb486c4f676184": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Dipole Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "step": null, "style": "IPY_MODEL_c69011c1a6304a839b0780188b1aabe5", "tabbable": null, "tooltip": null, "value": 30.0}}, "8e8edaebde894b2bb1383d5ec57bc811": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "1412d4be50ca4513b8675dc67b35e137": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "step": null, "style": "IPY_MODEL_8e8edaebde894b2bb1383d5ec57bc811", "tabbable": null, "tooltip": null, "value": 3000.0}}, "e8c0b45d214e46d6b32745adc8a44fc0": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "6f7e33fb1f2d4fa9bea54e797f7c10ba": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Smooth Window (ms):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "step": null, "style": "IPY_MODEL_e8c0b45d214e46d6b32745adc8a44fc0", "tabbable": null, "tooltip": null, "value": 0.0}}, "31d299910abc4754b3c3173f2ba96da5": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "b913240972d6412fbaf81f822519f308": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Data Dipole Scaling:", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "step": null, "style": "IPY_MODEL_31d299910abc4754b3c3173f2ba96da5", "tabbable": null, "tooltip": null, "value": 1.0}}, "9d76e6fd32d24579840fd88f109b7665": {"model_name": "DescriptionStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "description_width": "200px"}}, "fac220c27ad44bf5a917ff5ff51f4090": {"model_name": "FloatTextModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, "description": "Max Spectral Frequency (Hz):", "description_allow_html": false, "disabled": false, "layout": "IPY_MODEL_1aa59b8926d242818e5f731218adb924", "step": null, "style": "IPY_MODEL_9d76e6fd32d24579840fd88f109b7665", "tabbable": null, "tooltip": null, "value": 100.0}}, "f162f50dffa7438da22ada2c26669b53": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "02b3136c753f4b7797f4d769896c6963": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_80b77b2a77584f54aae7053306037323"], "layout": "IPY_MODEL_f162f50dffa7438da22ada2c26669b53", "tabbable": null, "tooltip": null}}, "8751ed178633403d9cda3441c0ffbb95": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "45708d9d7ed6418e8be222322a3c8490": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "575d69a8a2cc4867a8f78fa9bd278da1": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Add plot", "disabled": false, "icon": "", "layout": "IPY_MODEL_8751ed178633403d9cda3441c0ffbb95", "style": "IPY_MODEL_45708d9d7ed6418e8be222322a3c8490", "tabbable": null, "tooltip": null}}, "68e54d000e3940f5a5e24b6cc92c6a35": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "cb3466568fd24b9c9834a81f9f22497f": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "011160c7b4004602b9ed4e555e190cbe": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "", "description": "Clear axis", "disabled": false, "icon": "", "layout": "IPY_MODEL_68e54d000e3940f5a5e24b6cc92c6a35", "style": "IPY_MODEL_cb3466568fd24b9c9834a81f9f22497f", "tabbable": null, "tooltip": null}}, "2e97f65f79244b318179d4f4c648bef9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "space-between", "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}}, "452843fae4814fe8a57cfe10cb14b61c": {"model_name": "HBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_575d69a8a2cc4867a8f78fa9bd278da1", "IPY_MODEL_011160c7b4004602b9ed4e555e190cbe"], "layout": "IPY_MODEL_2e97f65f79244b318179d4f4c648bef9", "tabbable": null, "tooltip": null}}, "cd282182cd204875a7e81bdf3e11c6a2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "6a5ed4f3824a4c178e42e18933f1f1a6": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_6e9cfa055ddf4633bc6fb2884b2ac9ac", "IPY_MODEL_72a33474ff3246f0af220ce45f9b6f26", "IPY_MODEL_b4a2ff934fba4fadbacb486c4f676184", "IPY_MODEL_1412d4be50ca4513b8675dc67b35e137", "IPY_MODEL_7b8ec5f5821c4e458c2016a09783c674", "IPY_MODEL_6f7e33fb1f2d4fa9bea54e797f7c10ba", "IPY_MODEL_b913240972d6412fbaf81f822519f308", "IPY_MODEL_fac220c27ad44bf5a917ff5ff51f4090", "IPY_MODEL_20ae8aa0431f495f92512015c8f3c9db", "IPY_MODEL_452843fae4814fe8a57cfe10cb14b61c", "IPY_MODEL_02b3136c753f4b7797f4d769896c6963"], "layout": "IPY_MODEL_cd282182cd204875a7e81bdf3e11c6a2", "tabbable": null, "tooltip": null}}, "7edb0df8cfff42adac977fd4dfb3e8ae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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": "98%"}}, "2ee39514959e47f7be1b312ff211af53": {"model_name": "ButtonStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "button_color": null, "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "4057bf16bf7c49d1b8526274b3b9fb12": {"model_name": "ButtonModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ButtonView", "button_style": "danger", "description": "Close Figure 1", "disabled": false, "icon": "close", "layout": "IPY_MODEL_7edb0df8cfff42adac977fd4dfb3e8ae", "style": "IPY_MODEL_2ee39514959e47f7be1b312ff211af53", "tabbable": null, "tooltip": null}}, "291f58cc095d4c6b9e0a84cf568e425e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "05717cd6b4c34f8b83de5e485f212749": {"model_name": "VBoxModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "VBoxView", "box_style": "", "children": ["IPY_MODEL_4057bf16bf7c49d1b8526274b3b9fb12", "IPY_MODEL_ac4ba1c2ec994915a82817f78817b667"], "layout": "IPY_MODEL_291f58cc095d4c6b9e0a84cf568e425e", "tabbable": null, "tooltip": null}}, "f131081886fe4216aaec47442f9b9f2f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "8bf780394f6e43fa827aca92b518a7f5": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "00e980fae3bf4f588c9cb1f835a37b77": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f131081886fe4216aaec47442f9b9f2f", "placeholder": "\u200b", "style": "IPY_MODEL_8bf780394f6e43fa827aca92b518a7f5", "tabbable": null, "tooltip": null, "value": "default: input histogram"}}, "ac82654691554439a0bc0eb3eca68ac0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "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}}, "c1eb2e21bac740e8ace16d6da4499f67": {"model_name": "LabelStyleModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "80b77b2a77584f54aae7053306037323": {"model_name": "LabelModel", "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "LabelView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ac82654691554439a0bc0eb3eca68ac0", "placeholder": "\u200b", "style": "IPY_MODEL_c1eb2e21bac740e8ace16d6da4499f67", "tabbable": null, "tooltip": null, "value": "default: current dipole"}}}, "version_major": 2, "version_minor": 0}
diff --git a/dev/gui/basic_gui_usage.ipynb b/dev/gui/basic_gui_usage.ipynb
index ee832bc08..dd25ba8e6 100644
--- a/dev/gui/basic_gui_usage.ipynb
+++ b/dev/gui/basic_gui_usage.ipynb
@@ -14,10 +14,10 @@
"id": "2eba55b1-2ab7-4f07-a76c-34f5a184da4d",
"metadata": {
"execution": {
- "iopub.execute_input": "2024-06-13T15:17:30.858834Z",
- "iopub.status.busy": "2024-06-13T15:17:30.858578Z",
- "iopub.status.idle": "2024-06-13T15:17:31.238863Z",
- "shell.execute_reply": "2024-06-13T15:17:31.238221Z"
+ "iopub.execute_input": "2024-06-13T15:57:26.028353Z",
+ "iopub.status.busy": "2024-06-13T15:57:26.027876Z",
+ "iopub.status.idle": "2024-06-13T15:57:26.416806Z",
+ "shell.execute_reply": "2024-06-13T15:57:26.416184Z"
}
},
"outputs": [],
@@ -37,10 +37,10 @@
"id": "norwegian-angola",
"metadata": {
"execution": {
- "iopub.execute_input": "2024-06-13T15:17:31.259822Z",
- "iopub.status.busy": "2024-06-13T15:17:31.259352Z",
- "iopub.status.idle": "2024-06-13T15:17:31.647205Z",
- "shell.execute_reply": "2024-06-13T15:17:31.646719Z"
+ "iopub.execute_input": "2024-06-13T15:57:26.437216Z",
+ "iopub.status.busy": "2024-06-13T15:57:26.436906Z",
+ "iopub.status.idle": "2024-06-13T15:57:26.841513Z",
+ "shell.execute_reply": "2024-06-13T15:57:26.840966Z"
},
"require": [
"html2canvas"
@@ -58,10 +58,10 @@
"id": "0cda6c80-b159-443f-a425-1da555784bc8",
"metadata": {
"execution": {
- "iopub.execute_input": "2024-06-13T15:17:31.665652Z",
- "iopub.status.busy": "2024-06-13T15:17:31.665469Z",
- "iopub.status.idle": "2024-06-13T15:17:31.704724Z",
- "shell.execute_reply": "2024-06-13T15:17:31.704188Z"
+ "iopub.execute_input": "2024-06-13T15:57:26.857981Z",
+ "iopub.status.busy": "2024-06-13T15:57:26.857784Z",
+ "iopub.status.idle": "2024-06-13T15:57:26.897084Z",
+ "shell.execute_reply": "2024-06-13T15:57:26.896558Z"
}
},
"outputs": [
@@ -72,7 +72,7 @@
"