diff --git a/dev/.buildinfo b/dev/.buildinfo index c1c928c22..ec08b0ced 100644 --- a/dev/.buildinfo +++ b/dev/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 7b1c5c2ed764786850c39b03e1a32d96 +config: 6510663d1723231992ef825375bdb39e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/dev/_modules/hnn_core/hnn_io.html b/dev/_modules/hnn_core/hnn_io.html index 5ae892cc1..9344f67a6 100644 --- a/dev/_modules/hnn_core/hnn_io.html +++ b/dev/_modules/hnn_core/hnn_io.html @@ -144,6 +144,7 @@

Source code for hnn_core.hnn_io

 
 import os
 from h5io import write_hdf5, read_hdf5
+from collections import OrderedDict
 
 from .cell import Cell, Section
 from .cell_response import CellResponse
@@ -151,6 +152,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _cell_response_to_dict(net, write_output):
+    """Returns a dict of cell response data."""
     # Write cell_response as dict
     if (not net.cell_response) or (not write_output):
         return None
@@ -159,6 +161,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _rec_array_to_dict(value, write_output):
+    """Returns a dict of rec_array data."""
     rec_array_copy = value.copy()
     if not write_output:
         rec_array_copy._reset()
@@ -166,32 +169,28 @@ 

Source code for hnn_core.hnn_io

     return rec_array_copy_dict
 
 
-def _connectivity_to_list_of_dicts(connectivity):
-
-    def _conn_to_dict(conn):
-        conn_data = {
-            'target_type': conn['target_type'],
-            'target_gids': list(conn['target_gids']),
-            'num_targets': conn['num_targets'],
-            'src_type': conn['src_type'],
-            'src_gids': list(conn['src_gids']),
-            'num_srcs': conn['num_srcs'],
-            'gid_pairs': {str(key): val
-                          for key, val in conn['gid_pairs'].items()},
-            'loc': conn['loc'],
-            'receptor': conn['receptor'],
-            'nc_dict': conn['nc_dict'],
-            'allow_autapses': int(conn['allow_autapses']),
-            'probability': conn['probability'],
-        }
-        return conn_data
-
-    conns_data = [_conn_to_dict(conn) for conn in connectivity]
-
-    return conns_data
+def _conn_to_dict(conn):
+    """Converts a Connectivity object parameters to a dict format."""
+    conn_data = {
+        'target_type': conn['target_type'],
+        'target_gids': list(conn['target_gids']),
+        'num_targets': conn['num_targets'],
+        'src_type': conn['src_type'],
+        'src_gids': list(conn['src_gids']),
+        'num_srcs': conn['num_srcs'],
+        'gid_pairs': {str(key): val
+                      for key, val in conn['gid_pairs'].items()},
+        'loc': conn['loc'],
+        'receptor': conn['receptor'],
+        'nc_dict': conn['nc_dict'],
+        'allow_autapses': int(conn['allow_autapses']),
+        'probability': conn['probability'],
+    }
+    return conn_data
 
 
 def _external_drive_to_dict(drive, write_output):
+    """Returns dict of drive data from a Drive object."""
     drive_data = dict()
     for key in drive.keys():
         # Cannot store sets with hdf5
@@ -205,6 +204,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _str_to_node(node_string):
+    """Returns tuple of node values from a comma-separated string format."""
     node_tuple = node_string.split(',')
     node_tuple[1] = int(node_tuple[1])
     node = (node_tuple[0], node_tuple[1])
@@ -212,6 +212,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _read_cell_types(cell_types_data):
+    """Returns a dict of Cell objects from hdf5 encoded data"""
     cell_types = dict()
     for cell_name in cell_types_data:
         cell_data = cell_types_data[cell_name]
@@ -255,6 +256,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _read_cell_response(cell_response_data, read_output):
+    """Returns CellResponse from hdf5 encoded data"""
     if (not cell_response_data) or (not read_output):
         return None
     cell_response = CellResponse(spike_times=cell_response_data['spike_times'],
@@ -273,10 +275,24 @@ 

Source code for hnn_core.hnn_io

     return cell_response
 
 
+def _set_from_cell_specific(drive_data):
+    """Returns number of drive cells based on cell_specific bool
+
+    The n_drive_cells keyword for add_poisson_drive and add_bursty_drive
+    methods accept either an int or string (n_cells). If the bool keyword
+    cell_specific = True, n_drive_cells must be 'n_cells'.
+    """
+    if drive_data['cell_specific']:
+        return 'n_cells'
+    return drive_data['n_drive_cells']
+
+
 def _read_external_drive(net, drive_data, read_output, read_drives):
+    """Adds drives encoded in hdf5 data to a Network"""
     if not read_drives:
         return None
-    if drive_data['type'] == 'evoked':
+
+    if (drive_data['type'] == 'evoked') or (drive_data['type'] == 'gaussian'):
         # Skipped n_drive_cells here
         net.add_evoked_drive(name=drive_data['name'],
                              mu=drive_data['dynamics']['mu'],
@@ -297,7 +313,8 @@ 

Source code for hnn_core.hnn_io

                               rate_constant=(drive_data['dynamics']
                                                        ['rate_constant']),
                               location=drive_data['location'],
-                              n_drive_cells=drive_data['n_drive_cells'],
+                              n_drive_cells=(
+                                  _set_from_cell_specific(drive_data)),
                               cell_specific=drive_data['cell_specific'],
                               weights_ampa=drive_data['weights_ampa'],
                               weights_nmda=drive_data['weights_nmda'],
@@ -312,10 +329,10 @@ 

Source code for hnn_core.hnn_io

                              tstop=drive_data['dynamics']['tstop'],
                              burst_rate=drive_data['dynamics']['burst_rate'],
                              burst_std=drive_data['dynamics']['burst_std'],
-                             num_spikes=drive_data['dynamics']['num_spikes'],
+                             numspikes=drive_data['dynamics']['numspikes'],
                              spike_isi=drive_data['dynamics']['spike_isi'],
                              location=drive_data['location'],
-                             n_drive_cells=drive_data['n_drive_cells'],
+                             n_drive_cells=_set_from_cell_specific(drive_data),
                              cell_specific=drive_data['cell_specific'],
                              weights_ampa=drive_data['weights_ampa'],
                              weights_nmda=drive_data['weights_nmda'],
@@ -330,10 +347,11 @@ 

Source code for hnn_core.hnn_io

 
 
 def _read_connectivity(net, conns_data):
+    """Adds connections to a Network from hdf5 encoded connectivity"""
     # Overwrite drive connections
     net.connectivity = list()
 
-    for i, conn_data in enumerate(conns_data):
+    for conn_data in conns_data:
         src_gids = [int(s) for s in conn_data['gid_pairs'].keys()]
         target_gids_nested = [target_gid for target_gid
                               in conn_data['gid_pairs'].values()]
@@ -350,6 +368,7 @@ 

Source code for hnn_core.hnn_io

 
 
 def _read_rec_arrays(net, rec_arrays_data, read_output):
+    """Adds rec arrays to Network from hdf5 data."""
     for key in rec_arrays_data:
         rec_array = rec_arrays_data[key]
         net.add_electrode_array(name=key,
@@ -384,6 +403,7 @@ 

Source code for hnn_core.hnn_io

 
     net_data = {
         'object_type': 'Network',
+        'legacy_mode': net._legacy_mode,
         'N_pyr_x': net._N_pyr_x,
         'N_pyr_y': net._N_pyr_y,
         'celsius': net._params['celsius'],
@@ -400,7 +420,7 @@ 

Source code for hnn_core.hnn_io

                             for drive, params in net.external_drives.items()
                             },
         'external_biases': net.external_biases,
-        'connectivity': _connectivity_to_list_of_dicts(net.connectivity),
+        'connectivity': [_conn_to_dict(conn) for conn in net.connectivity],
         'rec_arrays': {ra_name: _rec_array_to_dict(ex_array, write_output)
                        for ra_name, ex_array in net.rec_arrays.items()
                        },
@@ -412,6 +432,38 @@ 

Source code for hnn_core.hnn_io

     write_hdf5(fname, net_data, overwrite=overwrite)
 
 
+def _order_drives(gid_ranges, external_drives):
+    """Returns an ordered dict of external drives by ascending gid ranges
+
+    Drive data from hdf5 are ordered alphabetically by name. This function
+    reorders the external drives by ascending gid ranges.
+
+    Parameters
+    ----------
+    gid_ranges : dict (keys: names) of range
+        Dictionary with connection or drive names as keys and ranges as values.
+    external_drives: dict (keys: drive names) of dict (keys: parameters)
+        Dictionary with drive name as keys and instances of _NetworkDrive as
+        values.
+
+    Returns
+    -------
+    OrderedDict : dict (keys: drive names) of dict (keys: parameters)
+        Ordered dict with drives by ascending gid ranges
+    """
+    ordered_drives = OrderedDict()
+    min_gid_to_drive = {min(gid_range): name
+                        for (name, gid_range) in gid_ranges.items()
+                        if name in external_drives.keys()
+                        }
+    min_gid_sorted = sorted(list(min_gid_to_drive.keys()))
+    for min_gid in min_gid_sorted:
+        drive_name = min_gid_to_drive[min_gid]
+        ordered_drives[drive_name] = external_drives[drive_name]
+
+    return ordered_drives
+
+
 
[docs]@fill_doc def read_network(fname, read_output=True, read_drives=True): """Read network from a file. @@ -437,6 +489,7 @@

Source code for hnn_core.hnn_io

         raise ValueError('The object should be of type Network. '
                          'The file contains object of '
                          'type %s' % (net_data['object_type'],))
+
     params = dict()
     params['celsius'] = net_data['celsius']
     params['threshold'] = net_data['threshold']
@@ -444,7 +497,10 @@ 

Source code for hnn_core.hnn_io

     mesh_shape = (net_data['N_pyr_x'], net_data['N_pyr_y'])
 
     # Instantiating network
-    net = Network(params, mesh_shape=mesh_shape)
+    net = Network(params,
+                  mesh_shape=mesh_shape,
+                  legacy_mode=net_data['legacy_mode']
+                  )
 
     # Setting attributes
     # Set cell types
@@ -462,8 +518,10 @@ 

Source code for hnn_core.hnn_io

     net.cell_response = _read_cell_response(net_data['cell_response'],
                                             read_output)
     # Set external drives
-    for key in net_data['external_drives'].keys():
-        _read_external_drive(net, net_data['external_drives'][key],
+    external_drive_data = _order_drives(net.gid_ranges,
+                                        net_data['external_drives'])
+    for key in external_drive_data.keys():
+        _read_external_drive(net, external_drive_data[key],
                              read_output, read_drives)
     # Set external biases
     net.external_biases = net_data['external_biases']
diff --git a/dev/_modules/hnn_core/params.html b/dev/_modules/hnn_core/params.html
index a39c62d23..5d051e18f 100644
--- a/dev/_modules/hnn_core/params.html
+++ b/dev/_modules/hnn_core/params.html
@@ -794,13 +794,7 @@ 

Source code for hnn_core.params

     return d1
 
 
-def _convert_to_path(value):
-    if isinstance(value, str):
-        value = Path(value)
-    return value
-
-
-def convert_to_hdf5(params_fname, out_fname,
+def convert_to_hdf5(params_fname, out_fname, include_drives=True,
                     overwrite=True, write_output=False):
     """Converts json or param format to hdf5
 
@@ -810,6 +804,8 @@ 

Source code for hnn_core.params

         Path to file
     out_fname: str
         Path to output
+    include_drives: bool, default=True
+        Include drives from params file
     overwrite: bool, default=True
         Overwrite file
     write_output: bool, default=False
@@ -819,18 +815,26 @@ 

Source code for hnn_core.params

     None
     """
     from .network import Network
-
+    # Validate inputs
     _validate_type(params_fname, (str, Path), 'params_fname')
     _validate_type(out_fname, (str, Path), 'out_fname')
+    # Convert to Path
+    params_fname = Path(params_fname)
+    out_fname = Path(out_fname)
+    params_suffix = params_fname.suffix.lower().split('.')[-1]
 
-    params_fname = _convert_to_path(params_fname)
-    out_fname = _convert_to_path(out_fname)
+    # Add suffix if not supplied
     if out_fname.suffix != '.hdf5':
         out_fname = out_fname.with_suffix('.hdf5')
 
-    params = read_params(params_fname)
-    net = Network(params)
-    net.write(out_fname, overwrite, write_output)
+    net = Network(params=read_params(params_fname),
+                  add_drives_from_params=include_drives,
+                  legacy_mode=True if params_suffix == 'param' else False,
+                  )
+    net.write(fname=out_fname,
+              overwrite=overwrite,
+              write_output=write_output,
+              )
     return
 
 
diff --git a/dev/generated/hnn_core.extracellular.ExtracellularArray.html b/dev/generated/hnn_core.extracellular.ExtracellularArray.html
index 9c8e5bbbc..262a55fa1 100644
--- a/dev/generated/hnn_core.extracellular.ExtracellularArray.html
+++ b/dev/generated/hnn_core.extracellular.ExtracellularArray.html
@@ -305,7 +305,7 @@ 

hnn_core.extracellular.ExtracellularArrayListedColormap may also be +instance of ListedColormap may also be provided.

voltage_offsetfloat | None (optional)

Amount to offset traces by on the voltage-axis. Useful for plotting diff --git a/dev/generated/hnn_core.viz.plot_laminar_lfp.html b/dev/generated/hnn_core.viz.plot_laminar_lfp.html index 751bb13c8..26208b288 100644 --- a/dev/generated/hnn_core.viz.plot_laminar_lfp.html +++ b/dev/generated/hnn_core.viz.plot_laminar_lfp.html @@ -173,7 +173,7 @@

hnn_core.viz.plot_laminar_lfpListedColormap may also be provided.

+ListedColormap may also be provided.

voltage_offsetfloat | None (optional)

Amount to offset traces by on the voltage-axis. Useful for plotting laminar arrays.

diff --git a/dev/gui/basic_gui_usage.html b/dev/gui/basic_gui_usage.html index b8245ad15..d7dddf6c2 100644 --- a/dev/gui/basic_gui_usage.html +++ b/dev/gui/basic_gui_usage.html @@ -198,7 +198,7 @@

Basic GUI usageBasic GUI usageBasic GUI usageBasic GUI usage -{"state": {"eade6b1d5494426d9123195cd8f6817f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "f92c4471303e4feb869044baffe4eaad": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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%"}}, "cd03c8a1f88840feaa980df12c3c4dab": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "8c335e05db6141a38aea3d33ec245a56": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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}}, "5445e8aa65234c899c56e07edecb10f7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "a7c63a17a1a0479597b984655d8efc5e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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"}}, "c9881d148ad0491bb010b29cb7cabf44": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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"}}, "9c3f97c67cef40539417c4b28d60686d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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"}}, "1baa4e65c34348e3875159bf392331e1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "34ab3c86a8cd47df908b229a4fbf1d7d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "775521d70749440faf06761bac41ee6e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "bc171c4e26f84130b81f6193eacd085e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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"}}, "50debd46e9134dd6bff2344f12838687": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "01757b82947342fa97ffc02cbe04421b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b5678edf885e4251adfa26c9758d4dad": {"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": ""}}, "03ec8980c27a4cd6b4a76454ae28feb3": {"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_01757b82947342fa97ffc02cbe04421b", "max": 1000000.0, "min": 0.0, "step": 1.0, "style": "IPY_MODEL_b5678edf885e4251adfa26c9758d4dad", "tabbable": null, "tooltip": null, "value": 170.0}}, "620d12a38b83459b9e534be761beb21e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "16273fb253a44fefbc824381b2108ed3": {"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": ""}}, "4fa010012f0d421abc82604e219c8e00": {"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_620d12a38b83459b9e534be761beb21e", "max": 10.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_16273fb253a44fefbc824381b2108ed3", "tabbable": null, "tooltip": null, "value": 0.025}}, "2678a1fd79cf4298b611adeee1c650ce": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6a2f3c296e0e4f31b5221f010352ea32": {"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": ""}}, "afb10b3e5ebb4325914edc2f567aaa12": {"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_2678a1fd79cf4298b611adeee1c650ce", "step": 1, "style": "IPY_MODEL_6a2f3c296e0e4f31b5221f010352ea32", "tabbable": null, "tooltip": null, "value": 1}}, "7d1bd1fdd8044699b1e52d209b7158d5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "01c207a1821241a8bae9ae3940b4801b": {"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}}, "0faa975ef2334e719d31afb62af20b14": {"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_7d1bd1fdd8044699b1e52d209b7158d5", "placeholder": "ID of your simulation", "style": "IPY_MODEL_01c207a1821241a8bae9ae3940b4801b", "tabbable": null, "tooltip": null, "value": "default"}}, "22e863d8cb154476a8f5528e5fb3768b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d554cdcd7ad44a868552254d71449e32": {"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": ""}}, "fc662838fe224966b694f9ea9a93f285": {"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_22e863d8cb154476a8f5528e5fb3768b", "style": "IPY_MODEL_d554cdcd7ad44a868552254d71449e32", "tabbable": null, "tooltip": null}}, "293c500e8500459789adf0a8d5746f4f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6cf5e0daab9f4fb393a6418cb9bea796": {"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}}, "e6581cdab3aa4763b0c393172de15132": {"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_293c500e8500459789adf0a8d5746f4f", "placeholder": "Fill if applies", "style": "IPY_MODEL_6cf5e0daab9f4fb393a6418cb9bea796", "tabbable": null, "tooltip": null, "value": "mpiexec"}}, "f14ca5334966447c911b9e42cb875ab7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0cc719c7a1e743d497de5bd3c60e9d4c": {"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": ""}}, "518879b2dc204b729b4146325a2f824c": {"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_f14ca5334966447c911b9e42cb875ab7", "max": 4, "min": 1, "step": 1, "style": "IPY_MODEL_0cc719c7a1e743d497de5bd3c60e9d4c", "tabbable": null, "tooltip": null, "value": 1}}, "60745ef6b4ab4c24b00e515e89f201be": {"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}}, "82a8fb27a60140588a3831f26d18f783": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3987e43a27fc4ac986271e237c2f4a2f": {"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", "button_style": "success", "description": "Load data", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_82a8fb27a60140588a3831f26d18f783", "multiple": false, "style": "IPY_MODEL_60745ef6b4ab4c24b00e515e89f201be", "tabbable": null, "tooltip": null, "value": []}}, "296a261d27c8411c90f55e281f53b6ad": {"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": ""}}, "82c47a53cfdf4501be9a7e007c2478a6": {"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"], "_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_bc171c4e26f84130b81f6193eacd085e", "style": "IPY_MODEL_296a261d27c8411c90f55e281f53b6ad", "tabbable": null, "tooltip": null}}, "3eabbae49cf5459bafe0227008d06e8a": {"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": ""}}, "5a676d04f70e4e27b7fe9b988d8dcba5": {"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_bc171c4e26f84130b81f6193eacd085e", "style": "IPY_MODEL_3eabbae49cf5459bafe0227008d06e8a", "tabbable": null, "tooltip": null}}, "59dc6d993d0448098521256ad4c80878": {"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}}, "3425d824542d4de4a69491d67debe6ec": {"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_eade6b1d5494426d9123195cd8f6817f", "style": "IPY_MODEL_59dc6d993d0448098521256ad4c80878", "tabbable": null, "tooltip": null}}, "e529558bd5a14898a446f82c1d8ca34b": {"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}}, "4d97a3e7cb3c47dcbab2fd9b88773d00": {"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_eade6b1d5494426d9123195cd8f6817f", "style": "IPY_MODEL_e529558bd5a14898a446f82c1d8ca34b", "tabbable": null, "tooltip": null}}, "4cb65399d8a04959a6e6c5a5d138e0e4": {"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}}, "40fc36d09be04647b1cafb62a278b6c5": {"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_f92c4471303e4feb869044baffe4eaad", "multiple": false, "style": "IPY_MODEL_4cb65399d8a04959a6e6c5a5d138e0e4", "tabbable": null, "tooltip": null, "value": []}}, "1c68ed7b27ca4386b844a7dec10875bc": {"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}}, "0487d6868c6b4196b44f1090bba22f55": {"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_eade6b1d5494426d9123195cd8f6817f", "multiple": false, "style": "IPY_MODEL_1c68ed7b27ca4386b844a7dec10875bc", "tabbable": null, "tooltip": null, "value": []}}, "86aad171553f4e8eabbf9589639e1b43": {"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}}, "d33639a3907e4f4e96c6dddbaf5dc19b": {"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_eade6b1d5494426d9123195cd8f6817f", "style": "IPY_MODEL_86aad171553f4e8eabbf9589639e1b43", "tabbable": null, "tooltip": null}}, "2061651ee3b2452cb98374a5faa094ec": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bc082fb7dc014a1ead23822e67e2a54f": {"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_2061651ee3b2452cb98374a5faa094ec", "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": "5bfcc91a665146e881ad8690f837ab36"}}}], "tabbable": null, "tooltip": null}}, "680bc70dc87246a08ec09eb1bda4d1b6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2cc9d00e5f6741e997566784d88f272f": {"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_680bc70dc87246a08ec09eb1bda4d1b6", "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": "404c2fe842f649e3b15b7068b2730a54"}}}], "tabbable": null, "tooltip": null}}, "56b9c301035049d3a478bf1f20d71fc1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fe98215cb28e4577856158ea9a5e5440": {"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_56b9c301035049d3a478bf1f20d71fc1", "msg_id": "", "outputs": [{"output_type": "stream", "name": "stdout", "text": "init network\ndrive type is Evoked, location=distal\ndrive type is Evoked, location=proximal\ndrive type is Evoked, location=proximal\nstart simulation\nUsing Joblib with 1 core(s).\nJoblib will run 1 trial(s) in parallel by distributing trials over 1 jobs.\nLoading custom mechanism files from /home/circleci/miniconda/envs/testenv/lib/python3.8/site-packages/hnn_core/mod/x86_64/libnrnmech.so\nBuilding the NEURON model\n[Done]\nTrial 1: 0.03 ms...\nTrial 1: 10.0 ms...\nTrial 1: 20.0 ms...\nTrial 1: 30.0 ms...\nTrial 1: 40.0 ms...\nTrial 1: 50.0 ms...\nTrial 1: 60.0 ms...\nTrial 1: 70.0 ms...\nTrial 1: 80.0 ms...\nTrial 1: 90.0 ms...\nTrial 1: 100.0 ms...\nTrial 1: 110.0 ms...\nTrial 1: 120.0 ms...\nTrial 1: 130.0 ms...\nTrial 1: 140.0 ms...\nTrial 1: 150.0 ms...\nTrial 1: 160.0 ms...\n"}], "tabbable": null, "tooltip": null}}, "71429736f7f645b4bd21bfab3105f1a7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2cfe158751924c70bfea8e5356b09b29": {"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_71429736f7f645b4bd21bfab3105f1a7", "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": "336b50f5016d4e1eb56987fc01f92aa2"}}}], "tabbable": null, "tooltip": null}}, "9094c03cdef743e79d0d24a042b5f866": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9d2f6bc7c60f42a79cb1734016d86ba9": {"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_9094c03cdef743e79d0d24a042b5f866", "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": "673f4eb4c6a74904add5656b72570b6d"}}}], "tabbable": null, "tooltip": null}}, "19336f30d3a540f68e9a4b1e00750e45": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "336b50f5016d4e1eb56987fc01f92aa2": {"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_45f8a3f28f344fee9f1ad7a2084567f8"], "layout": "IPY_MODEL_19336f30d3a540f68e9a4b1e00750e45", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "a3effcad9d644927974840466534a8c3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "673f4eb4c6a74904add5656b72570b6d": {"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_436d48fec62e44938689baa4c1b91b91"], "layout": "IPY_MODEL_a3effcad9d644927974840466534a8c3", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "9ce059112d92443abd9d3390945387ae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "aa5ace988e354de8acb1f0f2f24b00e4": {"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"}}, "fdcac94312494334b54848ee62b071a2": {"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": ["2row x 1col (1:3)", "2row x 1col (1:1)", "1row x 2col (1:1)", "single figure", "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": 0, "layout": "IPY_MODEL_9ce059112d92443abd9d3390945387ae", "style": "IPY_MODEL_aa5ace988e354de8acb1f0f2f24b00e4", "tabbable": null, "tooltip": null}}, "328bfff3de074de1ab73848399fb9c61": {"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}}, "689ba65158fa4a35b668807868865ba2": {"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_eade6b1d5494426d9123195cd8f6817f", "style": "IPY_MODEL_328bfff3de074de1ab73848399fb9c61", "tabbable": null, "tooltip": null}}, "dea8f9c168ba46b898bdc808d6f0996b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "be5435591b4a4d3087ef7f430a814bd0": {"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_dea8f9c168ba46b898bdc808d6f0996b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null}}, "2d8aee3936df4fb68c20d936dec1c0e2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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}}, "edc649b19e32472f8cbb92f720614e91": {"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}}, "591a980ae3e24c87bebea945d87d8e9b": {"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_2d8aee3936df4fb68c20d936dec1c0e2", "placeholder": "\u200b", "style": "IPY_MODEL_edc649b19e32472f8cbb92f720614e91", "tabbable": null, "tooltip": null, "value": "
Simulation finished
"}}, "fecc5c06e0de48aa925695b3bf11626c": {"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_fe98215cb28e4577856158ea9a5e5440"], "layout": "IPY_MODEL_8c335e05db6141a38aea3d33ec245a56", "tabbable": null, "tooltip": null}}, "96297f46873540a9aa958ffdd2edab6b": {"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_4d97a3e7cb3c47dcbab2fd9b88773d00", "IPY_MODEL_3987e43a27fc4ac986271e237c2f4a2f"], "layout": "IPY_MODEL_34ab3c86a8cd47df908b229a4fbf1d7d", "tabbable": null, "tooltip": null}}, "1850b468809e4b5c9fcbf9a4a933ff3c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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}}, "8ceaf56d49cd4ec4bcc976d17593af7b": {"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}}, "e8b16721b9ef40a9bf76450ea2976c02": {"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_1850b468809e4b5c9fcbf9a4a933ff3c", "placeholder": "\u200b", "style": "IPY_MODEL_8ceaf56d49cd4ec4bcc976d17593af7b", "tabbable": null, "tooltip": null, "value": "\n HUMAN NEOCORTICAL NEUROSOLVER

"}}, "0986aedee6454a928a17e908281c9b0d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fd7550f304564a32a37726503c652e93": {"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_0faa975ef2334e719d31afb62af20b14", "IPY_MODEL_03ec8980c27a4cd6b4a76454ae28feb3", "IPY_MODEL_4fa010012f0d421abc82604e219c8e00", "IPY_MODEL_afb10b3e5ebb4325914edc2f567aaa12", "IPY_MODEL_fc662838fe224966b694f9ea9a93f285", "IPY_MODEL_be5435591b4a4d3087ef7f430a814bd0"], "layout": "IPY_MODEL_0986aedee6454a928a17e908281c9b0d", "tabbable": null, "tooltip": null}}, "e3a045581cfb49649c1af9f094853b6e": {"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_fd7550f304564a32a37726503c652e93"], "layout": "IPY_MODEL_775521d70749440faf06761bac41ee6e", "tabbable": null, "tooltip": null}}, "19087d70289841f19f7ade22877eac13": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3fdc0c8b72b646548a0fef69e2856ee0": {"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_40fc36d09be04647b1cafb62a278b6c5"], "layout": "IPY_MODEL_19087d70289841f19f7ade22877eac13", "tabbable": null, "tooltip": null}}, "09f9f6d4d9fc464c99898de4099e5145": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ad5c77f0b36443a9bb743af38cae6e2e": {"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_3fdc0c8b72b646548a0fef69e2856ee0", "IPY_MODEL_2cc9d00e5f6741e997566784d88f272f"], "layout": "IPY_MODEL_09f9f6d4d9fc464c99898de4099e5145", "tabbable": null, "tooltip": null}}, "c93aead1a9aa4f9fa73462504d1d19f6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7425e94c23cb4536a716c014710de0b7": {"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_c93aead1a9aa4f9fa73462504d1d19f6", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null}}, "1ef0b90823f54ec6ae2e964e4affb894": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": 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}}, "7d16050eadaf407d8ca9fc3353310062": {"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_3425d824542d4de4a69491d67debe6ec", "IPY_MODEL_82c47a53cfdf4501be9a7e007c2478a6", "IPY_MODEL_5a676d04f70e4e27b7fe9b988d8dcba5"], "layout": "IPY_MODEL_1ef0b90823f54ec6ae2e964e4affb894", "tabbable": null, "tooltip": null}}, "0cbba81eaa3a4570a07903fa97dffc3a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": 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}}, "43c3c0832a15473fab747f2daab7c096": {"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_0487d6868c6b4196b44f1090bba22f55", "IPY_MODEL_d33639a3907e4f4e96c6dddbaf5dc19b"], "layout": "IPY_MODEL_0cbba81eaa3a4570a07903fa97dffc3a", "tabbable": null, "tooltip": null}}, "ac61ffaa0e004b999c22797bdb039920": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ed3deec00d4247ecb6c513d57b0d6384": {"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_43c3c0832a15473fab747f2daab7c096", "IPY_MODEL_7d16050eadaf407d8ca9fc3353310062"], "layout": "IPY_MODEL_ac61ffaa0e004b999c22797bdb039920", "tabbable": null, "tooltip": null}}, "4909010dba5b4ce49c6ca741ad032dbc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cef9d38263b847ba93ba64bcb684797d": {"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_ed3deec00d4247ecb6c513d57b0d6384", "IPY_MODEL_bc082fb7dc014a1ead23822e67e2a54f"], "layout": "IPY_MODEL_4909010dba5b4ce49c6ca741ad032dbc", "tabbable": null, "tooltip": null}}, "b99eb4c110c14feba05f505ee1a10d5e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1a09b6637bfa4f44a28543b0b68fc8f0": {"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}}, "48fadc1358d541b99460b736bdb6da7f": {"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_b99eb4c110c14feba05f505ee1a10d5e", "placeholder": "\u200b", "style": "IPY_MODEL_1a09b6637bfa4f44a28543b0b68fc8f0", "tabbable": null, "tooltip": null, "value": "Run simulation to add figures here."}}, "cc58fc683e6d4d02bfa2a4d6a6249b7b": {"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_9d2f6bc7c60f42a79cb1734016d86ba9"], "layout": "IPY_MODEL_a7c63a17a1a0479597b984655d8efc5e", "tabbable": null, "tooltip": null}}, "fec53da7c93e47ec89bb20b80805da2d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_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}}, "a5d5405ea2e74aa0a67e6311663cfacf": {"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_fdcac94312494334b54848ee62b071a2", "IPY_MODEL_689ba65158fa4a35b668807868865ba2"], "layout": "IPY_MODEL_fec53da7c93e47ec89bb20b80805da2d", "tabbable": null, "tooltip": null}}, "38a03936de2f423085936f1bdd10cdf5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "20c231172fa94ad18c0148b6dbdf7efd": {"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}}, "6768ef48dba14a47bbb8a8bc92967750": {"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_38a03936de2f423085936f1bdd10cdf5", "placeholder": "\u200b", "style": "IPY_MODEL_20c231172fa94ad18c0148b6dbdf7efd", "tabbable": null, "tooltip": null, "value": "Figure config:"}}, "b67e5621677e4cb7abaece72e4a7c801": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0bd8ac254a9b46a3b5e1961ca434fb93": {"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_a5d5405ea2e74aa0a67e6311663cfacf", "IPY_MODEL_6768ef48dba14a47bbb8a8bc92967750", "IPY_MODEL_2cfe158751924c70bfea8e5356b09b29"], "layout": "IPY_MODEL_b67e5621677e4cb7abaece72e4a7c801", "tabbable": null, "tooltip": null}}, "b6443065842b40c28f0602f6922a0848": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3abc1f3ca4e4426d8dede7946c5be71b": {"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_e3a045581cfb49649c1af9f094853b6e", "IPY_MODEL_ad5c77f0b36443a9bb743af38cae6e2e", "IPY_MODEL_cef9d38263b847ba93ba64bcb684797d", "IPY_MODEL_0bd8ac254a9b46a3b5e1961ca434fb93"], "layout": "IPY_MODEL_b6443065842b40c28f0602f6922a0848", "selected_index": 0, "tabbable": null, "titles": ["Simulation", "Network connectivity", "External drives", "Visualization"], "tooltip": null}}, "c8e7a3b281e44f42bf015a19f4dbd4af": {"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_3abc1f3ca4e4426d8dede7946c5be71b"], "layout": "IPY_MODEL_1baa4e65c34348e3875159bf392331e1", "tabbable": null, "tooltip": null}}, "e2cee9c5d678462caf6e6ceb82bb8195": {"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_c8e7a3b281e44f42bf015a19f4dbd4af", "IPY_MODEL_96297f46873540a9aa958ffdd2edab6b", "IPY_MODEL_fecc5c06e0de48aa925695b3bf11626c"], "layout": "IPY_MODEL_9c3f97c67cef40539417c4b28d60686d", "tabbable": null, "tooltip": null}}, "1759de3ea5824099bc1268fb45143dca": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "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}}, "12c2cb74c4b04373be195f82d4242143": {"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_e8b16721b9ef40a9bf76450ea2976c02", "IPY_MODEL_591a980ae3e24c87bebea945d87d8e9b", "IPY_MODEL_e2cee9c5d678462caf6e6ceb82bb8195", "IPY_MODEL_cc58fc683e6d4d02bfa2a4d6a6249b7b"], "layout": "IPY_MODEL_1759de3ea5824099bc1268fb45143dca", "tabbable": null, "tooltip": null}}, "6be298da78824696bbbdde07e4418cab": {"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": ""}}, "d7a10c67ce774d7f835d8e73e861b380": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4b09d4adee864373b0d05f649c6973fb": {"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_d7a10c67ce774d7f835d8e73e861b380", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6be298da78824696bbbdde07e4418cab", "tabbable": null, "tooltip": null, "value": 0.02}}, "487ef07b67264551baabe18f3a9b48bb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3dee1b21b8b647aa8182821ca76681b7": {"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}}, "05237bb81ab84c1d81dcdd12929a6c45": {"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_487ef07b67264551baabe18f3a9b48bb", "placeholder": "\u200b", "style": "IPY_MODEL_3dee1b21b8b647aa8182821ca76681b7", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "52b8496ac7474548a1c89b5df684f2c5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e18ef0432e404c3f93c62cab7db596ce": {"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}}, "c425eed97b644e3cb73d9067fb2ae0ac": {"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_52b8496ac7474548a1c89b5df684f2c5", "placeholder": "\u200b", "style": "IPY_MODEL_e18ef0432e404c3f93c62cab7db596ce", "tabbable": null, "tooltip": null, "value": "
"}}, "fa0d23d9634844c5a15b81246505a0ee": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f61ab6226f894ad2a57cdb32c2c4b8eb": {"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_05237bb81ab84c1d81dcdd12929a6c45", "IPY_MODEL_4b09d4adee864373b0d05f649c6973fb", "IPY_MODEL_c425eed97b644e3cb73d9067fb2ae0ac"], "layout": "IPY_MODEL_fa0d23d9634844c5a15b81246505a0ee", "tabbable": null, "tooltip": null}}, "1ccaf2574e3144b0bf8d541bae04e7fa": {"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": ""}}, "4cc919b504744d669f267bf818f98d3f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d66576becbb442d3ad25cdd104f0a356": {"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_4cc919b504744d669f267bf818f98d3f", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1ccaf2574e3144b0bf8d541bae04e7fa", "tabbable": null, "tooltip": null, "value": 0.05}}, "4686340184464b29be6875268ba9db8b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "071ca42e7df2415a9069cd061af1ea4f": {"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}}, "7d85567c87ed4dc49646a821448602ba": {"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_4686340184464b29be6875268ba9db8b", "placeholder": "\u200b", "style": "IPY_MODEL_071ca42e7df2415a9069cd061af1ea4f", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "c4920d4813334e93b8420e2487ed9f3a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a2d0258a04914a51bd889176334a9b9e": {"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}}, "3d846dda903b4830bb2d0c022b336bfe": {"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_c4920d4813334e93b8420e2487ed9f3a", "placeholder": "\u200b", "style": "IPY_MODEL_a2d0258a04914a51bd889176334a9b9e", "tabbable": null, "tooltip": null, "value": "
"}}, "0d505fead373445b87c0dae94f8dc6d4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "40b8b4280f5c460abc27d245292ce8c6": {"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_7d85567c87ed4dc49646a821448602ba", "IPY_MODEL_d66576becbb442d3ad25cdd104f0a356", "IPY_MODEL_3d846dda903b4830bb2d0c022b336bfe"], "layout": "IPY_MODEL_0d505fead373445b87c0dae94f8dc6d4", "tabbable": null, "tooltip": null}}, "90d7b7e9995240b484048b844d9222b3": {"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": ""}}, "c88edc7ecf414e139c053292970205cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4c2496c3e09248f69cd68f892375880e": {"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_c88edc7ecf414e139c053292970205cd", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_90d7b7e9995240b484048b844d9222b3", "tabbable": null, "tooltip": null, "value": 0.05}}, "233f3a7e2d4b46c0afa9af41131d7a75": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f1956b3a98f74d24b5b1eca7c26bd5a9": {"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}}, "be9a37eb88c440eda62c93b657d030d1": {"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_233f3a7e2d4b46c0afa9af41131d7a75", "placeholder": "\u200b", "style": "IPY_MODEL_f1956b3a98f74d24b5b1eca7c26bd5a9", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabab

"}}, "b364953d67ed4ef1ae3a183f963f1fa4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "028f20db5c63478a9d16126b8371fbb8": {"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}}, "bf77f68d018648708141d3e2e56444b0": {"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_b364953d67ed4ef1ae3a183f963f1fa4", "placeholder": "\u200b", "style": "IPY_MODEL_028f20db5c63478a9d16126b8371fbb8", "tabbable": null, "tooltip": null, "value": "
"}}, "dd667092da704539bae13d2ed3cb3908": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d138763e1b9c4736a927a74f76d60890": {"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_be9a37eb88c440eda62c93b657d030d1", "IPY_MODEL_4c2496c3e09248f69cd68f892375880e", "IPY_MODEL_bf77f68d018648708141d3e2e56444b0"], "layout": "IPY_MODEL_dd667092da704539bae13d2ed3cb3908", "tabbable": null, "tooltip": null}}, "9aa94d10a4284518a63444acd09ad37d": {"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": ""}}, "9ed0113c2b564128886e35965aef42c3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b1e9a1e9577745bd8d763dd7c8ac706e": {"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_9ed0113c2b564128886e35965aef42c3", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9aa94d10a4284518a63444acd09ad37d", "tabbable": null, "tooltip": null, "value": 0.001}}, "90d8b053c0924cca83246e77457ca235": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "450659a86c1844b1b1c7d1eba2200bd3": {"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}}, "a747bcdc13f2451290a9068fd2265d84": {"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_90d8b053c0924cca83246e77457ca235", "placeholder": "\u200b", "style": "IPY_MODEL_450659a86c1844b1b1c7d1eba2200bd3", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "49f64ceaa4b644d4ad1145c82c9242cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9f5b3ec7cf474e5ba3be012633421cd8": {"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}}, "27848abeebd0401284972af1f78a6130": {"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_49f64ceaa4b644d4ad1145c82c9242cd", "placeholder": "\u200b", "style": "IPY_MODEL_9f5b3ec7cf474e5ba3be012633421cd8", "tabbable": null, "tooltip": null, "value": "
"}}, "1ccc7d1803024021b51a1f81e3fedfc3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a04ae09c85a6446fa9e3f2b912126e5e": {"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_a747bcdc13f2451290a9068fd2265d84", "IPY_MODEL_b1e9a1e9577745bd8d763dd7c8ac706e", "IPY_MODEL_27848abeebd0401284972af1f78a6130"], "layout": "IPY_MODEL_1ccc7d1803024021b51a1f81e3fedfc3", "tabbable": null, "tooltip": null}}, "d7a2021d50024235af86848629fa3126": {"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": ""}}, "f14c6ba8ae51464a8d806f7e494fe108": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f8831c9b239b4ec09db5b9677bb82a31": {"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_f14c6ba8ae51464a8d806f7e494fe108", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d7a2021d50024235af86848629fa3126", "tabbable": null, "tooltip": null, "value": 0.0005}}, "8930cfeaf64f4328aebbce634f7be74b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "709169496df744bcb695622be1ef076e": {"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}}, "e49cb1e8f3e94e5eb2e5ce1a66143951": {"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_8930cfeaf64f4328aebbce634f7be74b", "placeholder": "\u200b", "style": "IPY_MODEL_709169496df744bcb695622be1ef076e", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "adb4034c42d041619dda042aa7b992ac": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd6c059b74a04876a2dd054df2847ea2": {"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}}, "22211fd14fd64505baebb4e7871a4968": {"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_adb4034c42d041619dda042aa7b992ac", "placeholder": "\u200b", "style": "IPY_MODEL_cd6c059b74a04876a2dd054df2847ea2", "tabbable": null, "tooltip": null, "value": "
"}}, "ae53877acaec4896899d6dfc0c26c17e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "131592e2aaa944178d332b42f0188136": {"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_e49cb1e8f3e94e5eb2e5ce1a66143951", "IPY_MODEL_f8831c9b239b4ec09db5b9677bb82a31", "IPY_MODEL_22211fd14fd64505baebb4e7871a4968"], "layout": "IPY_MODEL_ae53877acaec4896899d6dfc0c26c17e", "tabbable": null, "tooltip": null}}, "62af885a132a4d3abe8b9a2d130d260f": {"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": ""}}, "8646597e41c0463b88a41477ae704e3b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ad9d3aa5cdb24131bf4d8776dc663af6": {"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_8646597e41c0463b88a41477ae704e3b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_62af885a132a4d3abe8b9a2d130d260f", "tabbable": null, "tooltip": null, "value": 0.0005}}, "4bc951fa21bf40d5a236d87c0a9f083d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2943d2786a8e4c599afd8ab41c92e2e5": {"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}}, "5b6b549c49c64bdbad709bd70f9c6739": {"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_4bc951fa21bf40d5a236d87c0a9f083d", "placeholder": "\u200b", "style": "IPY_MODEL_2943d2786a8e4c599afd8ab41c92e2e5", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "c658a6a5143e46688178220db3bfe2ab": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3b740102b06642dc897ec4f782468e01": {"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}}, "d684361385ef4503be7aa8b6a9bddf9a": {"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_c658a6a5143e46688178220db3bfe2ab", "placeholder": "\u200b", "style": "IPY_MODEL_3b740102b06642dc897ec4f782468e01", "tabbable": null, "tooltip": null, "value": "
"}}, "142d0d55c0ab49c6a3c24ca22ac82dbf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d3aeefd7b05545ddb8d89ea08aa026d1": {"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_5b6b549c49c64bdbad709bd70f9c6739", "IPY_MODEL_ad9d3aa5cdb24131bf4d8776dc663af6", "IPY_MODEL_d684361385ef4503be7aa8b6a9bddf9a"], "layout": "IPY_MODEL_142d0d55c0ab49c6a3c24ca22ac82dbf", "tabbable": null, "tooltip": null}}, "1c9aa97416264004a808e119ca398749": {"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": ""}}, "0ef3f6afd95644d48d43fcf488f37512": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f175c1e9a2dd4e05b34e01c74f61b948": {"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_0ef3f6afd95644d48d43fcf488f37512", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1c9aa97416264004a808e119ca398749", "tabbable": null, "tooltip": null, "value": 0.0005}}, "c99f21cf795c44bfb1af7b14d7315284": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "15425fb34d2e4f7089e1d76c3c108107": {"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}}, "3f01961a1efa41d5ba05d6b9a135cb06": {"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_c99f21cf795c44bfb1af7b14d7315284", "placeholder": "\u200b", "style": "IPY_MODEL_15425fb34d2e4f7089e1d76c3c108107", "tabbable": null, "tooltip": null, "value": "

\n Receptor: nmda

"}}, "d74bd15067354f72b4e515cc26a88d4c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7e4d921024ca4d35932840671d454f98": {"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}}, "26c5cd1be1a44ac494d2c84a138cd0ce": {"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_d74bd15067354f72b4e515cc26a88d4c", "placeholder": "\u200b", "style": "IPY_MODEL_7e4d921024ca4d35932840671d454f98", "tabbable": null, "tooltip": null, "value": "
"}}, "a472cfbb17664f838717cbf46437216a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "36a8823ac93b4fc38f60eb3c9965f406": {"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_3f01961a1efa41d5ba05d6b9a135cb06", "IPY_MODEL_f175c1e9a2dd4e05b34e01c74f61b948", "IPY_MODEL_26c5cd1be1a44ac494d2c84a138cd0ce"], "layout": "IPY_MODEL_a472cfbb17664f838717cbf46437216a", "tabbable": null, "tooltip": null}}, "71c07904ad17477794e61d9c3c63dc9d": {"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": ""}}, "f887503e940d400ca99af4a251ffe40f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "37c4fb6c9bc94dc49dca5479da7e9145": {"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_f887503e940d400ca99af4a251ffe40f", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_71c07904ad17477794e61d9c3c63dc9d", "tabbable": null, "tooltip": null, "value": 0.00025}}, "3cd5d57efa2d4dab871cca617162078b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c08ed5fb74a74b3d864058f5d07bea96": {"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}}, "0b0dd3c2fcaf4f219b742f1fa17e161a": {"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_3cd5d57efa2d4dab871cca617162078b", "placeholder": "\u200b", "style": "IPY_MODEL_c08ed5fb74a74b3d864058f5d07bea96", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "61ca75027b0740b69d77b5bed8e5b867": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "887cee370dde4ce098088387e8842dbf": {"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}}, "005b28d0c6e54394a3d5b392bf642ea3": {"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_61ca75027b0740b69d77b5bed8e5b867", "placeholder": "\u200b", "style": "IPY_MODEL_887cee370dde4ce098088387e8842dbf", "tabbable": null, "tooltip": null, "value": "
"}}, "3a63e8ff05184758910ba45e5dec32c7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fc7d7d5d6af143a9b08655f803ddf734": {"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_0b0dd3c2fcaf4f219b742f1fa17e161a", "IPY_MODEL_37c4fb6c9bc94dc49dca5479da7e9145", "IPY_MODEL_005b28d0c6e54394a3d5b392bf642ea3"], "layout": "IPY_MODEL_3a63e8ff05184758910ba45e5dec32c7", "tabbable": null, "tooltip": null}}, "08a65e82d7a449ccb95a258e5a43f5af": {"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": ""}}, "8a2a45ee7df64b13b416f177079cd81e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a42f19ad6f3044e2895d8e8032a15cdd": {"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_8a2a45ee7df64b13b416f177079cd81e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_08a65e82d7a449ccb95a258e5a43f5af", "tabbable": null, "tooltip": null, "value": 0.00025}}, "02a2faeb5dfb445fa952252b11e9f24f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f7800c3ce5f849dbb76e5749f5b901f7": {"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}}, "6fedabc238ad42f38e8f42596c5d4874": {"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_02a2faeb5dfb445fa952252b11e9f24f", "placeholder": "\u200b", "style": "IPY_MODEL_f7800c3ce5f849dbb76e5749f5b901f7", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "b8666a3681bd461bad3dbef78f266157": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3ac0026a50944616a9691a0799898110": {"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}}, "b2df8c84027b4021a5387e186e7a63d5": {"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_b8666a3681bd461bad3dbef78f266157", "placeholder": "\u200b", "style": "IPY_MODEL_3ac0026a50944616a9691a0799898110", "tabbable": null, "tooltip": null, "value": "
"}}, "6873c82e49354b6c84c45647590e45f2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "26aa3403e7c6419f88583ca30aa91739": {"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_6fedabc238ad42f38e8f42596c5d4874", "IPY_MODEL_a42f19ad6f3044e2895d8e8032a15cdd", "IPY_MODEL_b2df8c84027b4021a5387e186e7a63d5"], "layout": "IPY_MODEL_6873c82e49354b6c84c45647590e45f2", "tabbable": null, "tooltip": null}}, "6b83f28ac7c147aa83ce07e9ffe542ab": {"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": ""}}, "bec9dbe6e1af4c52be1f53d4beb8fad2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f1b4c30497d942ebbcc383232c1262b5": {"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_bec9dbe6e1af4c52be1f53d4beb8fad2", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6b83f28ac7c147aa83ce07e9ffe542ab", "tabbable": null, "tooltip": null, "value": 0.00025}}, "e1c9d01b2a0d437e8eb7c42638010d2f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "35e3bfec5c6c45e482715abec2e68ded": {"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}}, "17a4365ced0d479d92b872706b41e8b4": {"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_e1c9d01b2a0d437e8eb7c42638010d2f", "placeholder": "\u200b", "style": "IPY_MODEL_35e3bfec5c6c45e482715abec2e68ded", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "c9edaee8edc54f1c8e0e97e5b2cd04b9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8d57ec34f78449e6907e433286be236b": {"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}}, "2527df20d4f944b3a40c0d70c85d4d81": {"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_c9edaee8edc54f1c8e0e97e5b2cd04b9", "placeholder": "\u200b", "style": "IPY_MODEL_8d57ec34f78449e6907e433286be236b", "tabbable": null, "tooltip": null, "value": "
"}}, "0df9d27f9bed4558b221978522cc6e9e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "275e076e6bf04693b233847ce1a0ac8d": {"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_17a4365ced0d479d92b872706b41e8b4", "IPY_MODEL_f1b4c30497d942ebbcc383232c1262b5", "IPY_MODEL_2527df20d4f944b3a40c0d70c85d4d81"], "layout": "IPY_MODEL_0df9d27f9bed4558b221978522cc6e9e", "tabbable": null, "tooltip": null}}, "724f10888373464f8904b10a1330d8a3": {"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": ""}}, "c029b610ecee4b419778d87f3e4d346e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "299ba804e1f54426b879bdaf181ab02f": {"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_c029b610ecee4b419778d87f3e4d346e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_724f10888373464f8904b10a1330d8a3", "tabbable": null, "tooltip": null, "value": 0.02}}, "be19d740003f4d01abedb9a523d59c8d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "daf4acbfcce049b39f3c9c124cb34617": {"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}}, "81e98b4db80f4a72a21911688960ee1e": {"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_be19d740003f4d01abedb9a523d59c8d", "placeholder": "\u200b", "style": "IPY_MODEL_daf4acbfcce049b39f3c9c124cb34617", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "045c93fa7b994108913bc105d66439b3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0e0d490faf3042ff8716af5f26755fae": {"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}}, "489fc6b41ea34e5bb5c42a3195ff0070": {"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_045c93fa7b994108913bc105d66439b3", "placeholder": "\u200b", "style": "IPY_MODEL_0e0d490faf3042ff8716af5f26755fae", "tabbable": null, "tooltip": null, "value": "
"}}, "87be1a32542d43df8e981f58951c8ac4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6a3dfaf5b5af49c6857414c451de7743": {"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_81e98b4db80f4a72a21911688960ee1e", "IPY_MODEL_299ba804e1f54426b879bdaf181ab02f", "IPY_MODEL_489fc6b41ea34e5bb5c42a3195ff0070"], "layout": "IPY_MODEL_87be1a32542d43df8e981f58951c8ac4", "tabbable": null, "tooltip": null}}, "f39bd65c1446404d84bf8487e6a26098": {"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": ""}}, "ca0150bdc23d4bea8a19baf8a247991a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "39512adace8c4a58ac8bb265b86c6953": {"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_ca0150bdc23d4bea8a19baf8a247991a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f39bd65c1446404d84bf8487e6a26098", "tabbable": null, "tooltip": null, "value": 0.025}}, "42ac2cb25e324ab98ea1bc50d23e0ab0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9f62093887624e1fa5df281b86021365": {"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}}, "0b7f439827f8487d97339592a477d824": {"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_42ac2cb25e324ab98ea1bc50d23e0ab0", "placeholder": "\u200b", "style": "IPY_MODEL_9f62093887624e1fa5df281b86021365", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "470f205cdb7f4cbfb73ef488f9d96414": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "30cc8c63e8454ac1aea7ed4f1accd728": {"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}}, "3917c70dc9f8486eacff96e0abdcbfe7": {"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_470f205cdb7f4cbfb73ef488f9d96414", "placeholder": "\u200b", "style": "IPY_MODEL_30cc8c63e8454ac1aea7ed4f1accd728", "tabbable": null, "tooltip": null, "value": "
"}}, "75bb7d24a97746ea94bf5bd663fe643e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a084fc8649074a89a966128a570f5712": {"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_0b7f439827f8487d97339592a477d824", "IPY_MODEL_39512adace8c4a58ac8bb265b86c6953", "IPY_MODEL_3917c70dc9f8486eacff96e0abdcbfe7"], "layout": "IPY_MODEL_75bb7d24a97746ea94bf5bd663fe643e", "tabbable": null, "tooltip": null}}, "b13fe65859cd4ea69178dad6bcc9b8a5": {"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": ""}}, "66d50cc85d07486a91fb8a37454f6e6c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "92c1b8411d8f4b03be615804dc9f851b": {"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_66d50cc85d07486a91fb8a37454f6e6c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_b13fe65859cd4ea69178dad6bcc9b8a5", "tabbable": null, "tooltip": null, "value": 0.025}}, "fa5b960b7f4c46a68b87ca9d18aa352e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "575c231951fc4b13a1d874e416d96908": {"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}}, "9eacefd154ff4ab5aa35fd0348c0fa56": {"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_fa5b960b7f4c46a68b87ca9d18aa352e", "placeholder": "\u200b", "style": "IPY_MODEL_575c231951fc4b13a1d874e416d96908", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabab

"}}, "c3dd72ed5c4d4ac1a30564b106af151e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "05ccfdd8d4344a86bf780ddd03029a3a": {"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}}, "49e0d75b55c946648c1a31c466f8015c": {"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_c3dd72ed5c4d4ac1a30564b106af151e", "placeholder": "\u200b", "style": "IPY_MODEL_05ccfdd8d4344a86bf780ddd03029a3a", "tabbable": null, "tooltip": null, "value": "
"}}, "cf73689feb6a43a7999129773d6e020f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a19faa5fe58642ccafb01d2a3d8be300": {"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_9eacefd154ff4ab5aa35fd0348c0fa56", "IPY_MODEL_92c1b8411d8f4b03be615804dc9f851b", "IPY_MODEL_49e0d75b55c946648c1a31c466f8015c"], "layout": "IPY_MODEL_cf73689feb6a43a7999129773d6e020f", "tabbable": null, "tooltip": null}}, "9dd59e91a47941ceb378bda6c82061c1": {"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": ""}}, "9fbc36add0da41b8a306d86540cf0575": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5ecabbb37e734e488b170d3c6e7fffcf": {"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_9fbc36add0da41b8a306d86540cf0575", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9dd59e91a47941ceb378bda6c82061c1", "tabbable": null, "tooltip": null, "value": 0.0005}}, "ff05b5361f2942bf9841ee112e55e374": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e43c67ca2af14bc7899d41dec231b835": {"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}}, "2bd32f5e766344659490336ebf83b310": {"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_ff05b5361f2942bf9841ee112e55e374", "placeholder": "\u200b", "style": "IPY_MODEL_e43c67ca2af14bc7899d41dec231b835", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "9eeaa07e45964225be03eb036530df22": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5a2f41d365c54009aaf887d92ae76196": {"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}}, "3664ccb5376a49c282b4de08c5536f59": {"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_9eeaa07e45964225be03eb036530df22", "placeholder": "\u200b", "style": "IPY_MODEL_5a2f41d365c54009aaf887d92ae76196", "tabbable": null, "tooltip": null, "value": "
"}}, "59b6c1c9ec7c498aa070a860896ba8f7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "26624f3e03714cccb30cb6f49647b3e1": {"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_2bd32f5e766344659490336ebf83b310", "IPY_MODEL_5ecabbb37e734e488b170d3c6e7fffcf", "IPY_MODEL_3664ccb5376a49c282b4de08c5536f59"], "layout": "IPY_MODEL_59b6c1c9ec7c498aa070a860896ba8f7", "tabbable": null, "tooltip": null}}, "4de37ab166964f218552eda31c2adf9a": {"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": ""}}, "4a35408dfd5a41e5a4903dfcb0af2a71": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6f596bf8c6f2472788c98a088d2e1035": {"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_4a35408dfd5a41e5a4903dfcb0af2a71", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_4de37ab166964f218552eda31c2adf9a", "tabbable": null, "tooltip": null, "value": 0.0005}}, "1b07da4792ba4fdca44c8acdb4544f50": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c0c4d2cc20f74d4caee094e2e6d2a307": {"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}}, "1e377ca80baa43aba03b0d2b7fbdb0a5": {"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_1b07da4792ba4fdca44c8acdb4544f50", "placeholder": "\u200b", "style": "IPY_MODEL_c0c4d2cc20f74d4caee094e2e6d2a307", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "464bf565d03745879b1209e0e5fcc704": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "614eb64b4d1e4def83cdad8772657260": {"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}}, "2288082671d043c689e8035afb1d9b5e": {"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_464bf565d03745879b1209e0e5fcc704", "placeholder": "\u200b", "style": "IPY_MODEL_614eb64b4d1e4def83cdad8772657260", "tabbable": null, "tooltip": null, "value": "
"}}, "cb1e4af5adde43ec87f6d3ae4122f94a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1ac83dfe6b814cbb85bf01f724cf8a3a": {"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_1e377ca80baa43aba03b0d2b7fbdb0a5", "IPY_MODEL_6f596bf8c6f2472788c98a088d2e1035", "IPY_MODEL_2288082671d043c689e8035afb1d9b5e"], "layout": "IPY_MODEL_cb1e4af5adde43ec87f6d3ae4122f94a", "tabbable": null, "tooltip": null}}, "0416cae4ffbd4624a9e9ba6bdcb3a28a": {"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": ""}}, "10fbf403c6014984a5aa31a45b7faf13": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "721b6daeb34b40b5b8065fef82efb540": {"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_10fbf403c6014984a5aa31a45b7faf13", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0416cae4ffbd4624a9e9ba6bdcb3a28a", "tabbable": null, "tooltip": null, "value": 0.0005}}, "8a06ebef322543928b4ec5036342ec48": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5c49e0ad312e4110bb4005aa8918bbe2": {"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}}, "b6f755f02c3a460abcd4306ebbcd7281": {"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_8a06ebef322543928b4ec5036342ec48", "placeholder": "\u200b", "style": "IPY_MODEL_5c49e0ad312e4110bb4005aa8918bbe2", "tabbable": null, "tooltip": null, "value": "

\n Receptor: nmda

"}}, "3e99e78cfd834059a69703fbb8a50162": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a4d3b085682545c7a924a39a7d311e08": {"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}}, "180ee6b2a3734bd394ae952fac05e7c7": {"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_3e99e78cfd834059a69703fbb8a50162", "placeholder": "\u200b", "style": "IPY_MODEL_a4d3b085682545c7a924a39a7d311e08", "tabbable": null, "tooltip": null, "value": "
"}}, "dd26624ba6f54d63a6d0446a8b67b729": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f96242596bdd4f6aadd1f67a043c0783": {"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_b6f755f02c3a460abcd4306ebbcd7281", "IPY_MODEL_721b6daeb34b40b5b8065fef82efb540", "IPY_MODEL_180ee6b2a3734bd394ae952fac05e7c7"], "layout": "IPY_MODEL_dd26624ba6f54d63a6d0446a8b67b729", "tabbable": null, "tooltip": null}}, "525fe8bc755e4b6d83cf37159063df3a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "157d6c32d7e44b579333d5e6d2bd83fc": {"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_f61ab6226f894ad2a57cdb32c2c4b8eb"], "layout": "IPY_MODEL_525fe8bc755e4b6d83cf37159063df3a", "tabbable": null, "tooltip": null}}, "cad65f9088544b989a4958e23b0d0883": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f2df32346f934753a398ab59d299b5ca": {"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_40b8b4280f5c460abc27d245292ce8c6", "IPY_MODEL_d138763e1b9c4736a927a74f76d60890"], "layout": "IPY_MODEL_cad65f9088544b989a4958e23b0d0883", "tabbable": null, "tooltip": null}}, "1273d8ad076d4516881eddf6f8891a66": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "440d32de892c4dedb752f975941e6c87": {"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_a04ae09c85a6446fa9e3f2b912126e5e"], "layout": "IPY_MODEL_1273d8ad076d4516881eddf6f8891a66", "tabbable": null, "tooltip": null}}, "c2fdf556e8e74bc3969052bc85965f58": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fc8e745c45884b5e88443bf03f7cb455": {"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_131592e2aaa944178d332b42f0188136"], "layout": "IPY_MODEL_c2fdf556e8e74bc3969052bc85965f58", "tabbable": null, "tooltip": null}}, "1b892215b10644b8891c71ade591c909": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "58cd022c2e0046b4b054a0111f966059": {"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_d3aeefd7b05545ddb8d89ea08aa026d1", "IPY_MODEL_36a8823ac93b4fc38f60eb3c9965f406"], "layout": "IPY_MODEL_1b892215b10644b8891c71ade591c909", "tabbable": null, "tooltip": null}}, "6663e9d2cc584e129aea5b9c9708ce21": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dfcf00c284544c3aabf2e8987b6312b9": {"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_fc7d7d5d6af143a9b08655f803ddf734"], "layout": "IPY_MODEL_6663e9d2cc584e129aea5b9c9708ce21", "tabbable": null, "tooltip": null}}, "e5d8a6d895e940e584d3b35caf3ec737": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0147d1f8aed54cc38e8174bae67709a4": {"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_26aa3403e7c6419f88583ca30aa91739"], "layout": "IPY_MODEL_e5d8a6d895e940e584d3b35caf3ec737", "tabbable": null, "tooltip": null}}, "0b2acb81f2ab47cdaf0d86ca423c7203": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b93f2c0422b94247a700b2b788c6080e": {"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_275e076e6bf04693b233847ce1a0ac8d"], "layout": "IPY_MODEL_0b2acb81f2ab47cdaf0d86ca423c7203", "tabbable": null, "tooltip": null}}, "ce29948a3ac2499bbb324ddc9e67bd57": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b0a314c80b444e13b277375eb1ef74d8": {"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_6a3dfaf5b5af49c6857414c451de7743"], "layout": "IPY_MODEL_ce29948a3ac2499bbb324ddc9e67bd57", "tabbable": null, "tooltip": null}}, "b6103675b132490db4bf18d67db49cd8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6657f0c9389548d1832ee9f923fb49b3": {"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_a084fc8649074a89a966128a570f5712", "IPY_MODEL_a19faa5fe58642ccafb01d2a3d8be300"], "layout": "IPY_MODEL_b6103675b132490db4bf18d67db49cd8", "tabbable": null, "tooltip": null}}, "0c365c19004c4e1993b7f11366aa243d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2918e72f84f940d3b7cf14b1dd9124dd": {"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_26624f3e03714cccb30cb6f49647b3e1"], "layout": "IPY_MODEL_0c365c19004c4e1993b7f11366aa243d", "tabbable": null, "tooltip": null}}, "203e1c65e82940318ade96051600e6d5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0d4c4288f52849f796e437927e5f736a": {"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_1ac83dfe6b814cbb85bf01f724cf8a3a", "IPY_MODEL_f96242596bdd4f6aadd1f67a043c0783"], "layout": "IPY_MODEL_203e1c65e82940318ade96051600e6d5", "tabbable": null, "tooltip": null}}, "40296635aae3427a9caf5c50924adc84": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "404c2fe842f649e3b15b7068b2730a54": {"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_157d6c32d7e44b579333d5e6d2bd83fc", "IPY_MODEL_f2df32346f934753a398ab59d299b5ca", "IPY_MODEL_440d32de892c4dedb752f975941e6c87", "IPY_MODEL_fc8e745c45884b5e88443bf03f7cb455", "IPY_MODEL_58cd022c2e0046b4b054a0111f966059", "IPY_MODEL_dfcf00c284544c3aabf2e8987b6312b9", "IPY_MODEL_0147d1f8aed54cc38e8174bae67709a4", "IPY_MODEL_b93f2c0422b94247a700b2b788c6080e", "IPY_MODEL_b0a314c80b444e13b277375eb1ef74d8", "IPY_MODEL_6657f0c9389548d1832ee9f923fb49b3", "IPY_MODEL_2918e72f84f940d3b7cf14b1dd9124dd", "IPY_MODEL_0d4c4288f52849f796e437927e5f736a"], "layout": "IPY_MODEL_40296635aae3427a9caf5c50924adc84", "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}}, "d6d2ba0c9787415fb76a34792db70717": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "85df3fa8b2254edaa495a113840bd7ba": {"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": "150px"}}, "86db634920af4c72b49633c89b04e23b": {"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_d6d2ba0c9787415fb76a34792db70717", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_85df3fa8b2254edaa495a113840bd7ba", "tabbable": null, "tooltip": null, "value": 63.53}}, "f4205524a01f416c8e177d162509c25e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cfc543a168e74ab1baeae6705cc7943d": {"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": "150px"}}, "8c02bf47ab544c059202733419cf91ca": {"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_f4205524a01f416c8e177d162509c25e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_cfc543a168e74ab1baeae6705cc7943d", "tabbable": null, "tooltip": null, "value": 3.85}}, "ccf64e54613c40c3b782ab2b879ccc16": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dd19c448de4d4d179d1e715bbbc7fe81": {"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": "150px"}}, "1bf8832739674cc4898104e6e96cbb15": {"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_ccf64e54613c40c3b782ab2b879ccc16", "step": 1, "style": "IPY_MODEL_dd19c448de4d4d179d1e715bbbc7fe81", "tabbable": null, "tooltip": null, "value": 1}}, "043e77df270c411eb56ead9a2364f258": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ae95e2976c2444d1a8a6e3554ac1ffe2": {"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": "150px"}}, "0bcc9057ed9947d0a212d64688127459": {"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_043e77df270c411eb56ead9a2364f258", "step": 1, "style": "IPY_MODEL_ae95e2976c2444d1a8a6e3554ac1ffe2", "tabbable": null, "tooltip": null, "value": 2}}, "15a7ac39c8f84127b6a6e46614354776": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0171ee36da2e424f9a2d76fc2d0b7d7f": {"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": "150px"}}, "20f09601402e48218f0a4db196809b7e": {"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_15a7ac39c8f84127b6a6e46614354776", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0171ee36da2e424f9a2d76fc2d0b7d7f", "tabbable": null, "tooltip": null, "value": 0.1423}}, "75ab4fe4ac214078ab3479e9315b8760": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a7f1f7e7caa04214b57ff7a40fd8c53f": {"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": "150px"}}, "16f8a2c4a4ee4d26898bf8d20229c6af": {"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_75ab4fe4ac214078ab3479e9315b8760", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a7f1f7e7caa04214b57ff7a40fd8c53f", "tabbable": null, "tooltip": null, "value": 0.080074}}, "1a3445d9f91e4ea3b1c08f3c2edd3577": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "570ec1b7297e45deb24769765e5b8927": {"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": "150px"}}, "47956dbd019f4cdca64a55d585f3ff87": {"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_1a3445d9f91e4ea3b1c08f3c2edd3577", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_570ec1b7297e45deb24769765e5b8927", "tabbable": null, "tooltip": null, "value": 0.1}}, "3ce063a9cf9d4d0185a8f64d04f7c051": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3afe8244a6c342e896ed9f9dc2ac35d5": {"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": "150px"}}, "be4a1be6216c43698bf4b51bb1427341": {"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_3ce063a9cf9d4d0185a8f64d04f7c051", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_3afe8244a6c342e896ed9f9dc2ac35d5", "tabbable": null, "tooltip": null, "value": 7e-06}}, "856cc7c4562d4f578b22c96aa0902237": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "67c5c69ce0944adea1d9515af169a9f7": {"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": "150px"}}, "551b5140979042d59bd1555e35494837": {"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_856cc7c4562d4f578b22c96aa0902237", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_67c5c69ce0944adea1d9515af169a9f7", "tabbable": null, "tooltip": null, "value": 0.004317}}, "b6885c3d34e4450e9890d57db73dcc25": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ff09664d9fe1477fae9e9ba2b472290f": {"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": "150px"}}, "363cdfd494e048c990eda5bfd01eeb53": {"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_b6885c3d34e4450e9890d57db73dcc25", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_ff09664d9fe1477fae9e9ba2b472290f", "tabbable": null, "tooltip": null, "value": 0.1}}, "dcdce2e860034d12ae2e5e239673453c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b48c73e6a15d43debf3e319b53aee01c": {"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": "150px"}}, "7d48ea63c29a4592b8db03751528eba6": {"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_dcdce2e860034d12ae2e5e239673453c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_b48c73e6a15d43debf3e319b53aee01c", "tabbable": null, "tooltip": null, "value": 0.006562}}, "010362805d584bf9afa95807189ca35e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9aa8ca56764e4050ad22ee8ffc98f658": {"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": "150px"}}, "ce78ded02f7f40d0b910a8bd9b26eb79": {"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_010362805d584bf9afa95807189ca35e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9aa8ca56764e4050ad22ee8ffc98f658", "tabbable": null, "tooltip": null, "value": 0.019482}}, "aae8a3edc168410e89971937bc2c3c27": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7a44284fada94038a74b4fc1d9d59c37": {"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": "150px"}}, "def68401039c4b54a39375fcd7fe3d9f": {"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_aae8a3edc168410e89971937bc2c3c27", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_7a44284fada94038a74b4fc1d9d59c37", "tabbable": null, "tooltip": null, "value": 0.1}}, "f998ffc0a4dd4c36a9ab25fd6cae3c3a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b28e190d6ebd44c997fbdf43b68cf0de": {"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}}, "8ba8a6ccc2394803869700c4e9d8fbfb": {"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_f998ffc0a4dd4c36a9ab25fd6cae3c3a", "placeholder": "\u200b", "style": "IPY_MODEL_b28e190d6ebd44c997fbdf43b68cf0de", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "24ce3ae1acd7476baa5c824152397336": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "00c7def1a39c4048abb660c10229b82c": {"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}}, "18b208e8605b48f1a787bcb210c3b491": {"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_24ce3ae1acd7476baa5c824152397336", "placeholder": "\u200b", "style": "IPY_MODEL_00c7def1a39c4048abb660c10229b82c", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "e93d9ddc58b64187ae0954aff6e10e54": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8fe373564cf54d9aa778ac0227930cf7": {"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}}, "979c07f2ec4c4b20beff33719bfc934a": {"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_e93d9ddc58b64187ae0954aff6e10e54", "placeholder": "\u200b", "style": "IPY_MODEL_8fe373564cf54d9aa778ac0227930cf7", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "84f37b196f4840dfa5b986549298fd10": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "42dead01273c4e4aa73b34d69cbd5759": {"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_86db634920af4c72b49633c89b04e23b", "IPY_MODEL_8c02bf47ab544c059202733419cf91ca", "IPY_MODEL_1bf8832739674cc4898104e6e96cbb15", "IPY_MODEL_0bcc9057ed9947d0a212d64688127459", "IPY_MODEL_8ba8a6ccc2394803869700c4e9d8fbfb", "IPY_MODEL_20f09601402e48218f0a4db196809b7e", "IPY_MODEL_be4a1be6216c43698bf4b51bb1427341", "IPY_MODEL_7d48ea63c29a4592b8db03751528eba6", "IPY_MODEL_18b208e8605b48f1a787bcb210c3b491", "IPY_MODEL_16f8a2c4a4ee4d26898bf8d20229c6af", "IPY_MODEL_551b5140979042d59bd1555e35494837", "IPY_MODEL_ce78ded02f7f40d0b910a8bd9b26eb79", "IPY_MODEL_979c07f2ec4c4b20beff33719bfc934a", "IPY_MODEL_47956dbd019f4cdca64a55d585f3ff87", "IPY_MODEL_363cdfd494e048c990eda5bfd01eeb53", "IPY_MODEL_def68401039c4b54a39375fcd7fe3d9f"], "layout": "IPY_MODEL_84f37b196f4840dfa5b986549298fd10", "tabbable": null, "tooltip": null}}, "3177e559edc54f6ab1d0e07ec60dc9f3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d63c575236614e879796c02624f7e999": {"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": "150px"}}, "0db629b3851543129a9534ee95f081d6": {"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_3177e559edc54f6ab1d0e07ec60dc9f3", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d63c575236614e879796c02624f7e999", "tabbable": null, "tooltip": null, "value": 26.61}}, "fbc767434c8b4122b5a32ba140842f7b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f6d2d73bc49e465ead35284fc76f6073": {"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": "150px"}}, "189d7f9a003a4ba7b09ddfa02ea7c37c": {"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_fbc767434c8b4122b5a32ba140842f7b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f6d2d73bc49e465ead35284fc76f6073", "tabbable": null, "tooltip": null, "value": 2.47}}, "f918e9a15e734a87806ca02ca61f0da6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "51ce392859cc432bb4f63dc829e0232c": {"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": "150px"}}, "58ce4a08447440d9a9dafc024e49de31": {"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_f918e9a15e734a87806ca02ca61f0da6", "step": 1, "style": "IPY_MODEL_51ce392859cc432bb4f63dc829e0232c", "tabbable": null, "tooltip": null, "value": 1}}, "9735365f2fa34bceab497d70cd80887b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "377fb5895df94db9bb6ae9b2a41f40cb": {"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": "150px"}}, "d658b2d528f046cfb8644c1efa006f98": {"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_9735365f2fa34bceab497d70cd80887b", "step": 1, "style": "IPY_MODEL_377fb5895df94db9bb6ae9b2a41f40cb", "tabbable": null, "tooltip": null, "value": 2}}, "ccf01812e0b14048b79d72a764e6b5c1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "26cd207315094c85bb8d5decde2faecd": {"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": "150px"}}, "d20f3ac449694589979c57fc2d9918e2": {"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_ccf01812e0b14048b79d72a764e6b5c1", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_26cd207315094c85bb8d5decde2faecd", "tabbable": null, "tooltip": null, "value": 0.00865}}, "945a6b9872544ba59fc56fc085100b73": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0dece52c70c548e49105cadbd3029161": {"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": "150px"}}, "79e9fc4219d84e90a81eca2d46d9eb0d": {"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_945a6b9872544ba59fc56fc085100b73", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0dece52c70c548e49105cadbd3029161", "tabbable": null, "tooltip": null, "value": 0.0}}, "f5fd1292ab334087badb871a414160cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "58cb1d4f894047e8953a1ae41f066832": {"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": "150px"}}, "b9193400acf94512aee049c09b6458ca": {"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_f5fd1292ab334087badb871a414160cd", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_58cb1d4f894047e8953a1ae41f066832", "tabbable": null, "tooltip": null, "value": 1.0}}, "ff524f8d00cc4e75bc522c268ca68911": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bc3479caa5e140e5959819be6a399b4f": {"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": "150px"}}, "234a460fd63c41858e7a06df6465fc6c": {"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_ff524f8d00cc4e75bc522c268ca68911", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_bc3479caa5e140e5959819be6a399b4f", "tabbable": null, "tooltip": null, "value": 0.01525}}, "a2988e0f2b4c4b078f19c355878e69f1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6e47e793c8434530b8c9aaee71e9a131": {"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": "150px"}}, "fcc7217bb82d424fb30e9c9c8da63d57": {"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_a2988e0f2b4c4b078f19c355878e69f1", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6e47e793c8434530b8c9aaee71e9a131", "tabbable": null, "tooltip": null, "value": 0.0}}, "da80c83078294b82a60531c8faab9c78": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "43ac6d5ebbb34f1980a0a3780c6fa5ce": {"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": "150px"}}, "98207b6dad4e49c0aaa712a8de8be5e9": {"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_da80c83078294b82a60531c8faab9c78", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_43ac6d5ebbb34f1980a0a3780c6fa5ce", "tabbable": null, "tooltip": null, "value": 0.1}}, "dfeba524980547e2aa7079bd76a105b0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6fa053e4a2d6476ea3ad93215a8ac4f0": {"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": "150px"}}, "c0fb048c77b8494b80e3f5f165695adf": {"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_dfeba524980547e2aa7079bd76a105b0", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_6fa053e4a2d6476ea3ad93215a8ac4f0", "tabbable": null, "tooltip": null, "value": 0.19934}}, "2d76e923f80241b09fbaba5213ae6a5f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "557e1db1150640e38696717608dcad2f": {"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": "150px"}}, "d394e49ef4174d1ab7821571070d4988": {"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_2d76e923f80241b09fbaba5213ae6a5f", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_557e1db1150640e38696717608dcad2f", "tabbable": null, "tooltip": null, "value": 0.0}}, "588b95794e724523b72cb3663fdfc013": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aab138443d4541fd92c5428e57c50a60": {"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": "150px"}}, "8becaaffbd3a407a9ec940fb03f0c796": {"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_588b95794e724523b72cb3663fdfc013", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_aab138443d4541fd92c5428e57c50a60", "tabbable": null, "tooltip": null, "value": 1.0}}, "648f5c0fae554b7a98e1e06258044d05": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5a2dbbce551f4253b1db3ea55ae8cd4f": {"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": "150px"}}, "ba9c759f578f4606aa2bad5d42b25265": {"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_648f5c0fae554b7a98e1e06258044d05", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_5a2dbbce551f4253b1db3ea55ae8cd4f", "tabbable": null, "tooltip": null, "value": 0.08831}}, "7c80bea67fab4dbc82ca138e38956ad7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "07f868fdcaa843a0a40f21e8711904b9": {"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": "150px"}}, "f9f2d37bcd4d4927a767285dcf27a050": {"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_7c80bea67fab4dbc82ca138e38956ad7", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_07f868fdcaa843a0a40f21e8711904b9", "tabbable": null, "tooltip": null, "value": 0.0}}, "62745d0cc9104082bd969ec11fdb4214": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5e012fc6972b4430a5b522dd3d593455": {"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": "150px"}}, "78be8b2ec8434f098f43e4edcfa20822": {"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_62745d0cc9104082bd969ec11fdb4214", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_5e012fc6972b4430a5b522dd3d593455", "tabbable": null, "tooltip": null, "value": 0.1}}, "07c26372f39244e28b880e77d0d5dfe8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0cadccd568954bbd88439ac0bac783de": {"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}}, "56b9a6ba8b544e92bcbbbdd9dc1a1934": {"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_07c26372f39244e28b880e77d0d5dfe8", "placeholder": "\u200b", "style": "IPY_MODEL_0cadccd568954bbd88439ac0bac783de", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "9916ba647c654e2ca47049ed8858cde6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8cd3f61db63f40179c0859c4f1cb0106": {"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}}, "0e0dabe9dfaa42039437a9b6211f5c55": {"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_9916ba647c654e2ca47049ed8858cde6", "placeholder": "\u200b", "style": "IPY_MODEL_8cd3f61db63f40179c0859c4f1cb0106", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "ff5fabfe9a2641d0a986475491e250b8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b8daacfb62524485a3dc7a9b59865919": {"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}}, "b4a11900c16843a79aff80794267890e": {"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_ff5fabfe9a2641d0a986475491e250b8", "placeholder": "\u200b", "style": "IPY_MODEL_b8daacfb62524485a3dc7a9b59865919", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "8f8e77db96174d0e8831806b382a754c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "647bbbed726d4d01878a3e5f3f29fd80": {"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_0db629b3851543129a9534ee95f081d6", "IPY_MODEL_189d7f9a003a4ba7b09ddfa02ea7c37c", "IPY_MODEL_58ce4a08447440d9a9dafc024e49de31", "IPY_MODEL_d658b2d528f046cfb8644c1efa006f98", "IPY_MODEL_56b9a6ba8b544e92bcbbbdd9dc1a1934", "IPY_MODEL_d20f3ac449694589979c57fc2d9918e2", "IPY_MODEL_234a460fd63c41858e7a06df6465fc6c", "IPY_MODEL_c0fb048c77b8494b80e3f5f165695adf", "IPY_MODEL_ba9c759f578f4606aa2bad5d42b25265", "IPY_MODEL_0e0dabe9dfaa42039437a9b6211f5c55", "IPY_MODEL_79e9fc4219d84e90a81eca2d46d9eb0d", "IPY_MODEL_fcc7217bb82d424fb30e9c9c8da63d57", "IPY_MODEL_d394e49ef4174d1ab7821571070d4988", "IPY_MODEL_f9f2d37bcd4d4927a767285dcf27a050", "IPY_MODEL_b4a11900c16843a79aff80794267890e", "IPY_MODEL_b9193400acf94512aee049c09b6458ca", "IPY_MODEL_98207b6dad4e49c0aaa712a8de8be5e9", "IPY_MODEL_8becaaffbd3a407a9ec940fb03f0c796", "IPY_MODEL_78be8b2ec8434f098f43e4edcfa20822"], "layout": "IPY_MODEL_8f8e77db96174d0e8831806b382a754c", "tabbable": null, "tooltip": null}}, "d00fe7dee5f64219893e10fb020cd8a2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1a622e7fe5cb4f379ef892885a7e1865": {"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": "150px"}}, "dbf109188c2f4012b1f3bf5935805044": {"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_d00fe7dee5f64219893e10fb020cd8a2", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_1a622e7fe5cb4f379ef892885a7e1865", "tabbable": null, "tooltip": null, "value": 137.12}}, "8d0b702f36e34a329fbabd9e5b72b9a2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b157e8e63ec846acb14060abe59fb114": {"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": "150px"}}, "ee0e5846ee744ea0b7c946728402a275": {"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_8d0b702f36e34a329fbabd9e5b72b9a2", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_b157e8e63ec846acb14060abe59fb114", "tabbable": null, "tooltip": null, "value": 8.33}}, "44bb8188302246dab7fe4a04d2ea516c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b8710cabe97c443389f369683c57c916": {"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": "150px"}}, "489e834010c9436eacd813497118bbd7": {"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_44bb8188302246dab7fe4a04d2ea516c", "step": 1, "style": "IPY_MODEL_b8710cabe97c443389f369683c57c916", "tabbable": null, "tooltip": null, "value": 1}}, "54935ed6c90640bab71b2ef3e10a0dd6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3307c0dd4eae4698b22d70c6b7a07a1f": {"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": "150px"}}, "2470322640304c6084d43e05205a2162": {"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_54935ed6c90640bab71b2ef3e10a0dd6", "step": 1, "style": "IPY_MODEL_3307c0dd4eae4698b22d70c6b7a07a1f", "tabbable": null, "tooltip": null, "value": 2}}, "5f5e2beabde04e8585d8ef8099c13217": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "93a94645cd124ca3a412a0418370d362": {"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": "150px"}}, "721e44de95004cd2b429ff42a97093f9": {"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_5f5e2beabde04e8585d8ef8099c13217", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_93a94645cd124ca3a412a0418370d362", "tabbable": null, "tooltip": null, "value": 0.684013}}, "593ae6ac88d3425a9410047b3217e685": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a59fc75650034ee98875cc74c68a7d0d": {"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": "150px"}}, "939475dc85a9409eaed5fac37eb4ecd1": {"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_593ae6ac88d3425a9410047b3217e685", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a59fc75650034ee98875cc74c68a7d0d", "tabbable": null, "tooltip": null, "value": 0.0}}, "ab51f08dceb44043bb0222c874f29ddd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0ec905da69e54731939196df80337598": {"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": "150px"}}, "1eb64dd16a5347a2ad73b54f0408f023": {"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_ab51f08dceb44043bb0222c874f29ddd", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_0ec905da69e54731939196df80337598", "tabbable": null, "tooltip": null, "value": 1.0}}, "c80fd2f2bc6d49c4bbdf2e17068e0789": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a328178aab9e4e779f3e4f0e3c314aba": {"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": "150px"}}, "c8e466d44c27441e9191b84ba35085ef": {"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_c80fd2f2bc6d49c4bbdf2e17068e0789", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a328178aab9e4e779f3e4f0e3c314aba", "tabbable": null, "tooltip": null, "value": 1.43884}}, "dd6af3d3efd6460eaa3bfe336ee37972": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8a5b047fa5c3414b97d76a5494d9e5ce": {"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": "150px"}}, "906fe845d91c49f6ad8caebb6ea53938": {"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_dd6af3d3efd6460eaa3bfe336ee37972", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8a5b047fa5c3414b97d76a5494d9e5ce", "tabbable": null, "tooltip": null, "value": 0.0}}, "13700f790d38421094e17e80b2800df8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "39a6198a463f4762a8c991a292aa5fc7": {"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": "150px"}}, "8f74d4f1a5cb4e1bb51eb6c78d0d72ae": {"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_13700f790d38421094e17e80b2800df8", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_39a6198a463f4762a8c991a292aa5fc7", "tabbable": null, "tooltip": null, "value": 0.1}}, "7d5af0fdcd2c4c0a8c18a8cafb38435a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9431cb91c546450888d2af86c8513496": {"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": "150px"}}, "1eaf82c4f6544ce8afa108049765f3ee": {"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_7d5af0fdcd2c4c0a8c18a8cafb38435a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9431cb91c546450888d2af86c8513496", "tabbable": null, "tooltip": null, "value": 0.008958}}, "891bcbfd03244c7eaa0815bfba6b918b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f8b98549e08b48cc833054b3555512da": {"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": "150px"}}, "73ddd5cd0d374798a8568592cf59ad35": {"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_891bcbfd03244c7eaa0815bfba6b918b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f8b98549e08b48cc833054b3555512da", "tabbable": null, "tooltip": null, "value": 0.0}}, "14249fee7c5942169bf79978ec3810fd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "23ca6191319b45868264687421091df3": {"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": "150px"}}, "76cbe628065d457c98fa81395e54cf09": {"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_14249fee7c5942169bf79978ec3810fd", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_23ca6191319b45868264687421091df3", "tabbable": null, "tooltip": null, "value": 1.0}}, "1633c39d63854ee4a1530b8a18e44333": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ae8a81dc65134243be818e9ab2619dd0": {"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": "150px"}}, "02b63f0fda374e3ba7deb9a9cda5d170": {"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_1633c39d63854ee4a1530b8a18e44333", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_ae8a81dc65134243be818e9ab2619dd0", "tabbable": null, "tooltip": null, "value": 3e-06}}, "197d6c35660a40949fd48d043ac51439": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "96bf9b3a1e0749d0b03f2095931df3ea": {"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": "150px"}}, "521ac3cea740488f9f6227630ee42b8d": {"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_197d6c35660a40949fd48d043ac51439", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_96bf9b3a1e0749d0b03f2095931df3ea", "tabbable": null, "tooltip": null, "value": 0.0}}, "80c598adb73f4095889ec17522f0b1ff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bc660b58b4d04a6c99232bffd373e57e": {"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": "150px"}}, "5948501cf39d469b9ff3acc17d3e31f6": {"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_80c598adb73f4095889ec17522f0b1ff", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_bc660b58b4d04a6c99232bffd373e57e", "tabbable": null, "tooltip": null, "value": 0.1}}, "0a712c8c64c740879002c4de4ecec8ef": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "daf2d81707b543d084b0b6cf8446eeb7": {"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}}, "6086bc5709ad4cf3a0d65cefa09ccca2": {"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_0a712c8c64c740879002c4de4ecec8ef", "placeholder": "\u200b", "style": "IPY_MODEL_daf2d81707b543d084b0b6cf8446eeb7", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "7ec85fc4dab749acbe54ce7f8a8ad0b9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c023b21fa932484ea3bdde08cc9a9ff6": {"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}}, "56757ede23bf4339b419cdd4d63c5489": {"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_7ec85fc4dab749acbe54ce7f8a8ad0b9", "placeholder": "\u200b", "style": "IPY_MODEL_c023b21fa932484ea3bdde08cc9a9ff6", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "433695bc5fc24d9baef39bd55df0b286": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5b3a67a867a94cf89c447586459fa2f2": {"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}}, "17a49984b91841388cecaace3c1e9498": {"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_433695bc5fc24d9baef39bd55df0b286", "placeholder": "\u200b", "style": "IPY_MODEL_5b3a67a867a94cf89c447586459fa2f2", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "e126d8c14d7e4522847301407c257f5e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "03745711bc0d48218ba9141d9699f656": {"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_dbf109188c2f4012b1f3bf5935805044", "IPY_MODEL_ee0e5846ee744ea0b7c946728402a275", "IPY_MODEL_489e834010c9436eacd813497118bbd7", "IPY_MODEL_2470322640304c6084d43e05205a2162", "IPY_MODEL_6086bc5709ad4cf3a0d65cefa09ccca2", "IPY_MODEL_721e44de95004cd2b429ff42a97093f9", "IPY_MODEL_c8e466d44c27441e9191b84ba35085ef", "IPY_MODEL_1eaf82c4f6544ce8afa108049765f3ee", "IPY_MODEL_02b63f0fda374e3ba7deb9a9cda5d170", "IPY_MODEL_56757ede23bf4339b419cdd4d63c5489", "IPY_MODEL_939475dc85a9409eaed5fac37eb4ecd1", "IPY_MODEL_906fe845d91c49f6ad8caebb6ea53938", "IPY_MODEL_73ddd5cd0d374798a8568592cf59ad35", "IPY_MODEL_521ac3cea740488f9f6227630ee42b8d", "IPY_MODEL_17a49984b91841388cecaace3c1e9498", "IPY_MODEL_1eb64dd16a5347a2ad73b54f0408f023", "IPY_MODEL_8f74d4f1a5cb4e1bb51eb6c78d0d72ae", "IPY_MODEL_76cbe628065d457c98fa81395e54cf09", "IPY_MODEL_5948501cf39d469b9ff3acc17d3e31f6"], "layout": "IPY_MODEL_e126d8c14d7e4522847301407c257f5e", "tabbable": null, "tooltip": null}}, "1d2c974adf7440ccb40b790272e6eee5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5bfcc91a665146e881ad8690f837ab36": {"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_42dead01273c4e4aa73b34d69cbd5759", "IPY_MODEL_647bbbed726d4d01878a3e5f3f29fd80", "IPY_MODEL_03745711bc0d48218ba9141d9699f656"], "layout": "IPY_MODEL_1d2c974adf7440ccb40b790272e6eee5", "selected_index": null, "tabbable": null, "titles": ["evdist1 (distal)", "evprox1 (proximal)", "evprox2 (proximal)"], "tooltip": null}}, "94c064f9b5fd4b35941286589e1d15b7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "436d48fec62e44938689baa4c1b91b91": {"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_94c064f9b5fd4b35941286589e1d15b7", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "
", "image/png": "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"}}], "tabbable": null, "tooltip": null}}, "73051196baf040699a47273ce0b9c65a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6bc3d2c2bd35489282e91df7b3b5dee9": {"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_ccd8af71525b4727b4dad32d16457b93", "IPY_MODEL_4fbd9ddae4b449718f9df267e0950d36"], "layout": "IPY_MODEL_73051196baf040699a47273ce0b9c65a", "selected_index": 1, "tabbable": null, "titles": ["ax0", "ax1"], "tooltip": null}}, "3efc2592b9ee4f5187ca865c0208fc3a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "e993724a7cf941a78b42e0f33276a878": {"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"}}, "5e748e1b4a1e4dfdbce54dbf003f1b82": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "style": "IPY_MODEL_e993724a7cf941a78b42e0f33276a878", "tabbable": null, "tooltip": null}}, "82445b6a043c4447af26dc20b18bfcd8": {"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"}}, "33ea5744b94f45f2ba48cb0deacbbe70": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "style": "IPY_MODEL_82445b6a043c4447af26dc20b18bfcd8", "tabbable": null, "tooltip": null}}, "6d9522969ea94dee96d1f24a8c756c10": {"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"}}, "adc163349b5f4703b22c4537857b1f40": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "style": "IPY_MODEL_6d9522969ea94dee96d1f24a8c756c10", "tabbable": null, "tooltip": null}}, "dbcd80f842d445b3a513093c19ed1e00": {"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"}}, "c0c1d37071e84cd2b87c365fd0ed32ca": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "style": "IPY_MODEL_dbcd80f842d445b3a513093c19ed1e00", "tabbable": null, "tooltip": null}}, "c7abda71e618446abef9c6683fb5c8a3": {"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"}}, "3ef71f474a1a49ffa7ec7c3f8a15300f": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "step": null, "style": "IPY_MODEL_c7abda71e618446abef9c6683fb5c8a3", "tabbable": null, "tooltip": null, "value": 30.0}}, "1f4831d051a945bd90d10250282a0fbe": {"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"}}, "09e492a787ad4ea4b61867ca4f1bbfb0": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "step": null, "style": "IPY_MODEL_1f4831d051a945bd90d10250282a0fbe", "tabbable": null, "tooltip": null, "value": 3000.0}}, "0f0555cafeaa401fb41e8f110d65483f": {"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"}}, "3eb4c5f4437146cdbbed80de7d49a51d": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "step": null, "style": "IPY_MODEL_0f0555cafeaa401fb41e8f110d65483f", "tabbable": null, "tooltip": null, "value": 0.0}}, "bc91fb3e508a45f6bfeff82fec595a13": {"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"}}, "12386a520e6d4074bbfa8d71ec1e0959": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "step": null, "style": "IPY_MODEL_bc91fb3e508a45f6bfeff82fec595a13", "tabbable": null, "tooltip": null, "value": 1.0}}, "5f639aff0cd04f0c82dbfb6e1e16c2da": {"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"}}, "ea10ab73859d4955888bf72465576cb7": {"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_3efc2592b9ee4f5187ca865c0208fc3a", "step": null, "style": "IPY_MODEL_5f639aff0cd04f0c82dbfb6e1e16c2da", "tabbable": null, "tooltip": null, "value": 100.0}}, "4cd83319fa1c45f1857e71085472406d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fec7241fd3224167950a71e0c2b5934c": {"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_c7a227c387a147a49d87b0f7fd207605"], "layout": "IPY_MODEL_4cd83319fa1c45f1857e71085472406d", "tabbable": null, "tooltip": null}}, "e10393d9ac40406abe9b51d13bea8b0f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "62856aed00d84c638f1c5e2bc1f8c7bb": {"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}}, "35c6c66de8ed46a2a8a60bb15c992235": {"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_e10393d9ac40406abe9b51d13bea8b0f", "style": "IPY_MODEL_62856aed00d84c638f1c5e2bc1f8c7bb", "tabbable": null, "tooltip": null}}, "674d8d4f75234234802ba392849d1e97": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "db94053fa2654c5db13bb696491440bb": {"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}}, "e19bd2384f6243979640bac7e7488eae": {"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_674d8d4f75234234802ba392849d1e97", "style": "IPY_MODEL_db94053fa2654c5db13bb696491440bb", "tabbable": null, "tooltip": null}}, "4175f6cc42bf43bfb80281d9d5e03200": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_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}}, "d9250af4656f423d8ee013cf6d4b768e": {"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_35c6c66de8ed46a2a8a60bb15c992235", "IPY_MODEL_e19bd2384f6243979640bac7e7488eae"], "layout": "IPY_MODEL_4175f6cc42bf43bfb80281d9d5e03200", "tabbable": null, "tooltip": null}}, "65126f88dc22438db8597d45c22955be": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "ccd8af71525b4727b4dad32d16457b93": {"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_33ea5744b94f45f2ba48cb0deacbbe70", "IPY_MODEL_5e748e1b4a1e4dfdbce54dbf003f1b82", "IPY_MODEL_3ef71f474a1a49ffa7ec7c3f8a15300f", "IPY_MODEL_09e492a787ad4ea4b61867ca4f1bbfb0", "IPY_MODEL_adc163349b5f4703b22c4537857b1f40", "IPY_MODEL_3eb4c5f4437146cdbbed80de7d49a51d", "IPY_MODEL_12386a520e6d4074bbfa8d71ec1e0959", "IPY_MODEL_ea10ab73859d4955888bf72465576cb7", "IPY_MODEL_c0c1d37071e84cd2b87c365fd0ed32ca", "IPY_MODEL_d9250af4656f423d8ee013cf6d4b768e", "IPY_MODEL_fec7241fd3224167950a71e0c2b5934c"], "layout": "IPY_MODEL_65126f88dc22438db8597d45c22955be", "tabbable": null, "tooltip": null}}, "bfb2851bfa404357b511fe0f3b623ae8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "5cffc56bfa904f5b987f810d59c52600": {"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"}}, "3ba1e4391be14d64bdb49b81c7b6d754": {"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_bfb2851bfa404357b511fe0f3b623ae8", "style": "IPY_MODEL_5cffc56bfa904f5b987f810d59c52600", "tabbable": null, "tooltip": null}}, "7da73f939a124c139ad62a8155a50a32": {"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"}}, "4bc7f18831f749a79e4f9adcd5cb6057": {"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_bfb2851bfa404357b511fe0f3b623ae8", "style": "IPY_MODEL_7da73f939a124c139ad62a8155a50a32", "tabbable": null, "tooltip": null}}, "fa9321412c944f818cedd37fda1efffa": {"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"}}, "58e2774b791245e9bc4c633a3b2042f2": {"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_bfb2851bfa404357b511fe0f3b623ae8", "style": "IPY_MODEL_fa9321412c944f818cedd37fda1efffa", "tabbable": null, "tooltip": null}}, "f9d42d17e9744d58be3df9f29fedc061": {"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"}}, "98457a2251d74fd59a118b5ad32942f0": {"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_bfb2851bfa404357b511fe0f3b623ae8", "style": "IPY_MODEL_f9d42d17e9744d58be3df9f29fedc061", "tabbable": null, "tooltip": null}}, "f3d84641467d4e20b0a0329e788f6576": {"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"}}, "c70a29d6f888445c91cf6d7637bdf454": {"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_bfb2851bfa404357b511fe0f3b623ae8", "step": null, "style": "IPY_MODEL_f3d84641467d4e20b0a0329e788f6576", "tabbable": null, "tooltip": null, "value": 30.0}}, "54cbdbd4d8bf44f99641b9733b07d1b0": {"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"}}, "e00c98239a91464aa2b55f51280d97d9": {"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_bfb2851bfa404357b511fe0f3b623ae8", "step": null, "style": "IPY_MODEL_54cbdbd4d8bf44f99641b9733b07d1b0", "tabbable": null, "tooltip": null, "value": 3000.0}}, "94773bfcade642d7b501ec997a9e8ec1": {"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"}}, "eb41fb40c2d74aa0997286e540f8bffd": {"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_bfb2851bfa404357b511fe0f3b623ae8", "step": null, "style": "IPY_MODEL_94773bfcade642d7b501ec997a9e8ec1", "tabbable": null, "tooltip": null, "value": 0.0}}, "b32edc730b43418d8454ce9d83a1778b": {"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"}}, "397161a5991d454792c56748d95d3bd0": {"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_bfb2851bfa404357b511fe0f3b623ae8", "step": null, "style": "IPY_MODEL_b32edc730b43418d8454ce9d83a1778b", "tabbable": null, "tooltip": null, "value": 1.0}}, "22fbd67cc4134fd9a601e3b505badd9e": {"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"}}, "180072daaff54551bda3cecf2db432c6": {"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_bfb2851bfa404357b511fe0f3b623ae8", "step": null, "style": "IPY_MODEL_22fbd67cc4134fd9a601e3b505badd9e", "tabbable": null, "tooltip": null, "value": 100.0}}, "8133f33dc21249ffb6cd644bc7f0ed2b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cc3f8a0e36ad467bba29a3ca0e19b53e": {"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_6be8ffd3cb924b4ba6184970f77cac0b"], "layout": "IPY_MODEL_8133f33dc21249ffb6cd644bc7f0ed2b", "tabbable": null, "tooltip": null}}, "13c74b90d7da4b90946708f609e4acee": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8f5a4d06abd547e3a908d74baec96de5": {"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}}, "24eb5f04a65141cfb544b61246c699f5": {"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_13c74b90d7da4b90946708f609e4acee", "style": "IPY_MODEL_8f5a4d06abd547e3a908d74baec96de5", "tabbable": null, "tooltip": null}}, "ce5e59ae78174fcbbd1f40c3871b88ed": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5d2fa5ce5c024a69a6411f40d9fc9d9c": {"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}}, "9965561e43994cc6ae256abfa93b529f": {"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_ce5e59ae78174fcbbd1f40c3871b88ed", "style": "IPY_MODEL_5d2fa5ce5c024a69a6411f40d9fc9d9c", "tabbable": null, "tooltip": null}}, "d07a05a75fc542b28bb03339c7689fc4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_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}}, "083d6a59dad04e0789ee37be7971449e": {"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_24eb5f04a65141cfb544b61246c699f5", "IPY_MODEL_9965561e43994cc6ae256abfa93b529f"], "layout": "IPY_MODEL_d07a05a75fc542b28bb03339c7689fc4", "tabbable": null, "tooltip": null}}, "43a8791f87564663993826ccd48e47db": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "4fbd9ddae4b449718f9df267e0950d36": {"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_4bc7f18831f749a79e4f9adcd5cb6057", "IPY_MODEL_3ba1e4391be14d64bdb49b81c7b6d754", "IPY_MODEL_c70a29d6f888445c91cf6d7637bdf454", "IPY_MODEL_e00c98239a91464aa2b55f51280d97d9", "IPY_MODEL_58e2774b791245e9bc4c633a3b2042f2", "IPY_MODEL_eb41fb40c2d74aa0997286e540f8bffd", "IPY_MODEL_397161a5991d454792c56748d95d3bd0", "IPY_MODEL_180072daaff54551bda3cecf2db432c6", "IPY_MODEL_98457a2251d74fd59a118b5ad32942f0", "IPY_MODEL_083d6a59dad04e0789ee37be7971449e", "IPY_MODEL_cc3f8a0e36ad467bba29a3ca0e19b53e"], "layout": "IPY_MODEL_43a8791f87564663993826ccd48e47db", "tabbable": null, "tooltip": null}}, "9313a310afcd48259bb58b1864c0ea21": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "c47967eb552b4023942806dfc654a99a": {"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}}, "e3c9f8884d46486cb1d5ecda507c9249": {"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_9313a310afcd48259bb58b1864c0ea21", "style": "IPY_MODEL_c47967eb552b4023942806dfc654a99a", "tabbable": null, "tooltip": null}}, "c9848000050e43e9ab5f02661ec357ff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "45f8a3f28f344fee9f1ad7a2084567f8": {"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_e3c9f8884d46486cb1d5ecda507c9249", "IPY_MODEL_6bc3d2c2bd35489282e91df7b3b5dee9"], "layout": "IPY_MODEL_c9848000050e43e9ab5f02661ec357ff", "tabbable": null, "tooltip": null}}, "7d565daeda6a49f386a7ef120ba03f17": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b5420f337765496386d3281064c0e15a": {"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}}, "c7a227c387a147a49d87b0f7fd207605": {"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_7d565daeda6a49f386a7ef120ba03f17", "placeholder": "\u200b", "style": "IPY_MODEL_b5420f337765496386d3281064c0e15a", "tabbable": null, "tooltip": null, "value": "default: input histogram"}}, "676ec639b3b548318875bd918604d88c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4bc4218bbc1745eab1b9aa8fd041daa2": {"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}}, "6be8ffd3cb924b4ba6184970f77cac0b": {"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_676ec639b3b548318875bd918604d88c", "placeholder": "\u200b", "style": "IPY_MODEL_4bc4218bbc1745eab1b9aa8fd041daa2", "tabbable": null, "tooltip": null, "value": "default: current dipole"}}}, "version_major": 2, "version_minor": 0} +{"state": {"dacf3bc982ac4d64a75bf63626ab725c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "3e833d5f2a014a46befa9e9159fc3b79": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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%"}}, "0f85dfd9c20744719dff79569d78795b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "c8ba4beb1ac64063ae5cf63361f2c4d9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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}}, "fb3efe10dfc74bc09b7e5221a5af2141": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "6377102b022a41809ce19ac4c124093b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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"}}, "b4651d819ff74b95a03e8a6c2786589d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_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"}}, "c9f5f80a2a7f4f26974e06b9bd17c632": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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"}}, "98282b16744846c79b0b467ffeb7a76c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "f2cf0608557a4e2780d8a62f3f59d9f7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "bb67a539a9c44c22bf88bc2d7ae05033": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "8f698592aaf948c9ad2c72da5daa6710": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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"}}, "415f8fb4574f41c2a669c2f19bc44fbe": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_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"}}, "9bdc98a4437c47a7a9fa2a284339f38d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1997ba458875474981784273a13e4a4a": {"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": ""}}, "610f77448b6d41eea79f060586d421fa": {"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_9bdc98a4437c47a7a9fa2a284339f38d", "max": 1000000.0, "min": 0.0, "step": 1.0, "style": "IPY_MODEL_1997ba458875474981784273a13e4a4a", "tabbable": null, "tooltip": null, "value": 170.0}}, "cb0155abf7544fa4a9317d14255a4dfb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a2d3409f4c3c4c6ba87a9d60e03f66db": {"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": ""}}, "51ac862e65a54f15ab9bb849fcfe55ec": {"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_cb0155abf7544fa4a9317d14255a4dfb", "max": 10.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a2d3409f4c3c4c6ba87a9d60e03f66db", "tabbable": null, "tooltip": null, "value": 0.025}}, "140259cb2a77413299cdd5b5a22c2482": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "067d3bde0fa9475cbc5e0266d84ca4a9": {"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": ""}}, "2ee25115b074403682d3c3dbb0497532": {"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_140259cb2a77413299cdd5b5a22c2482", "step": 1, "style": "IPY_MODEL_067d3bde0fa9475cbc5e0266d84ca4a9", "tabbable": null, "tooltip": null, "value": 1}}, "78937bf27c1e47ac90bb166eedc52015": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cedabf5fd7904dc08e439403471565ca": {"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}}, "e4d0cb7c87254a0d8f0fae539b092b81": {"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_78937bf27c1e47ac90bb166eedc52015", "placeholder": "ID of your simulation", "style": "IPY_MODEL_cedabf5fd7904dc08e439403471565ca", "tabbable": null, "tooltip": null, "value": "default"}}, "bd92d9fe56da418a834b30d868afd7ed": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f98fa7a24d5a4cdfba6156521cec81b5": {"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": ""}}, "25f050b7dc444741b763cda4dcc346cb": {"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_bd92d9fe56da418a834b30d868afd7ed", "style": "IPY_MODEL_f98fa7a24d5a4cdfba6156521cec81b5", "tabbable": null, "tooltip": null}}, "b85931aeefe840cdb87d620d8ce6563e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c5fb763ca2ee4824a06614f905be2ef0": {"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}}, "e35cad71a548402ab5e9a1de69d4d54a": {"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_b85931aeefe840cdb87d620d8ce6563e", "placeholder": "Fill if applies", "style": "IPY_MODEL_c5fb763ca2ee4824a06614f905be2ef0", "tabbable": null, "tooltip": null, "value": "mpiexec"}}, "8de251d2e0094e2199128c0d5080dadf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7fa3fff1fe744a7f93767d6bb18eb831": {"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": ""}}, "f06999b7b8ba42b8b5539f2715da2543": {"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_8de251d2e0094e2199128c0d5080dadf", "max": 4, "min": 1, "step": 1, "style": "IPY_MODEL_7fa3fff1fe744a7f93767d6bb18eb831", "tabbable": null, "tooltip": null, "value": 1}}, "b61d67f27ebf4cc8ad64442d7b7fc653": {"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}}, "0f9078d0dcfd4ae9b74552006767471b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "72a88d4f49d2475a8849a63cf11b69be": {"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", "button_style": "success", "description": "Load data", "description_allow_html": false, "disabled": false, "error": "", "icon": "upload", "layout": "IPY_MODEL_0f9078d0dcfd4ae9b74552006767471b", "multiple": false, "style": "IPY_MODEL_b61d67f27ebf4cc8ad64442d7b7fc653", "tabbable": null, "tooltip": null, "value": []}}, "b0360731c82d4943bffa5044603c4bf0": {"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": ""}}, "64c4fb8be2bd4fe7abc9fb06147979e4": {"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"], "_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_8f698592aaf948c9ad2c72da5daa6710", "style": "IPY_MODEL_b0360731c82d4943bffa5044603c4bf0", "tabbable": null, "tooltip": null}}, "6b7cfa3083ed4f99b915caae4dc47f6b": {"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": ""}}, "0663cda971e045ecad093e9b64ddb9d5": {"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_8f698592aaf948c9ad2c72da5daa6710", "style": "IPY_MODEL_6b7cfa3083ed4f99b915caae4dc47f6b", "tabbable": null, "tooltip": null}}, "b6e1940d3c5a488992a9ed0cd0eb032d": {"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}}, "b8f6a9a0ba67458d98161e2043de703b": {"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_dacf3bc982ac4d64a75bf63626ab725c", "style": "IPY_MODEL_b6e1940d3c5a488992a9ed0cd0eb032d", "tabbable": null, "tooltip": null}}, "cc9018fb3090425290b1fbf9e80e3684": {"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}}, "0fa84863cc6d48a7b97e52a69a458459": {"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_dacf3bc982ac4d64a75bf63626ab725c", "style": "IPY_MODEL_cc9018fb3090425290b1fbf9e80e3684", "tabbable": null, "tooltip": null}}, "86abcf85fe9a47769fcbcdbbbf66bb88": {"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}}, "9d931e90b881449e8ce6c39d7b96a2c8": {"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_3e833d5f2a014a46befa9e9159fc3b79", "multiple": false, "style": "IPY_MODEL_86abcf85fe9a47769fcbcdbbbf66bb88", "tabbable": null, "tooltip": null, "value": []}}, "cf6ea87304f34b8387c43fdb0e54dbd8": {"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}}, "729340defe144418bfd055d72e27effe": {"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_dacf3bc982ac4d64a75bf63626ab725c", "multiple": false, "style": "IPY_MODEL_cf6ea87304f34b8387c43fdb0e54dbd8", "tabbable": null, "tooltip": null, "value": []}}, "7392b90919364a54b4657b5c54faf5c3": {"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}}, "ed6b47b8c9ea47f1b71a17fe8670e172": {"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_dacf3bc982ac4d64a75bf63626ab725c", "style": "IPY_MODEL_7392b90919364a54b4657b5c54faf5c3", "tabbable": null, "tooltip": null}}, "68c4ea5b32c743bbbb6c1adb96bd6c93": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "67d36326985b40e3bfeda9b390aa3bfe": {"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_68c4ea5b32c743bbbb6c1adb96bd6c93", "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": "107c5722e2d64610a80b38a8072223b5"}}}], "tabbable": null, "tooltip": null}}, "30951fb4ef174511bb8334123bcf9796": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9dccab1907184da2bc148abdf482def4": {"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_30951fb4ef174511bb8334123bcf9796", "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": "813e20ac89044ef8b30b21d2eabba03c"}}}], "tabbable": null, "tooltip": null}}, "97d8b05ef3c546f8ae52e5a0ba15d348": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c7ac927190bb4897a4da6867d405bc7e": {"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_97d8b05ef3c546f8ae52e5a0ba15d348", "msg_id": "", "outputs": [{"output_type": "stream", "name": "stdout", "text": "init network\ndrive type is Evoked, location=distal\ndrive type is Evoked, location=proximal\ndrive type is Evoked, location=proximal\nstart simulation\nUsing Joblib with 1 core(s).\nJoblib will run 1 trial(s) in parallel by distributing trials over 1 jobs.\nLoading custom mechanism files from /home/circleci/miniconda/envs/testenv/lib/python3.8/site-packages/hnn_core/mod/x86_64/libnrnmech.so\nBuilding the NEURON model\n[Done]\nTrial 1: 0.03 ms...\nTrial 1: 10.0 ms...\nTrial 1: 20.0 ms...\nTrial 1: 30.0 ms...\nTrial 1: 40.0 ms...\nTrial 1: 50.0 ms...\nTrial 1: 60.0 ms...\nTrial 1: 70.0 ms...\nTrial 1: 80.0 ms...\nTrial 1: 90.0 ms...\nTrial 1: 100.0 ms...\nTrial 1: 110.0 ms...\nTrial 1: 120.0 ms...\nTrial 1: 130.0 ms...\nTrial 1: 140.0 ms...\nTrial 1: 150.0 ms...\nTrial 1: 160.0 ms...\n"}], "tabbable": null, "tooltip": null}}, "99035d9f22a945038265b86f8195d5ca": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "50b13d96857449d5bbd1b2799ced4c73": {"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_99035d9f22a945038265b86f8195d5ca", "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": "08aeca6b5c604c509516b25ded660fbc"}}}], "tabbable": null, "tooltip": null}}, "87fd590cb96340989115fbc8fdb8cef0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "81a46989fbc5430daba3a993b989a877": {"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_87fd590cb96340989115fbc8fdb8cef0", "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": "090fd79e6c5d4bdc8c3d362e0ec8d5d6"}}}], "tabbable": null, "tooltip": null}}, "83d8b7443eae4aea974d11e047e0f998": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "08aeca6b5c604c509516b25ded660fbc": {"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_6fb619fb9a4d47a3b21aba02cb4743b0"], "layout": "IPY_MODEL_83d8b7443eae4aea974d11e047e0f998", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "bf4997e39adb44ec929d88048098d643": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "090fd79e6c5d4bdc8c3d362e0ec8d5d6": {"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_10fb6aa5835b434eb5aee322d4f412e0"], "layout": "IPY_MODEL_bf4997e39adb44ec929d88048098d643", "selected_index": 0, "tabbable": null, "titles": ["Figure 1"], "tooltip": null}}, "ab68653803714a66898953e2918214a5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "902dab12c4e64a89bc098395952c67f3": {"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"}}, "4a003ec628e0496093f8ff6fe7e37eb3": {"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": ["2row x 1col (1:3)", "2row x 1col (1:1)", "1row x 2col (1:1)", "single figure", "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": 0, "layout": "IPY_MODEL_ab68653803714a66898953e2918214a5", "style": "IPY_MODEL_902dab12c4e64a89bc098395952c67f3", "tabbable": null, "tooltip": null}}, "d381934cbd844aa88209e1e48da9a96f": {"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}}, "9f3de30124fc43988fef422616f203ad": {"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_dacf3bc982ac4d64a75bf63626ab725c", "style": "IPY_MODEL_d381934cbd844aa88209e1e48da9a96f", "tabbable": null, "tooltip": null}}, "6012636f4d3e41d390ef70ec2fb7cba5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "86e69787335444fa969634891592b73a": {"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_6012636f4d3e41d390ef70ec2fb7cba5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null}}, "e5375542f7f24b199b34a0f18256632c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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}}, "081b364d640a4a729c01f66c3335007c": {"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}}, "66c8629474c1481590bc9e9f0c9e527d": {"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_e5375542f7f24b199b34a0f18256632c", "placeholder": "\u200b", "style": "IPY_MODEL_081b364d640a4a729c01f66c3335007c", "tabbable": null, "tooltip": null, "value": "
Simulation finished
"}}, "ada0539153b04a7a87549ff57cb9c3e1": {"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_c7ac927190bb4897a4da6867d405bc7e"], "layout": "IPY_MODEL_c8ba4beb1ac64063ae5cf63361f2c4d9", "tabbable": null, "tooltip": null}}, "d478a5aeed9b4727aa199e2002adfc61": {"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_0fa84863cc6d48a7b97e52a69a458459", "IPY_MODEL_72a88d4f49d2475a8849a63cf11b69be"], "layout": "IPY_MODEL_f2cf0608557a4e2780d8a62f3f59d9f7", "tabbable": null, "tooltip": null}}, "34f6d7639a8f41879557503a7d91ccfc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": 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}}, "3684ad15740a4dfcb8de20639ff9a3cc": {"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}}, "6358bd38514042ef85af7252c02d07cf": {"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_34f6d7639a8f41879557503a7d91ccfc", "placeholder": "\u200b", "style": "IPY_MODEL_3684ad15740a4dfcb8de20639ff9a3cc", "tabbable": null, "tooltip": null, "value": "\n HUMAN NEOCORTICAL NEUROSOLVER
"}}, "75d86462fcff46ab9973957fc16a2048": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "09db4a787e054962951df64805d52636": {"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_e4d0cb7c87254a0d8f0fae539b092b81", "IPY_MODEL_610f77448b6d41eea79f060586d421fa", "IPY_MODEL_51ac862e65a54f15ab9bb849fcfe55ec", "IPY_MODEL_2ee25115b074403682d3c3dbb0497532", "IPY_MODEL_25f050b7dc444741b763cda4dcc346cb", "IPY_MODEL_86e69787335444fa969634891592b73a"], "layout": "IPY_MODEL_75d86462fcff46ab9973957fc16a2048", "tabbable": null, "tooltip": null}}, "aa199ffb1625415cac99a36a88ac31e4": {"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_09db4a787e054962951df64805d52636"], "layout": "IPY_MODEL_bb67a539a9c44c22bf88bc2d7ae05033", "tabbable": null, "tooltip": null}}, "1e33d8a55d7a49179b93dce343a8f128": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e5459bf4e89041229df059566afb53cc": {"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_9d931e90b881449e8ce6c39d7b96a2c8"], "layout": "IPY_MODEL_1e33d8a55d7a49179b93dce343a8f128", "tabbable": null, "tooltip": null}}, "56b4037f4e69493ca802ce71169326cd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d67781339b194ac9aaf77b6997da4b55": {"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_e5459bf4e89041229df059566afb53cc", "IPY_MODEL_9dccab1907184da2bc148abdf482def4"], "layout": "IPY_MODEL_56b4037f4e69493ca802ce71169326cd", "tabbable": null, "tooltip": null}}, "1ddadd0983de44a9ab27dbd5c52c1ed9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7a20a073420c4a7a9f26f4267d272957": {"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_1ddadd0983de44a9ab27dbd5c52c1ed9", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null}}, "e4396a111f174dbabb6ca74c2f62b05f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": 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}}, "47481e2daab4460fa8b78322c49337c8": {"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_b8f6a9a0ba67458d98161e2043de703b", "IPY_MODEL_64c4fb8be2bd4fe7abc9fb06147979e4", "IPY_MODEL_0663cda971e045ecad093e9b64ddb9d5"], "layout": "IPY_MODEL_e4396a111f174dbabb6ca74c2f62b05f", "tabbable": null, "tooltip": null}}, "720bcc62cc1f4d138b422d4394c76bf6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": 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}}, "30234faaf48847da8decfeee1e9c81d1": {"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_729340defe144418bfd055d72e27effe", "IPY_MODEL_ed6b47b8c9ea47f1b71a17fe8670e172"], "layout": "IPY_MODEL_720bcc62cc1f4d138b422d4394c76bf6", "tabbable": null, "tooltip": null}}, "d8559dde206041dcb015acaf958ef13c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4cc701877e6f457c9681d38151ecb4a9": {"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_30234faaf48847da8decfeee1e9c81d1", "IPY_MODEL_47481e2daab4460fa8b78322c49337c8"], "layout": "IPY_MODEL_d8559dde206041dcb015acaf958ef13c", "tabbable": null, "tooltip": null}}, "6e8aedaffa7e4653a98c9639c2237724": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8552cc8490674635bf75c964ffb8835a": {"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_4cc701877e6f457c9681d38151ecb4a9", "IPY_MODEL_67d36326985b40e3bfeda9b390aa3bfe"], "layout": "IPY_MODEL_6e8aedaffa7e4653a98c9639c2237724", "tabbable": null, "tooltip": null}}, "b6541443c4f846d69b58cb4f7b09df96": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d0ea9b6ca8b24ec09aa3fe556d77c157": {"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}}, "c582e3e7c75d4f7ab03ee70b170c7275": {"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_b6541443c4f846d69b58cb4f7b09df96", "placeholder": "\u200b", "style": "IPY_MODEL_d0ea9b6ca8b24ec09aa3fe556d77c157", "tabbable": null, "tooltip": null, "value": "Run simulation to add figures here."}}, "d28b0b0fe7ef4a90b6e5c2bdb1155982": {"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_81a46989fbc5430daba3a993b989a877"], "layout": "IPY_MODEL_6377102b022a41809ce19ac4c124093b", "tabbable": null, "tooltip": null}}, "13159c9bc5974818a5d70cb0107ad623": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_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}}, "a5f5d209747f40d19d6592d79c66b462": {"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_4a003ec628e0496093f8ff6fe7e37eb3", "IPY_MODEL_9f3de30124fc43988fef422616f203ad"], "layout": "IPY_MODEL_13159c9bc5974818a5d70cb0107ad623", "tabbable": null, "tooltip": null}}, "1904bf8b79084549a461ff0421d87820": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "440af6fce7c146d580006f8711537e95": {"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}}, "7e467e6c56ef4fdca0898303a3fd7c09": {"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_1904bf8b79084549a461ff0421d87820", "placeholder": "\u200b", "style": "IPY_MODEL_440af6fce7c146d580006f8711537e95", "tabbable": null, "tooltip": null, "value": "Figure config:"}}, "28117b49420e4436bfc7cf77fe6b0f9c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5c70c98aa56f48019ea59d1d0a7066cc": {"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_a5f5d209747f40d19d6592d79c66b462", "IPY_MODEL_7e467e6c56ef4fdca0898303a3fd7c09", "IPY_MODEL_50b13d96857449d5bbd1b2799ced4c73"], "layout": "IPY_MODEL_28117b49420e4436bfc7cf77fe6b0f9c", "tabbable": null, "tooltip": null}}, "1bf07f551748407aa62108784bba7eea": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f3182568e2f34bf5a95c5c8d824ab1d7": {"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_aa199ffb1625415cac99a36a88ac31e4", "IPY_MODEL_d67781339b194ac9aaf77b6997da4b55", "IPY_MODEL_8552cc8490674635bf75c964ffb8835a", "IPY_MODEL_5c70c98aa56f48019ea59d1d0a7066cc"], "layout": "IPY_MODEL_1bf07f551748407aa62108784bba7eea", "selected_index": 0, "tabbable": null, "titles": ["Simulation", "Network connectivity", "External drives", "Visualization"], "tooltip": null}}, "ceda715490c645f3854df1e35c67ed74": {"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_f3182568e2f34bf5a95c5c8d824ab1d7"], "layout": "IPY_MODEL_98282b16744846c79b0b467ffeb7a76c", "tabbable": null, "tooltip": null}}, "4b616f54ca474202bc1c9a123f7235d2": {"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_ceda715490c645f3854df1e35c67ed74", "IPY_MODEL_d478a5aeed9b4727aa199e2002adfc61", "IPY_MODEL_ada0539153b04a7a87549ff57cb9c3e1"], "layout": "IPY_MODEL_c9f5f80a2a7f4f26974e06b9bd17c632", "tabbable": null, "tooltip": null}}, "490e271ab06e4567a526ec9e5aa8e4d3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "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}}, "f2cfd90b43e049cab80d13072931d45c": {"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_6358bd38514042ef85af7252c02d07cf", "IPY_MODEL_66c8629474c1481590bc9e9f0c9e527d", "IPY_MODEL_4b616f54ca474202bc1c9a123f7235d2", "IPY_MODEL_d28b0b0fe7ef4a90b6e5c2bdb1155982"], "layout": "IPY_MODEL_490e271ab06e4567a526ec9e5aa8e4d3", "tabbable": null, "tooltip": null}}, "a586f22df0e04f3aa08a466a65aea47e": {"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": ""}}, "1dba24a209a8403bbd33fcaf7f64aff8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7929192523b243378a5e7f968d7566a5": {"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_1dba24a209a8403bbd33fcaf7f64aff8", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a586f22df0e04f3aa08a466a65aea47e", "tabbable": null, "tooltip": null, "value": 0.02}}, "cb0b60dd17e343fd89f165214620e83f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2feec8d38f0e40499182a4272e847fd2": {"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}}, "f5970af54f6648b4bd701133d79d773b": {"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_cb0b60dd17e343fd89f165214620e83f", "placeholder": "\u200b", "style": "IPY_MODEL_2feec8d38f0e40499182a4272e847fd2", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "8de0ded4d1d94d85b9f1266ec324284a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8702842997f94886b3134acfe43eab78": {"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}}, "12edb3910c494622b1155753084661db": {"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_8de0ded4d1d94d85b9f1266ec324284a", "placeholder": "\u200b", "style": "IPY_MODEL_8702842997f94886b3134acfe43eab78", "tabbable": null, "tooltip": null, "value": "
"}}, "a97c227325b840f4ba76985bab4b37e0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4c0f330e04c8440fa6a88427aff26672": {"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_f5970af54f6648b4bd701133d79d773b", "IPY_MODEL_7929192523b243378a5e7f968d7566a5", "IPY_MODEL_12edb3910c494622b1155753084661db"], "layout": "IPY_MODEL_a97c227325b840f4ba76985bab4b37e0", "tabbable": null, "tooltip": null}}, "104af57bd0a547b295eb18cea8702792": {"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": ""}}, "8f910338e82040b9aee7fafc8ef7f8f3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a838ff8d047b48ae9b781adc73ec627b": {"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_8f910338e82040b9aee7fafc8ef7f8f3", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_104af57bd0a547b295eb18cea8702792", "tabbable": null, "tooltip": null, "value": 0.05}}, "d78aff8d2fe74bc1a6be169e0b057e2d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "45520f95c325483ab671792ce0dfc41c": {"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}}, "49bfcb0435d5419e916898e803f58f91": {"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_d78aff8d2fe74bc1a6be169e0b057e2d", "placeholder": "\u200b", "style": "IPY_MODEL_45520f95c325483ab671792ce0dfc41c", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "fe133e07a47d49a5bb5e89e96f9989fb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7a03dc4752934a56b58471af71525e77": {"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}}, "6748c0c4def74dcbac56e5772ab53846": {"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_fe133e07a47d49a5bb5e89e96f9989fb", "placeholder": "\u200b", "style": "IPY_MODEL_7a03dc4752934a56b58471af71525e77", "tabbable": null, "tooltip": null, "value": "
"}}, "0768ad8e37634f248227a4e7ba16bcb4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "01a66901ba394074bb5068af7cb2c5f5": {"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_49bfcb0435d5419e916898e803f58f91", "IPY_MODEL_a838ff8d047b48ae9b781adc73ec627b", "IPY_MODEL_6748c0c4def74dcbac56e5772ab53846"], "layout": "IPY_MODEL_0768ad8e37634f248227a4e7ba16bcb4", "tabbable": null, "tooltip": null}}, "0f514930a9624b14ae5072020361bdef": {"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": ""}}, "5c96c6b076e644838fbdf46e5fc74df1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b6505904bf8346caa5f005a011f1680c": {"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_5c96c6b076e644838fbdf46e5fc74df1", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_0f514930a9624b14ae5072020361bdef", "tabbable": null, "tooltip": null, "value": 0.05}}, "afbbe8ab8284425ab5a43226e4dc6f2d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "589696569c5e4ea195180652f89d2094": {"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}}, "8bcee94f8dfc468aa79a3589c1d3fded": {"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_afbbe8ab8284425ab5a43226e4dc6f2d", "placeholder": "\u200b", "style": "IPY_MODEL_589696569c5e4ea195180652f89d2094", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabab

"}}, "7d28ade3bc0243a098593e6c95c7df3d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6b8e47223e242fead01bd5959b9ef22": {"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}}, "ce4bcb6ac1f34d2880cacc28fca840b3": {"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_7d28ade3bc0243a098593e6c95c7df3d", "placeholder": "\u200b", "style": "IPY_MODEL_e6b8e47223e242fead01bd5959b9ef22", "tabbable": null, "tooltip": null, "value": "
"}}, "2c84cc7f29c243cbbc137175803f09ab": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bdba14610b714ed6b2d15f3a3c759548": {"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_8bcee94f8dfc468aa79a3589c1d3fded", "IPY_MODEL_b6505904bf8346caa5f005a011f1680c", "IPY_MODEL_ce4bcb6ac1f34d2880cacc28fca840b3"], "layout": "IPY_MODEL_2c84cc7f29c243cbbc137175803f09ab", "tabbable": null, "tooltip": null}}, "c914b5e71d4e445b855be1226e40e0ee": {"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": ""}}, "d77e30ca9c2544b09fda32dd7d0f9770": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "59db068541874a9cbf99726df01cfcb0": {"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_d77e30ca9c2544b09fda32dd7d0f9770", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_c914b5e71d4e445b855be1226e40e0ee", "tabbable": null, "tooltip": null, "value": 0.001}}, "974b865355dd4444943e4255403c2092": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c16f4e0674c64d1ba7ebae1a01f8719a": {"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}}, "f82f4425be07432ca498225e15a0e50b": {"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_974b865355dd4444943e4255403c2092", "placeholder": "\u200b", "style": "IPY_MODEL_c16f4e0674c64d1ba7ebae1a01f8719a", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "cbff6aba46be472fa6882e37e415c083": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ab439fc71d544641a1bde42f64c4e6e3": {"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}}, "1e72d365676648eb8234e14ef2ec264a": {"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_cbff6aba46be472fa6882e37e415c083", "placeholder": "\u200b", "style": "IPY_MODEL_ab439fc71d544641a1bde42f64c4e6e3", "tabbable": null, "tooltip": null, "value": "
"}}, "986c8a14b9404ab5b323a81d060090e4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "81dc82d8deb148369f236c64acf05901": {"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_f82f4425be07432ca498225e15a0e50b", "IPY_MODEL_59db068541874a9cbf99726df01cfcb0", "IPY_MODEL_1e72d365676648eb8234e14ef2ec264a"], "layout": "IPY_MODEL_986c8a14b9404ab5b323a81d060090e4", "tabbable": null, "tooltip": null}}, "531632b736f5463aa7da8f40b037f07a": {"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": ""}}, "5faf0dc74e0b44378b5c1496d515dd17": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "921484e7731c434b84c24c6e1592351c": {"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_5faf0dc74e0b44378b5c1496d515dd17", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_531632b736f5463aa7da8f40b037f07a", "tabbable": null, "tooltip": null, "value": 0.0005}}, "542e46043c904b8091589c258639611f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4f75404dac894b1596b3f632461c0f32": {"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}}, "cfde407905184195abfdc49bf952c719": {"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_542e46043c904b8091589c258639611f", "placeholder": "\u200b", "style": "IPY_MODEL_4f75404dac894b1596b3f632461c0f32", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "2231462353094145ad39419c8c6c9333": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "32a41f8ec3e846b6a5cba44040a254c5": {"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}}, "a7b4d2286f794a38b2e8e2dfe3211dbd": {"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_2231462353094145ad39419c8c6c9333", "placeholder": "\u200b", "style": "IPY_MODEL_32a41f8ec3e846b6a5cba44040a254c5", "tabbable": null, "tooltip": null, "value": "
"}}, "953b2ba957ff4f0486661ebe051f1a17": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "59a7228b1e3b4e9e90053176ede13d23": {"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_cfde407905184195abfdc49bf952c719", "IPY_MODEL_921484e7731c434b84c24c6e1592351c", "IPY_MODEL_a7b4d2286f794a38b2e8e2dfe3211dbd"], "layout": "IPY_MODEL_953b2ba957ff4f0486661ebe051f1a17", "tabbable": null, "tooltip": null}}, "e097f4363f0a463e98c9d4470c0a1f62": {"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": ""}}, "9a6ffd152ec44a60a5acdbbdc7d4351e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f38b6ef03361476ebeca2d44ab0b5e56": {"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_9a6ffd152ec44a60a5acdbbdc7d4351e", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_e097f4363f0a463e98c9d4470c0a1f62", "tabbable": null, "tooltip": null, "value": 0.0005}}, "2fa843ed9f5a4280b884f90f7b1c99de": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7cb2dcdf0a634effbb3c02b926596d3f": {"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}}, "6ae0067d1ea54e3c83bc3a542257c06a": {"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_2fa843ed9f5a4280b884f90f7b1c99de", "placeholder": "\u200b", "style": "IPY_MODEL_7cb2dcdf0a634effbb3c02b926596d3f", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "c48b81e71e5c43adb8d5162300d30e17": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "12ccb1c369de4c88b76159e472faf9b5": {"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}}, "d08e8317236e44798575becaa9eb2ef2": {"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_c48b81e71e5c43adb8d5162300d30e17", "placeholder": "\u200b", "style": "IPY_MODEL_12ccb1c369de4c88b76159e472faf9b5", "tabbable": null, "tooltip": null, "value": "
"}}, "a766270c782b408aa4715e9bfce88571": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "46f8bf24574444d68e9f77deb5b163cb": {"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_6ae0067d1ea54e3c83bc3a542257c06a", "IPY_MODEL_f38b6ef03361476ebeca2d44ab0b5e56", "IPY_MODEL_d08e8317236e44798575becaa9eb2ef2"], "layout": "IPY_MODEL_a766270c782b408aa4715e9bfce88571", "tabbable": null, "tooltip": null}}, "cead83e5a8e44c2c9fbee8fbaac846a1": {"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": ""}}, "3550b4eaba3e437389b01d3c4d47a42a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "08a18cc793a44cd19be06521edddfd70": {"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_3550b4eaba3e437389b01d3c4d47a42a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_cead83e5a8e44c2c9fbee8fbaac846a1", "tabbable": null, "tooltip": null, "value": 0.0005}}, "5297ee4b727c441381073656bdccc8a1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1c05cf27fe4a4a07b85a6050a8729db4": {"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}}, "6e6a4103c9d84a888536079f1ec27e7e": {"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_5297ee4b727c441381073656bdccc8a1", "placeholder": "\u200b", "style": "IPY_MODEL_1c05cf27fe4a4a07b85a6050a8729db4", "tabbable": null, "tooltip": null, "value": "

\n Receptor: nmda

"}}, "2e8c982959a1473584be00fb361e2c56": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fe60289780fd42f28c0d8799b2abfd09": {"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}}, "393c87cadc0248cbbef6281b80646ff4": {"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_2e8c982959a1473584be00fb361e2c56", "placeholder": "\u200b", "style": "IPY_MODEL_fe60289780fd42f28c0d8799b2abfd09", "tabbable": null, "tooltip": null, "value": "
"}}, "b052cc202c6d4c0e92e876940b510746": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bfd23f1dc1064e5fb65c6de9e3ab33a8": {"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_6e6a4103c9d84a888536079f1ec27e7e", "IPY_MODEL_08a18cc793a44cd19be06521edddfd70", "IPY_MODEL_393c87cadc0248cbbef6281b80646ff4"], "layout": "IPY_MODEL_b052cc202c6d4c0e92e876940b510746", "tabbable": null, "tooltip": null}}, "897e2b8e8842426e86edf8752e53f593": {"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": ""}}, "ff1750ba838c45558fe292942e617a4b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "99df4f586c324d909b4b1bbbb832be37": {"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_ff1750ba838c45558fe292942e617a4b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_897e2b8e8842426e86edf8752e53f593", "tabbable": null, "tooltip": null, "value": 0.00025}}, "f3198cdc93e34239b04ecadadb1786a6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3035e55d16d14b3383c347dfb696a4f5": {"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}}, "02246be944154e57adb79ca0f09fbd9d": {"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_f3198cdc93e34239b04ecadadb1786a6", "placeholder": "\u200b", "style": "IPY_MODEL_3035e55d16d14b3383c347dfb696a4f5", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "c7c9198cce7047309c00388de02a024f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "37de4370cc284101a4dc170b6305a2de": {"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}}, "c31a67eff9ce4c88b401d737c37e7462": {"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_c7c9198cce7047309c00388de02a024f", "placeholder": "\u200b", "style": "IPY_MODEL_37de4370cc284101a4dc170b6305a2de", "tabbable": null, "tooltip": null, "value": "
"}}, "33aab058394e4e969238d7def3d1db0e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "75853a6dc4864e0d976fdc5082e7dc7d": {"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_02246be944154e57adb79ca0f09fbd9d", "IPY_MODEL_99df4f586c324d909b4b1bbbb832be37", "IPY_MODEL_c31a67eff9ce4c88b401d737c37e7462"], "layout": "IPY_MODEL_33aab058394e4e969238d7def3d1db0e", "tabbable": null, "tooltip": null}}, "ded3173cc43e404eb93841c5485581d7": {"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": ""}}, "58485566fab245abb0b55832cea2e2ad": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "91f644b94a2d44aa9006faba31f65a15": {"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_58485566fab245abb0b55832cea2e2ad", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_ded3173cc43e404eb93841c5485581d7", "tabbable": null, "tooltip": null, "value": 0.00025}}, "6dc086d006d24c9f9ac7516acb9a9ad7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "178ca1773b784c06840cdf445b652837": {"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}}, "0be55bd528fb4d36bb1c2e3a9e178330": {"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_6dc086d006d24c9f9ac7516acb9a9ad7", "placeholder": "\u200b", "style": "IPY_MODEL_178ca1773b784c06840cdf445b652837", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "4a2299fa41f5422d84ed40a7a31f1f9e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fdff431728bd475eb9a9f0405ffa37c3": {"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}}, "4f83b46fa9694afdbc9f1ab061abd2fc": {"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_4a2299fa41f5422d84ed40a7a31f1f9e", "placeholder": "\u200b", "style": "IPY_MODEL_fdff431728bd475eb9a9f0405ffa37c3", "tabbable": null, "tooltip": null, "value": "
"}}, "d32220c7c81c44d982504ec84fef3390": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ba10d45fca2f4865bf70ad5ba090eb82": {"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_0be55bd528fb4d36bb1c2e3a9e178330", "IPY_MODEL_91f644b94a2d44aa9006faba31f65a15", "IPY_MODEL_4f83b46fa9694afdbc9f1ab061abd2fc"], "layout": "IPY_MODEL_d32220c7c81c44d982504ec84fef3390", "tabbable": null, "tooltip": null}}, "90463729cacf42d8a1291fd1ad86f7b7": {"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": ""}}, "62510bd16e7c4926a08c4fc5564297eb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4413c882143f4a84895afe39c37912a9": {"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_62510bd16e7c4926a08c4fc5564297eb", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_90463729cacf42d8a1291fd1ad86f7b7", "tabbable": null, "tooltip": null, "value": 0.00025}}, "1bc97f7a701f490b885485df294f7e47": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f83d52ea72f6486695ec36b0c7842c23": {"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}}, "89978674257c465b9c67386bd870436c": {"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_1bc97f7a701f490b885485df294f7e47", "placeholder": "\u200b", "style": "IPY_MODEL_f83d52ea72f6486695ec36b0c7842c23", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "78e5a90554d145e6b796802f11629d83": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2f5bd995c1634c66a0177a583012e7d8": {"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}}, "74df258650d34182bc9ab4e6962f430e": {"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_78e5a90554d145e6b796802f11629d83", "placeholder": "\u200b", "style": "IPY_MODEL_2f5bd995c1634c66a0177a583012e7d8", "tabbable": null, "tooltip": null, "value": "
"}}, "375af561c0094f31bfc92f0502fa782c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "804269a8c51a4ce2be0115924cb30019": {"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_89978674257c465b9c67386bd870436c", "IPY_MODEL_4413c882143f4a84895afe39c37912a9", "IPY_MODEL_74df258650d34182bc9ab4e6962f430e"], "layout": "IPY_MODEL_375af561c0094f31bfc92f0502fa782c", "tabbable": null, "tooltip": null}}, "9832db6e50a2493092a13aaccdeee35a": {"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": ""}}, "18df4ba9dda8469882a0cb91610e7b77": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0059ddbf14504f3799cda961827b71a2": {"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_18df4ba9dda8469882a0cb91610e7b77", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_9832db6e50a2493092a13aaccdeee35a", "tabbable": null, "tooltip": null, "value": 0.02}}, "badda086a1944688ad0cb98940aec1a1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5e48c0b1196a4a07803b5969960bdc82": {"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}}, "20eb33b811754f30bebbc4d3d559e430": {"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_badda086a1944688ad0cb98940aec1a1", "placeholder": "\u200b", "style": "IPY_MODEL_5e48c0b1196a4a07803b5969960bdc82", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "b78f8d1894ea43c984f52824052e83e6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5fe85e1872c44982a6be495bc01280fb": {"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}}, "419460dc43a542d7aad1a0dc6a0311e5": {"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_b78f8d1894ea43c984f52824052e83e6", "placeholder": "\u200b", "style": "IPY_MODEL_5fe85e1872c44982a6be495bc01280fb", "tabbable": null, "tooltip": null, "value": "
"}}, "5be1e237de754f9d940d76a3938d10bb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0670e81912244247a1ec6d79afd9f72e": {"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_20eb33b811754f30bebbc4d3d559e430", "IPY_MODEL_0059ddbf14504f3799cda961827b71a2", "IPY_MODEL_419460dc43a542d7aad1a0dc6a0311e5"], "layout": "IPY_MODEL_5be1e237de754f9d940d76a3938d10bb", "tabbable": null, "tooltip": null}}, "bc6adcbe20b74cb2919ad3c29067d8e4": {"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": ""}}, "c8116b0694c344f6a4bc3a54209ec592": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1c98964986a949e4959200e4dd910a41": {"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_c8116b0694c344f6a4bc3a54209ec592", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_bc6adcbe20b74cb2919ad3c29067d8e4", "tabbable": null, "tooltip": null, "value": 0.025}}, "0d74539a6f504169a70c24eb40f95506": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "713ab1f7e06149189b553fb8d877e478": {"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}}, "7282b30b1f9f48ebbd8e8f29372b4965": {"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_0d74539a6f504169a70c24eb40f95506", "placeholder": "\u200b", "style": "IPY_MODEL_713ab1f7e06149189b553fb8d877e478", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabaa

"}}, "55eb87ca646b44b4a68e6c9972dc4a81": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1e255ffd8ee74a7383972ddfcc786d2b": {"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}}, "c1c8bc55e82049e4b078b33dc760822f": {"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_55eb87ca646b44b4a68e6c9972dc4a81", "placeholder": "\u200b", "style": "IPY_MODEL_1e255ffd8ee74a7383972ddfcc786d2b", "tabbable": null, "tooltip": null, "value": "
"}}, "445ec6c2b56844a1aef383fb6e6aafbf": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1d52cb7c4e7a4279957fef429ae8fe31": {"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_7282b30b1f9f48ebbd8e8f29372b4965", "IPY_MODEL_1c98964986a949e4959200e4dd910a41", "IPY_MODEL_c1c8bc55e82049e4b078b33dc760822f"], "layout": "IPY_MODEL_445ec6c2b56844a1aef383fb6e6aafbf", "tabbable": null, "tooltip": null}}, "656397f53079450791771317ac9fa5a0": {"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": ""}}, "c7d9f90c97404c9a997a0f3b3437d781": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "875137253eba4cfc8320ff8d96bedc32": {"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_c7d9f90c97404c9a997a0f3b3437d781", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_656397f53079450791771317ac9fa5a0", "tabbable": null, "tooltip": null, "value": 0.025}}, "41b293b88f504404a8632074a5ee4772": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d758fd513249437a979883f17b0ff636": {"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}}, "c8c28337f83142bfb00f6b29d1d1248e": {"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_41b293b88f504404a8632074a5ee4772", "placeholder": "\u200b", "style": "IPY_MODEL_d758fd513249437a979883f17b0ff636", "tabbable": null, "tooltip": null, "value": "

\n Receptor: gabab

"}}, "be003cbe4860470cace5570079503bcd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "96ed635a47844f128dd9948d3a73fe4e": {"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}}, "c208afc1a2bf4540bf081e4da2428252": {"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_be003cbe4860470cace5570079503bcd", "placeholder": "\u200b", "style": "IPY_MODEL_96ed635a47844f128dd9948d3a73fe4e", "tabbable": null, "tooltip": null, "value": "
"}}, "a9b04b9b22fe476c9d568249db8df4f2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8fc04070b2e84494938f592c9298af0a": {"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_c8c28337f83142bfb00f6b29d1d1248e", "IPY_MODEL_875137253eba4cfc8320ff8d96bedc32", "IPY_MODEL_c208afc1a2bf4540bf081e4da2428252"], "layout": "IPY_MODEL_a9b04b9b22fe476c9d568249db8df4f2", "tabbable": null, "tooltip": null}}, "53802db349fd4ab4bb0a7838e10433a1": {"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": ""}}, "90d67d241fd64563a3c82830c6622bce": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "75fba6c88bf747a18f5b168e55896011": {"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_90d67d241fd64563a3c82830c6622bce", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_53802db349fd4ab4bb0a7838e10433a1", "tabbable": null, "tooltip": null, "value": 0.0005}}, "07bae56f49a94185982a8f3b83ae6ac5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ce3a7ea110d74526921c88f870d7456f": {"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}}, "67794d94985c474293b5e1683383cf9f": {"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_07bae56f49a94185982a8f3b83ae6ac5", "placeholder": "\u200b", "style": "IPY_MODEL_ce3a7ea110d74526921c88f870d7456f", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "88e77f8f77ee45659b4387eecaee0d9b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c1fa04003ffb4b44a7ba56ef70fdc30f": {"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}}, "334b3327dca749ef812e8602f3f1e17b": {"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_88e77f8f77ee45659b4387eecaee0d9b", "placeholder": "\u200b", "style": "IPY_MODEL_c1fa04003ffb4b44a7ba56ef70fdc30f", "tabbable": null, "tooltip": null, "value": "
"}}, "d8b5176ddbb04ddca090672442cf82cc": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dd5d85a6a2f9456bab38610aacda1474": {"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_67794d94985c474293b5e1683383cf9f", "IPY_MODEL_75fba6c88bf747a18f5b168e55896011", "IPY_MODEL_334b3327dca749ef812e8602f3f1e17b"], "layout": "IPY_MODEL_d8b5176ddbb04ddca090672442cf82cc", "tabbable": null, "tooltip": null}}, "4388dde1eb2a4b54b3ff2e6070eed693": {"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": ""}}, "ec4730cf841d4955bc67c94996a02760": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "68e74492e669416f80cdab6bc18ea818": {"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_ec4730cf841d4955bc67c94996a02760", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_4388dde1eb2a4b54b3ff2e6070eed693", "tabbable": null, "tooltip": null, "value": 0.0005}}, "80a3524a620245f09c3b56c62dac2d07": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e68617f5730445dbbdc9ba0444375a5d": {"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}}, "28a98741c0c9462ab0ff0e4b74192268": {"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_80a3524a620245f09c3b56c62dac2d07", "placeholder": "\u200b", "style": "IPY_MODEL_e68617f5730445dbbdc9ba0444375a5d", "tabbable": null, "tooltip": null, "value": "

\n Receptor: ampa

"}}, "12976c82898e4584b6768fcb53c48a27": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2f37b2c735d84d438db39a194bc5024d": {"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}}, "a112f90a6049499ca6f79e91bbcdece8": {"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_12976c82898e4584b6768fcb53c48a27", "placeholder": "\u200b", "style": "IPY_MODEL_2f37b2c735d84d438db39a194bc5024d", "tabbable": null, "tooltip": null, "value": "
"}}, "094c36af7e704f26a3cf8c08ebb57c0a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cda1491853da44ceb7f3179388a5be19": {"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_28a98741c0c9462ab0ff0e4b74192268", "IPY_MODEL_68e74492e669416f80cdab6bc18ea818", "IPY_MODEL_a112f90a6049499ca6f79e91bbcdece8"], "layout": "IPY_MODEL_094c36af7e704f26a3cf8c08ebb57c0a", "tabbable": null, "tooltip": null}}, "74ac80edc519483ba5fa520b04b6fe10": {"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": ""}}, "e30540c08ed849eea3ba7b7198a8bf4b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e70d316f43b34f09a3b99bda9d6d7e42": {"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_e30540c08ed849eea3ba7b7198a8bf4b", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_74ac80edc519483ba5fa520b04b6fe10", "tabbable": null, "tooltip": null, "value": 0.0005}}, "7d828b20605741378f1fc0c05c3925b8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "43a3fa9eebce433ba404cc6700dcb796": {"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}}, "2ecba3e8593f4a76ab3de9d3b9585532": {"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_7d828b20605741378f1fc0c05c3925b8", "placeholder": "\u200b", "style": "IPY_MODEL_43a3fa9eebce433ba404cc6700dcb796", "tabbable": null, "tooltip": null, "value": "

\n Receptor: nmda

"}}, "fa184a954ec84a98b6fb67ac3b824d6c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0750610999d0487187c9de0f39e0f544": {"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}}, "97a9e49c7e924e46949f5aa11307faa1": {"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_fa184a954ec84a98b6fb67ac3b824d6c", "placeholder": "\u200b", "style": "IPY_MODEL_0750610999d0487187c9de0f39e0f544", "tabbable": null, "tooltip": null, "value": "
"}}, "baebb97aaf3942c9a3a1868de4658593": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d84509d6845f474287daca2e4f4e3d10": {"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_2ecba3e8593f4a76ab3de9d3b9585532", "IPY_MODEL_e70d316f43b34f09a3b99bda9d6d7e42", "IPY_MODEL_97a9e49c7e924e46949f5aa11307faa1"], "layout": "IPY_MODEL_baebb97aaf3942c9a3a1868de4658593", "tabbable": null, "tooltip": null}}, "09fca856ad114fbd87ad4c63c33edc3b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6e80b5c4a5904816b21f91c62e7d07c6": {"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_4c0f330e04c8440fa6a88427aff26672"], "layout": "IPY_MODEL_09fca856ad114fbd87ad4c63c33edc3b", "tabbable": null, "tooltip": null}}, "8cc3a8f614cd46c2a47cc9a19dcd365e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dda94c02038241628ffa4d86082ec9c3": {"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_01a66901ba394074bb5068af7cb2c5f5", "IPY_MODEL_bdba14610b714ed6b2d15f3a3c759548"], "layout": "IPY_MODEL_8cc3a8f614cd46c2a47cc9a19dcd365e", "tabbable": null, "tooltip": null}}, "97b5f62c5df94f828b760e6fde439a14": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "464db501fd854998b540fb6b75bef50f": {"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_81dc82d8deb148369f236c64acf05901"], "layout": "IPY_MODEL_97b5f62c5df94f828b760e6fde439a14", "tabbable": null, "tooltip": null}}, "37e1ce6b71b5423abc141224468ea120": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "57501e14e47c4841b9acf5373ab369e2": {"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_59a7228b1e3b4e9e90053176ede13d23"], "layout": "IPY_MODEL_37e1ce6b71b5423abc141224468ea120", "tabbable": null, "tooltip": null}}, "3f6487950d32469094c7ec42fb78b927": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cc6359f0156148f7847527f488912938": {"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_46f8bf24574444d68e9f77deb5b163cb", "IPY_MODEL_bfd23f1dc1064e5fb65c6de9e3ab33a8"], "layout": "IPY_MODEL_3f6487950d32469094c7ec42fb78b927", "tabbable": null, "tooltip": null}}, "6aeb0b34ebb643309835b5a67cff9eb8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e10eeea4e8fc468f9bcde068e6a3bb26": {"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_75853a6dc4864e0d976fdc5082e7dc7d"], "layout": "IPY_MODEL_6aeb0b34ebb643309835b5a67cff9eb8", "tabbable": null, "tooltip": null}}, "0cf39b9ba5bb48908194e3da1bbb7fe6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "45066d9e515145688521063469ec5096": {"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_ba10d45fca2f4865bf70ad5ba090eb82"], "layout": "IPY_MODEL_0cf39b9ba5bb48908194e3da1bbb7fe6", "tabbable": null, "tooltip": null}}, "e69b38be8cba4fffbd0d516a2fe3d5e0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c2d442f082924d7f8b5654abb9dd2e33": {"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_804269a8c51a4ce2be0115924cb30019"], "layout": "IPY_MODEL_e69b38be8cba4fffbd0d516a2fe3d5e0", "tabbable": null, "tooltip": null}}, "bb9bded2e2d14d4cbec505fade99bd94": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "99c7224bb5eb4f649a0eb1134c0d6472": {"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_0670e81912244247a1ec6d79afd9f72e"], "layout": "IPY_MODEL_bb9bded2e2d14d4cbec505fade99bd94", "tabbable": null, "tooltip": null}}, "74be6d6169b04573a49230303660384c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "32e27ffe7c3d4e2498ad26cd53007982": {"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_1d52cb7c4e7a4279957fef429ae8fe31", "IPY_MODEL_8fc04070b2e84494938f592c9298af0a"], "layout": "IPY_MODEL_74be6d6169b04573a49230303660384c", "tabbable": null, "tooltip": null}}, "dd0ea0a016ef48c184395c0a18d05e42": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a372e0ee7e214556a43897ddc16a1cd7": {"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_dd5d85a6a2f9456bab38610aacda1474"], "layout": "IPY_MODEL_dd0ea0a016ef48c184395c0a18d05e42", "tabbable": null, "tooltip": null}}, "4f093ad0e9c143f1977cb75c4da0be31": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1926221971404e3b8ddb01e30d753036": {"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_cda1491853da44ceb7f3179388a5be19", "IPY_MODEL_d84509d6845f474287daca2e4f4e3d10"], "layout": "IPY_MODEL_4f093ad0e9c143f1977cb75c4da0be31", "tabbable": null, "tooltip": null}}, "67fd84b427004c2cb9c285d6a940ed92": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "813e20ac89044ef8b30b21d2eabba03c": {"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_6e80b5c4a5904816b21f91c62e7d07c6", "IPY_MODEL_dda94c02038241628ffa4d86082ec9c3", "IPY_MODEL_464db501fd854998b540fb6b75bef50f", "IPY_MODEL_57501e14e47c4841b9acf5373ab369e2", "IPY_MODEL_cc6359f0156148f7847527f488912938", "IPY_MODEL_e10eeea4e8fc468f9bcde068e6a3bb26", "IPY_MODEL_45066d9e515145688521063469ec5096", "IPY_MODEL_c2d442f082924d7f8b5654abb9dd2e33", "IPY_MODEL_99c7224bb5eb4f649a0eb1134c0d6472", "IPY_MODEL_32e27ffe7c3d4e2498ad26cd53007982", "IPY_MODEL_a372e0ee7e214556a43897ddc16a1cd7", "IPY_MODEL_1926221971404e3b8ddb01e30d753036"], "layout": "IPY_MODEL_67fd84b427004c2cb9c285d6a940ed92", "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}}, "b3f704de43ed4a05b9198f8c0d40410d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "17ba21e66a2446f0816024b587ca8bfc": {"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": "150px"}}, "3a18fa7bc34347ecae7633bcf75d16aa": {"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_b3f704de43ed4a05b9198f8c0d40410d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_17ba21e66a2446f0816024b587ca8bfc", "tabbable": null, "tooltip": null, "value": 63.53}}, "72bef530bfe04a10b8fccb182a519e51": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2fc3426a744c4963b28136c5960bf834": {"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": "150px"}}, "a6789a4108e540379d105aded112349b": {"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_72bef530bfe04a10b8fccb182a519e51", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2fc3426a744c4963b28136c5960bf834", "tabbable": null, "tooltip": null, "value": 3.85}}, "9442abd06f7c453fb1651a49f95a50c6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "768d4d47b9af49ea95aabc900caf64ab": {"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": "150px"}}, "77debe9eec174c7f8712e9a6597de710": {"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_9442abd06f7c453fb1651a49f95a50c6", "step": 1, "style": "IPY_MODEL_768d4d47b9af49ea95aabc900caf64ab", "tabbable": null, "tooltip": null, "value": 1}}, "7da17b4559664caf91c1391de0a766fd": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "02de19922a7f43b0a2ff59b59635b157": {"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": "150px"}}, "6dc45e8582a942e4809535e2504fd0d4": {"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_7da17b4559664caf91c1391de0a766fd", "step": 1, "style": "IPY_MODEL_02de19922a7f43b0a2ff59b59635b157", "tabbable": null, "tooltip": null, "value": 2}}, "f69dbc60c89349e685155ed69ca39758": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8616439ffc2249b2ba646f67cc2fd0e9": {"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": "150px"}}, "fbf0abe63d8640e897fe17dbe1a5a08f": {"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_f69dbc60c89349e685155ed69ca39758", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_8616439ffc2249b2ba646f67cc2fd0e9", "tabbable": null, "tooltip": null, "value": 0.1423}}, "8b9a3e29484d443dbac0aa767d229bdb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d8ae7b2a195f40499b2ae08da4a609c6": {"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": "150px"}}, "9c1a7912f4514d2fa4060273c259c460": {"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_8b9a3e29484d443dbac0aa767d229bdb", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d8ae7b2a195f40499b2ae08da4a609c6", "tabbable": null, "tooltip": null, "value": 0.080074}}, "51584ce94b5e4f8e965806ba5f7a9510": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c0059f18ca204e25a9ff12d37694f756": {"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": "150px"}}, "d0ed2a81f4cc4fc894af402ac54d13df": {"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_51584ce94b5e4f8e965806ba5f7a9510", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_c0059f18ca204e25a9ff12d37694f756", "tabbable": null, "tooltip": null, "value": 0.1}}, "407ce6e557ee49288e41ed8151e574fa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f00a853f8bba41dca21ba156cc43c9d0": {"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": "150px"}}, "467d502ba8744a30946f687be8ca524c": {"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_407ce6e557ee49288e41ed8151e574fa", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_f00a853f8bba41dca21ba156cc43c9d0", "tabbable": null, "tooltip": null, "value": 7e-06}}, "0f5b74d10b9740648cd4f948a2432508": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5e41ccd3a71b4d9ea3d6c87c42dad267": {"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": "150px"}}, "d7072d16d8e340fbb0f87f8696fd2d7f": {"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_0f5b74d10b9740648cd4f948a2432508", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_5e41ccd3a71b4d9ea3d6c87c42dad267", "tabbable": null, "tooltip": null, "value": 0.004317}}, "b2b593d355014dddad94bf19a53d6159": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "31a55081edb34d24b54ca4992c1bcb36": {"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": "150px"}}, "32d2a554b4984bb5b2c1824293b3cd77": {"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_b2b593d355014dddad94bf19a53d6159", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_31a55081edb34d24b54ca4992c1bcb36", "tabbable": null, "tooltip": null, "value": 0.1}}, "3c7d65392d8347e8960504e7319c3878": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d2c6849ca3c94e278c40c89d57c7dd30": {"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": "150px"}}, "5e23f2f3d5844fd5a3c5f49641d814ba": {"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_3c7d65392d8347e8960504e7319c3878", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d2c6849ca3c94e278c40c89d57c7dd30", "tabbable": null, "tooltip": null, "value": 0.006562}}, "94b78c2d6dec4a588cf06638796039eb": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "578fb1a027094ca8bcdb26b2381c8a22": {"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": "150px"}}, "54adb07844d14d8b9907d23388cbcd79": {"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_94b78c2d6dec4a588cf06638796039eb", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_578fb1a027094ca8bcdb26b2381c8a22", "tabbable": null, "tooltip": null, "value": 0.019482}}, "474134f0917e4f63a4263c91c3909919": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "48fe902ec1cc4d80ad70f37e2e476030": {"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": "150px"}}, "ae4b5d9eef1745d19b1c30cde817ba08": {"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_474134f0917e4f63a4263c91c3909919", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_48fe902ec1cc4d80ad70f37e2e476030", "tabbable": null, "tooltip": null, "value": 0.1}}, "348c5f5c34a341bb98198f70c6d3abfa": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a842d27b5fbf45a4bb59446ba1f2f154": {"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}}, "fb8eea407be643a2b8bdbd45fee1db48": {"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_348c5f5c34a341bb98198f70c6d3abfa", "placeholder": "\u200b", "style": "IPY_MODEL_a842d27b5fbf45a4bb59446ba1f2f154", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "fc69cfaa7c5b4156b0579b243d1ae944": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "faa4b2ffd2484563b4a32281c7daebe0": {"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}}, "415c3075afe74aa8a08d5928706a8f0f": {"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_fc69cfaa7c5b4156b0579b243d1ae944", "placeholder": "\u200b", "style": "IPY_MODEL_faa4b2ffd2484563b4a32281c7daebe0", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "345f3636881b4946b6e16c34da3b872c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "101b2f75d51d49f9937154e02a80b37f": {"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}}, "6ca23515faf945d1b2bce05c1a3182ac": {"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_345f3636881b4946b6e16c34da3b872c", "placeholder": "\u200b", "style": "IPY_MODEL_101b2f75d51d49f9937154e02a80b37f", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "2cc96b7210c94868bf8553db2f8fa1e2": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f32b779c125141b8a22c0770edd191c4": {"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_3a18fa7bc34347ecae7633bcf75d16aa", "IPY_MODEL_a6789a4108e540379d105aded112349b", "IPY_MODEL_77debe9eec174c7f8712e9a6597de710", "IPY_MODEL_6dc45e8582a942e4809535e2504fd0d4", "IPY_MODEL_fb8eea407be643a2b8bdbd45fee1db48", "IPY_MODEL_fbf0abe63d8640e897fe17dbe1a5a08f", "IPY_MODEL_467d502ba8744a30946f687be8ca524c", "IPY_MODEL_5e23f2f3d5844fd5a3c5f49641d814ba", "IPY_MODEL_415c3075afe74aa8a08d5928706a8f0f", "IPY_MODEL_9c1a7912f4514d2fa4060273c259c460", "IPY_MODEL_d7072d16d8e340fbb0f87f8696fd2d7f", "IPY_MODEL_54adb07844d14d8b9907d23388cbcd79", "IPY_MODEL_6ca23515faf945d1b2bce05c1a3182ac", "IPY_MODEL_d0ed2a81f4cc4fc894af402ac54d13df", "IPY_MODEL_32d2a554b4984bb5b2c1824293b3cd77", "IPY_MODEL_ae4b5d9eef1745d19b1c30cde817ba08"], "layout": "IPY_MODEL_2cc96b7210c94868bf8553db2f8fa1e2", "tabbable": null, "tooltip": null}}, "84af1c76146f47fe990584a9d1c8a18d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b252b201e3904a92acf9ab1fe8a1cca2": {"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": "150px"}}, "7c284facd5c946ca9936d927f1bfa2f8": {"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_84af1c76146f47fe990584a9d1c8a18d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_b252b201e3904a92acf9ab1fe8a1cca2", "tabbable": null, "tooltip": null, "value": 26.61}}, "01badc689bcc4d0aa569514a23085550": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ba1dfd0a3cbf433fa9c874d3f22af55b": {"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": "150px"}}, "1c790a1535284b5f8f12b139d76fa2ee": {"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_01badc689bcc4d0aa569514a23085550", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_ba1dfd0a3cbf433fa9c874d3f22af55b", "tabbable": null, "tooltip": null, "value": 2.47}}, "c552d69bed144a68b8edd59fbc737ed7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "14750414e2f64229a8d9fcd7252fb0c8": {"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": "150px"}}, "fc1a904156324d9689656f166bf85a8e": {"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_c552d69bed144a68b8edd59fbc737ed7", "step": 1, "style": "IPY_MODEL_14750414e2f64229a8d9fcd7252fb0c8", "tabbable": null, "tooltip": null, "value": 1}}, "4180b2cbf7134a5d9a09246fcd29c274": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a73653f2154b4886a3a42e141aab4511": {"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": "150px"}}, "5a7acd8e77a24e12a904bab5a8ba0d05": {"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_4180b2cbf7134a5d9a09246fcd29c274", "step": 1, "style": "IPY_MODEL_a73653f2154b4886a3a42e141aab4511", "tabbable": null, "tooltip": null, "value": 2}}, "87f4659442bf4050a6ce361a6290bf36": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "27fc65f330584fe3b40ffb585ac0b896": {"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": "150px"}}, "e5f0940f102a45a78dc9a36da0d8e68b": {"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_87f4659442bf4050a6ce361a6290bf36", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_27fc65f330584fe3b40ffb585ac0b896", "tabbable": null, "tooltip": null, "value": 0.00865}}, "a707e81798c94cab8ce894eaad120083": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fc45a05b185d490f8909573950375d72": {"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": "150px"}}, "2892fe8e28f44557b48e0ec81df69aed": {"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_a707e81798c94cab8ce894eaad120083", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_fc45a05b185d490f8909573950375d72", "tabbable": null, "tooltip": null, "value": 0.0}}, "ed5b2b5e3f9d46dfbfc6f76738400054": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1125faa6968b47a29468d31d8c7d311a": {"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": "150px"}}, "cc51de7920cd42a08e219771ca16f8a3": {"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_ed5b2b5e3f9d46dfbfc6f76738400054", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_1125faa6968b47a29468d31d8c7d311a", "tabbable": null, "tooltip": null, "value": 1.0}}, "4918f08fce92414dab7233e25b12d309": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a58c0257e781455fa02c4ece7bd9ccc3": {"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": "150px"}}, "4a221d63422d4e7ba6660d8805ed4d5f": {"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_4918f08fce92414dab7233e25b12d309", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_a58c0257e781455fa02c4ece7bd9ccc3", "tabbable": null, "tooltip": null, "value": 0.01525}}, "7226d275a5324ed1b3865043a22117ad": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7b33739fe0a64ddab03a1e9f5dea989b": {"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": "150px"}}, "c86a5928fdd4487e8ae349254b3635bb": {"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_7226d275a5324ed1b3865043a22117ad", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_7b33739fe0a64ddab03a1e9f5dea989b", "tabbable": null, "tooltip": null, "value": 0.0}}, "b083fe6baf17438bb7b49244a8b49928": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "0c85a099811044439becc6a6c9033f3a": {"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": "150px"}}, "5a5319ef8df44bc0ae672f3826fee5c3": {"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_b083fe6baf17438bb7b49244a8b49928", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_0c85a099811044439becc6a6c9033f3a", "tabbable": null, "tooltip": null, "value": 0.1}}, "7dc3559fd2684a5f951af5ad68a7ee2a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d0e0273ac93f4fe2ba01863ae41a79f0": {"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": "150px"}}, "53e36f72136c43cab86d59dfe8b53f10": {"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_7dc3559fd2684a5f951af5ad68a7ee2a", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d0e0273ac93f4fe2ba01863ae41a79f0", "tabbable": null, "tooltip": null, "value": 0.19934}}, "52a7e4660764402ba9e55925ed4a4cd8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd6046f953ce4a4c9dc09292501915e6": {"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": "150px"}}, "4fe8ef76b93a4f55a9d3059ea14d8b10": {"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_52a7e4660764402ba9e55925ed4a4cd8", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_cd6046f953ce4a4c9dc09292501915e6", "tabbable": null, "tooltip": null, "value": 0.0}}, "3649edbf50be4df094c32637852fa940": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "851de8812a1e4b2bb2da4f782a92ee86": {"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": "150px"}}, "fdda10c0eb98460788d2a6a8f3a4d1a7": {"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_3649edbf50be4df094c32637852fa940", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_851de8812a1e4b2bb2da4f782a92ee86", "tabbable": null, "tooltip": null, "value": 1.0}}, "c5249f8d7f744841ad0149f0a0086417": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e9291cfe01db4f15829c8d94ddfcb6b7": {"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": "150px"}}, "5ee2bceb68b14ab69f51b065f1119e44": {"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_c5249f8d7f744841ad0149f0a0086417", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_e9291cfe01db4f15829c8d94ddfcb6b7", "tabbable": null, "tooltip": null, "value": 0.08831}}, "399b59fd050b4e188ce32d069c6b0bae": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "44dcc0e4e4064cee8410352eb6d0a43c": {"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": "150px"}}, "0d6e80660c27477f96a17292fc098bfc": {"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_399b59fd050b4e188ce32d069c6b0bae", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_44dcc0e4e4064cee8410352eb6d0a43c", "tabbable": null, "tooltip": null, "value": 0.0}}, "054a8f6428ea45a29cd5bc0b41c1099c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d0f7e3ec476d4a7fa71dbf4d34c022af": {"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": "150px"}}, "1f80bb5efe934882aaa6c70008758577": {"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_054a8f6428ea45a29cd5bc0b41c1099c", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_d0f7e3ec476d4a7fa71dbf4d34c022af", "tabbable": null, "tooltip": null, "value": 0.1}}, "d952100f61b1424d99e21fa25ac393f3": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ac77fa9667eb47328386c419ef8b690d": {"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}}, "a3afb76b34e64531a62aa68fb41e9a0b": {"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_d952100f61b1424d99e21fa25ac393f3", "placeholder": "\u200b", "style": "IPY_MODEL_ac77fa9667eb47328386c419ef8b690d", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "33eefc232b894eebab2e7cd642ef0bf7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aa6bfcfc09b24bc1acbf09b67aff0a8c": {"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}}, "dbe752b2f08f4f3d8df4c1f8d31cd094": {"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_33eefc232b894eebab2e7cd642ef0bf7", "placeholder": "\u200b", "style": "IPY_MODEL_aa6bfcfc09b24bc1acbf09b67aff0a8c", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "6ea70e8bc21a41cdbed94ff924a66134": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ab8d746822a54df1aebf0eaf081c7375": {"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}}, "422654b8e24149999e9ef11cd2477bb3": {"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_6ea70e8bc21a41cdbed94ff924a66134", "placeholder": "\u200b", "style": "IPY_MODEL_ab8d746822a54df1aebf0eaf081c7375", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "6a2668c9df554439b136545298633582": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "13b3c9df1e3b4b36a18725a545c5c7bc": {"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_7c284facd5c946ca9936d927f1bfa2f8", "IPY_MODEL_1c790a1535284b5f8f12b139d76fa2ee", "IPY_MODEL_fc1a904156324d9689656f166bf85a8e", "IPY_MODEL_5a7acd8e77a24e12a904bab5a8ba0d05", "IPY_MODEL_a3afb76b34e64531a62aa68fb41e9a0b", "IPY_MODEL_e5f0940f102a45a78dc9a36da0d8e68b", "IPY_MODEL_4a221d63422d4e7ba6660d8805ed4d5f", "IPY_MODEL_53e36f72136c43cab86d59dfe8b53f10", "IPY_MODEL_5ee2bceb68b14ab69f51b065f1119e44", "IPY_MODEL_dbe752b2f08f4f3d8df4c1f8d31cd094", "IPY_MODEL_2892fe8e28f44557b48e0ec81df69aed", "IPY_MODEL_c86a5928fdd4487e8ae349254b3635bb", "IPY_MODEL_4fe8ef76b93a4f55a9d3059ea14d8b10", "IPY_MODEL_0d6e80660c27477f96a17292fc098bfc", "IPY_MODEL_422654b8e24149999e9ef11cd2477bb3", "IPY_MODEL_cc51de7920cd42a08e219771ca16f8a3", "IPY_MODEL_5a5319ef8df44bc0ae672f3826fee5c3", "IPY_MODEL_fdda10c0eb98460788d2a6a8f3a4d1a7", "IPY_MODEL_1f80bb5efe934882aaa6c70008758577"], "layout": "IPY_MODEL_6a2668c9df554439b136545298633582", "tabbable": null, "tooltip": null}}, "cd7f44e3dbb64398b7be2dc07926f907": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "17a2dcf027f34216a2491d8a23530d5a": {"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": "150px"}}, "0c1814501b3c46018cee9f034bb03c1f": {"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_cd7f44e3dbb64398b7be2dc07926f907", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_17a2dcf027f34216a2491d8a23530d5a", "tabbable": null, "tooltip": null, "value": 137.12}}, "9be00e954eee41f0b0fc3e3a20bf8e81": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "840f07bc5ffe4173aa5f9ed60d18754f": {"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": "150px"}}, "aeea15b169014043bf54125f30da64ea": {"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_9be00e954eee41f0b0fc3e3a20bf8e81", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_840f07bc5ffe4173aa5f9ed60d18754f", "tabbable": null, "tooltip": null, "value": 8.33}}, "608441eff28f4c6f850c4513ca44e964": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "056afc38ddf545eb93f56096dec0c384": {"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": "150px"}}, "d039ae54d00f4849b0daac3632473378": {"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_608441eff28f4c6f850c4513ca44e964", "step": 1, "style": "IPY_MODEL_056afc38ddf545eb93f56096dec0c384", "tabbable": null, "tooltip": null, "value": 1}}, "911d636b49b44bb7a2ccb5f94d3ada8e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "19100fa84afd43aa871facaffd4a9ced": {"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": "150px"}}, "08d05d9363a74b289e21d3820cb6ad00": {"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_911d636b49b44bb7a2ccb5f94d3ada8e", "step": 1, "style": "IPY_MODEL_19100fa84afd43aa871facaffd4a9ced", "tabbable": null, "tooltip": null, "value": 2}}, "5949d7de03544e458dbd5d1f5f11eae7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c7cea5d0ff744c12bec1b979cb2fa1b8": {"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": "150px"}}, "03a5f7f2391a45108e8062e3d648e3b6": {"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_5949d7de03544e458dbd5d1f5f11eae7", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_c7cea5d0ff744c12bec1b979cb2fa1b8", "tabbable": null, "tooltip": null, "value": 0.684013}}, "5d3f67f9ad494198915ab06762f9fff5": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2fbb4743ef6c4ebcb1b64c1344ef6605": {"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": "150px"}}, "26dd3ece96a34d12a5467d5d16e53746": {"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_5d3f67f9ad494198915ab06762f9fff5", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2fbb4743ef6c4ebcb1b64c1344ef6605", "tabbable": null, "tooltip": null, "value": 0.0}}, "c4160e3b4df0403f8c5adc188b9bfdd1": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "982cb9e591e2492c83b0d38c7315d320": {"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": "150px"}}, "8c7e01a08d3a4045841ec8c0499920b4": {"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_c4160e3b4df0403f8c5adc188b9bfdd1", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_982cb9e591e2492c83b0d38c7315d320", "tabbable": null, "tooltip": null, "value": 1.0}}, "7ab042dc81f942a99227cb6cd0aa8a9d": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "985d6814251945ebacc14ac2506b2caa": {"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": "150px"}}, "24d1e6db2130427fb6db64195e98b196": {"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_7ab042dc81f942a99227cb6cd0aa8a9d", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_985d6814251945ebacc14ac2506b2caa", "tabbable": null, "tooltip": null, "value": 1.43884}}, "2a7dfce994254a078838f2b385933566": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "55f6ef252e6541a5838803f83e7ee149": {"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": "150px"}}, "9b4586df861e453c9c3d66799187b818": {"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_2a7dfce994254a078838f2b385933566", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_55f6ef252e6541a5838803f83e7ee149", "tabbable": null, "tooltip": null, "value": 0.0}}, "bb6e3f712ba54777abf2b31e4d6b64b6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e5a30df512164dbb8b0e4dfda42931b9": {"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": "150px"}}, "2abdccdf37e2488583ab85977d6b426d": {"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_bb6e3f712ba54777abf2b31e4d6b64b6", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_e5a30df512164dbb8b0e4dfda42931b9", "tabbable": null, "tooltip": null, "value": 0.1}}, "a591dbf9a8c7480bb84124deb517640c": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d93d83d23a8945b6ab56336d74a8eac2": {"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": "150px"}}, "ce0f49f6da6f457c8e6c8a9902c63aa3": {"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_a591dbf9a8c7480bb84124deb517640c", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_d93d83d23a8945b6ab56336d74a8eac2", "tabbable": null, "tooltip": null, "value": 0.008958}}, "098e5aa4e05a40e7b928e0f186b771c8": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "2890701e085d45b1a953a71f271ea405": {"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": "150px"}}, "970d11976cae45d09cdc5e789048634a": {"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_098e5aa4e05a40e7b928e0f186b771c8", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_2890701e085d45b1a953a71f271ea405", "tabbable": null, "tooltip": null, "value": 0.0}}, "4ab9d2a5e2664a14b8f83b5065721e38": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6c15000c920148bd9530e24f972f86e3": {"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": "150px"}}, "36527125956d4242928f85b63c6af6ad": {"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_4ab9d2a5e2664a14b8f83b5065721e38", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_6c15000c920148bd9530e24f972f86e3", "tabbable": null, "tooltip": null, "value": 1.0}}, "39aaf4a433bb47c789a1f0885cc02188": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "13cdf66c952d439a897a9b383b3c52a6": {"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": "150px"}}, "cf1738cb0de74336afb05c1fa8e4681a": {"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_39aaf4a433bb47c789a1f0885cc02188", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_13cdf66c952d439a897a9b383b3c52a6", "tabbable": null, "tooltip": null, "value": 3e-06}}, "87101e9b992542bf85bb7d0e19aae4c0": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "299e8a40ff9d42e8867ca9f4590c6807": {"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": "150px"}}, "eff83bd2a43c487a8262097550d3b5e8": {"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_87101e9b992542bf85bb7d0e19aae4c0", "max": 1000000.0, "min": 0.0, "step": 0.01, "style": "IPY_MODEL_299e8a40ff9d42e8867ca9f4590c6807", "tabbable": null, "tooltip": null, "value": 0.0}}, "a920e9bf27be4fd9af07e5f98bf6b10b": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "1b35669e88984785bbdf31b506b48ae6": {"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": "150px"}}, "9845a15402a641c2a87b67d8eb6b1d9f": {"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_a920e9bf27be4fd9af07e5f98bf6b10b", "max": 1000000.0, "min": 0.0, "step": 0.1, "style": "IPY_MODEL_1b35669e88984785bbdf31b506b48ae6", "tabbable": null, "tooltip": null, "value": 0.1}}, "169637c51cba4af181ee6e19da4c9414": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "478391749190430a8d63fe919aa7bd71": {"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}}, "5c2bbea4926b4ba5b14cb6e60e2613ea": {"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_169637c51cba4af181ee6e19da4c9414", "placeholder": "\u200b", "style": "IPY_MODEL_478391749190430a8d63fe919aa7bd71", "tabbable": null, "tooltip": null, "value": "AMPA weights"}}, "c667ca85a2fc4863b33192628b0ed505": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d9d91e34e9814c2ba5e701e0ae0903ed": {"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}}, "db681094acba4f0ea212a737775deddc": {"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_c667ca85a2fc4863b33192628b0ed505", "placeholder": "\u200b", "style": "IPY_MODEL_d9d91e34e9814c2ba5e701e0ae0903ed", "tabbable": null, "tooltip": null, "value": "NMDA weights"}}, "eb1797b488ed446b9710a91f66be5c51": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5fe38dcd45514dd5b058a013671ae861": {"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}}, "050c70b8216d4d48b6e1b7769134b68c": {"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_eb1797b488ed446b9710a91f66be5c51", "placeholder": "\u200b", "style": "IPY_MODEL_5fe38dcd45514dd5b058a013671ae861", "tabbable": null, "tooltip": null, "value": "Synaptic delays"}}, "307f5567ee23439fb6ca6d36b696d11a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e3209a4f228648a68553e2bc767045db": {"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_0c1814501b3c46018cee9f034bb03c1f", "IPY_MODEL_aeea15b169014043bf54125f30da64ea", "IPY_MODEL_d039ae54d00f4849b0daac3632473378", "IPY_MODEL_08d05d9363a74b289e21d3820cb6ad00", "IPY_MODEL_5c2bbea4926b4ba5b14cb6e60e2613ea", "IPY_MODEL_03a5f7f2391a45108e8062e3d648e3b6", "IPY_MODEL_24d1e6db2130427fb6db64195e98b196", "IPY_MODEL_ce0f49f6da6f457c8e6c8a9902c63aa3", "IPY_MODEL_cf1738cb0de74336afb05c1fa8e4681a", "IPY_MODEL_db681094acba4f0ea212a737775deddc", "IPY_MODEL_26dd3ece96a34d12a5467d5d16e53746", "IPY_MODEL_9b4586df861e453c9c3d66799187b818", "IPY_MODEL_970d11976cae45d09cdc5e789048634a", "IPY_MODEL_eff83bd2a43c487a8262097550d3b5e8", "IPY_MODEL_050c70b8216d4d48b6e1b7769134b68c", "IPY_MODEL_8c7e01a08d3a4045841ec8c0499920b4", "IPY_MODEL_2abdccdf37e2488583ab85977d6b426d", "IPY_MODEL_36527125956d4242928f85b63c6af6ad", "IPY_MODEL_9845a15402a641c2a87b67d8eb6b1d9f"], "layout": "IPY_MODEL_307f5567ee23439fb6ca6d36b696d11a", "tabbable": null, "tooltip": null}}, "5eecb4bc93f4458d93167eb7b6cd3632": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "107c5722e2d64610a80b38a8072223b5": {"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_f32b779c125141b8a22c0770edd191c4", "IPY_MODEL_13b3c9df1e3b4b36a18725a545c5c7bc", "IPY_MODEL_e3209a4f228648a68553e2bc767045db"], "layout": "IPY_MODEL_5eecb4bc93f4458d93167eb7b6cd3632", "selected_index": null, "tabbable": null, "titles": ["evdist1 (distal)", "evprox1 (proximal)", "evprox2 (proximal)"], "tooltip": null}}, "5b398de596364341b0e4224ee0f60971": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "10fb6aa5835b434eb5aee322d4f412e0": {"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_5b398de596364341b0e4224ee0f60971", "msg_id": "", "outputs": [{"output_type": "display_data", "metadata": {}, "data": {"text/plain": "
", "image/png": "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"}}], "tabbable": null, "tooltip": null}}, "9d228877a7104a9ca69ce686559ac2ff": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "08b5df934f1c49e98e1d32bd6b5bf397": {"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_fbeaeca6673045b9a9897f1e8aef9670", "IPY_MODEL_c20a67f4a9fa4de9b62d60f319e84846"], "layout": "IPY_MODEL_9d228877a7104a9ca69ce686559ac2ff", "selected_index": 1, "tabbable": null, "titles": ["ax0", "ax1"], "tooltip": null}}, "56207e5e5f03461680727dbd61ed43e7": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "2f5bd1cff63541b9b4464c643fac3033": {"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"}}, "a0618ca4a1e14e95962ccef32d41790f": {"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_56207e5e5f03461680727dbd61ed43e7", "style": "IPY_MODEL_2f5bd1cff63541b9b4464c643fac3033", "tabbable": null, "tooltip": null}}, "1a4db50ec649456a9e535d41e6e9a800": {"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"}}, "209ffddd0e1c4459956e6e47bb1ed6dc": {"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_56207e5e5f03461680727dbd61ed43e7", "style": "IPY_MODEL_1a4db50ec649456a9e535d41e6e9a800", "tabbable": null, "tooltip": null}}, "afa5ea857390488397863cdb246a054f": {"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"}}, "33603cd6031246808ba5f84cc997f2b2": {"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_56207e5e5f03461680727dbd61ed43e7", "style": "IPY_MODEL_afa5ea857390488397863cdb246a054f", "tabbable": null, "tooltip": null}}, "78b337aa9ec745259d328b9b8eb309c8": {"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"}}, "1f316e757662491391eff798219237db": {"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_56207e5e5f03461680727dbd61ed43e7", "style": "IPY_MODEL_78b337aa9ec745259d328b9b8eb309c8", "tabbable": null, "tooltip": null}}, "2e9bfc351be9402fb9696fd2e7ac6fc0": {"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"}}, "728e95733d40434a8c638160d47881ce": {"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_56207e5e5f03461680727dbd61ed43e7", "step": null, "style": "IPY_MODEL_2e9bfc351be9402fb9696fd2e7ac6fc0", "tabbable": null, "tooltip": null, "value": 30.0}}, "d905c840e98943ba9b52c8c5934d7247": {"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"}}, "eb20132a45cc46d7bacc583b3c5b260f": {"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_56207e5e5f03461680727dbd61ed43e7", "step": null, "style": "IPY_MODEL_d905c840e98943ba9b52c8c5934d7247", "tabbable": null, "tooltip": null, "value": 3000.0}}, "b6a7b854396d4315b8aa764a37b781c6": {"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"}}, "24f98c7e298d46b08f4713072ff2d6be": {"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_56207e5e5f03461680727dbd61ed43e7", "step": null, "style": "IPY_MODEL_b6a7b854396d4315b8aa764a37b781c6", "tabbable": null, "tooltip": null, "value": 0.0}}, "f8237ba3ad5b4247bab64bae0f346253": {"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"}}, "9b3c045e58b24984bf352d7824211db2": {"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_56207e5e5f03461680727dbd61ed43e7", "step": null, "style": "IPY_MODEL_f8237ba3ad5b4247bab64bae0f346253", "tabbable": null, "tooltip": null, "value": 1.0}}, "c1056ab1ca6a4e1ea0c7df38c26e0f2d": {"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"}}, "f10647ad62a34803a8838794c0505a45": {"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_56207e5e5f03461680727dbd61ed43e7", "step": null, "style": "IPY_MODEL_c1056ab1ca6a4e1ea0c7df38c26e0f2d", "tabbable": null, "tooltip": null, "value": 100.0}}, "4a633b23c8d54481be58143f9f88c615": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ed28f8dfc3dd45a29183039a6930cd49": {"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_0b757719f67f4427b361887ed233f8d8"], "layout": "IPY_MODEL_4a633b23c8d54481be58143f9f88c615", "tabbable": null, "tooltip": null}}, "454ef6302ccf4413b76b08253bc9f01f": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7e083386eadd43689e10afe5bbb93dd1": {"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}}, "cb793fb2ce0d405e872e4ea1f8689d1c": {"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_454ef6302ccf4413b76b08253bc9f01f", "style": "IPY_MODEL_7e083386eadd43689e10afe5bbb93dd1", "tabbable": null, "tooltip": null}}, "5313b973f5434216b41176b1d7554b99": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "784eb3e8b2314ae894cbb49913903529": {"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}}, "a7534e9926b54d4cb5a5891886eed1cc": {"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_5313b973f5434216b41176b1d7554b99", "style": "IPY_MODEL_784eb3e8b2314ae894cbb49913903529", "tabbable": null, "tooltip": null}}, "43ef69cf2e6f43f1a3d7b8f12c7c68f6": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_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}}, "ec74215a7e084810aaa7fa6f6876c1a9": {"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_cb793fb2ce0d405e872e4ea1f8689d1c", "IPY_MODEL_a7534e9926b54d4cb5a5891886eed1cc"], "layout": "IPY_MODEL_43ef69cf2e6f43f1a3d7b8f12c7c68f6", "tabbable": null, "tooltip": null}}, "660664227173417e85a26d0bc5556efe": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "fbeaeca6673045b9a9897f1e8aef9670": {"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_209ffddd0e1c4459956e6e47bb1ed6dc", "IPY_MODEL_a0618ca4a1e14e95962ccef32d41790f", "IPY_MODEL_728e95733d40434a8c638160d47881ce", "IPY_MODEL_eb20132a45cc46d7bacc583b3c5b260f", "IPY_MODEL_33603cd6031246808ba5f84cc997f2b2", "IPY_MODEL_24f98c7e298d46b08f4713072ff2d6be", "IPY_MODEL_9b3c045e58b24984bf352d7824211db2", "IPY_MODEL_f10647ad62a34803a8838794c0505a45", "IPY_MODEL_1f316e757662491391eff798219237db", "IPY_MODEL_ec74215a7e084810aaa7fa6f6876c1a9", "IPY_MODEL_ed28f8dfc3dd45a29183039a6930cd49"], "layout": "IPY_MODEL_660664227173417e85a26d0bc5556efe", "tabbable": null, "tooltip": null}}, "9a0a4248bc9d4bb69df2681300ebdd2e": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "34a8b34b7b254acc8b2144ef656c815c": {"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"}}, "e37bf519f8d54518a156056f727d3dc0": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "style": "IPY_MODEL_34a8b34b7b254acc8b2144ef656c815c", "tabbable": null, "tooltip": null}}, "3ff3a767e6e748d593ac28c4982d4a77": {"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"}}, "df645bf5f80542448c2d9ee85747ba2d": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "style": "IPY_MODEL_3ff3a767e6e748d593ac28c4982d4a77", "tabbable": null, "tooltip": null}}, "a16fbbd4167f43e6bf1cf760e828ea49": {"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"}}, "461e1a4074d743e49ebff883ef1a77fc": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "style": "IPY_MODEL_a16fbbd4167f43e6bf1cf760e828ea49", "tabbable": null, "tooltip": null}}, "afe0647929eb48cbb664846d9b267b5d": {"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"}}, "c1943235e9a64106b569674c719a17d4": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "style": "IPY_MODEL_afe0647929eb48cbb664846d9b267b5d", "tabbable": null, "tooltip": null}}, "fe585abb046b43b393bf7c62c5061ce0": {"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"}}, "2197b9ec6efe4e7b80844efd83bd2a68": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "step": null, "style": "IPY_MODEL_fe585abb046b43b393bf7c62c5061ce0", "tabbable": null, "tooltip": null, "value": 30.0}}, "cdd2d2c8e1954a93bc63f76a4599d6d0": {"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"}}, "eba2d57258584abea25e897c626f7fea": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "step": null, "style": "IPY_MODEL_cdd2d2c8e1954a93bc63f76a4599d6d0", "tabbable": null, "tooltip": null, "value": 3000.0}}, "2e5b93f41675436a833d4e0f0b87df4a": {"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"}}, "cab4ab37c67643eeaf6a8fc31ea95356": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "step": null, "style": "IPY_MODEL_2e5b93f41675436a833d4e0f0b87df4a", "tabbable": null, "tooltip": null, "value": 0.0}}, "affe73717a0a495caba5a204f33b478e": {"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"}}, "2d726e9d7c814cf2920c6eae7f18c1ff": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "step": null, "style": "IPY_MODEL_affe73717a0a495caba5a204f33b478e", "tabbable": null, "tooltip": null, "value": 1.0}}, "5edb3972ad7442388c4abea6f5484009": {"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"}}, "f197da2d0e4e4b28a7c4bc57f5182c38": {"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_9a0a4248bc9d4bb69df2681300ebdd2e", "step": null, "style": "IPY_MODEL_5edb3972ad7442388c4abea6f5484009", "tabbable": null, "tooltip": null, "value": 100.0}}, "fb6743abd42f4edb8dbea1320c5d9225": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4b9b4973a5724213bffa12c226fb2f13": {"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_d4472640556843769536524b78128d98"], "layout": "IPY_MODEL_fb6743abd42f4edb8dbea1320c5d9225", "tabbable": null, "tooltip": null}}, "6b50d38d5ccc47d0b83c11622a059c29": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "10e1ad842b6741409a753d5052871eaa": {"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}}, "254ea3a3c9de43b7a1597b44dee917b5": {"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_6b50d38d5ccc47d0b83c11622a059c29", "style": "IPY_MODEL_10e1ad842b6741409a753d5052871eaa", "tabbable": null, "tooltip": null}}, "8cc460107c534ff186ffe29ee1896b07": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "70834fa98ad547f2ac9950e09c2c5201": {"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}}, "b7e1ea2b404548119576d40107b3637b": {"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_8cc460107c534ff186ffe29ee1896b07", "style": "IPY_MODEL_70834fa98ad547f2ac9950e09c2c5201", "tabbable": null, "tooltip": null}}, "015a5fe1a4ab4cfbb802e8b0e41b2084": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_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}}, "b07bb1be06bf40cdba9f927dac50f183": {"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_254ea3a3c9de43b7a1597b44dee917b5", "IPY_MODEL_b7e1ea2b404548119576d40107b3637b"], "layout": "IPY_MODEL_015a5fe1a4ab4cfbb802e8b0e41b2084", "tabbable": null, "tooltip": null}}, "8256f5946b4e413584680ffb7cbf4cec": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "c20a67f4a9fa4de9b62d60f319e84846": {"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_df645bf5f80542448c2d9ee85747ba2d", "IPY_MODEL_e37bf519f8d54518a156056f727d3dc0", "IPY_MODEL_2197b9ec6efe4e7b80844efd83bd2a68", "IPY_MODEL_eba2d57258584abea25e897c626f7fea", "IPY_MODEL_461e1a4074d743e49ebff883ef1a77fc", "IPY_MODEL_cab4ab37c67643eeaf6a8fc31ea95356", "IPY_MODEL_2d726e9d7c814cf2920c6eae7f18c1ff", "IPY_MODEL_f197da2d0e4e4b28a7c4bc57f5182c38", "IPY_MODEL_c1943235e9a64106b569674c719a17d4", "IPY_MODEL_b07bb1be06bf40cdba9f927dac50f183", "IPY_MODEL_4b9b4973a5724213bffa12c226fb2f13"], "layout": "IPY_MODEL_8256f5946b4e413584680ffb7cbf4cec", "tabbable": null, "tooltip": null}}, "c30e98a180244542b87ba9e4fbd189c4": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_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%"}}, "9d052936cd1b438f8af17e39a903e3aa": {"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}}, "12d45e9c02d74a9b85a0a14b07060011": {"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_c30e98a180244542b87ba9e4fbd189c4", "style": "IPY_MODEL_9d052936cd1b438f8af17e39a903e3aa", "tabbable": null, "tooltip": null}}, "ec33eb775be24984a7ec4732d6e6bec9": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6fb619fb9a4d47a3b21aba02cb4743b0": {"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_12d45e9c02d74a9b85a0a14b07060011", "IPY_MODEL_08b5df934f1c49e98e1d32bd6b5bf397"], "layout": "IPY_MODEL_ec33eb775be24984a7ec4732d6e6bec9", "tabbable": null, "tooltip": null}}, "f0c429668f514da2ae924462da05a783": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9721554ec75f40ba8816966d53239aa8": {"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}}, "0b757719f67f4427b361887ed233f8d8": {"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_f0c429668f514da2ae924462da05a783", "placeholder": "\u200b", "style": "IPY_MODEL_9721554ec75f40ba8816966d53239aa8", "tabbable": null, "tooltip": null, "value": "default: input histogram"}}, "2cd0ef1ade6743e4ab44169122452b9a": {"model_name": "LayoutModel", "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7e9ace225c514d6d80a7cb4fb442612d": {"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}}, "d4472640556843769536524b78128d98": {"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_2cd0ef1ade6743e4ab44169122452b9a", "placeholder": "\u200b", "style": "IPY_MODEL_7e9ace225c514d6d80a7cb4fb442612d", "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 0bc1927bb..e6b64643c 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-04-01T23:41:56.289273Z", - "iopub.status.busy": "2024-04-01T23:41:56.289040Z", - "iopub.status.idle": "2024-04-01T23:41:56.678862Z", - "shell.execute_reply": "2024-04-01T23:41:56.678271Z" + "iopub.execute_input": "2024-04-04T17:26:07.259653Z", + "iopub.status.busy": "2024-04-04T17:26:07.259112Z", + "iopub.status.idle": "2024-04-04T17:26:07.654677Z", + "shell.execute_reply": "2024-04-04T17:26:07.654064Z" } }, "outputs": [], @@ -37,10 +37,10 @@ "id": "norwegian-angola", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:41:56.699231Z", - "iopub.status.busy": "2024-04-01T23:41:56.698695Z", - "iopub.status.idle": "2024-04-01T23:41:57.077106Z", - "shell.execute_reply": "2024-04-01T23:41:57.076621Z" + "iopub.execute_input": "2024-04-04T17:26:07.674626Z", + "iopub.status.busy": "2024-04-04T17:26:07.674078Z", + "iopub.status.idle": "2024-04-04T17:26:08.047648Z", + "shell.execute_reply": "2024-04-04T17:26:08.047138Z" }, "require": [ "html2canvas" @@ -58,10 +58,10 @@ "id": "0cda6c80-b159-443f-a425-1da555784bc8", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:41:57.096542Z", - "iopub.status.busy": "2024-04-01T23:41:57.096395Z", - "iopub.status.idle": "2024-04-01T23:41:57.135298Z", - "shell.execute_reply": "2024-04-01T23:41:57.134725Z" + "iopub.execute_input": "2024-04-04T17:26:08.067503Z", + "iopub.status.busy": "2024-04-04T17:26:08.067067Z", + "iopub.status.idle": "2024-04-04T17:26:08.112168Z", + "shell.execute_reply": "2024-04-04T17:26:08.111655Z" } }, "outputs": [ @@ -72,7 +72,7 @@ " " + "" ] }, "metadata": {}, @@ -97,10 +97,10 @@ "id": "d39f7169", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:41:57.138640Z", - "iopub.status.busy": "2024-04-01T23:41:57.138410Z", - "iopub.status.idle": "2024-04-01T23:41:57.141136Z", - "shell.execute_reply": "2024-04-01T23:41:57.140694Z" + "iopub.execute_input": "2024-04-04T17:26:08.115480Z", + "iopub.status.busy": "2024-04-04T17:26:08.115142Z", + "iopub.status.idle": "2024-04-04T17:26:08.117740Z", + "shell.execute_reply": "2024-04-04T17:26:08.117287Z" } }, "outputs": [], @@ -114,10 +114,10 @@ "id": "86b15f2c-fb02-46aa-a4ce-69030a8fcf32", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:41:57.143057Z", - "iopub.status.busy": "2024-04-01T23:41:57.142735Z", - "iopub.status.idle": "2024-04-01T23:41:57.179659Z", - "shell.execute_reply": "2024-04-01T23:41:57.179128Z" + "iopub.execute_input": "2024-04-04T17:26:08.119775Z", + "iopub.status.busy": "2024-04-04T17:26:08.119413Z", + "iopub.status.idle": "2024-04-04T17:26:08.157027Z", + "shell.execute_reply": "2024-04-04T17:26:08.156415Z" }, "scrolled": true }, @@ -129,7 +129,7 @@ " " + "" ] }, "metadata": {}, @@ -162,10 +162,10 @@ "id": "7889c5ef-4e2c-439f-82a7-9b075440d799", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:41:57.182784Z", - "iopub.status.busy": "2024-04-01T23:41:57.182554Z", - "iopub.status.idle": "2024-04-01T23:42:28.416528Z", - "shell.execute_reply": "2024-04-01T23:42:28.415906Z" + "iopub.execute_input": "2024-04-04T17:26:08.160227Z", + "iopub.status.busy": "2024-04-04T17:26:08.159834Z", + "iopub.status.idle": "2024-04-04T17:26:40.211608Z", + "shell.execute_reply": "2024-04-04T17:26:40.210989Z" } }, "outputs": [], @@ -187,10 +187,10 @@ "id": "87b85cc9-097b-45fa-b4e1-643bd08dd356", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:42:28.445255Z", - "iopub.status.busy": "2024-04-01T23:42:28.444932Z", - "iopub.status.idle": "2024-04-01T23:42:28.492541Z", - "shell.execute_reply": "2024-04-01T23:42:28.492029Z" + "iopub.execute_input": "2024-04-04T17:26:40.242236Z", + "iopub.status.busy": "2024-04-04T17:26:40.242038Z", + "iopub.status.idle": "2024-04-04T17:26:40.289211Z", + "shell.execute_reply": "2024-04-04T17:26:40.288688Z" }, "scrolled": true }, @@ -202,7 +202,7 @@ " " + "" ] }, "metadata": {}, @@ -227,10 +227,10 @@ "id": "696e649c", "metadata": { "execution": { - "iopub.execute_input": "2024-04-01T23:42:28.496506Z", - "iopub.status.busy": "2024-04-01T23:42:28.496253Z", - "iopub.status.idle": "2024-04-01T23:42:28.500099Z", - "shell.execute_reply": "2024-04-01T23:42:28.499557Z" + "iopub.execute_input": "2024-04-04T17:26:40.292998Z", + "iopub.status.busy": "2024-04-04T17:26:40.292654Z", + "iopub.status.idle": "2024-04-04T17:26:40.296417Z", + "shell.execute_reply": "2024-04-04T17:26:40.295902Z" } }, "outputs": [ @@ -340,48 +340,34 @@ "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { - "005b28d0c6e54394a3d5b392bf642ea3": { + "0059ddbf14504f3799cda961827b71a2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", "description_allow_html": false, - "layout": "IPY_MODEL_61ca75027b0740b69d77b5bed8e5b867", - "placeholder": "​", - "style": "IPY_MODEL_887cee370dde4ce098088387e8842dbf", + "disabled": false, + "layout": "IPY_MODEL_18df4ba9dda8469882a0cb91610e7b77", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_9832db6e50a2493092a13aaccdeee35a", "tabbable": null, "tooltip": null, - "value": "
" - } - }, - "00c7def1a39c4048abb660c10229b82c": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "value": 0.02 } }, - "010362805d584bf9afa95807189ca35e": { + "015a5fe1a4ab4cfbb802e8b0e41b2084": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -415,7 +401,7 @@ "grid_template_columns": null, "grid_template_rows": null, "height": null, - "justify_content": null, + "justify_content": "space-between", "justify_items": null, "left": null, "margin": null, @@ -434,7 +420,7 @@ "width": null } }, - "0147d1f8aed54cc38e8174bae67709a4": { + "01a66901ba394074bb5068af7cb2c5f5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -449,29 +435,16 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_26aa3403e7c6419f88583ca30aa91739" + "IPY_MODEL_49bfcb0435d5419e916898e803f58f91", + "IPY_MODEL_a838ff8d047b48ae9b781adc73ec627b", + "IPY_MODEL_6748c0c4def74dcbac56e5772ab53846" ], - "layout": "IPY_MODEL_e5d8a6d895e940e584d3b35caf3ec737", + "layout": "IPY_MODEL_0768ad8e37634f248227a4e7ba16bcb4", "tabbable": null, "tooltip": null } }, - "0171ee36da2e424f9a2d76fc2d0b7d7f": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "01757b82947342fa97ffc02cbe04421b": { + "01badc689bcc4d0aa569514a23085550": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -524,43 +497,95 @@ "width": null } }, - "01c207a1821241a8bae9ae3940b4801b": { + "02246be944154e57adb79ca0f09fbd9d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "TextStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_f3198cdc93e34239b04ecadadb1786a6", + "placeholder": "​", + "style": "IPY_MODEL_3035e55d16d14b3383c347dfb696a4f5", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: ampa

" } }, - "028f20db5c63478a9d16126b8371fbb8": { + "02de19922a7f43b0a2ff59b59635b157": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "150px" + } + }, + "03a5f7f2391a45108e8062e3d648e3b6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_5949d7de03544e458dbd5d1f5f11eae7", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_c7cea5d0ff744c12bec1b979cb2fa1b8", + "tabbable": null, + "tooltip": null, + "value": 0.684013 + } + }, + "050c70b8216d4d48b6e1b7769134b68c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_eb1797b488ed446b9710a91f66be5c51", + "placeholder": "​", + "style": "IPY_MODEL_5fe38dcd45514dd5b058a013671ae861", + "tabbable": null, + "tooltip": null, + "value": "Synaptic delays" } }, - "02a2faeb5dfb445fa952252b11e9f24f": { + "054a8f6428ea45a29cd5bc0b41c1099c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -613,34 +638,49 @@ "width": null } }, - "02b63f0fda374e3ba7deb9a9cda5d170": { + "056afc38ddf545eb93f56096dec0c384": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "0663cda971e045ecad093e9b64ddb9d5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "RadioButtonsModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "RadioButtonsModel", + "_options_labels": [ + "proximal", + "distal" + ], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L2_basket:", + "_view_name": "RadioButtonsView", + "description": "Location", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_1633c39d63854ee4a1530b8a18e44333", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_ae8a81dc65134243be818e9ab2619dd0", + "index": 0, + "layout": "IPY_MODEL_8f698592aaf948c9ad2c72da5daa6710", + "style": "IPY_MODEL_6b7cfa3083ed4f99b915caae4dc47f6b", "tabbable": null, - "tooltip": null, - "value": 3e-06 + "tooltip": null } }, - "03745711bc0d48218ba9141d9699f656": { + "0670e81912244247a1ec6d79afd9f72e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -655,74 +695,49 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_dbf109188c2f4012b1f3bf5935805044", - "IPY_MODEL_ee0e5846ee744ea0b7c946728402a275", - "IPY_MODEL_489e834010c9436eacd813497118bbd7", - "IPY_MODEL_2470322640304c6084d43e05205a2162", - "IPY_MODEL_6086bc5709ad4cf3a0d65cefa09ccca2", - "IPY_MODEL_721e44de95004cd2b429ff42a97093f9", - "IPY_MODEL_c8e466d44c27441e9191b84ba35085ef", - "IPY_MODEL_1eaf82c4f6544ce8afa108049765f3ee", - "IPY_MODEL_02b63f0fda374e3ba7deb9a9cda5d170", - "IPY_MODEL_56757ede23bf4339b419cdd4d63c5489", - "IPY_MODEL_939475dc85a9409eaed5fac37eb4ecd1", - "IPY_MODEL_906fe845d91c49f6ad8caebb6ea53938", - "IPY_MODEL_73ddd5cd0d374798a8568592cf59ad35", - "IPY_MODEL_521ac3cea740488f9f6227630ee42b8d", - "IPY_MODEL_17a49984b91841388cecaace3c1e9498", - "IPY_MODEL_1eb64dd16a5347a2ad73b54f0408f023", - "IPY_MODEL_8f74d4f1a5cb4e1bb51eb6c78d0d72ae", - "IPY_MODEL_76cbe628065d457c98fa81395e54cf09", - "IPY_MODEL_5948501cf39d469b9ff3acc17d3e31f6" + "IPY_MODEL_20eb33b811754f30bebbc4d3d559e430", + "IPY_MODEL_0059ddbf14504f3799cda961827b71a2", + "IPY_MODEL_419460dc43a542d7aad1a0dc6a0311e5" ], - "layout": "IPY_MODEL_e126d8c14d7e4522847301407c257f5e", + "layout": "IPY_MODEL_5be1e237de754f9d940d76a3938d10bb", "tabbable": null, "tooltip": null } }, - "03ec8980c27a4cd6b4a76454ae28feb3": { + "067d3bde0fa9475cbc5e0266d84ca4a9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "tstop (ms):", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_01757b82947342fa97ffc02cbe04421b", - "max": 1000000.0, - "min": 0.0, - "step": 1.0, - "style": "IPY_MODEL_b5678edf885e4251adfa26c9758d4dad", - "tabbable": null, - "tooltip": null, - "value": 170.0 + "_view_name": "StyleView", + "description_width": "" } }, - "0416cae4ffbd4624a9e9ba6bdcb3a28a": { + "0750610999d0487187c9de0f39e0f544": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "043e77df270c411eb56ead9a2364f258": { + "0768ad8e37634f248227a4e7ba16bcb4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -775,7 +790,7 @@ "width": null } }, - "045c93fa7b994108913bc105d66439b3": { + "07bae56f49a94185982a8f3b83ae6ac5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -828,94 +843,157 @@ "width": null } }, - "0487d6868c6b4196b44f1090bba22f55": { + "081b364d640a4a729c01f66c3335007c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FileUploadModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FileUploadModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_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_eade6b1d5494426d9123195cd8f6817f", - "multiple": false, - "style": "IPY_MODEL_1c68ed7b27ca4386b844a7dec10875bc", - "tabbable": null, - "tooltip": null, - "value": [] + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "05237bb81ab84c1d81dcdd12929a6c45": { + "08a18cc793a44cd19be06521edddfd70": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", "description_allow_html": false, - "layout": "IPY_MODEL_487ef07b67264551baabe18f3a9b48bb", - "placeholder": "​", - "style": "IPY_MODEL_3dee1b21b8b647aa8182821ca76681b7", + "disabled": false, + "layout": "IPY_MODEL_3550b4eaba3e437389b01d3c4d47a42a", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_cead83e5a8e44c2c9fbee8fbaac846a1", "tabbable": null, "tooltip": null, - "value": "

\n Receptor: gabaa

" + "value": 0.0005 } }, - "05ccfdd8d4344a86bf780ddd03029a3a": { + "08aeca6b5c604c509516b25ded660fbc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "TabModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "TabModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "TabView", + "box_style": "", + "children": [ + "IPY_MODEL_6fb619fb9a4d47a3b21aba02cb4743b0" + ], + "layout": "IPY_MODEL_83d8b7443eae4aea974d11e047e0f998", + "selected_index": 0, + "tabbable": null, + "titles": [ + "Figure 1" + ], + "tooltip": null } }, - "071ca42e7df2415a9069cd061af1ea4f": { + "08b5df934f1c49e98e1d32bd6b5bf397": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "TabModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "TabModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "TabView", + "box_style": "", + "children": [ + "IPY_MODEL_fbeaeca6673045b9a9897f1e8aef9670", + "IPY_MODEL_c20a67f4a9fa4de9b62d60f319e84846" + ], + "layout": "IPY_MODEL_9d228877a7104a9ca69ce686559ac2ff", + "selected_index": 1, + "tabbable": null, + "titles": [ + "ax0", + "ax1" + ], + "tooltip": null + } + }, + "08d05d9363a74b289e21d3820cb6ad00": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "IntTextModel", + "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_911d636b49b44bb7a2ccb5f94d3ada8e", + "step": 1, + "style": "IPY_MODEL_19100fa84afd43aa871facaffd4a9ced", + "tabbable": null, + "tooltip": null, + "value": 2 + } + }, + "090fd79e6c5d4bdc8c3d362e0ec8d5d6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "TabModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "TabModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "TabView", + "box_style": "", + "children": [ + "IPY_MODEL_10fb6aa5835b434eb5aee322d4f412e0" + ], + "layout": "IPY_MODEL_bf4997e39adb44ec929d88048098d643", + "selected_index": 0, + "tabbable": null, + "titles": [ + "Figure 1" + ], + "tooltip": null } }, - "07c26372f39244e28b880e77d0d5dfe8": { + "094c36af7e704f26a3cf8c08ebb57c0a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -968,60 +1046,87 @@ "width": null } }, - "07f868fdcaa843a0a40f21e8711904b9": { - "model_module": "@jupyter-widgets/controls", + "098e5aa4e05a40e7b928e0f186b771c8": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "083d6a59dad04e0789ee37be7971449e": { + "09db4a787e054962951df64805d52636": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HBoxModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HBoxModel", + "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HBoxView", + "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_24eb5f04a65141cfb544b61246c699f5", - "IPY_MODEL_9965561e43994cc6ae256abfa93b529f" + "IPY_MODEL_e4d0cb7c87254a0d8f0fae539b092b81", + "IPY_MODEL_610f77448b6d41eea79f060586d421fa", + "IPY_MODEL_51ac862e65a54f15ab9bb849fcfe55ec", + "IPY_MODEL_2ee25115b074403682d3c3dbb0497532", + "IPY_MODEL_25f050b7dc444741b763cda4dcc346cb", + "IPY_MODEL_86e69787335444fa969634891592b73a" ], - "layout": "IPY_MODEL_d07a05a75fc542b28bb03339c7689fc4", + "layout": "IPY_MODEL_75d86462fcff46ab9973957fc16a2048", "tabbable": null, "tooltip": null } }, - "08a65e82d7a449ccb95a258e5a43f5af": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" - } - }, - "0986aedee6454a928a17e908281c9b0d": { + "09fca856ad114fbd87ad4c63c33edc3b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1074,32 +1179,95 @@ "width": null } }, - "09e492a787ad4ea4b61867ca4f1bbfb0": { + "0b757719f67f4427b361887ed233f8d8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_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_f0c429668f514da2ae924462da05a783", + "placeholder": "​", + "style": "IPY_MODEL_9721554ec75f40ba8816966d53239aa8", + "tabbable": null, + "tooltip": null, + "value": "default: input histogram" + } + }, + "0be55bd528fb4d36bb1c2e3a9e178330": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6dc086d006d24c9f9ac7516acb9a9ad7", + "placeholder": "​", + "style": "IPY_MODEL_178ca1773b784c06840cdf445b652837", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: ampa

" + } + }, + "0c1814501b3c46018cee9f034bb03c1f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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": "Simulation Dipole Scaling:", + "description": "Mean time:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_3efc2592b9ee4f5187ca865c0208fc3a", - "step": null, - "style": "IPY_MODEL_1f4831d051a945bd90d10250282a0fbe", + "layout": "IPY_MODEL_cd7f44e3dbb64398b7be2dc07926f907", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_17a2dcf027f34216a2491d8a23530d5a", "tabbable": null, "tooltip": null, - "value": 3000.0 + "value": 137.12 + } + }, + "0c85a099811044439becc6a6c9033f3a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" } }, - "09f9f6d4d9fc464c99898de4099e5145": { + "0cf39b9ba5bb48908194e3da1bbb7fe6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1152,7 +1320,34 @@ "width": null } }, - "0a712c8c64c740879002c4de4ecec8ef": { + "0d6e80660c27477f96a17292fc098bfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_399b59fd050b4e188ce32d069c6b0bae", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_44dcc0e4e4064cee8410352eb6d0a43c", + "tabbable": null, + "tooltip": null, + "value": 0.0 + } + }, + "0d74539a6f504169a70c24eb40f95506": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1205,30 +1400,22 @@ "width": null } }, - "0b0dd3c2fcaf4f219b742f1fa17e161a": { + "0f514930a9624b14ae5072020361bdef": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_3cd5d57efa2d4dab871cca617162078b", - "placeholder": "​", - "style": "IPY_MODEL_c08ed5fb74a74b3d864058f5d07bea96", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: ampa

" + "_view_name": "StyleView", + "description_width": "" } }, - "0b2acb81f2ab47cdaf0d86ca423c7203": { + "0f5b74d10b9740648cd4f948a2432508": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1281,88 +1468,16 @@ "width": null } }, - "0b7f439827f8487d97339592a477d824": { - "model_module": "@jupyter-widgets/controls", + "0f85dfd9c20744719dff79569d78795b": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "LayoutModel", "_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_42ac2cb25e324ab98ea1bc50d23e0ab0", - "placeholder": "​", - "style": "IPY_MODEL_9f62093887624e1fa5df281b86021365", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: gabaa

" - } - }, - "0bcc9057ed9947d0a212d64688127459": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "IntTextModel", - "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_043e77df270c411eb56ead9a2364f258", - "step": 1, - "style": "IPY_MODEL_ae95e2976c2444d1a8a6e3554ac1ffe2", - "tabbable": null, - "tooltip": null, - "value": 2 - } - }, - "0bd8ac254a9b46a3b5e1961ca434fb93": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_a5d5405ea2e74aa0a67e6311663cfacf", - "IPY_MODEL_6768ef48dba14a47bbb8a8bc92967750", - "IPY_MODEL_2cfe158751924c70bfea8e5356b09b29" - ], - "layout": "IPY_MODEL_b67e5621677e4cb7abaece72e4a7c801", - "tabbable": null, - "tooltip": null - } - }, - "0c365c19004c4e1993b7f11366aa243d": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, @@ -1386,7 +1501,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "30px", "justify_content": null, "justify_items": null, "left": null, @@ -1403,28 +1518,10 @@ "right": null, "top": null, "visibility": null, - "width": null - } - }, - "0cadccd568954bbd88439ac0bac783de": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "width": "auto" } }, - "0cbba81eaa3a4570a07903fa97dffc3a": { + "0f9078d0dcfd4ae9b74552006767471b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1445,7 +1542,7 @@ "border_top": null, "bottom": null, "display": null, - "flex": "1", + "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, @@ -1477,7 +1574,48 @@ "width": null } }, - "0cc719c7a1e743d497de5bd3c60e9d4c": { + "0fa84863cc6d48a7b97e52a69a458459": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonModel", + "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_dacf3bc982ac4d64a75bf63626ab725c", + "style": "IPY_MODEL_cc9018fb3090425290b1fbf9e80e3684", + "tabbable": null, + "tooltip": null + } + }, + "101b2f75d51d49f9937154e02a80b37f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "104af57bd0a547b295eb18cea8702792": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -1492,110 +1630,88 @@ "description_width": "" } }, - "0d4c4288f52849f796e437927e5f736a": { + "107c5722e2d64610a80b38a8072223b5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "AccordionModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "AccordionModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", + "_view_name": "AccordionView", "box_style": "", "children": [ - "IPY_MODEL_1ac83dfe6b814cbb85bf01f724cf8a3a", - "IPY_MODEL_f96242596bdd4f6aadd1f67a043c0783" + "IPY_MODEL_f32b779c125141b8a22c0770edd191c4", + "IPY_MODEL_13b3c9df1e3b4b36a18725a545c5c7bc", + "IPY_MODEL_e3209a4f228648a68553e2bc767045db" ], - "layout": "IPY_MODEL_203e1c65e82940318ade96051600e6d5", + "layout": "IPY_MODEL_5eecb4bc93f4458d93167eb7b6cd3632", + "selected_index": null, "tabbable": null, + "titles": [ + "evdist1 (distal)", + "evprox1 (proximal)", + "evprox2 (proximal)" + ], "tooltip": null } }, - "0d505fead373445b87c0dae94f8dc6d4": { - "model_module": "@jupyter-widgets/base", + "10e1ad842b6741409a753d5052871eaa": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "ButtonStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_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 } }, - "0db629b3851543129a9534ee95f081d6": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "10fb6aa5835b434eb5aee322d4f412e0": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", "state": { "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", "_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_3177e559edc54f6ab1d0e07ec60dc9f3", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_d63c575236614e879796c02624f7e999", + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_5b398de596364341b0e4224ee0f60971", + "msg_id": "", + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnoAAAJ2CAYAAADIaC93AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA7EAAAOxAGVKw4bAACjpElEQVR4nOzdd1xV9f8H8NcFLuOy91CQpeJW3HvgtszMxHLlSNPcDS1To9QstVxtc2Vfc2RqmgMXDhRQcIuoQKKyRBCBC1zuPb8/0PuLEOXqhXPH6/l4nEdx5vtzUXh5zvl8PhJBEAQQERERkcExEbsAIiIiIqoaDHpEREREBopBj4iIiMhAMegRERERGSgGPSIiIiIDxaBHREREZKAY9IiIiIgMFIMeERERkYFi0CMiIiIyUAx6RERERAbKoILe9u3bERISAnt7e0gkEpSUlJTZLpFIyi3nzp0rs8+iRYvg5eUFmUyG/v37Iy0trRpbQERERKQ9BhX0CgoK0K1bN8yaNavCfbZs2YLU1FT10rBhQ/W2tWvXYv78+Vi1ahUiIyORm5uL0NDQ6iidiIiISOskgiAIYhehbUePHkXXrl2hUChgZmamXi+RSBAeHo7u3bs/8bjg4GD06dMHCxYsAAAkJiYiICAAcXFxaNq06ROPUSgUZe4cqlQq5OXlwdbWFhKJRHuNIiIiInpEEAQUFhbCwcEBJiZPuW8nGKAjR44IAASFQlFmPQChRo0agqurq9ChQwdh9+7d6m2FhYWCiYmJcPDgwTLH+Pr6Cj/88EOF15o3b54AgAsXLly4cOHCpdqXrKysp2ai/7/dZQQWLFiAkJAQmJmZ4c8//8TLL7+MAwcOoHv37sjKyoJKpYKbm1uZY1xdXZGRkVHhOWfPno2ZM2eqvy4oKICLiwuysrJgZWVVZW0hIiIi4yWXy+Hs7AxLS8un7mdUQe/jjz9W/3/z5s1x69YtLFu2DN27d4fwnE+wpVIppFJpufVWVlYMekRERFSlnvWamEF1xtBU8+bNkZSUBABwcXGBiYlJubt3mZmZ5e7yEREREekDow5658+fh6+vLwDAwsICTZo0wZEjR9Tbk5KSkJycjNatW4tUIREREdHzM6hHt/fv38etW7dw48YNAKVBztTUFIGBgTh69CgyMzPRunVrmJmZYfv27Vi/fj12796tPn7SpEmYOnUqmjdvDn9/f0yfPh0dO3assMctERERkS4zqKC3a9cujBo1Sv11ixYtAABHjhyBmZkZli1bhps3b8LExAT16tXDH3/8gT59+qj3Hz16NNLT0zFx4kTk5OSge/fu+Pnnn6u9HcZIElb5oWiEec/3PiURET2bSqWCQqEQuwwCYG5u/sJDtRnkOHpiksvlkMlkKCgoYGcMDTDoERGJSxAEZGRk4P79+2KXQo+YmprCz8/viZ0+K5s3DOqOHhERET2fxyHP3d0dMpmMg/6LTKVS4e7du0hNTYW3t/dzfz8Y9IiIiIycSqVShzwnJyexy6FH3NzccPv2bahUKpiamj7XOYy61y0RERFB/U6eTCYTuRL6t8ePbP891aqmGPSIiIgIwLMH36XqpY3vB4MeERERkYFi0CMiIiICULNmTaxbtw4AkJycDIlEoh6bV18x6BEREdGTSSTVt+gYb29vpKamws/P75n7fvLJJ+jSpUuZdYWFhRgxYgSCgoJgYmKCTz75pIoqfToGPSIiIqL/MDU1hYeHx3P3dlUqlbCxscHMmTPRpEkTLVdXeQx6REREpJeUSiXmzJmDmjVrwtbWFl26dMGFCxcQFxcHU1NTpKamltn/pZdewuTJkwEAxcXFGDduHGxsbODt7Y1ff/21zL7/fXSbmJiI3r17w87ODnZ2dmjdujVu3LiBdevWYcGCBYiIiIBEIoFEIkFycjKsra3x3XffYdSoUbC3t6+eD+QJOI4eERER6aWwsDD8/fff2LRpEzw9PbF27Vr06NED169fR2BgILZt26YOdjk5OQgPD8ehQ4cAAF988QX++usvbN++He7u7pg6dSqysrIqvNakSZPg7u6OmJgYSCQSxMTEwMTEBKGhoTh//jyioqKwfft2AICrq2vVN76SGPSIiIhI7xQWFmLJkiWIjo5Gw4YNAQALFizA1q1bsWvXLoSGhmLz5s3qoLdjxw64ubmhffv2AIDvvvsOYWFh6NmzJwDghx9+QL169Sq8XkpKCt544w3UrVsXAFCnTh31Nmtra5ibm8PDw6NK2voi+OiWiIiI9M7Nmzchl8vRpk0b2NjYqJebN28iMTERQ4YMQWRkJFJSUgAAW7ZsweDBgyGRSPDgwQNkZGSgVatW6vMFBQXB1ta2wutNnDgRY8eORa9evbBkyRL1eXUdgx4RERHpnby8PADA0aNHce7cOfVy7do1TJo0CfXr10eDBg2wdetWZGdn4+DBgxgyZAgAQBAEAJoNSDxhwgRcvXoVffv2xb59+xAUFITjx49rv2Faxke3REREpHfq1asHc3NzpKamokWLFk/cZ8iQIdi8eTPs7e3h7e2Nli1bAgAcHBzg5uaG6OhoNGvWDABw7do1PHz48KnX9Pf3x9SpUzF16lT07dsXmzZtQseOHSGVSqFUKrXbQC1h0CMiIiK9Y2dnh0mTJmHChAkoLi5GcHAw0tLS8Ndff2Ho0KFo0KABQkNDMWfOHBQUFCA0NLTM8e+88w7CwsIQEBAAV1dXTJ8+HZaWlhVeb/r06ejXrx8CAwORkpKCCxcuoFevXgCAWrVq4dq1a4iPj4eLiwucnJxgYmKCK1euoLi4GHl5eUhPT8e5c+dgY2ODwMDAKv1s/o1Bj4iIiJ7s0SNOXbV48WI4Ozvj/fffx507d+Du7o4uXbrA2dkZABAYGIjg4GCcPXsWGzduLHPsxx9/jNu3b+OVV16Bg4MDFixYgISEhAqvpVAoMG7cONy9excuLi548803MWnSJADAoEGDsG3bNrRs2RJ5eXlISkqCr68v+vbti3/++QcAcPbsWaxevRqdO3fG0aNHq+YDeQKJIOj4d1HPyOVyyGQyFBQUwMrKSuxy9IYkrPLvSQjz+EeWiEibioqKkJiYCH9/f1hYWIhdDj3ytO9LZfMGO2MQERERGSgGPSIiIiIDxaBHREREZKAY9IiIiIgMFIMeERERkYFi0CMiIiIyUAx6RERERAaKQY+IiIjIQDHoERERERkoBj0iIiIiA8W5bomIiOiJNJme8kUZy/SWkydPxrFjx3D58mUMGTKk3By82sY7ekRERETPoFKpUFJS8sLnMTExwcSJE9G9e3ctVFWJ61XLVYiIiIi0TKlUYs6cOahZsyZsbW3RpUsXXLhwAXFxcTA1NUVqamqZ/V966SVMnjwZAPDWW29h6NCheO+992Bvbw93d3esWLFCvW9ycjIkEgm2bduGVq1awdLSEufOnUN+fj7Gjh0LR0dH2NjY4LXXXkN6ejoA4O+//4ZMJsO1a9fU53n11VfRu3dv9dfLly/H+PHj4eHhUZUfjRqDHhEREemlsLAw/P3339i0aRPi4uLQvn179OjRAwEBAQgMDMS2bdvU++bk5CA8PByhoaHqdbt27YJcLkdUVBQ+//xzvP/++zh69GiZa8yZMwfz58/HlStXULt2bUyfPh0RERHYuXMnjh07hjt37mD48OEAgL59+2Lo0KEYMWIElEolNmzYgCNHjmD16tXV8nk8iUEFve3btyMkJAT29vaQSCTlbrEmJCSga9eusLKygq+vL9asWVPuHIsWLYKXlxdkMhn69++PtLS06iqfiIiIKqmwsBBLlizB+vXr0bFjRwQGBmLBggWwt7fHrl27EBoais2bN6v337FjB9zc3NC+fXv1Ont7e6xYsQJBQUEYN24cBg8ejFWrVpW5zqxZs9CzZ08EBgbCxMQEa9euxfLly9GpUycEBwdj3bp1CA8Px+XLlwEAX3/9NTIyMjBt2jRMnToVy5cvR82aNavnQ3kCgwp6BQUF6NatG2bNmlVum0KhQL9+/eDi4oKYmBjMmTMH48ePx6FDh9T7rF27FvPnz8eqVasQGRmJ3NzcMsmfiIiIdMPNmzchl8vRpk0b2NjYqJebN28iMTERQ4YMQWRkJFJSUgAAW7ZsweDBgyGR/H8Hk+DgYJiZ/X+/1FatWpV57AoAzZo1U/9/YmIiSkpK0KZNG/W6oKAgODg4qI+ztbXFzz//jFWrVqFdu3YYOXJklbS/sgyq1+2wYcMAoNxtVwDYu3cvUlJSEBsbC1tbWzRs2BARERFYuXIlQkJCAAArV67E1KlTMXDgQADAmjVrEBAQgHPnzqFp06bV1QwiIiJ6hry8PAClv/MdHBzKbHNycoKTkxMaNGiArVu3YtSoUTh48CDCwsLK7Pfv0FcRmUym/n9BqFzP4JMnT8LU1BQpKSkoLi6Gubl5pY6rCgZ1R+9poqOj0bJlS9ja2qrXhYSEICoqCgBQVFSE8+fPo1u3burt/v7+8PX1Ve/zJAqFAnK5vMxCREREVatevXowNzdHamoqAgMDyyxOTk4AgCFDhmDz5s3Yvn07vL290bJlyzLniI2NhVKpVH8dExODunXrVnjNgIAAmJmZ4fTp0+p18fHxyMnJQVBQEAAgLi4OX3zxBf766y/I5fJy4bK66UTQ27VrV5m7cF9//TUaNmyIQYMGISMjQyvXyMjIgJubW5l1rq6uyMzMBABkZWVBpVI9cZ+n1bBgwQLIZDL14uzsrJV6iYiIqGJ2dnaYNGkSJkyYgD/++ANJSUk4deoUPv74Y/X7cqGhoYiJicGyZcue+CpWTk4Opk6dimvXrmH16tXYvHkz3n333QqvaWtri9GjR2PatGk4fvw4YmNj8dZbb6FHjx6oX78+iouLMXLkSEyYMAF9+vTB+vXrsWTJEpw5c0Z9jhs3buDcuXO4f/8+srOzce7cOVy5ckX7H9AjOvHodtasWfjmm28AlKbrTz75BGFhYThw4ACmTp2KTZs2vfA1nnW7tbK3Y/9r9uzZmDlzpvpruVzOsEdERAZB1wcxXrx4MZydnfH+++/jzp07cHd3R5cuXdS/hwMDAxEcHIyzZ88+cWDi/v37w8zMDK1atYKFhQW++uordO3a9anXXLp0KaZOnYqXX34ZJSUl6NWrF7777jsAwKeffoqioiIsXLgQANCuXTtMmTIFI0eORGxsLCwsLDB27FhERESoz/f333+jVq1aSE5O1tKnUpZOBL3k5GT1Lc8//vgDAwcOxAcffIDevXuXeZT6Itzd3REfH19mXWZmJlxdXQEALi4uMDExKXf3LjMzs9xdvn+TSqWQSqVaqZGIiIgqz8TEBB9//DE+/vjjCvf59920/5JIJFi2bBmWLVtWbpuvr+8TbwLZ2Njgl19+wS+//FJu28KFC9Uh77HFixdj8eLF6q+f1I+gKunEo1tbW1tkZ2cDAA4cOIA+ffoAAKysrLT2zlurVq1w5swZ9cubAHD48GG0bt0aAGBhYYEmTZrgyJEj6u1JSUlITk5W70NERESkT3Tijl7//v0xduxYNGvWDNevX0e/fv0AAOfOnUNAQEClz3P//n3cunULN27cAACcP38epqamCAwMRO/evVGjRg2MHj0a8+bNQ1RUFDZt2oS9e/eqj580aRKmTp2K5s2bw9/fH9OnT0fHjh3Z45aIiIj0kk4EvVWrVmHFihVISUlBeHi4upv07du3MWnSpEqfZ9euXRg1apT66xYtWgAAjhw5gi5dumDPnj0YP348mjdvDnd3d3z//ffqoVUAYPTo0UhPT8fEiRORk5OD7t274+eff9ZOI4mIiEhnrFu3TuwSqoVEeN5eCFp07NgxtGvXrsyghQBQUlKCyMhIdOrUSaTKNCeXyyGTyVBQUAArKyuxy9EbkrBnj2X0mK6/HExEpG+KioqQmJgIf39/WFhYiF0OPfK070tl84ZOvKPXtWtX3L9/v9z6Bw8ePLP3CxHpCYmk8gsREWmFTgQ9QRCeODp1cnIy7OzsRKiIiIiISP+J+o6en58fJBIJJBIJWrRoAVNTU/U2pVKJ9PR0DBkyRMQKiYiIiPSXqEHvk08+gSAIGDduHKZNm1bm7p1UKkWtWrX06v08IiIiIl0iatAbM2YMAKB27dpo164dBx4mIiIi0iKdGF6lc+fOKCkpwZUrV5CRkQGVSlVmu7ZmxyAiIqLKq86+UeKPAVL1kpOTERYWhsOHDyMjIwO+vr6YMmUKJkyYUGXX1Imgd+TIEQwfPhx3794tt00ikUCpVIpQFREREVEplUoFlUpVbig4TcTHx8PU1BRr1qyBn58fTp06hbfffhvW1tYYMWKEFqv9fzrR6/bdd99Fv379cPfuXfUH+XhhyCMiIqInUSqVmDNnDmrWrAlbW1t06dIFFy5cQFxcHExNTZGamlpm/5deegmTJ08GALz11lsYOnQo3nvvPdjb28Pd3R0rVqxQ75ucnAyJRIJt27ahVatWsLS0xLlz55Cfn4+xY8fC0dERNjY2eO2115Ceng4A+PvvvyGTyXDt2jX1eV599VX07t0bANC7d2+sXr0aISEh8Pf3x9ChQzF8+HDs2LGjyj4jnQh6t27dwocffggPDw+xSyEiIiI9ERYWhr///hubNm1CXFwc2rdvjx49eiAgIACBgYHYtm2bet+cnByEh4cjNDRUvW7Xrl2Qy+WIiorC559/jvfffx9Hjx4tc405c+Zg/vz5uHLlCmrXro3p06cjIiICO3fuxLFjx3Dnzh0MHz4cANC3b18MHToUI0aMgFKpxIYNG3DkyBGsXr26wjbcu3cPTk5O2v1g/kUnHt327dsXp0+f1mheWyIiIjJehYWFWLJkCaKjo9GwYUMAwIIFC7B161bs2rULoaGh2Lx5s/oO3o4dO+Dm5ob27durz2Fvb48VK1bAzMwMQUFBOHbsGFatWoUuXbqo95k1axZ69uwJAHj48CHWrl2LnTt3qkcFWbduHerVq4fLly+jQYMG+Prrr9G4cWNMmzYNGzduxPLly1GzZs0ntiEqKgq7d+/GkSNHquIjAqAjQa9NmzZ4//33cfr0aTRs2LBc79vRo0eLVBkRERHpops3b0Iul6NNmzZl1svlciQmJmLIkCGYP38+UlJS4O3tjS1btmDw4MFlJmgIDg4u885dq1atys1x36xZM/X/JyYmoqSkpMw1g4KC4ODggGvXrqFBgwawtbXFzz//jB49eqBv374YOXLkE+tPSEjAK6+8grCwMLRr1+6FPoun0Ymgt3LlSlhaWmL37t3YvXt3mW0SiYRBj4iIiMrIy8sDABw9ehQODg5ltjk5OcHJyQkNGjTA1q1bMWrUKBw8eBBhYWFl9nvSrFz/JZPJ1P8vVLJr8MmTJ2FqaoqUlBQUFxfD3Ny8zPbExESEhIRg9OjRmDVrVqXO+bx0IuglJSWJXQLpEUlY5fv7C/OMoL8+EZERqlevHszNzZGamooWLVo8cZ8hQ4Zg8+bNsLe3h7e3N1q2bFlme2xsLJRKpXpmrpiYGNStW7fCawYEBMDMzAynT59G3759AZT2pM3JyUFQUBAAIC4uDl988QX++usvTJkyBWFhYViwYIH6HLdu3UK3bt0wYMAALFy48IU+g8rQiaBHREREpAk7OztMmjQJEyZMQHFxMYKDg5GWloa//voLQ4cORYMGDRAaGoo5c+agoKCgTCeMx3JycjB16lRMnjwZx48fx+bNm7F///4Kr2lra4vRo0dj2rRpsLW1hbW1NSZOnIgePXqgfv36KC4uxsiRIzFhwgT06dMH69evR9euXfHqq6+iRYsWuHPnDrp27YomTZrg448/RlpaGgDA3Ny8yjpk6ETQe9bYMRs2bKimSoiIiEhfLF68GM7Oznj//fdx584duLu7o0uXLnB2dgYABAYGIjg4GGfPnsXGjRvLHd+/f3+YmZmhVatWsLCwwFdffYWuXbs+9ZpLly7F1KlT8fLLL6OkpAS9evXCd999BwD49NNPUVRUpL5T165dO0yZMgUjR45EbGwswsPDkZiYiMTEROzatUt9zs6dO5fr7astEqGyD5yr0KhRo8p8rVAocPHiRSQnJ2PgwIFYu3atSJVpTi6XQyaToaCgAFZWVmKXozc0eRyrCT661SGaDLEv/o8lIqNSVFSExMRE+Pv7w8LCQuxyqsVbb72FkpKSJwZAXfG070tl84ZO3NGrKMjNnj270i8+EhEREVFZOjFgckVGjRqFH374QewyiIiIiPSSTtzRq8jBgwfLdGsmIiIi0oZ169aJXUK10Img17FjxzJj2QiCgLS0NCQmJuKbb74RsTIiIiIi/aUTQa979+5lvjYxMYGrqys6duyIBg0aiFQVERGRceF78bpFG98PnQh68+bNE7sEIiIio/V46tGCggJYWlqKXA09plAoAKDMNG2a0omgB5ROZfLrr7/i2rVrAEpHvB46dChsbGxEroyIiMiwmZiYwMnJCenp6QBKp/2qzPRgVHVUKhUyMjJgbW0NE5Pn7zurE0EvJiYGffv2hZWVlXoak+3bt2POnDnYu3cvmjdvLnKFREREhs3NzQ0A1GGPxGdqagofH58XCt06MWBy27Zt0bhxY3z33Xfq+eaUSiUmTJiAS5cuITIyUuQKK48DJj8fDphsBDhgMpFeUKlU6keGJB6JRAKpVFphyNOrAZPj4uKwbt06dcgDSlPse++9h6ZNm4pXGBERkZExMTExmtkxjIFODJjs5uaGuLi4cutjY2Ph6uoqQkVERERE+k8n7uhNnjwZY8eOxfnz59G6dWsAwOnTp/Htt9/i008/Fbc4IiIiIj2lE0Hvgw8+QI0aNbBy5Ur8+OOPAIC6deti9erVCA0NFbk6IqoQe+UREek0UR/d3rlzBx988AFyc3Px5ptv4tSpU7h//z7u37+P/fv348yZM0hNTRWzRCIiIiK9JWrQ++qrryCXy2FnZ1dum52dHYqKivDll1+KUBkRERGR/hM16O3fvx/Dhw+vcPuwYcOwd+9erV7z008/hUQiKbMMGDBAvT0hIQFdu3aFlZUVfH19sWbNGq1en4iIiKi6iPqO3j///IMaNWpUuN3d3R0pKSlav26rVq2wc+dO9dePp3tRKBTo168fmjZtipiYGERFRWH8+PGoVasWQkJCtF4HERERUVUSNeg5OTnh1q1bqFmz5hO3JyQkwNHRUevXlUql8PDwKLd+7969SElJQWxsLGxtbdGwYUNERERg5cqVDHpERESkd0R9dNuzZ8+nvoP35ZdfomfPnlq/7vnz5+Hh4YE6derg3XffRXZ2NgAgOjoaLVu2hK2trXrfkJAQREVFVXguhUIBuVxeZiEiItInEknlF9Ivoga9Tz/9FJGRkWjXrh22bduGCxcu4MKFC9i6dSvat2+Pc+fOYd68eVq9Zps2bbBhwwaEh4dj6dKliIiIwCuvvAJBEJCRkaGe6+8xV1dXZGZmVni+BQsWQCaTqRdnZ2et1ktERET0vER9dFurVi2cOHEC7777brnx8rp27YoTJ07A19dXq9fs3bu3+v8bNWqE+vXrIzAwEGfPnsXzTPs7e/ZszJw5U/21XC5n2CMiIiKdIPqAyXXr1sXBgweRlZWFmzdvAgACAgKqLSwFBATAwcEBSUlJcHd3R3x8fJntmZmZT52GTSqVQiqVVnWZRERERBoTPeg95uzsLMqdsFu3biEnJwe+vr6wsLDA0qVLkZeXBxsbGwDA4cOH1dOyEREREekTnQl61eXDDz9E//79UbNmTSQlJeGDDz5A27Zt0bx5c5SUlKBGjRoYPXo05s2bh6ioKGzatEnrY/kRERERVQejC3r//PMPXn/9dWRlZcHLywu9evXC/PnzYWJiAnNzc+zZswfjx49H8+bN4e7uju+//55DqxBVN0269j3Hu7VERMZCIjxPDwSqkFwuh0wmQ0FBAaysrMQuR29Iwqqmz74wj3+8q5QujLXAH2FET8S/noatsnlD1OFViIiIiKjqMOgRERERGSije0ePqk9VPY4lIiKiyuEdPSIiIiIDxaBHREREZKAY9IiIiIgMFIMeERERkYFi0CMiIiIyUAx6RERERAaKw6sQERFRleBshuJj0CMiItITujCtGekXProlIiIiMlAMekREREQGikGPiIiIyEAx6BEREREZKHbGIKKy+LY3EZHB4B09IiIiIgPFoEdERERkoBj0iIiIiAwUgx4RERGRgWJnDCIiIhIdp0urGryjR0RERGSgeEePiIhIRBzRiKoSgx4R6Tc+7yEyOvxrX3kMekRERFrGu3SkK/iOHhEREZGBYtAjIiIiMlB8dEsGTRJW+ecnwjwjf5GDiIgMDu/oERERERkoBj0iIiIiA8VHt0RERGSwjH0oFt7Rq8CiRYvg5eUFmUyG/v37Iy0tTeySiIiIiDTCoPcEa9euxfz587Fq1SpERkYiNzcXoaGhYpdF9PwkksovRPRE/GtE+oiPbp9g5cqVmDp1KgYOHAgAWLNmDQICAnDu3Dk0bdpU3OJEpkkvViIiIn1iiI95GfT+o6ioCOfPn8fixYvV6/z9/eHr64uoqKhyQU+hUKCkpET9dUFBAQBALpdXS73VTiF2AVVH775nMpnYFegfTX6KP/q7TOKryj/q/DbT8xL7x8nj31nCMxIng95/ZGVlQaVSwc3Nrcx6V1dXZGRklNt/wYIFCAsLK7fe2dm5ymqkqiFbwOBE/8IgbRT4babqUJV/zgoLCyF7ygUY9P7jWcn4v2bPno2ZM2eqv87Pz4erqyvu3bv31A/eEMnlcjg7OyMrKwtWVlZil1PtjLn9xtx2gO035vYbc9sB426/2G0XBAGFhYVwcHB46n4Mev/h4uICExOTcnfvMjMzy93lAwCpVAqpVFpuvUwmM7o/9I9ZWVkZbdsB426/MbcdYPuNuf3G3HbAuNsvZtsrc0OJvW7/w8LCAk2aNMGRI0fU65KSkpCcnIzWrVuLWBkRERGRZnhH7wkmTZqEqVOnonnz5vD398f06dPRsWNHo+9xS0RERPqFQe8JRo8ejfT0dEycOBE5OTno3r07fv7550oda2Zmhnnz5sHMzPg+WmNuO2Dc7TfmtgNsvzG335jbDhh3+/Wl7RJB094HRERERKQX+I4eERERkYFi0CMiIiIyUAx6RERERAaKQY+IiIjIQDHoadmiRYvg5eUFmUyG/v37Iy0tTeyStG7hwoUIDg6GjY0NPD09MWrUKGRmZpbZJyEhAV27doWVlRV8fX2xZs0akaqtWgMGDIBEIsHBgwfV64yh7bGxsQgJCYFMJoOjoyMGDx6s3mbI7c/JycGYMWPg4eEBGxsbtGvXDseOHVNvN6S2b9++HSEhIbC3t4dEIikzpzdQubbq88/Dp7X/3LlzGDx4MLy8vGBtbY1mzZph27Zt5c6hr+1/1vf+sTNnzkAqlaJDhw7ltulr24Fnt7+kpATz5s2Dj48PLCwsUKdOHYSHh5fZR5faz6CnRWvXrsX8+fOxatUqREZGIjc3F6GhoWKXpXUnTpzAjBkzcObMGezcuRNXrlwp006FQoF+/frBxcUFMTExmDNnDsaPH49Dhw6JWLX2rV27Vj2p9GPG0ParV6+iW7du6NChA2JiYhAZGYkhQ4YAMPz2z5gxAzExMdixYwfOnz+PVq1a4aWXXkJ2drbBtb2goADdunXDrFmzym2rTFv1/efh09ofFxeHmjVrYvPmzbh48SJGjRqFIUOG4OjRo+p99Ln9T2v7Y3K5HCNHjkSXLl3KbdPntgPPbv/48ePx559/YvXq1bh27RpWr14NT09P9Xada79AWtOsWTPh448/Vn998+ZNAYAQFxcnXlHVIDIyUgAg5OTkCIIgCDt37hQsLCyE3Nxc9T7Dhw8XXnnlFZEq1L7k5GTB29tbSElJEQAI4eHhgiAYR9sHDhwovPXWW0/cZujtr1+/vvDNN9+ov87NzRUACKdOnTLYth85ckQAICgUCvW6yrTVUH4ePqn9T9KzZ09h+vTp6q8Nof1Pa/vkyZOFGTNmCPPmzRPat29fZpshtF0Qntz+CxcuCGZmZsKNGzcqPE7X2s87elpSVFSE8+fPo1u3bup1/v7+8PX1RVRUlIiVVb179+7B0tIS1tbWAIDo6Gi0bNkStra26n1CQkIM5nNQqVQYOXIkwsLCULNmzTLbDL3tSqUS+/btg5+fH7p06QJ3d3f06NEDFy5cAGD47W/bti127tyJe/fuQalUYs2aNfDy8kLDhg0Nvu3/9qy2GuPPw3v37sHJyQmA4bf/0KFDCA8Px4IFC8ptM/S279mzBwEBAdiyZQu8vb1Rt25dhIWFQalUAtDN9uv2cM56JCsrCyqVCm5ubmXWu7q6IiMjQ6Sqql5RURE+++wzjBw5Uj06eEZGxhM/h/++x6evvvnmG9jY2GDUqFHlthl62zMzM1FQUIDFixdjyZIlaNmyJVatWoWQkBDcuHHD4Nu/cuVKjBgxAq6urjA1NYWLiwv27dsHGxsbg2/7vz2rrcb28/CPP/7A1atX1e/pGXL7Hzx4gLFjx2LTpk2wtLQst92Q2w4AycnJSEpKwoEDB7Bt2zbcvXsX48ePh1Qqxccff6yT7WfQ0xLBCCcYUSqVGDZsGABgyZIl6vWG/FlcvXoVS5cuxZkzZ5643ZDbDpTezQSAQYMGYfz48QCAH3/8Ebt378auXbsMvv3Lly/H9evXER4eDmdnZ2zYsAH9+/dHXFycwbf9357VVmP6LCIjIzFq1CisXr0afn5+AAy7/VOmTEFoaCjatGnzxO2G3Hag9GdgcXEx1q1bh1q1agEAbt26hRUrVuDjjz/WyfYz6GmJi4sLTExMyiX2zMzMcsneEKhUKrz11luIj49HREQEbGxs1Nvc3d0RHx9fZv/MzEy4urpWd5laFxUVhbS0NPj4+JRZ36tXLwwZMgR+fn4G23ag9M+5qakp6tatq14nlUrh7++PlJQUg/7ey+VyzJ07FwcPHkSnTp0AAM2aNcOePXvwv//9z6Db/l/Paqux/DyMiYlB3759sXjxYrz55pvq9Ybc/oiICNy+fVv9j3uVSgVBEGBmZobLly/D19fXYNsOlP7Zt7CwUIc8AKhbty5u374NQDe/93xHT0ssLCzQpEkTHDlyRL0uKSkJycnJaN26tYiVaZ8gCBg7dixOnz6N8PBw9Xspj7Vq1QpnzpxBXl6eet3hw4cN4nMYMGAALly4gHPnzqkXoPSu1pdffmnQbQcAc3NzNGvWDDdu3FCvKykpQXJyMnx8fAy6/QqFAgqFAqampmXWm5iYQKVSGXTb/+tZbTWGn4dxcXHo1asXPvnkE/Xd7ccMuf0HDhwo8/PvnXfeQbNmzXDu3Dn4+fkZdNsBoE2bNigqKlIHOwC4ceMGvL29Aejo916ULiAG6pdffhFsbGyE7du3C+fOnRO6du0qdOzYUeyytG7cuHGCi4uLEBUVJaSmpqqXkpISQRAEoaioSAgICBBef/114dKlS8Ivv/wiSKVS4eDBgyJXXjXwr163xtD23377TbC0tBQ2btwoXLt2TXj33XcFd3d34cGDBwbf/vbt2wutWrUSTp8+LVy/fl2YPXu2YG5uLly5csXg2p6VlSXExcUJP//8swBAOHPmjBAXFyc8fPiwUm3V95+HT2v/xYsXBWdnZ2HixIllfgY+HnlAEPS7/U9r+389qdetPrddEJ7efoVCIdSrV0/o3bu3cOnSJSE8PFzw8vISvvzyS/XxutZ+Bj0tW7hwoeDh4SFYWloKL730kpCamip2SVoH4IlLUlKSep/4+Hihc+fOgoWFheDj4yOsXr1avIKr2L+DniAYR9uXLVsmeHt7CzY2NkKXLl2EixcvqrcZcvtv374tDBkyRHBzcxOsra2FFi1aCHv27FFvN6S2r1279ol/z48cOSIIQuXaqs8/D5/W/nnz5j1x28iRI8ucQ1/b/6zv/b89KegJgv62XRCe3f7ExEShV69egpWVlVCrVi0hLCxMfaPjMV1qv0QQdPDNQSIiIiJ6YXxHj4iIiMhAMegRERERGSgGPSIiIiIDxaBHREREZKAY9IiIiIgMFIMeERERkYFi0CMiIiIyUAx6RERERAaKQY+IiIjIQDHoERERERkoBj0iIiIiA8WgR0RERGSgGPSIiIiIDBSDHhEREZGBYtAjIiIiMlAMekREREQGikGPiLRq7NixkEgkmDFjhtiliGbdunVYs2ZNlZx76dKlaNy4MQRBUK+TSCT45JNPKjzmzJkzGDduHIKCgiCTyeDj44OhQ4ciKSmpSmqsyNGjRyGRSHDw4MFn7vPfxcHBocx+f/75Jzw8PJCXl1fFVRPpNwY9ItIauVyOrVu3AgB+++03lJSUiFyROKoq6OXk5GDhwoWYO3cuJBJJpY/7/fffcfnyZUyZMgV79+7FokWLEBsbixYtWiAlJUXrdWrDihUrcOrUKfXy33A4YMAAeHh4YPHixSJVSKQfGPSISGv+/PNP5Obmom/fvsjIyMC+fftEqUOpVBpkyPzll18glUrx6quvanTczJkzcfLkSUycOBGdO3fGm2++iX379iE7Oxs///yzxnWsW7dOo6D5POrVq4c2bdqolxYtWpTZLpFIMG7cOKxatQqFhYVVWguRPmPQIyKtWb9+PRwdHbFu3TpYWVlhw4YNT9xv06ZNCAoKgqWlJRo1aoRdu3ahS5cu6NKlS5n9YmNj0bFjR1haWsLb2xsLFy7EvHnzyoUMiUSC2bNnY9GiRfDz84O5uTkuXrwIAIiIiEBISAhsbW1hbW2NXr164dKlS2WOVyqV+OSTT+Dp6QmZTIZu3bohPj4eEokEn376qXq/GzduYPjw4fDz84OVlRX8/f0xYcIEZGdnq/fp0qULIiIicPLkSfVjx3+3KykpCUOHDoWrqyssLCzQtGlT/Pnnn5X6fFevXo3Q0FCYmppWav/HXF1dy62rVasWXF1dcefOHY3OpUsGDx6MnJwcbN++XexSiHQWgx4RacXdu3dx8OBBhIaGwtXVFQMGDMCuXbvKhCAACA8Px9ChQxEUFIQ//vgD77//PqZNm4aEhIQy+927dw8hISG4f/8+NmzYgJUrV2L//v1Yt27dE6+/bt067NmzB0uWLMGePXvg5eWFPXv2ICQkBDY2Nti4cSP+97//4eHDh+jYsWOZR5bz5s3DwoULMWLECOzcuRO9evVC//79n9jGmjVrYtmyZdi/fz/mzp2LQ4cOoW/fvup9vvvuOzRr1gyNGzdWP3b87rvvAAApKSlo3bo1zp8/j2+++Qa7du1CcHAwXnvtNezateupn++tW7cQHx+Pjh07PnW/yrp69SoyMjJQr149rZxP24YOHQpTU1M4OzvjzTffxK1bt8rt4+Lignr16ol255hILwhERFqwaNEiAYAQGRkpCIIg7Nu3TwAgfP/992X2a9u2rdCgQQNBpVKp1509e1YAIHTu3Fm97qOPPhKkUqmQkpKiXldQUCC4ubkJ//3RBUDw9PQUCgoKyqwPCAgQunXrVmbdgwcPBGdnZ2Hq1KmCIAjC/fv3BWtra2HChAll9lu6dKkAQJg3b16FbVYoFMLx48cFAEJsbKx6fefOnYX27duX23/06NGCi4uLcO/evTLru3fvLjRp0qTC6wiCIPz+++8CACEhIaHcNgDC7Nmzn3r8f+vu1KmT4OrqKty/f/+Z+5eUlAgKhUK9/PLLLwKAMusUCkWZ7+mTHDlyRAAghIeHV7hPbGys8N577wm7du0Sjh49KnzzzTeCq6ur4OXlJaSnp5fbf9iwYULt2rWf3WgiI8U7ekSkFRs2bEDt2rXRtm1bAED37t3h5eVV5vGtUqnEmTNn8Nprr5V5/BocHAw/P78y5zt9+jTatm2LmjVrqtdZWVmhX79+T7x+7969YWVlpf76+vXruHnzJoYOHYqSkhL1IpPJ0LZtWxw7dgwAcPHiReTn5+P1118vc75BgwaVu0ZxcTEWLlyIoKAgWFlZQSqVqu+wXbt27Zmf0b59+9C3b1/Y29uXqalXr144f/48cnNzKzz27t27AJ78GFZTkyZNQmRkJDZu3AhHR8dn7h8SEgKpVKpexowZAwBl1kmlUkRERLxwbc2aNcOSJUvw8ssvo3Pnzpg2bRr27duH9PR0rFixotz+rq6u6s+GiMozE7sAItJ/MTExuHLlCmbOnImcnBz1+oEDB2LVqlVISEhAnTp1cO/ePSgUCri5uZU7h7u7e5mvU1NT0bBhw2fu95inp2eZrzMyMgAAY8aMUQeTf/Px8VFfB0C5mp50nY8++ggrV67E3Llz0a5dO9ja2uL27dsYOHBgpToEZGRkYMOGDRW+u5iVlQU7O7snbnt8fgsLi2de52k++ugj/PTTT1i/fj169uxZqWN+/PFHPHz4UP317t27ERYWhpiYmDL71a1b94Vqq0hwcDDq1KlT7npAafhnZwyiijHoEdELW79+PQDgyy+/xJdffllu+4YNGzB//ny4uLhAKpWqQ9i/paenq8MXUBrcKtrvSf7bQcPZ2RkA8MUXX6B79+7l9jc3N1dfBygNYQ0aNHjqdX7//XeMGDGizJh1mozj5uzsjI4dO2LmzJlP3O7l5fXUYwEgOzu7zJ1LTSxYsACLFi3CihUrMHz48Eof998A97gzy397wlYlQRCe2NP3/v376s+GiMpj0COiF1JcXIzff/8drVu3xqJFi8ptnz59On799Vd8/vnnMDU1RYsWLfDHH3/g008/Vf/iPnv2LJKSksoEvTZt2mDJkiW4ffu2+vGtXC7Hnj17KlVX3bp14evri8uXL2PWrFkV7teoUSNYW1tj69at6Nq1q3r94/EA/62goABSqbTMurVr15bbz8LCoswdsMd69+6NU6dOoUGDBhqHtaCgIABAYmLiUwNhRVasWIFPPvkECxYswOTJkzU+XkxnzpxBQkICBg8eXG5bUlJSld1JJDIEDHpE9EJ2796NrKwsLF26tNzwKAAwfvx4TJgwAUePHkXXrl0RFhaGnj174tVXX8W4ceNw7949fPrpp/Dw8ICJyf+/Njxjxgx8//336NWrF+bNmwcLCwt8/fXXsLCwqNQYbhKJBN9++y1eeeUVFBcXY/DgwXBxcUF6ejoiIyPh4+ODGTNmwNHREdOmTcPChQtha2uL7t27IzY2Fr/88gsAlKmpd+/eWL9+PRo1aoTAwEBs374dkZGR5a5dv359fPfdd9i8eTMCAgJga2uLunXr4rPPPkOrVq3QqVMnTJo0Cb6+vsjOzsalS5eQmJj41EGWW7VqBQsLC0RHR6NDhw7ltsfHx2Pbtm3l1oeEhGD//v2YNm0aevfujW7duuH06dPq7XZ2dqhfv/4zP09tOn78eJlH/ABgZmaGAQMGYOjQofDz80NwcDAcHBwQFxeHL774AjVq1CgXUAVBQExMDCZMmFCN1RPpGbF7gxCRfuvfv79ga2sr5OfnP3F7Tk6OYGVlJYwcOVK97rfffhPq1KkjmJubC/Xr1xe2b98uNG3aVBgwYECZY8+ePSu0b99esLCwELy8vITPPvtMmDJliuDg4FBmPzyl12lkZKTQr18/wcHBQbCwsBBq1aolhIaGqnsHC0Jpr9KPP/5YcHd3FywtLYXOnTsLJ0+eFAAIy5YtU++XmZkphIaGCg4ODoKDg4Pw5ptvCtHR0QIAYe3ater9UlNThT59+gg2NjblehOnpKQIY8aMEby8vASpVCp4eHgI3bt3F3799ddnfdTC4MGDhS5dupRbD6DCJSYmRhg5cmSF2/9dW2WtXbu2XM/nynjc6/ZJi7W1tSAIgrBw4UKhUaNGgp2dnWBmZibUrFlTePvtt4W7d++WO9+JEycEAMLFixc1roXIWEgE4V8TJhIRieD27dsIDAzE7NmzMWfOnAr3UyqVCA4OhouLCw4dOlSlNW3duhWDBw/GsWPHtDZ23Ys6evQounXrhuTk5DKPuY3VhAkTcOnSJRw/flzsUoh0FoMeEVUruVyOGTNmoHv37nBxcUFiYiK++uorpKen4/Lly2V6z86ZMweBgYGoVasWsrKysHr1auzbtw9///03+vTpo7WaoqKisGfPHrRu3RqWlpY4e/YsFi1ahLp16yIyMrLKp/vSRM+ePVGnTh2sWrVK7FJElZaWBn9/f+zbtw+dOnUSuxwincV39IioWpmamiItLQ2TJk1CVlYWrK2t0bFjR2zdurXcECkSiQSfffYZ7t69C4lEgsaNG2PHjh1aDXkAYGNjg2PHjuHbb79Fbm4u3NzcMHjwYHzxxRc6FfKA0k4VO3bsqLAXqrFITk7G0qVLGfKInoF39IiIiIgMlNHNjJGTk4MxY8bAw8MDNjY2aNeunXqEfABISEhA165dYWVlBV9f36f2giMiIiLSZUYX9GbMmIGYmBjs2LED58+fR6tWrfDSSy8hOzsbCoUC/fr1g4uLC2JiYjBnzhyMHz++yl/6JiIiIqoKRvfotkGDBnj77bcxbdo0AMDDhw9hZ2eHU6dOISMjA4MHD0ZmZiZsbW0BACNGjEBubi527NghXtFEREREz8HoOmO0bdsWO3fuxLBhw+Do6Ig1a9bAy8sLDRs2xKJFi9CyZUt1yANKBxt92qj6CoUCJSUl6q9VKhXy8vJga2tr1C9KExERUdURBAGFhYVwcHAoM7D7fxld0Fu5ciVGjBgBV1dXmJqawsXFBfv27YONjQ0yMjLKTWzu6uqKzMzMCs+3YMEChIWFVXXZREREROVkZWXBycmpwu1GF/SWL1+O69evIzw8HM7OztiwYQP69++PuLg4PM9T7NmzZ5eZoLygoAAuLi7Iysp67onHiYiIiJ5GLpfD2dkZlpaWT93PqIKeXC7H3LlzcfDgQfXYS82aNcOePXvwv//9D+7u7oiPjy9zTGZmJlxdXSs8p1QqLTfJOQBYWVkx6BEREVGVetZrYkbV61ahUEChUMDU1LTMehMTE6hUKrRq1QpnzpxBXl6eetvhw4fRunXr6i6ViIiI6IUZ1R09Ozs7tG/fHjNmzMCKFSvg7OyMdevWISkpCT179kRAQABq1KiB0aNHY968eYiKisKmTZuwd+9esUsnIiIi0phRBT0A2Lx5M95//330798f+fn5qFevHv7880/Uq1cPALBnzx6MHz8ezZs3h7u7O77//nuEhIRotQZBEFBcXKzVc1LFpFLpU3skERERGSqjG0evqsnlcshkMhQUFDzxHT2FQoGkpCQolUoRqjNeTk5OcHNz45A3RERkEJ6VNx4zujt6YhIEAampqTA1NYW3tzfvMlUDQRBQUFCA9PR0AIC7u7vIFREREVUfBr1qpFQqkZ+fj5o1a7JHbjV63PU8PT0drq6uDNhERGQ0+BuvGj1+XPuk4VioaslkMgClj86JiIiMBYOeCPieWPXjZ05ERMaIQY+IiIjIQDHokUZKSkogkUhw9OjRSu0fHR2Nxo0bQyqV4q233tJKDV26dMEnn3yilXMREREZMgY9qlKzZs1CkyZNkJSUhOXLl2v9/JoGTyIiImPCoEdVKjExEd26dUPNmjVhb28vdjlERERGhUGPnurBgwd47bXXYGVlhTp16uDAgQNltsfGxqJLly6wsrKCr68v5s2bh5KSEgClHSD++ecfjB49GhKJBOvWrUN8fDz69u0LFxcXODg4oG/fvkhKSlKfb926dahZs2aZa3z66afo0KHDE+sLDAwEAHTt2hUSiURrj4eJiKj65ReV4NKdB4hJvo9Ldx4gp4CzSL0ojqNHTzVt2jRcvnwZhw8fBgBMmTJFvS0rKws9evTAzJkzsXr1aty+fRtvv/02ZDIZZs6cidTUVAQHB2PmzJkIDQ2Fvb09Ll++jEGDBuHrr79GSUkJPvnkEwwZMgRRUVHPVd/p06fh6emJP/74A+3ateP4hEREeiSnoBjHr9/D8RtZiE7MQnJWfrl9ajhaobWfM0Jb1EQrPyeOoqAhBj2R+c7aU+3XTF7Ur1L75ebmYuPGjfjrr7/Qtm1bAMDnn3+OPn36AAC+/fZbdO3aFR9++CGA0rtrYWFhmDt3LmbOnAkPDw+YmJjA3t4eHh4eAIAWLVqgRYsW6mv88MMP8PT0xK1bt+Dj46NxW1xcXACUTnH2+BpERKTb4m5lY/mhGzhxPRMlqv+fidXMVIKajjLYWEiRX1SCuzkFuJMtx/bs29geext+Ltb4sHdd9G7gwcBXSQx6VKHExESUlJSgVatW6nX//v+LFy9i165dsLGxUa9TKpVQKBRQqVRPnIHiwYMH+Pjjj3HgwAGkp6dDpVIBAFJSUp4r6BERkf64l1eEWdsv4uCV0mkpTSRAcC1HdAh0QcdAZzTxdoS52f//7ihRqnD5bi52X0jFH7G3kXQvHxM2xqJzHVcsC20KR2tzsZqiNxj0RFbZu2tiEITSf2VV9K+mvLw8DBkyBHPnzi23raJpxt577z2cPn0ay5Ytg5+fH0pKStCkSRP1jBUmJibq6z7G2SyIiPTf3ktpmPXHBTyQK2BhZoLhbX0xrqMf3OwsKzzGzNQETbwd0MTbAR/0qosNp5Kx7OB1RCRkotey49g4piXqeNhVYyv0D4MeVSggIABmZmaIjo5Gr169AAAxMTHq7U2aNMHBgwfVHSIq4/Tp0xg7diz69SsNuMePHy+z3dXVFVlZWVAoFOqp4i5evFjh+UxNTWFiYqKeXo6IiHRLiVKFsN1X8eupZABAC18nLB/SFDUcNHun2tzMBGM7+qNXAw+8szEWl+8+wKAfTmPDmJZo6u1YBZUbBva6pQrZ2dnhzTffxPTp0xEVFYXTp09jzpw56u3vvvsubt68ibfffhvnz5/HtWvXsGXLFsyfP7/CcwYEBGDbtm24cuUKTpw4gQ8++KDM9pYtW8LExASfffYZbty4gRUrVuDYsWMVnk8ikcDb2xuHDx9GRkYG8vLyXrzhRESkFQ/kCgz9JRq/nkqGmYkEH/UNwpZxbTQOef/m7STDtnfaon2gC3ILFRj+SwxupD/UYtWGhUGPnmrZsmWoW7cuOnfujKFDh5YJet7e3jh27BhSUlLQvn17tGzZEkuWLHnqu3ZLly6FIAho3rw5xo0bh88++6zMdhcXF6xduxYbN25E06ZNcf78eUyYMOGpNX711Vf47bff4OnpiUmTJr1Yg4mISCuy8oow6IdTiErMgoPMHL+93RrjOwXAxOTFO1FYmZti3aiW6FDbFQ8LFXjzl2hk5BZqoWrDIxH++0IUvRC5XA6ZTIaCgoJyQ30UFRUhMTER/v7+sLCwEKlC48TPnoio+mTkFmLwT6eRfC8fNR1l2PR2a3g7ybR+nYLiErz+w2lcvvsAwT6O2PpOW5hqIUjqg6fljX/jHT0iIiLSmpT7BRjwXSSS7+XDz8Ua2ye2rZKQBwAyczOsG9USjjJzxN7KxtLwhCq5jj5j0CMiIiKtSMrMw2vfn8LdHDnqetjijwnt4GZbca9abXC1tcCKN5pCAuCHozdx8U5OlV5P3zDoERER0Qu7mfEQr/1wChkPC9Gopj22jG8Lp2oa565jbVcMbVMLKkHAjC0XoFCqquW6+oBBj4iIiF7Irax8DPk5Cvfzi9G8liN+f7sN7K2k1VrDR32C4G5nievpD/HdkZvVem1dxqAnAvZ/qX78zImIqkbqAzlCf4pC5sMiNPF2wK9jWsHaovqH6bW2MMOXrzUCAHx75Abu5MirvQZdxKBXjUxNTQFwpgcxFBQUAIB6EGYiInpxmQ+LMPjH00h9IEc9TztsHNMKMnPx5mLoUtcNPep7oFipwue7r4pWhy7hzBjVyNTUFNbW1sjIyICZmVmF04SR9giCgIKCAqSnp8PJyYmfORGRlmTnFyP0p9NIuV+AADcbbHq7NWwtxf/H9LyX6+HotQzsu5SKmOT7aOnrJHZJouI4elr2rHFtFAoFkpKSOGVXNXNycoKbm1uF8/YSEVHl5RYqMPiH04hPy4WPszW2T2gLFxvdGaN04d/x+OnYTdTztMPfUzoY5M/+yo6jxzt61UwqlaJ27dpQKBR8b6yaSKVS3skjItKS/KISDF0djfi0XHg5WGHr+DY6FfIAYGpIILadTcHV1Fzsu5yGPg09xS5JNAx6IpBIJDA3r54u50RERNpSqFBixNoYXLydAzdbS2we1wbudlU7Tt7zsLYww8QuAZi/5yqWHriOXvU9tDL1mj7ibQ4iIiJ6JoVShTHrz+Bs8n04WZtj87iqmdZMW4a1qQVnGwvcyHiIfZfSxC5HNAx6RERE9FSCIODDPy7i5I17sLOU4ve3W8PP1Ubssp7KUmqKiV0CAABLDyYY7etSDHpERET0VEvDE/Bn7G2Ym5lg3aiWqONhJ3ZJlTK0tQ+crM1xMyMPx2/cE7scUTDoERERUYV2X7iLVYdvwEQCLB/SDMG1HMUuqdIspaYY3qYWAODHiCSRqxEHgx4RERE9UWJmHj7YdgEA8GHvIPRp6CFyRZob2c4X5qYmOHkjE4mZeWKXU+0Y9IiIiKicQoUSb/96FvJiJULquWN8J3+xS3ouTtbmeKmJFwDgx2PGd1ePQY+IiIjK+Wj7JdzMyEMNRyt8E9pErwcdHt/JDwCw89wdPCw0rmlIGfSIiIiojD0XUvFn3G2Ym5rgp+HNYacDU5u9iLoedmjq44hChRJ/xt0Vu5xqxaBHREREahm5hfho+0UAwIe966KBl73IFWnHsNY+AID/Rd0SuZLqxaBHREREAErHy5u25TxyCxVo4++M0e39xC5Ja15q7AkbCzPEp+Xi8p0HYpdTbRj0iIiICACwNjIZkTfuwcbSDMuHNDWoacMspabo37QGAGDDaeO5q8egR0RERLiR8RCL9sYDABa+2kgn57B9USPalD6+3X3hLuTFSpGrqR4MekREREZOoVRh0qZzKC5R4aXGXuj/aDgSQxPkaYcGNeyRX1SC3RdTxS6nWjDoERERGbmvwxMQn5oLdztLLBzYUOxyqlRoC28AwNYzt0WupHow6BERERmxs//cx48RNyEBsCy0id4PpfIsrzTxgpmpBDFJWUh7UCh2OVWOQY+IiMhIFSqUmL7lAlQC8FZ7P7QNcBG7pCpnL5OiU203CAD+iDX8u3oMekREREZq6YEE3MrKh4+zNWb2rit2OdVmcIuaAIBtsXcgCILI1VQtBj0iIiIjdOF2Dn45kQQJgK9fbwxLqanYJVWbbkFusLOSIikzD1fu5opdTpVi0CMiIjIyCqUK7229AJUgYGibWmjh6yR2SdXK3MwEfRp6AgB+P5MicjVVi0GPiIjIyHx/9Caupz+Ep70VPu4bJHY5ogh99Ph29/lUKFWG+/jWKINebGwsQkJCIJPJ4OjoiMGDB6u3JSQkoGvXrrCysoKvry/WrFkjYqVERETalXK/AKuO3AAALBrYEDJzM5ErEkczHwd4OVghu6AY0UlZYpdTZYwu6F29ehXdunVDhw4dEBMTg8jISAwZMgQAoFAo0K9fP7i4uCAmJgZz5szB+PHjcejQIZGrJiIienGCIOCjPy+huESF3g090bmum9gliUYikaBPo9LHt9vj7opcTdWRCIbe3eQ/XnvtNdjZ2WHt2rXltu3atQuDBw9GZmYmbG1tAQAjRoxAbm4uduzYUanzy+VyyGQyFBQUwMrKSpulExERvZC9l1IxYWMsZOamOPpBF7jZGt40Z5q4dCcHL608CQeZOc7MDoGZqf7c/6ps3tCfFmmBUqnEvn374Ofnhy5dusDd3R09evTAhQsXAADR0dFo2bKlOuQBQEhICKKioio8p0KhgFwuL7MQERHpmvyiEszdeRkA8F7PukYf8gCggZc9ajhaIaegGFEG+vjWqIJeZmYmCgoKsHjxYrzxxhvYu3cvvL29ERISggcPHiAjIwNubmVvY7u6uiIzM7PCcy5YsAAymUy9ODs7V3UziIiINLb4QAIyHxahrocd3mrnK3Y5OkEikaBvo9J5fXecM8y5b40q6KlUKgDAoEGDMH78eAQHB+PHH3+ERCLBrl27nmvQxNmzZ6OgoEC9ZGUZ5r8IiIhIf8Wn5mJDZDIkAL58rSFMTSRil6QzXm1aGvQOXElDiVIlcjXaZ1RBz8XFBaampqhb9/9H/5ZKpfD390dKSgrc3d2RkZFR5pjMzEy4urpWeE6pVAorK6syCxERka4QBAFzdl6GShDwektvNPV2FLsknVLP0xbeTjI8KFDgVKLh3awxqqBnbm6OZs2a4caNG+p1JSUlSE5Oho+PD1q1aoUzZ84gLy9Pvf3w4cNo3bq1GOUSERG9sPAr6YhJvg8bCzN81Ns4x8x7GolEoh48eYcB9r41qqAHANOnT8dvv/2G3377DQkJCZg2bRoAoH///ujduzdq1KiB0aNH4/Lly1izZg02bdqEyZMni1s0ERHRcyguUeGz3VcBAFNCasPR2lzkinTTq81KH98evJpucI9vjW6UxDfffBOZmZn46KOPkJ2djRYtWuDgwYOws7MDAOzZswfjx49H8+bN4e7uju+//x4hISEiV01ERKS5NSeTcDu7AN5OMoxq7yt2OToryKP08W3K/QJEJmahU+2KX9nSN0Y3jl5V4zh6RESkC7LyitBp8VHkF5Vg9cgW6F7PXeySdNqivfH4IeImBgbXxNeDm4hdzjNxHD0iIiIj9uX+a8gvKkEbf2eEBBnvDBiVNeDR49vD8RkGNfctgx4REZGBiU/NxbYzKTCRSBDWvz4kEg6n8ix13W3h6VA6eHLsP/fFLkdrGPSIiIgMiCAImLvrClQCMLilN+p62Ildkl6QSCToXq/0zueei2kiV6M9DHpEREQG5ODVdEQnZcHGwgwf9qr77ANIrV+j0mFWwq+mP9ckCrqIQY+IiMhA/Hs4lckhgXDicCoaaVHLEXZWUtzJluNGRt6zD9ADDHpEREQGYm1kElLuPxpOpZ2f2OXoHTNTE3SuUzq0yt8G8viWQY+IiMgA3M8vxspDpTM/zXupPszN+Cv+efRr5AEA2HeZQY+IiIh0xJf7riGvqASt/Z0RUo/DqTyvTnVcYW5qgqupuUjPLRS7nBfGoEdERKTn4lNzsfXMLZhIgM84nMoLkZmboXWAMwBg3yX9v6vHoEdERKTHBEHAvL9Kh1N5vYUPh1PRgj4NHj++TRe5khfHoEdERKTHDl3NQFRiFqwtzDCzN4dT0YbH4+mdTb6PQoVS5GpeDIMeERGRnlIoVQjbfQUAMLkbh1PRFjc7S9TxsEWxUoXIm/fELueFMOgRERHpqbUnk5FyvwA1HWUY3Z7DqWhT17qld/XCr2SIXMmLYdAjIiLSQ9n5xVhx6DoAYO5L9Ticipb1fPT49mhCpl7PksE/FURERHroq/2lw6m08nNGj/ruYpdjcJr6OMLWUorUHDmS7uWLXc5zY9AjIiLSM9fScrE5JoXDqVQhUxMJ2ge6ACid+1ZfMegRERHpEUEQMHfXFagEAYNaeCPIk8OpVJUe9Usf3x66milyJc+PQY+IiEiPHIr/13AqvTicSlXqWtcNEgCxt+4jv6hE7HKeC4MeERGRnlAoVfjsr9LhVCZ1C4SzjYXIFRk2J2tz1PeyR4lSwMkb+jnMCoMeERGRnlgXmYxb9wtQw9EKYzicSrXoFlT6+Ha/ng6zwqBHRESkB7Lzi7FcPZxKfQ6nUk0ev6d3XE+HWeGfEiIiIj2w+MA15BWWDqfSk8OpVJuGXvZwkJkj42EhEtLzxC5HYwx6REREOu56+kP8Hl06nEpY/3ocTqUamZhI0KF26TArB/VwmBUGPSIiIh0mCALm7LoMlSDgtebeqOdpL3ZJRqdnvdI7qIfi9e89PQY9IiIiHXbwajpO3ywdTmVWbw6nIobOdVxhIgHOp+TgYaFC7HI0wqBHRESko4pKlPj00XAqU0I4nIpY7GVSNKzhAKVKwPEE/RpmhUGPiIhIR/18PAl3suWo5WyN0RxORVSPh1k5cFW/Ht8y6BEREemg9NxCfHv4BgDg05frQ2rKX9liUg+zcl2/hlnhnxoiIiIdIwgCPth2AXKFEp3ruqHro7tJJJ76nnZwtjZHVl4RrqY+FLucSmPQIyIi0jE7z93FsYRMyMxNsWhgQ7HLIQASiQQdarsCAMKv6M8wKwx6REREOiQrrwjzdl0GAMzqUw+e9lYiV0SP9Xz0+PbwNf15T49Bj4iISEcoVQIm/BaHB3IFmtdywvA2PmKXRP/SsY4rTE0kuHj7AR7I9WOYFQY9IiIiHfHlvmuITsqCvZUUq95syhkwdIydpRSNazpAJQg4lpApdjmVwqBHRESkA/ZeSsNPx27CRAJ8+2YwH9nqqJB6j4dZ0Y/39Bj0iIiIRHYz4yHe23IOAPBer7rquVVJ93R/FPROJNyDSqX7w6ww6BEREYmooLgEYzecRUGxEiH13DGxc4DYJdFT1HW3hautBbILinElNVfscp6JQY+IiEgkgiBgxpYLSLqXDx9naywfwvfydJ1EIkGnR8OsHNCDYVYY9IiIiETyw7FE7LuUCiupKX4Z0Rw2FmZil0SV8HiWjCPxut8hg0GPiIhIBPsvp+GrvfEAgK8GNUZtd1uRK6LK6lDbFWYmEly+m4Ps/GKxy3kqBj0iIqJqdunOA0z9/RwEAJO71cbLTbzELok0YGNhhiY+jlAJwFEdH2aFQY+IiKgapecW4q21MShUKNGvsRdm9Kgtdkn0HEIezT988Kpuz5LBoEdERFRNHhYqMPyXaNzLK0ITbwd8PbgxO1/oqcfToZ24kanTw6ww6BEREVWDQoUSI9fGICH9IWo4WmHtWy1hYWYqdln0nAJcbeBuZ4kHBQpcuJ0jdjkVYtAjIiKqYgqlCu9sjEXsP9lwtrHAprGt4WRtLnZZ9AIkEgk61SkdZiVchx/fMugRERFVoUKFEmPWn8HRaxmwsTTDb2NawcfZWuyySAseP749HM+gR0REZHQeyBUYviYaxxIyYWtpho1jWiHI007sskhL2ge6wMxUgvjUXGTlFYldzhMx6BEREVWBGxkP8dLKE4hJug9HmTm2jG+Dpt6OYpdFWiQzN0PzWk4QABy5ppvDrDDoERERadmhq+l45dtIpNwvgL+rDXa+2w71PO3FLouqQLegx+/p6eZ0aEYd9AYMGACJRIKDBw+q1yUkJKBr166wsrKCr68v1qxZI2KFRESkT4pLVPhs9xWMXX8G+UUl6FbPHX9Nas938gxYj3ruAIDIG1lQ6uAwK0Y7qd7atWshl8vLrFMoFOjXrx+aNm2KmJgYREVFYfz48ahVqxZCQkJEqpSIiPTB+ds5+GDbBSSkPYSJpHTGi2khtWFiwnHyDJmfizW8HKxwN0eOc7ey0dzXSeySyjDKoPfPP/9g3rx5iIyMhLe3t3r93r17kZKSgtjYWNja2qJhw4aIiIjAypUrGfSIiOiJbqQ/xKqjN7Ez7g4EAJ72VljxRlO01LFf+FQ1Hg+z8nv0LYRfzdC5oGd0j25VKhVGjhyJsLAw1KxZs8y26OhotGzZEra2/z+xdEhICKKioio8n0KhgFwuL7MQEZFheyBXYOvZ23jj5yh0/+YYdsTdgYmJBG+190P4jE4MeUbm8TArutghw+ju6H3zzTewsbHBqFGjym3LyMiAm5tbmXWurq7IzKz4G7dgwQKEhYVpvU4iItIt9/OLse9SGv66kIqYpCyUPHofy9zUBP2b1sCEzn4IcLN9xlnIELULcIG5qQmupeUi42Eh3GwtxS5JzaiC3tWrV7F06VKcOXPmidsFQfOXKGfPno2ZM2eqv5bL5XB2dn7uGomISHdkPCzE3oul4S72n2yoHv2eMJEAwbUc8VJjT7zSxAvONhYiV0pispSaormvE07dvIej1zIxuIX3sw+qJkYV9KKiopCWlgYfH58y63v16oUhQ4bAz88P8fHxZbZlZmbC1dW1wnNKpVJIpdIqqZeIiKpf6gM5dl9IxZ4LaTifko3HtwBMTSRo7eeMlxt7ok9DD4Y7KqN7PTecunkPB65kMOiJZcCAAWjRokWZdY0aNcKPP/6I3r17IzY2FkuXLkVeXh5sbGwAAIcPH0br1q3FKJeIiKpJcYkKf8TexqbolDIT1JuZStDG3wX9m3iiZ313OMg4Py09Wfd6bvh89xWcvnkPJUoVzEx1oxuEUQU9BwcHODg4lFvv6+uLmjVrws3NDTVq1MDo0aMxb948REVFYdOmTdi7d2/1F0tERFVOEAQcvJqOz3ZfRcr9AgCAhZkJ2gW6oH8TL3Sv5wZbSz61oWer5WwNbycZUu4XIPZWNlr56cZrXEYV9J7F3Nwce/bswfjx49G8eXO4u7vj+++/59AqREQG6FZWPj7cfhGnb2YBALydZJjYJQD9m3jB2oK/Hklzneu4YuPpf3DgSobOBD2J8Dw9EKhCcrkcMpkMBQUFsLKyErscIiL6D6VKwE/HE7EsPAFFJSrYWJhhckggRrXzg7mZbjxuI/0UcS0DI9fGoLabLcJndKrSa1U2b/CfLEREZDTu5RVhwm+xiEm6DwDo3dAT8wc0gAs7VpAWtPZ3hoWZCa5nPETqAzk87cW/4cN/uhARkVE4l5KNXsuOIybpPhxk5vh5RHP8MCyYIY+0xlJqitb+LgCAA5fTRa6mFIMeEREZvOPXM/HGT1HIyitCU29H7J/WET3qe4hdFhmg3g3cAQD7rzDoERERVbkT1+9h1LoYyBVK9Gnkia3vtIG7ne7MXECGpUd9d0gAxCTdR35RidjlMOgREZHhungnB2//egYlSgGvt/DGt280g1RHxjcjw+Rqa4EGNeyhUKpw7Lr4c9/yTzsRERmktAeFGPFLDOTFSvRu6IEvBzaCiYlE7LLICPSoV/r49u9LaSJXwqBHREQGqLhEhbEbziC7oBjNfZ2wYkgzhjyqNn0alb7/eSwhE0qVuKPYMegREZHBCfvrCi7deQBXWwv8NCyY4+NRtartZgNPBys8KFAg7la2qLXwTz4RERmUA1fS8FvUPzAzkeDHYc3hzOFTqJpJJBKEBLkBAPZeErf3LYMeEREZjPv5xZi57SIAYEbPugiu5ShyRWSs+jQsfU/v4FUGPSIiohcmCAI+/OMCsguK0czHEe908he7JDJirfycYW1hhn+y8pF8L1+0Ohj0iIjIIGyPu4ODV9JhJTXF8tAm7HxBopKamqBD7dJZMvZfFq/3LYMeERHpvbQHhZi38zIAYHa/+vBxtha5IiKgT4PS3rdizpLBoEdERHpNEAR8sO0C8opK0KG2K4a29ha7JCIAQNcgN5iaSHDuVg5yCopFqYFBj4iI9Nqu86k4fj0TMnNTLH29MSQSPrIl3WBvJUVTH0eoBAGH4jNEqUHjoNetWzfk5OSUW5+bm4tu3bppoyYiIqJKeVCgwKe7Sh/ZzupTj3PYks7pVb+09+0+kYZZ0TjoHT16FMXF5W8/yuVynDx5UitFERERVcanf11BdkExmno7YFhrH7HLISqn96P39E7eyERxiarar29W2R03bNig/v8tW7bAzs5O/bVSqcSxY8cQEBCg3eqIiIgqcDoxC3/G3YaZqQRLBjVmL1vSST7OMvi52iApMw9RSVnoWNu1Wq9f6aA3e/Zs9f9/8cUXMDH5/5uBUqkUtWrVwvfff6/d6oiIiJ5ApRIw99Ej27c7BiDQ3Vbkiogq1r2eO37OzMOu86m6G/RSUlIAAF27dsX27dvh6MjRxomISBxbzt5GQtpDuNpaYEq3QLHLIXqq/o098POxmzh4JR1KlQDTarz7rPE7ekeOHHnhkHfo0CG88847aNSoEezs7GBubg5PT0/07t0bS5YsQXq6uNOFEBGR7pIXK7F4XzwAYGbvIFiZm4pcEdHTNaxhD08HK2QXFCMm+X61XrvSd/QeUygU+OmnnxAREYGMjAyoVGVfLDx27FiFx27duhWffPIJCgsL0atXL0yePBmenp6wsrLC/fv3ceXKFezfvx9z587FsGHDEBYWBk9PT81bRUREBmvD6WRk5RejrocdBjarIXY5RM8kkUjQu4EH1p5Mwo5zd9HG37narq1x0HvnnXewc+dODBo0CPXr19dovKKff/4ZP/zwA7p27frU/TIzM/Hjjz/izz//xMSJEzUtkYiIDFShQokfIxIBAO/1qM0OGKQ3BjT1xNqTSQi/nIaFAxpW259diSAIgiYHODo6YseOHejcuXNV1aTX5HI5ZDIZCgoKYGVlJXY5REQG5ZcTSfh89xXUdrfFgWkdOTgy6Q1BENB20WGkPSjElvFt0Mrvxe7qVTZvaPyOnqOjI1xdq7fHCBERUVGJEt8fvQkAmB5SmyGP9Mrjx7cAsONcarVdV+NHt4sXL8ZHH32EX375BS4uLs994QsXLiAqKgoZGaVTgri5uaF169Zo3Ljxc5+TiIgM15Yzt3Evrwh+rjbo3dBD7HKINPZKUy+si0zG/stpmP9Kg2p5fKtx0Js2bRqysrLg4eEBV1dXSKXSMttv3br11OPT09MRGhqKY8eOwdfXV313MDMzE8nJyejcuTM2b94MNzc3TUsjIiIDJQgCfjmRBACY1DWA7+aRXmrq7QB3O0uk5xYi9lY2Wvg6Vfk1NQ568+fPf6ELjhs3DhKJBDdv3oSfn1+ZbUlJSRg7dizGjRuHHTt2vNB1iIjIcJy4cQ/J9/LhbG2Olxt7iV0O0XORSCTo1dADGyKTsePc3WoJehp3xnhR1tbWOHXqVIWPaM+fP4927dohPz+/OsvSGnbGICLSvhFronEsIROTu9XGez3riF0O0XOL/ec+Bn5/Cq62Foj6KOS5705XWWcMoPTx7MKFCzF27FhkZmYCAI4ePYrr168/81gHBwckJSVVuD0pKQn29vbPUxYRERmgW1kFOJ6QCTNTCUa0rSV2OUQvpJmPI9ztLJH5sAjR1TB4ssZBLyIiAvXr10dERAR+/fVXPHz4EAAQFRWFjz766JnHT548GcOHD8fcuXNx5MgRXL58GZcvX8aRI0cwd+5cjBw5ElOnTtW8JUREZJBWn0iCAKB3Q0+42lqIXQ7RC5FIJHipSenrB9vO3qn662n66LZ169YYMWIE3n33Xdja2uL8+fPw9/fHmTNn8Morr+DOnWcXvXbtWqxatQrnz59Xz6xhYmKCJk2aYNKkSRg1atTztUYH8NEtEZH25BeVoNXCQ8gvKsGuSe3RuKaD2CURvbBraQ/Ra9kx2FpKcfaT7jA30/wBa2XzhsadMS5duoR+/fqVW+/k5ISsrKxKnWPUqFEYNWoUiouLkZWVBUEQ4OLiAnNzc03LISIiA7b17G3kF5WgcU0HhjwyGHU9bOHvaoPEzDxEJGSgR/2qGy5I46Dn4eGB69evw9fXt8z6Y8eOwd/fv9LnedI4em3atEGjRo00LYmIiAyQIAhYezIZADCmg9/TdybSMwOaeuHr8ARsPXtHt4Le1KlTMXHiRCxfvhwAcOXKFezduxdz5szBV1999czjOY4eERFVRkzyffyTlQ8na3P0bcQBksmwDAyuga/DExBxLQN5RSWwsdA4klWKxmedMmUKbGxsMHnyZOTn56N///7w8PDAZ599hrFjxz7zeI6jR0RElbH+VOkA/K8194bU9LkGiSDSWTUdZWji7YDzKTnYdykNg5rXrJLrvNA4evn5+cjPz9fo7hvH0SMiomd5UKBAywUHUaxU4dgHXeHjLBO7JCKtWx+ZjHm7LqNNgDN+f7uNRsdW6Th6j8lkMri4uEClUqmXZ+E4ekRE9Cxbz6agWKlCKz9nhjwyWP2beMHURILoxPu4l1dUJdfQOOilpKTg9ddfh6urK8zMzCCVSsssz8Jx9IiI6GkEQcBv0SkAgBFtfESuhqjqOFqbo22AC1SCgO2xVTOmnsbv6L3xxhsQBAGrVq2Cu7s7JBLNpu6YNWsW3N3dsWrVKixcuLDcOHrLli3T63H0iIjoxcTdykZSZh7sZVL0bMBOGGTY3mhZEyeuZ+L3mBS83dFP41z1LBoHvXPnziE2NhZ16jz/XIMcR4+IiCryuBPGwGY1n2sgWSJ90qO+B+ytpEjMzMPFOw+0Pl6kxn+D2rZtixs3bmjl4ubm5vD09ISXlxdDHhERIbdQgX2XUgGA89qSUTA3M8HLj6ZE+y0qRevn1/iO3rp16/D222/j2rVrqF+/frn38rp161ap8zxpwOTWrVtX2BuXiIgM3/bYOygqUSG4liP8XKzFLoeoWrzZyhsbT/+DPRfuIqx/fVhKTbV2bo2D3oULFxAdHY19+/aV2yaRSKBUKp96PAdMJiKiJxEEAb9FlT62Hd6Gd/PIeNT3skddDztcS8vFvktpGNCshtbOrfGj24kTJ+KNN95AampqmWFVVCrVM0MeUHbA5MTERERFRSEqKgqJiYm4efMmTExMMG7cuOdqDBER6a8Lt3NwPf0h7Kyk6NOQnTDIuIS2LB0w+X/R2n18q3HQy8rKwrRp0+Du7v5cFzx48CCWL19eblYMAPDz88PXX3+N8PDw5zo3ERHpr8edMAY0raHVR1dE+mBgsxqQmpogJikLd3LkWjuvxkFvyJAh2Lt373NfkAMmExHRf+UVlWDvxcedMDh2HhkfB5k5uga5QQCwKfqW1s6r8Tt6Dg4OmDNnDvbt24dGjRqV64zx2WefPfX4xwMmT5s2DV27dlW/i5eRkYEjR45g+fLl+PjjjzUtq9IWLlyIbdu2ISEhAba2tujduze++uor9buCAJCQkIDx48fj9OnTcHd3x9y5czF69Ogqq4mIyNjtiLsDuUKJJt4OCHSzFbscIlEMbe2NA5fTsOXMbUzvXgemJi8+pp7GQS8mJgZNmzZFfn4+Tp8+XWZbZQb5E3vA5BMnTmDGjBlo0aIFcnNzMXnyZISGhuLw4cMAAIVCgX79+qFp06aIiYlBVFQUxo8fj1q1aiEkJKTK6iIiMmYbT5fewRjGThhkxDoGuqKGoxXuZMtx8Go6emlhwHCJIAiCFmp7LrowYPKpU6fQrl075OTkwN7eHrt27cLgwYORmZkJW9vSf1WOGDECubm52LFjxzPPV9lJhomIqNSlOzl4aeVJ2FiY4cwn3fl+Hhm1HyJuYtHeeLT2d8bmcW0q3K+yeeO5hxx/+PAhzp07h3PnzuHhw4caH5+ZmakeMNnd3R0HDhzA/v37n+tcL+LevXuwtLSEtXXpeE3R0dFo2bKlOuQBQEhICKKiop54vEKhgFwuL7MQEVHlbXjUCaN/Uy+GPDJ6Q1p6w9zUBFGJWUi6l//C59M46BUUFOCdd96Bs7MzgoODERwcDBcXF0yYMKFSIef69euoU6cOPDw80KBBA/zzzz/o0KEDhgwZgoEDB6JRo0a4efPmczVGU0VFRfjss88wcuRImJmVPsXOyMgoN4afq6srMjMzn3iOBQsWQCaTqRdnZ+cqr5uIyFAUFJdg94W7AIDhbdgJg8hBZo4+jTwBAGtOVtx5tbI0DnpTpkzB4cOH8ddffyEnJwcPHjzAzp07cfjwYUydOvWZx7///vto2LAhzp8/j969e6NPnz7w8vJCdnY2srOzERwcjLlz5z5XYzShVCoxbNgwAMCSJUvU6zV9kj179mwUFBSol6ysLK3WSURkyHaeu4uCYiUa1LBHPU+OuEAEAGM6+AIA/oy9A3nxs8cofhqNg9727duxbt069OrVC3Z2duqeq2vWrMG2bdueefzJkycRFhaGhg0bYv78+bh27Rree+89SKVSmJubY9asWTh+/PhzNaayVCoV3nrrLcTHx2P//v2wsbFRb3N3d1dPy/ZYZmZmmV65/yaVSmFlZVVmISKiynk8E8aw1rybR/RY45oOqOdlh7yiEvwZd+eFzqVx0FMoFJDJZOXWW1lZoaSk5JnHy+Vy2NnZqY+RyWTw8Pj/XiUeHh4VPibVBkEQMHbsWJw+fRrh4eFwcnIqs71Vq1Y4c+YM8vLy1OsOHz6M1q1bV1lNRETG6GrqA1y68wAyc1O80tRL7HKIdMro9qUTS/x8PBEq1fP3m9U46PXq1QsTJkzAtWvX1Ovi4+MxadIk9OrV65nH+/j4lHkH7/fff4enp6f667t371Z490wb3nnnHfz111/47bffAABpaWlIS0tTT9/Wu3dv1KhRA6NHj8bly5exZs0abNq0CZMnT66ymoiIjNHjThgvN6kBmbnGo30RGbRXmnjBxcYCSffycTg+49kHVEDjoPfdd9/B1tYW9erVg4ODAxwcHNCgQQPY2dnhu+++e+bxb731FrKzs9Vf9+vXr8zjzh07dqBDhw6allVpP/30E+7du4fWrVvD09NTvaSklM4tZ25ujj179iAjIwPNmzdHWFgYvv/+e46hR0SkRfJiJXadL+2EwZkwiMozNzPBqPa+AIBvjz5/J9XnHkcvPj4eCQkJEAQBQUFBqFu37nMXYUg4jh4R0bNtjknBzD8uoJ6nHfZO7Sh2OUQ6KbdQgTYLD6GgWIkdE9uhqY+jeltl88Zz3ysPCgpCUFDQ8x5ORERGbOOjThjDORMGUYXsLKUIbemDtSeTsOroTawe0ULjc2gc9IqLi/Hzzz/j6NGjyMzMVE9h9tixY8c0LoKIiIxHfGouLt7OgZW5KQY0YycMoqcZ38kfv55KxuGr6biZ8RABGs4FrXHQGzt2LPbu3YtBgwahQYMGlZrfloiI6LENj+a1fbmxFzthED2Dh70l+jetge2xt7Ek/Dq+Hxqs0fEa/w3buXMn9u3bh7Zt22p6KBERGblChRK7zpWOC8ZOGESVM6NHbew6dwf7LqYiIS0XdTzsKn2sxr1ufXx8YGlpqelhRERE2HnuLvKKSlDP0w4NaziIXQ6RXqjpKMPA5jUhAFh84LpGx2oc9FauXImZM2ciLi4ORUVFUKlUZZbKunXr1hPXPx7mhIiIDM+vp/8BwE4YRJqa3r02pKYmCL+Shit3H1T6OI2DXq1atfDw4UO0aNECMpkMUqm0zFIZx48fR6NGjXDw4MFy65s0aYL9+/drWhYREem4K3f/fyYMdsIg0oynvRUGt/AGAHyx99oz9v5/Gr+j98Ybb8DU1BT/+9//4O7u/lydMTp27IgVK1ZgwIABWLduHQYNGoS///4boaGh+Oqrryo1wwYREemX9ZwJg+iFTOteG3/E3sbx65mITs6q1DEa/027cOEC4uLiXniA5JEjR8Le3h7Dhg1DeHg4fvvtN/z888944403Xui8RESke/KLSrDrfGknjLfasRMG0fNwtbXAqPZ++P7oDXy5N6FSx2j86LZt27Zl5qp9EQMGDMDIkSPx888/47XXXmPIIyIyUDvi7kJerESjmg6o52kvdjlEemtiF3/YW0lx6U5OpfbX+I7esGHDMGXKFFy9ehUNGzYs915et27dKn2uL774Ahs3bsSyZcsQFhaGOXPm4PPPP9e0JCIi0nEbo0o7YYxow7t5RC/C1lKKSd0C8fmOc5XaX+OgN2bMGADABx98UG6bRCKBUqms1HlmzpyJNWvW4NChQ2jRogW6deuGXr16IScnBytXrtS0LCIi0lGX7uTgamoubCzM8HITdsIgelEj2tbC9ugkVGacEo0f3f53OJV/L5UNeSdOnMDmzZtx/PhxtGhROm9bw4YNcfz4cezduxcHDhzQtCwiItJRjzth9G9aA5ZSU5GrIdJ/Fmam+GNC5SaukAiCIFRxPU9UVFQECwuLSq/XF3K5HDKZDAUFBbCyshK7HCIiUeUXlaDFgoOQFyuxf1pH1NVgRH8iqlhl84bGd/S0paIwp88hj4iIynrcCaNxTQeGPCIRiBb0iIjIsAmCgF9OJgEAhrMTBpEoGPSIiKhKHLueicTMPDhZm6N/U3bCIBIDgx4REVWJ748mAgBGtvWFhRk7YRCJ4bmCXnR0NMaNG4fu3bsjNTUVALB161ZER0drtTgiItJPV1Mf4HRiFizMTDCyXS2xyyEyWhoHvT/++APdunWDRCLBiRMnIJfLAQAZGRn49NNPtV0fERHpoe8jSt/NGxhcEw4yc5GrITJeGge9sLAwrF69Gj/++GOZWTE6duyIs2fPPlcRgiCUG5OPiIj0U0ZuIf6+cBcSAO909he7HCKjpnHQu3HjBtq0aVNuvZWVFXJzcyt9npSUFLz++utwdXWFmZkZpFJpmYWIiPTT6hPJKFEJ6BLkhlrO1mKXQ2TUNJ4Czc/PD7GxsfD19S2zfs+ePahfv36lz/PGG29AEASsWrUK7u7ukEgkmpZCREQ6pqC4BP+LLp3XdmKXAJGrISKNg96cOXMwYcIEpKWlQaVS4cCBA7h58ya+/fZbbNq0qdLnOXfuHGJjY1GnTh1NSyAiIh214dQ/yCssQYMa9mjp6yR2OURGT+OgN2TIELi5uWHBggWwtrbGjBkz0KRJE2zevBkvv/xypc/Ttm1b3Lhxg0GPiMhAFCqU+OlY6ZAq00Nqi1wNEQHPEfQAoFu3bujWrdsLXXjdunV4++23ce3aNdSvX7/ce3kven4iIqpev57+B/fzi1HHwxYh9dzELoeIUMmgp0kvWBOTyvXvuHDhAqKjo7Fv375y2yQSCZRKZaWvSURE4ipUKPFDROndvBnd6/C9ayIdUalU9qResRUtlTVx4kS88cYbSE1NLTe0CkMeEZF++V/ULWTlFSHQzRa9GriLXQ4RPVKpO3pHjhzR+oWzsrIwbdo0uLvzBwIRkT4rKlHi+4ibAIAZ3Wvzbh6RDqlU0OvcubPWLzxkyBDs3bsXkyZN0vq5iYio+myOuY3Mh0Xwc7VB74YeYpdDRP/yXJ0xbt26hW+//RbXrl0DAAQFBWHixInw8fGp9DkcHBwwZ84c7Nu3D40aNSr32Pezzz57ntKIiKgaFZeosOrIDQDAtJDaMDHh3TwiXaJx0Nu3bx8GDBiAZs2aoW3btgCAiIgILF++HDt37kTPnj0rdZ6YmBg0bdoU+fn5OH36tKZlEBGRDthy5jYycgvh62KNlxt7il0OEf2HRBAEQZMDmjRpggEDBiAsLKzM+rlz52Lnzp04f/68VgvUN3K5HDKZDAUFBbCyshK7HCKiKqNQqtDpq6NIfSDHN6FN8WqzGmKXRGQ0Kps3NJ7r9tq1axg2bFi59cOHD1c/yn1e6enpWLp0KRo3bvxC5yHdJy9WIju/GLmFCmj4bw0i0hHbzt5G6gM5vJ1k6N/ES+xyiOgJNH506+3tjQMHDqB27bKjnh84cADe3t4aF1BUVISdO3di/fr1CA8PR1BQEF555RWNz0O6SxAExKc9xKH4DBy/fg83MvKQlVek3m5jYYba7rboWtcVA4NroKajTMRqiagySpQqrDxc+m7elG61Ycp384h00nPNdTtmzBgcP34cbdq0AQCcPn0a27dvx5o1ayp9nsjISKxbtw5bt25FjRo1EB8fj/DwcHTt2lXTkkhHZeUV4fczKdh29g6SMvPKbDMzkcDK3AzFJUrkFZUg7lY24m5l45vwBLQLdMW4jr7oVMeVwzQQ6ag/4+7ibo4cNRyt8Goz3s0j0lUaB70RI0YgMDAQK1euxIYNGyAIAoKCghAREaHunPE08+fPx4YNG6BSqRAaGopjx46pe91yTD3DcDdHjm+P3sS2MykoKimdVcXOSoqudd3Qpa4rmvs4wsvBEmamJhAEAZl5RYhKvI+/LqTicHw6Tt7IxMkbmajvZY+Zveqgc11OpUSkS0qUKiw/dB0AMLlbbZiZavwWEBFVE407Y7woMzMzTJ8+HZ9//jksLS3V66VSKc6fP4/69etXZzlaZ8ydMXILFVh64Dp+O52MElXpH6u2AS4Y0dYHIUHuMDd79i+DrLwibDx9C2tOJuGBXAEA6N3QEwtfbQgna/MqrZ+IKue3qFuY/edF1HC0wtH3u0DKoEdU7SqbN55rHL2HDx/i119/LTOO3tChQ2FnZ/fMY1evXo1ff/0VHh4eePnll/HGG29UekgW0k1KlYDfom5h6YFreCBXQAKgZwMPTA0JRAMve43O5Wxjganda2NsRz/8ciIJ3x65gX2XUnH2n/tY81YLNKrhUCVtIKLKKVQosfxg6d2893vWZcgj0nEa39GLiIjAgAEDYG9vj+bNmwMAYmNjkZOTgx07dlR6Fo1bt27h119/xYYNG3Dv3j3k5ORg/fr1eOONN2Bqaqp5S3SEsd3RO3XzHubsvIIbGQ8BAE28HTD/lQZoVNNBK+dPvpeHSZvO4dKdBzA3M8Gy0Kbo24hjdRGJ5adjiVj491X4u9rg4PROHCCZSCSVzRsaB7369euje/fuWLZsGUxMSv8lJwgCpk2bhgMHDuDq1asaFxsZGYkNGzZgy5YtkEgkeOmll7B+/XqNz6MLjCXopdwvwKd/XcGhq+kAADc7S8zuWw/9m3hqvQNFUYkSH267iJ3n7sBEIsFXgxpjUPOaWr0GET1bflEJ2i06jAdyBX4a3hw9G3C6MyKxVFnQk8lkOHfuHOrUqVNmfUJCApo2bYqCgoLnqxhAcXExduzYgQ0bNmD37t3PfR4xGXrQyy8qwfJDN7D2ZBIUShUszEwwrlMA3u0aAEtp1d2JFQQBX+2/hu+P3oQEwPxXG2Fo68pPuUdEL27h3/H46dhNNKhhj92T2rNXPJGIquwdve7duyMiIqJc0IuIiECXLl00Ote9e/cQHR2NjIwMqFQq9fqBAwdqWhZVMZVKwLbY21i0Nx7384sBAP0ae+GTfkHwtK/6QCuRSDCzdxCspKb4OjwBc3ZchLONOXrzjgJRtUjKzMOak4kAgLCX6zPkEekJjYNehw4dMGvWLBw9ehQtW7aERCJBdHQ09u/fjw8//LDMWHqjR4+u8DybN2/GqFGjYGJiAhcXlzI/NCQSyVOPpep1Jvk+5u66jCt3cwEA9b3s8PkrDdC8llO11zIlpDaKSlT49sgNTNkUh01vtxalDiJjM2fXFZQoBbzcxAstfPl3jkhfaPzo1s/Pr3InlkiQmJj41PO89dZb+OSTT/S688V/GdKj27QHhfh8z1XsuXAXAOBkbY5ZfYIwKLimqC9gC4KAGVvO48+4O3CUmWPftI5wt7N89oFE9FwOXk3H2PVnYGVuiogPusDNln/fiMRWZY9uk5KSXqiwx7KysjB8+HCDCnmGolChxPdHb+KHiJsoKlFBamqCUe39MDUkENYWzzUij1ZJHnXIuJUtx9nk+xiz/gy2T2hXqXH6iEgzRSVKzNt1GUDpHXWGPCL9ItpvxjfffFNvO1wYKnmxEmtPJqPz4qNYfug6ikpUCKnnjsPvdcbHfYN0IuQ9JjU1wY/DguFqa4FLdx5g7qNfRESkXauPJ+FOthw+ztYY26FyT3SISHdU6jf3iBEj8O2338LW1hYjRox46r4bNmyo1IXt7e0xb948HDhwQD0F2r999tlnlTpPVVm0aBFWrFiBnJwcdO/eHT/99BM8PAzzxf/r6Q+x9ewdbI65pZ6Nwt/VBp+/0gDtA11Erq5iLjYW+Gl4c7z+4yn8Hn0LLWo5ctgVIi3KfFiEVUduACjtgMHBkYn0T6WC3r8fr2rrUWt0dDSaNm2K/Px8nD59usw2sXtzrV27Vj0nr7+/P6ZNm4bQ0FBERESIWpe2CIKAxHv5+Ot8Knadv4vEzDz1tiBPO7zbJQB9G3nCVA8GQm3m44i5LzXA3J2X8MmOS2jmbY8AN1uxyyIyCIv2xkNerET7QBd0DeKc00T6qNrnutUHwcHB6NOnDxYsWAAASExMREBAAOLi4tC0adOnHqurnTFuZxfgxI17iEi4h5ik+7iXV6TeZmNhhu71PRDaogba+DuLHrQ1JQgCxm+MxYHLaajjbou/JreHhRnf/SR6EZfvPMBLK0/AxESC/VM7ItCd/4Ai0iVV1hlDqVQiNjYWycnJkEgk8PPzQ7NmzdSzZDyNIAgahQhN99eGoqIinD9/HosXL1av8/f3h6+vL6KiosoFPYVCgZKSEvXXcrm8ukotRxAEZBcokJ5biIyHRUhIf4hzKQ8QeysbqTll67KXSdEuwAUDm3mhcx03ve7IIJFIsOT1xuh1+wES0h9i/p54fP5KA7HLItJbgiBgzq7LEAC80cqHIY9Ij2kU9Pbs2YMJEybg9u3bZdb7+Pjgxx9/RK9evZ56fL169TBr1iwMGjQINjY2Fe53/vx5rFy5EoGBgZg1a5YmJb6wrKwsqFQquLmVfUzh6uqKjIyMcvsvWLAAYWFh5dbvvXgX1tbWkJpKYGpiAjMTSeny6GtBEKASBKgEQKl69P8qQCkIUKkEFJUoUVBcdpErHv330f/LFUoUFiuRI1cg82EhsvOLUaJ68g1aGwszBNdyQsfazuhY2wV13GwNao5KO0spvhvaDIN+OIVfTyWjY21n9KxvmO9UElW1vZfSEPtPNmwtpfigZ12xyyGiF1DpoHfhwgUMHDgQI0aMwOTJkxEUFARBEHD16lWsXLkSAwYMQExMDBo2bFjhOTZu3Ig5c+Zg0qRJaN++PYKDg+Hp6QkLCwvk5OQgPj4eJ0+exIMHDzBjxgxMmTJFK43UhKZPsmfPno2ZM2eqv5bL5XB2dsa0zedhIrXQdnnPZGNhBmcbC7jYWKCmoxWa+TiguY8j6nvZ6cU7dy+imY8jpveogyX7r+H9rRdwYJoDPOw5FASRJopKlJi/p3TO8unda8NeJn3GEUSkyyr9jt6oUaOgUCiwcePGJ24fOnQoLCwsysyMUZGbN2/ijz/+wMmTJ/HPP/+gsLAQzs7OaNKkCXr06IGXXnqpXC/c6lJUVASZTIYDBw4gJCREvd7Pzw+zZs3C+PHjn3r842fmw348DpiZQ6kUUCIIKFGqoFQJUKoElCgFQAKYSiSQSCQwNQFMJJLSxUQCUwlgITWFpdQUMqkJLM3NIJOawMrcDDJz03KLnaUUbraWcLOzqNL5ZvWBSiXgzdVROJ2YheBajtg6vq3BB1wibVp15AaW7L8GXxdrHJzeCWbsaUukkyr7jl6lg15gYCDWrFmDTp06PXF7REQExowZgxs3bjxfxTokODgYffv2xfz58wGUDhLt7++v150xjEnmwyL0/OYYsguKMblbbbzXs86zDyIiZD4sQqfFRyAvVmLdqJboUpc9bYl0VWXzRqX/qXb37l34+/tXuN3f3x93797VrEodNWnSJCxfvhx//vknzp8/jzFjxqBjx47PDHmkG1xtLbAstAkA4Nsj1xGVlCVyRUT64YtHw6l0qO3KkEdkICod9AoLC2Fubl7hdnNzcxQVFVW4XZ+MHj0aH3/8MSZOnIg2bdrA2toaW7ZsEbss0kDnum4Y08EfKgGY/L9zyCkoFrskIp126U4O/oy9DVMTCT59uZ7Y5RCRllT60a2JiQmmT58Oa2vrJ27Pz8/HsmXLoFQqtVqgvuGjW92hUKow4NtIXL77AF2D3LBmZAu9GyOQqDoIgoCB359C3K1sDGtTC/MHVNypjoh0g9bH0evUqRNiY2OfuQ+RrpCamuD7oc3Qe/lxHInPwNrIZIxuz7k6if7r74tpiLuVDTsrDqdCZGgqHfSOHj1ahWUQVQ0fZ2ssGtgYU36Pwxd/x6O1nxMaeNmLXdZzKS5R4eKdHFy5+xAFihK4WFugYQ171HG34Z1Kem4KpQpf7I0HAEwL4XAqRIZG45kxiPRN/6ZeOHY9E9vO3saEjbHYN60jZOb680f/bo4c3x69iV3n7uJhoaLc9trutpj7Uj10rO0qQnWk736PScHt7ALUcLTC8La1xC6HiLSMc91qGd/R003yYiX6rjiOpHv5GNCsBpaFNhW7pGd6UKDA4gPX8HvMrdKxFwH4OFmjYU172FuaIf1hEc4k30euvDT8DW1TC5++XB9SjntGlVSoUKL9l0eQlVeE5UOa4pWmNcQuiYgqqcrmuiXSR1bmpvhhWDBeXnkSO+LuoGNtF7wWXFPssp5IpRKw+UwKFu2Nx4NHIa5nAw9M7hqAhjXsyzymLSpR4vujiVh1+Dp+O/0PrqfnYf2olrAyN+6Bs6ly1kUmIyuvCLXdbfFyYy+xyyGiKsB/+pPRqOthh09eqg8A+GTHJSTfyxO5ovKy8orw+o+n8NH2i3ggV6CZjyP2TOmAn4Y3R6OaDuXexbMwM8W07rXx+7g2cJSZIzopCyPXxqC4RCVSC0hfFJeosPp4EgDgg551DGruayL6fwx6ZFSGt/FBj/oekBcr8c5vcToViBLScvHSypM4+082HGXmWPJ6E2yf0LZSnUda+Dph6/j/D3uzd1yqhopJn/0Zdwf38org52KN7vXcxS6HiKoIgx4ZFYlEgiWvN4aHvSXiU3Ox4O94sUsCAByJz8CA7yKR+kCOIE877JvWEYOa19SoN22guy1+GdkCUlMTbD2TgnWRyVVXMOk1QRDwQ8RNAMA7nQN4N4/IgDHokdGxt5Li2zebwUQiwfrIJOy/nCZqPb+cSMKY9TEoKFaie313/DmhHdztLJ/rXMG1HLHg1UYAgPl7ruDK3QfaLJUMxKH4DCTdy4eLjQVebcYOGESGjEGPjFLzWk6Y3qMOAGDa7+dwNbX6A1GJUoVZ2y/i891XoBJK76z8NKz5C3ekGNyiJl5v4Y0SpYDJv59DUYlxz1ZD5X17pPRu3qgOvjA3468BIkPGv+FktCZ1DUDvhp6QK5R4a+0Z3MurvrmacwsVGPZLNH6PvgUzUwmWvN4Es/oEae0R2qcv14eXgxVuZuSpf6kTAUDsP9mIu5UNmbkpRrThuHlEho5Bj4yWRCLBstAmaOBlj/TcQoxcE4P8opIqv27yvTy8vPIkTidmwd5Kiv+NbY1BzbU71Iu1hRkWD2oMAPjh6E2k3C/Q6vlJf606Whr832hVC7aWnAWDyNAx6JFRs5SaYu2oFnCzs8Tluw/w1roYFCqq7lHn6cQs9F8ViX+y8uHnYo3dk9ujlZ9zlVyrfaALejf0RLFSxV64BABIvpePI1fTYWYqwbhOnPeZyBgw6JHRc7O1xO9vt4ajzBwxSfcx/tezUCi1P+zK+shkDF0dhdxCBdoFumDXpPbwdrLW+nX+7bP+9WFlbopjCZk4eDW9Sq9Fuu/bozchAHipsddzd/ghIv3CoEcEwN/VBr+NbQUbSzNEJGRq9TFucYkKH267gHm7LkOpEjCirS82jGpZLY/N3OwsMblbbQDAV/uvgTMeGq97eUXYEXcHAPBulwCRqyGi6sKgR/RIfS97/Da2NeytpIi8eQ+DfjiF1AfyFzrn9fSHeGnVCWw5kwKpqQm+HNQYn73SAGbVOB/t6Pa+cLI2R0LaQ4Rf4V09Y7XmZDIUShU61nZFbXdbscshomrCoEf0L01qOuDPie3gaW+Fq6m56PHNMew8d0fjO2EP5AqE/XUFfVecQELaQ3jYW2LL+DYIbeFdRZVXzFJqinc6l97B+ebgdd7VM0KFCiX+F3ULADChi7/I1RBRdWLQI/oPf1cb7J7cHu0DXZBXWIKpv5/Dq99FIiIhAyrV00PSA7kCq47cQIcvj2DtySQolCoMaFYD4dM7oZmPYzW1oLzhbUp7WF5NzUXcrWzR6iBx/Bl3BzkFxajtbou2/lXT+YeIdJOZ2AUQ6SJnGwtsHNMKv56+haUHruFcSg5GromBl4MVugW5oY2/E2o5WcPczAR5RSW4kZGHI9cyEXEtA/JHvXab+Tji05froYm3eAHvMStzUwxu4Y1fTiTix+NJ+LGWk9glUTURBAGrTyQBAMZ28NNoWj0i0n8Sgc9xtEoul0Mmk6GgoABWVlZil0NakFuowOrjSdgUfQuZD589qHJzXydM7OyPbkFuOvVL9U6OHB2/PAyJRILIWd3Y69JInLiRiWGro+EoM8fpj7vBwuzFZl4hIt1Q2bzBO3pEz2BnKcWMHnUwpVsgYpLv4/C1e4hPy8XdbDlKVAIspSbwcbJGMx8H9GnoAT+Xqh0y5XnVcLBCl7ruOByfjvWn/sGHveqKXRJVgx8jSu/mDW3jw5BHZIQY9IgqyczUBG0DXNA2wEXsUp7b6A61cDg+HdvO3MZ7PerAVEtTrpFuSrqXjxPXMyE1NcFb7XzFLoeIRMDOGERGpJ2/CzztrZDxsBAnbmSKXQ5VsZ+OJUIA0LeRJ1xsLMQuh4hEwKBHZERMTCTqeXU3RqWIXA1VpQdyBf58NEDyO5053RmRsWLQIzIyQ1p5QwLgSHw6cgqKxS6HqsiWMykoVCjRvJYj6nnai10OEYmEQY/IyNRwsEIrf2eUKAX8EXtH7HKoCgiCgF9Plw6QPLq9r7jFEJGoGPSIjNDQVj4AgN9j+PjWEEXezMKtrHw421igZwMPscshIhEx6BEZoV4N3WFjaYbr6Q9x5e4DscshLVtzMhkAENrSG9JqnFeZiHQPfwIQGSELM1P0aegJANh6lo9vDUl6biGOXsuAiUSCEW1qiV0OEYmMQY/ISIW2KO19u+v8XSifMYcv6Y9fT/8DpUpAl7pu8LDn7CdExo5Bj8hINa/lCC8HK2TlFeHkzXtil0NaUKJU4ffo0vcuR7Xn3TwiYtAjMloSiQSvNK0BANhy5rbI1ZA2HLiSjnt5RfB2kqFDoP7O4EJE2sOgR2TEBj96fHvwSjoKiktEroZe1NrIZADAsDY+kEg4vR0RMegRGTU/F2vU97JHoUKJw1czxC6HXsA/WfmISboPCzMTDGnhI3Y5RKQjGPSIjNzLjUt73+44nypyJfQitj8a/LpbPXfYy6QiV0NEuoJBj8jIvdykNOiduJ4JebFS5Groee26UBrUXwuuIXIlRKRLGPSIjFxNRxnqedqhUKHEkWt8fKuPrqU9RFJmHmwtpehU21XscohIhzDoERH6PXp8u/P8XZEroefxeM7iHvXdYW7GH+tE9P/4E4GI0L+xFwDg2LVMFCr4+FafCIKA3RdKA/rAYC+RqyEiXcOgR0TwcZahjoct5AoljiVkil0OaeDC7RzczZHDydocbf05dh4RlcWgR0QAgH4NHz++Ze9bffJHbOndvN4NPWFqwrHziKgsBj0iAvD/7+kdS8hEiVIlcjVUGSqVgL8vPupt24yPbYmoPAY9IgIABLrZwNtJhoeFCsQk3xe7HKqEmOT7uJdXBHc7SwTXchS7HCLSQQx6RKTWvZ47AGDPxTSRK6HK+COu9LHtS429OOUZET0Rgx4RqfVtWBr0Dl3NgCAIIldDT1OiVGH/5dLHtgP52JaIKsCgR0RqwbWcYC+TIvWBHAnpeWKXQ09x8sY9PChQwNtJhvpedmKXQ0Q6ikGPiNRMTSToXMcNANQv+ZNuevzY9uUmfGxLRBUzqqD3888/o127drC3t4erqytee+01JCYmltknLS0NAwYMgEwmg6enJxYuXChStUTi6NfIAwBw4Eq6yJVQRYpKlDh0tfT7M7AZ57YloooZVdCLiIjAyJEjcfz4cRw6dAiFhYXo06cPFAqFep/Q0FDcv38fkZGR+O677/DFF19gzZo1IlZNVL061XaFhZkJrqbmIj23UOxy6AmOxP9fe/ceVVWd/w38fe5wOAhyB0FBVPKKmJCkqUjKOKaZk+kzWWalNPXYLJ1+v3rMxmW/NF01j9X0/NY0UnbRZkxjpLL8Sd4w8UZyUxEhQEFFDig3OcDhnO/zB3pGEgH1wObs836ttVey92bvz+dAe73Zl+824lpTCwb7uWOQn0HqcoioF1NLXUBP2rx5c5uvk5KSEBQUhLy8PIwaNQo5OTlIS0tDfn4+hgwZgtGjR2PZsmX44IMP8Oyzz0pUNVHPctWqEDPQGwfPGrHrZDkWPhgqdUn0K8mZre+2nTU6UOJKiKi3c6ozer9WWVkJAPDy8gIAHDt2DMHBwRgyZIhtnfj4eOTm5sJkMrW7DbPZDJPJ1GYicnTTh7devv3hFIdZ6W0amltwIL8CADB7NC/bElHHnDboCSGwcuVKJCQkIDg4GABQUVEBPz+/Nuv5+vrCarXaQuGvrVmzBnq93jZ5e3t3e+1E3W3acH8oAPxcchUNzS1Sl0M3ST19GU0tVozo54EQL73U5RBRLyeLoPfCCy9AoVDcdpo8efIt3/OnP/0Jubm52LRpk23e3Ywb9vrrr6OhocE2VVVV3UsrRL2Cj0GH+wL7wGyx4lBh+3/kkDRuvNv20dEcO4+IOieLe/TWrVuHlStX3na5Tqdr8/WKFSvw1Vdf4eDBgwgM/Pc9Lv7+/qioqGizrtFohFKphI+PT7vb1mg00Gg091A9Ue8UF+GHvEu12H26AlOHBUhdDgGoMZmR/osRSgXwaCSDHhF1ThZBz9PTE56enl1ad/Xq1UhKSsKBAwcQFhbWZllMTAzKyspQUFCAwYMHAwD27t2LkSNHwtXV1d5lE/VqU4f54b/3FyLtrBFCCI7V1gv8cLIcLRaB+0O94NfHRepyiMgByOLSbVetW7cO69evx+eff46+ffuivLwc5eXlaG5uBgCMGjUKEydOxOLFi5GdnY2UlBRs2LABL7/8ssSVE/W8yGBPeOg1uFzbiF+MfEtGb7Dj+tO2j/GyLRF1kVMFvb/97W8wmUyYPn06AgMDbVN6erptna1bt8LDwwOxsbFITEzEq6++yqFVyCkplQpMGOQLANh9uqKTtam7VdU34VjxFaiUCswYyWFViKhrZHHptqtKSko6XScgIAApKSndXwyRA5g61A87cy5iz5kKvDg5XOpynNq3OZdgFQIPhvugr5tW6nKIyEE41Rk9IrozkyN8oVQA2eevoq7R3Pk3ULfZcf3dtnzlGRHdCQY9IrotT70Ww/t5osUq8BOHWZHMpRoTskuvQqtSImG4v9TlEJEDYdAjog5NiWi9Ty+V9+lJJiXrIgSACYN94e7C4ZyIqOsY9IioQ1OHtZ5BujHMCvW8lKwbl235tC0R3RkGPSLq0PCgPvBy06KyvglnyuukLsfpnKu6hrxLtXDVqPDwMF62JaI7w6BHRB1SKBSYMPjG5dvLElfjfJJPtI6dF3efH1w0KomrISJHw6BHRJ2aNtQPALDnDO/T62nf5FwCAMwZw6dtiejOMegRUacmRvhCqVAgt6wGNSYOs9JT8svrUGysh8FFjYnXz6oSEd0JBj0i6lQfFw0iQzxhFQJpZ41Sl+M0kq+/8mzasABo1TxcE9Gd45GDiLpkyn3XX4eWx/v0eoIQAt9mtz5t+xiftiWiu8SgR0RdcmOYlZ/OVsJq5TAr3S3zfDUuVpvg5abFg+E+UpdDRA6KQY+IuiTC3x2+7jpcbWjGqYu1Upcje9t+LgMAzBgVCJVSIXE1ROSoGPSIqEsUCoXtgYBUXr7tVi0WK344WQ4AmHt/sMTVEJEjY9Ajoi6bdv09qz/mcZiV7nSwoBLVDc0I8dJjZD8PqcshIgfGoEdEXTZhkA/UKgXyLtagsr5J6nJk68Zl29mj+0Gh4GVbIrp7DHpE1GVuOjXGhnpBANjDs3rdoqG5BXuvD0z9+P0cJJmI7g2DHhHdkWnXn779n1O8T687/M+py2g0WzC8nwcGeLtJXQ4ROTgGPSK6IzeC3uFfKtHUYpG4GvnZerwUADAnimfziOjeMegR0R0J7qvHQF8DTGYLjhRVSV2OrJReacDRoipoVEr8ju+2JSI7YNAjojsWP7T1rN6uk7x8a0+bj56HAPDwMH946rVSl0NEMsCgR0R37DfD/AAA+/ONEIJvybCHFosV268/bfv0uP4SV0NEcsGgR0R3bHT/vvDQa3CpxoSCinqpy5GFPWcqUFXfhBAvPcYN9Ja6HCKSCQY9IrpjKqUCk4a0ntX7LueSxNXIwxdHzgMA5seEcOw8IrIbBj0iuiszRwUAAHadKpe4Esd3qcaE9EIj1EoF5o8NkbocIpIRBj0iuisPDfaFq0aFs+V1KL3SIHU5Dm3L0fOwCiDuPn94G3RSl0NEMsKgR0R3xUWjwoQhvgCA73J5+fZuWawCX2W0PoTxVCwfwiAi+2LQI6K7NnNkIADg+1xevr1bB85WoKK2EYGerpgQ7iN1OUQkMwx6RHTX4of6QaNS4mRZNSpqG6UuxyF9mn4OADB/bAiUSj6EQUT2xaBHRHfNTafGuHBvCADfn+RZvTt1ruoaDp41Qq1S4EmOnUdE3YBBj4juycxRrZdvd/I+vTuW9FMxBIDpIwLhw4cwiKgbMOgR0T2ZNswfKqUCP5dcRXVDs9TlOIxrTS34+vqbMBY/FCZxNUQkVwx6RHRPPPVa3D/AC1YhOKbeHdiaUYqGZgtGBXtiVLCn1OUQkUwx6BHRPbtx+Tb5xEWJK3EMZosVf08rAgA8z7N5RNSNGPSI6J7NigyCWqVARkkVLvPp204ln7iA8ppGhHjpMeP6EDVERN2BQY+I7pmHXoMJg3xhFcC/Mi9IXU6vZrEKfLivEADwv+MGQcUhVYioGzHoEZFdPHF/MADg6xMMeh35LucSSq80IMDDBXPG9JO6HCKSOQY9IrKLKUP9YNCpUXC5Dmcv10ldTq8khMBf97aezfvDpHBoVDwEE1H34lGGiOzCRaPCtOEBAICtx8skrqZ3Sj19GYUVdfA26DAvOkTqcojICTDoEZHdzI9uvXybfKIMZotV4mp6F4tVYN2ufADAkolhcNGoJK6IiJwBgx4R2U10qBcGeLvhakMzUk9dlrqcXiX5xAUUGevh5+6ChbGhUpdDRE6CQY+I7EahUODJB1rf2frZkXMSV9N7NJoteGd369m8P00bwrN5RNRjGPSIyK6eGBsMjUqJo0VVKL3SIHU5vcL7ewpRUduIMF8DHr/+dDIRUU9g0CMiu/LUa20PZXx+mGf1Ci/XYWPaLwCAtx8bwXHziKhHMegRkd0tjG29fLv95zI0tzjvQxmNZgte/DITLVaBOWOCMW6gt9QlEZGTYdAjIruLDvVCmE/rQxnfZDvn+2+FEPiP7Tk4e7kOQZ6uWPXIMKlLIiInxKBHRHanUCiw+KGBAICP0ooghJC4op7394NF+Db7IrRqJZKevh8eeo3UJRGRE2LQI6JuMWdMP3joNSi4XIfDRVVSl9OjdmRewLrvzwAA1s0ZhWFBHhJXRETOymmD3h//+EcoFAokJSW1mV9eXo7Zs2dDr9cjMDAQa9eulahCIsfmolFhwQMDAAD/vb9I4mp6zsECI17Zlg0B4JWECL7PlogkpZa6ACns3bsX+/fvR2Bg4C3L5s2bByEE0tPTUVxcjKeffhoBAQF49tlnJaiUyLEtGh+Kv6cV4acCIwov12GQv7vUJXWrkxdqsOSLn9FiFVgwbgBemhwudUlE5OSc7oxeTU0NFi9ejE2bNkGr1bZZlpOTg7S0NCQlJWH06NF47LHHsGzZMnzwwQcSVUvk2HwMOsyMDAIAbNhTKHE13auksh5Pf3IMpmYLpg0PwJuzhkOh4FAqRCQtpwt6S5cuxYIFCzBmzJhblh07dgzBwcEYMmSIbV58fDxyc3NhMpna3Z7ZbIbJZGozEdG/LXt4MFRKBX7IvYjCijqpy+kWJZX1mPvREVy51oyxoV746/8aDSXHyyOiXsCpgl5ycjJyc3OxcuXKdpdXVFTAz8+vzTxfX19YrVZUVla2+z1r1qyBXq+3Td7eHCeL6GYhXnrMjuoHqwD+klogdTl2d67qGp74+1EY65oQGeKJzxZFQ6fmK86IqHeQRdB74YUXoFAobjtNnjwZRqMRS5cuxWeffQaNpv1hDu5mCIjXX38dDQ0NtqmqyrmeLiTqiuVTh0CtVGBX7iXkllVLXY7dZJ6/ikf/XzoqahsxMtgDW55/AG46p7z1mYh6KYWQwQBX1dXVqK+vv+1ynU6HU6dOIS4uDirVv//StlgsUCqViI2NxU8//YSkpCSsXr0apaWltnUOHDiAKVOmoL6+Hq6urp3WYjKZoNfr0dDQ0KX1iZzFqm9O4bP0Egzv54FvXxrv0Jc2a0xm/O1AETam/YIWq0BMmDc+Xng/3F04Vh4R9Yyu5g1Z/Onp6ekJT0/PDteJjo5Gbm5um3kJCQlITEzEggULAAAxMTEoKytDQUEBBg8eDKD1Cd2RI0cytBHdo1emDcG32Rdx6kINvjxWigXj+ktdEgDAahWoa2xBbaMZNSYzak1mmMwWNLdY0djS+l+T2QqT2YKGJgsKKupxIL8CJrMFADA/pj/+69Hh0KhkcYGEiGRGFkGvK9zc3DBixIg28zQaDYKCgjBwYOsI/qNGjcLEiROxePFivP/++ygpKcGGDRvw3nvvSVAxkby4u2iwcsYwLP8qC2u/P41JQ7wR4uXWY/sXQqDqWjOKK6+hsKIeOWU1OHmhFmcv16LpLt7HGx3mheUPD0ZsuE83VEtEZB9OE/S6auvWrUhMTERsbCz69OmDV199lWPoEdnJY1FB+Cb7IvbnV2DpP7Lx9R9ioerGS7hWq8DBQiO2/XwBB88aUWMyt7uem04Ng04Ndxc1DDoNXLUqaNVKaFVKaNVK6NRK6LUquGpV8HPXIf4+Pwz0NXRb3URE9iKLe/R6E96jR9SxK9ea8fD/PYAr15qROCkc/2f6fXbfR6PZgq9/voCPDhbhfNU123y9VoX+3m4Y4O2GYQHuiOrvgZH9PNHXTdvB1oiIeh+nukePiByHl5sW780bjWc2HcNHB37B0AB3zI6yz2vCrlxrxqZDJfjiyDlUNzQDAHzddZg7NgS/G9MPA33cOIgxETkVBj0i6nETh/jitelDsfb7PPzn9hz4GHSYMPju7nUTQuDkhRpsPlqKHZlltvvtBvu74w+TBmJmZBAflCAip8VLt3bGS7dEXSOEwH9sz8H2n8ugVSnxztxReHR018/sFVbU4+sTF/BdzkWUXmmwzX9wkA9enDwQ48N9ePaOiGSrq3mDQc/OGPSIus5qFfjPr1vDHgBMGOyLlyYPRHSoF9TtnIU7X9WAlOwL+CbrEgpuep2ap16LhOEBeHb8AEQE9Omx+omIpMKgJxEGPaI7I4TAZ4fP4e3v82yXXd1dNBgW1Aeh3m7Qa1WobmhGZmk1Sir//WCFm06N+KH++N2YIIwP92k3GBIRyRWDnkQY9IjujrGuCRsPFmNn7kVcuGpqdx29VoUJg30xJ6of4u7z5TtlichpMehJhEGP6N4IIVB6xYS88lqUVF2DqdmKPq5qDA1wx/0DvKBV88wdERGHVyEih6RQKNDfW4/+3nqpSyEicnj805iIiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGSKQY+IiIhIphj0iIiIiGRKLXUBciOEAACYTCaJKyEiIiK5upEzbuSO22HQs7O6ujoAgLe3t8SVEBERkdw1NjZCr9ffdjmDnp0ZDAYAQGVlZYcfvByZTCZ4e3ujqqoKrq6uUpfT45y5f2fuHWD/zty/M/cOOHf/UvcuhEBjYyM8PT07XI9Bz86UytbbHvV6vdP90t/g6urqtL0Dzt2/M/cOsH9n7t+Zewecu38pe+/KCSU+jEFEREQkUwx6RERERDLFoGdnarUaq1atglrtfFfFnbl3wLn7d+beAfbvzP07c++Ac/fvKL0rRGfP5RIRERGRQ+IZPSIiIiKZYtAjIiIikikGPSIiIiKZYtAjIiIikikGPTtbt24dgoKCoNfrMWvWLJSXl0tdkt2tXbsWY8aMgcFgQGBgIBYtWgSj0dhmnbNnzyIuLg6urq4IDQ3FJ598IlG13Wv27NlQKBT48ccfbfOcofcTJ04gPj4eer0effv2xRNPPGFbJuf+q6ur8dxzzyEgIAAGgwEPPvgg0tLSbMvl1HtycjLi4+Ph4eEBhUKBlpaWNsu70qsjHw876j8rKwtPPPEEgoKC4ObmhqioKGzfvv2WbThq/5397G/IyMiARqPBhAkTblnmqL0Dnfff0tKCVatWoX///tDpdBgyZAhSU1PbrNOb+mfQs6NNmzbhrbfewocffoj09HTU1tZi3rx5Updldz/99BOWL1+OjIwMpKSk4PTp0236NJvNmDFjBnx8fHD8+HG88cYbSExMxJ49eySs2v42bdpke6n0Dc7Qe15eHqZMmYIJEybg+PHjSE9Px/z58wHIv//ly5fj+PHj2LFjB7KzsxETE4NHHnkEV69elV3vDQ0NmDJlCl577bVblnWlV0c/HnbUf2ZmJoKDg7F161bk5uZi0aJFmD9/Pvbv329bx5H776j3G0wmExYuXIjJkyffssyRewc67z8xMRH/+te/kJSUhPz8fCQlJSEwMNC2vNf1L8huoqKixIoVK2xf//LLLwKAyMzMlK6oHpCeni4AiOrqaiGEECkpKUKn04na2lrbOk899ZR49NFHJarQ/kpKSkRISIgoLS0VAERqaqoQwjl6nzNnjnjmmWfaXSb3/ocNGyY2bNhg+7q2tlYAEIcPH5Zt7/v27RMAhNlsts3rSq9yOR621397pk2bJpYtW2b7Wg79d9T70qVLxfLly8WqVavE+PHj2yyTQ+9CtN9/Tk6OUKvVorCw8Lbf19v65xk9O2lqakJ2djamTJlimzdw4ECEhobi6NGjElbW/SorK+Hi4gI3NzcAwLFjxxAdHQ13d3fbOvHx8bL5HKxWKxYuXIjVq1cjODi4zTK5926xWLBr1y6EhYVh8uTJ8Pf3x9SpU5GTkwNA/v3HxsYiJSUFlZWVsFgs+OSTTxAUFIQRI0bIvvebddarMx4PKysr4eXlBUD+/e/ZswepqalYs2bNLcvk3vvOnTsRHh6Or776CiEhIYiIiMDq1athsVgA9M7+e/dwzg6kqqoKVqsVfn5+beb7+vqioqJCoqq6X1NTE958800sXLjQNjp4RUVFu5/Dr+/jc1QbNmyAwWDAokWLblkm996NRiMaGhrwzjvv4N1330V0dDQ+/PBDxMfHo7CwUPb9//Wvf8XTTz8NX19fqFQq+Pj4YNeuXTAYDLLv/Wad9epsx8Ovv/4aeXl5tvv05Nx/TU0Nnn/+efzjH/+Ai4vLLcvl3DsAlJSUoLi4GLt378b27dtx8eJFJCYmQqPRYMWKFb2yfwY9OxFO+IIRi8WCBQsWAADeffdd23w5fxZ5eXn4y1/+goyMjHaXy7l3oPVsJgA8/vjjSExMBAB89NFH+O677/DNN9/Ivv/3338fBQUFSE1Nhbe3Nz7//HPMmjULmZmZsu/9Zp316kyfRXp6OhYtWoSkpCSEhYUBkHf/L7/8MubNm4dx48a1u1zOvQOtx8Dm5mZ8+umnGDBgAADg/Pnz+OCDD7BixYpe2T+Dnp34+PhAqVTektiNRuMtyV4OrFYrnnnmGZw5cwYHDhyAwWCwLfP398eZM2farG80GuHr69vTZdrd0aNHUV5ejv79+7eZn5CQgPnz5yMsLEy2vQOtv+cqlQoRERG2eRqNBgMHDkRpaamsf/Ymkwl//vOf8eOPP2LixIkAgKioKOzcuRNffvmlrHv/tc56dZbj4fHjx/Hb3/4W77zzDn7/+9/b5su5/wMHDqCsrMz2x73VaoUQAmq1GqdOnUJoaKhsewdaf/d1Op0t5AFAREQEysrKAPTOnz3v0bMTnU6HyMhI7Nu3zzavuLgYJSUleOCBBySszP6EEHj++edx5MgRpKam2u5LuSEmJgYZGRmor6+3zdu7d68sPofZs2cjJycHWVlZtgloPau1fv16WfcOAFqtFlFRUSgsLLTNa2lpQUlJCfr37y/r/s1mM8xmM1QqVZv5SqUSVqtV1r3/Wme9OsPxMDMzEwkJCVi5cqXt7PYNcu5/9+7dbY5/L7zwAqKiopCVlYWwsDBZ9w4A48aNQ1NTky3YAUBhYSFCQkIA9NKfvSSPgMjUxx9/LAwGg0hOThZZWVkiLi5OPPTQQ1KXZXdLliwRPj4+4ujRo+LSpUu2qaWlRQghRFNTkwgPDxdz584VJ0+eFB9//LHQaDTixx9/lLjy7oGbnrp1ht63bNkiXFxcxObNm0V+fr546aWXhL+/v6ipqZF9/+PHjxcxMTHiyJEjoqCgQLz++utCq9WK06dPy673qqoqkZmZKTZu3CgAiIyMDJGZmSnq6uq61KujHw876j83N1d4e3uLF198sc0x8MbIA0I4dv8d9f5r7T1168i9C9Fx/2azWQwdOlT85je/ESdPnhSpqakiKChIrF+/3vb9va1/Bj07W7t2rQgICBAuLi7ikUceEZcuXZK6JLsD0O5UXFxsW+fMmTNi0qRJQqfTif79+4ukpCTpCu5mNwc9IZyj9/fee0+EhIQIg8EgJk+eLHJzc23L5Nx/WVmZmD9/vvDz8xNubm5i7NixYufOnbblcup906ZN7f5/vm/fPiFE13p15ONhR/2vWrWq3WULFy5ssw1H7b+zn/3N2gt6Qjhu70J03n9RUZFISEgQrq6uYsCAAWL16tW2Ex039Kb+FUL0wjsHiYiIiOie8R49IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IiIiIpli0CMiIiKSKQY9IqJOhIaGIikpqcf3e+3aNQQHB6O4uLhbtr9lyxZMnz69W7ZNRL0D34xBRE5NoVB0uHzfvn0YPnw4DAYDXF1de6iqVuvWrcOpU6fwxRdfdMv2LRYLBg0ahC+++AITJkzoln0QkbQY9IjIqZWXl9v+vX79ehw9ehTJycm2eV5eXtBqtT1elxACYWFh2LhxI6ZOndpt+1mxYgXOnTuHLVu2dNs+iEg6vHRLRE4tICDANrm5uUGr1baZp9Vq21y6LSkpgUKhQHJyMsaOHQtXV1c8/PDDqKqqwrZt2xAeHo6+ffti2bJluPnvaKPRiCeffBKenp7w8fHBk08+iaqqqtvWdezYMVRUVCAuLs4279NPP0VwcDD++c9/IiwsDAaDAUuXLoXFYsEbb7wBb29vBAcHY/Pmzbbvqaqqwty5c+Hl5QU3NzdERkbi8OHDtuUzZszAjh07YDab7fmxElEvoZa6ACIiR/Tmm2/i/fffh4eHB+bOnYu5c+fC3d0dKSkpOHfuHObMmYMpU6Zg5syZAIDHH38cwcHBOHjwIBQKBV599VUsWLAAP/zwQ7vbP3ToEEaOHAm1uu1huqqqCl9++SW+/fZb237y8/MRHR2Nw4cPY9u2bVi8eDESEhLg6+uLN954A3V1dUhLS4Orqyuys7PbnKEcM2YMGhsbkZWVhejo6O77wIhIEgx6RER3YcWKFZg0aRIA4LnnnsOKFStQXl4OPz8/jBgxAnFxcdi/fz9mzpyJtLQ05OfnY8+ePbbgtnHjRvTr1w9lZWUIDg6+Zfvnzp1DYGDgLfObmpqwceNG+Pv72/ZTVlaGNWvWAABee+01vP322zhy5AhmzpyJ0tJSjB8/HiNGjAAAhIeHt9meq6srPDw8cO7cOQY9Ihli0CMiugsjR460/dvf3x++vr7w8/NrM89oNAIAcnNzYTQa4enpect2ioqK2g16jY2N0Ol0t8z39fWFv79/m/14eHjYvlapVPD29rbte/HixZg3bx52796NqVOnYt68eYiIiGizTVdXV5hMpi52TkSOhPfoERHdBY1GY/u3QqFo8/WNeVarFQBQX1+PQYMGISsrq81UUFBw27No3t7eqK6u7nC/Xdn3rFmzUFRUhKeeegonTpzAqFGjsHXr1jbrX716FT4+Pl1rnIgcCoMeEVE3i4yMxPnz59GnTx8MGjSozXS7IVsiIyNx5swZu+w/MDAQS5YswY4dO/Dcc8/hs88+sy0rLi6GyWRCZGSkXfZFRL0Lgx4RUTebNm0aRo4ciTlz5uDgwYMoKipCamoqlixZctvviYuLw8WLF1FWVnZP+161ahW+++47FBUVISMjA4cOHWpz6fbQoUMYOnQogoKC7mk/RNQ7MegREXUzpVKJXbt2ISIiAnPmzMHw4cOxdOnSdu/Zu8HPzw/Tp0/Htm3b7mnfarUar7zyCoYNG4YZM2YgJiYGb731lm35tm3bsGjRonvaBxH1XhwwmYiolzp8+DAWLlyIvLw8qFQqu2+/uLgYsbGxyM/Pb/NABxHJB8/oERH1UrGxsVi2bBkuXLjQLdu/cOECPv74Y4Y8IhnjGT0iIiIimeIZPSIiIiKZYtAjIiIikikGPSIiIiKZYtAjIiIikikGPSIiIiKZYtAjIiIikikGPSIiIiKZYtAjIiIikqn/D3il64XOhsOmAAAAAElFTkSuQmCC", + "text/plain": "
" + }, + "metadata": {}, + "output_type": "display_data" + } + ], "tabbable": null, - "tooltip": null, - "value": 26.61 + "tooltip": null } }, - "0dece52c70c548e49105cadbd3029161": { + "1125faa6968b47a29468d31d8c7d311a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -1610,7 +1726,7 @@ "description_width": "150px" } }, - "0df9d27f9bed4558b221978522cc6e9e": { + "12976c82898e4584b6768fcb53c48a27": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1663,7 +1779,7 @@ "width": null } }, - "0e0d490faf3042ff8716af5f26755fae": { + "12ccb1c369de4c88b76159e472faf9b5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", @@ -1681,45 +1797,53 @@ "text_color": null } }, - "0e0dabe9dfaa42039437a9b6211f5c55": { + "12d45e9c02d74a9b85a0a14b07060011": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "ButtonModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "ButtonModel", "_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_9916ba647c654e2ca47049ed8858cde6", - "placeholder": "​", - "style": "IPY_MODEL_8cd3f61db63f40179c0859c4f1cb0106", + "_view_name": "ButtonView", + "button_style": "danger", + "description": "Close Figure 1", + "disabled": false, + "icon": "close", + "layout": "IPY_MODEL_c30e98a180244542b87ba9e4fbd189c4", + "style": "IPY_MODEL_9d052936cd1b438f8af17e39a903e3aa", "tabbable": null, - "tooltip": null, - "value": "NMDA weights" + "tooltip": null } }, - "0ec905da69e54731939196df80337598": { + "12edb3910c494622b1155753084661db": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_8de0ded4d1d94d85b9f1266ec324284a", + "placeholder": "​", + "style": "IPY_MODEL_8702842997f94886b3134acfe43eab78", + "tabbable": null, + "tooltip": null, + "value": "
" } }, - "0ef3f6afd95644d48d43fcf488f37512": { + "13159c9bc5974818a5d70cb0107ad623": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1732,16 +1856,16 @@ "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, - "align_items": null, + "align_items": "stretch", "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, - "display": null, + "display": "flex", "flex": null, - "flex_flow": null, + "flex_flow": "column", "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, @@ -1772,47 +1896,62 @@ "width": null } }, - "0f0555cafeaa401fb41e8f110d65483f": { + "13b3c9df1e3b4b36a18725a545c5c7bc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "VBoxModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "200px" + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_7c284facd5c946ca9936d927f1bfa2f8", + "IPY_MODEL_1c790a1535284b5f8f12b139d76fa2ee", + "IPY_MODEL_fc1a904156324d9689656f166bf85a8e", + "IPY_MODEL_5a7acd8e77a24e12a904bab5a8ba0d05", + "IPY_MODEL_a3afb76b34e64531a62aa68fb41e9a0b", + "IPY_MODEL_e5f0940f102a45a78dc9a36da0d8e68b", + "IPY_MODEL_4a221d63422d4e7ba6660d8805ed4d5f", + "IPY_MODEL_53e36f72136c43cab86d59dfe8b53f10", + "IPY_MODEL_5ee2bceb68b14ab69f51b065f1119e44", + "IPY_MODEL_dbe752b2f08f4f3d8df4c1f8d31cd094", + "IPY_MODEL_2892fe8e28f44557b48e0ec81df69aed", + "IPY_MODEL_c86a5928fdd4487e8ae349254b3635bb", + "IPY_MODEL_4fe8ef76b93a4f55a9d3059ea14d8b10", + "IPY_MODEL_0d6e80660c27477f96a17292fc098bfc", + "IPY_MODEL_422654b8e24149999e9ef11cd2477bb3", + "IPY_MODEL_cc51de7920cd42a08e219771ca16f8a3", + "IPY_MODEL_5a5319ef8df44bc0ae672f3826fee5c3", + "IPY_MODEL_fdda10c0eb98460788d2a6a8f3a4d1a7", + "IPY_MODEL_1f80bb5efe934882aaa6c70008758577" + ], + "layout": "IPY_MODEL_6a2668c9df554439b136545298633582", + "tabbable": null, + "tooltip": null } }, - "0faa975ef2334e719d31afb62af20b14": { + "13cdf66c952d439a897a9b383b3c52a6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "TextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "TextView", - "continuous_update": true, - "description": "Name:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_7d1bd1fdd8044699b1e52d209b7158d5", - "placeholder": "ID of your simulation", - "style": "IPY_MODEL_01c207a1821241a8bae9ae3940b4801b", - "tabbable": null, - "tooltip": null, - "value": "default" + "_view_name": "StyleView", + "description_width": "150px" } }, - "10fbf403c6014984a5aa31a45b7faf13": { + "140259cb2a77413299cdd5b5a22c2482": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1865,32 +2004,22 @@ "width": null } }, - "12386a520e6d4074bbfa8d71ec1e0959": { + "14750414e2f64229a8d9fcd7252fb0c8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_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_3efc2592b9ee4f5187ca865c0208fc3a", - "step": null, - "style": "IPY_MODEL_bc91fb3e508a45f6bfeff82fec595a13", - "tabbable": null, - "tooltip": null, - "value": 1.0 + "_view_name": "StyleView", + "description_width": "150px" } }, - "1273d8ad076d4516881eddf6f8891a66": { + "169637c51cba4af181ee6e19da4c9414": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -1943,56 +2072,55 @@ "width": null } }, - "12c2cb74c4b04373be195f82d4242143": { + "178ca1773b784c06840cdf445b652837": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "GridBoxModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "GridBoxModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "GridBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_e8b16721b9ef40a9bf76450ea2976c02", - "IPY_MODEL_591a980ae3e24c87bebea945d87d8e9b", - "IPY_MODEL_e2cee9c5d678462caf6e6ceb82bb8195", - "IPY_MODEL_cc58fc683e6d4d02bfa2a4d6a6249b7b" - ], - "layout": "IPY_MODEL_1759de3ea5824099bc1268fb45143dca", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "131592e2aaa944178d332b42f0188136": { + "17a2dcf027f34216a2491d8a23530d5a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_e49cb1e8f3e94e5eb2e5ce1a66143951", - "IPY_MODEL_f8831c9b239b4ec09db5b9677bb82a31", - "IPY_MODEL_22211fd14fd64505baebb4e7871a4968" - ], - "layout": "IPY_MODEL_ae53877acaec4896899d6dfc0c26c17e", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "description_width": "150px" + } + }, + "17ba21e66a2446f0816024b587ca8bfc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" } }, - "13700f790d38421094e17e80b2800df8": { + "18df4ba9dda8469882a0cb91610e7b77": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2045,7 +2173,7 @@ "width": null } }, - "13c74b90d7da4b90946708f609e4acee": { + "1904bf8b79084549a461ff0421d87820": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2098,7 +2226,90 @@ "width": null } }, - "14249fee7c5942169bf79978ec3810fd": { + "19100fa84afd43aa871facaffd4a9ced": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "1926221971404e3b8ddb01e30d753036": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_cda1491853da44ceb7f3179388a5be19", + "IPY_MODEL_d84509d6845f474287daca2e4f4e3d10" + ], + "layout": "IPY_MODEL_4f093ad0e9c143f1977cb75c4da0be31", + "tabbable": null, + "tooltip": null + } + }, + "1997ba458875474981784273a13e4a4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" + } + }, + "1a4db50ec649456a9e535d41e6e9a800": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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" + } + }, + "1b35669e88984785bbdf31b506b48ae6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "1bc97f7a701f490b885485df294f7e47": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2151,7 +2362,7 @@ "width": null } }, - "142d0d55c0ab49c6a3c24ca22ac82dbf": { + "1bf07f551748407aa62108784bba7eea": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2204,7 +2415,7 @@ "width": null } }, - "15425fb34d2e4f7089e1d76c3c108107": { + "1c05cf27fe4a4a07b85a6050a8729db4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", @@ -2222,7 +2433,61 @@ "text_color": null } }, - "157d6c32d7e44b579333d5e6d2bd83fc": { + "1c790a1535284b5f8f12b139d76fa2ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_01badc689bcc4d0aa569514a23085550", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_ba1dfd0a3cbf433fa9c874d3f22af55b", + "tabbable": null, + "tooltip": null, + "value": 2.47 + } + }, + "1c98964986a949e4959200e4dd910a41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_c8116b0694c344f6a4bc3a54209ec592", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_bc6adcbe20b74cb2919ad3c29067d8e4", + "tabbable": null, + "tooltip": null, + "value": 0.025 + } + }, + "1d52cb7c4e7a4279957fef429ae8fe31": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -2237,14 +2502,16 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_f61ab6226f894ad2a57cdb32c2c4b8eb" + "IPY_MODEL_7282b30b1f9f48ebbd8e8f29372b4965", + "IPY_MODEL_1c98964986a949e4959200e4dd910a41", + "IPY_MODEL_c1c8bc55e82049e4b078b33dc760822f" ], - "layout": "IPY_MODEL_525fe8bc755e4b6d83cf37159063df3a", + "layout": "IPY_MODEL_445ec6c2b56844a1aef383fb6e6aafbf", "tabbable": null, "tooltip": null } }, - "15a7ac39c8f84127b6a6e46614354776": { + "1dba24a209a8403bbd33fcaf7f64aff8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2297,22 +2564,7 @@ "width": null } }, - "16273fb253a44fefbc824381b2108ed3": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" - } - }, - "1633c39d63854ee4a1530b8a18e44333": { + "1ddadd0983de44a9ab27dbd5c52c1ed9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2365,36 +2617,27 @@ "width": null } }, - "16f8a2c4a4ee4d26898bf8d20229c6af": { + "1e255ffd8ee74a7383972ddfcc786d2b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L5_pyramidal:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_75ab4fe4ac214078ab3479e9315b8760", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_a7f1f7e7caa04214b57ff7a40fd8c53f", - "tabbable": null, - "tooltip": null, - "value": 0.080074 - } - }, - "1759de3ea5824099bc1268fb45143dca": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "1e33d8a55d7a49179b93dce343a8f128": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", @@ -2422,9 +2665,9 @@ "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", + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, @@ -2445,7 +2688,7 @@ "width": null } }, - "17a4365ced0d479d92b872706b41e8b4": { + "1e72d365676648eb8234e14ef2ec264a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -2460,63 +2703,105 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_e1c9d01b2a0d437e8eb7c42638010d2f", + "layout": "IPY_MODEL_cbff6aba46be472fa6882e37e415c083", "placeholder": "​", - "style": "IPY_MODEL_35e3bfec5c6c45e482715abec2e68ded", + "style": "IPY_MODEL_ab439fc71d544641a1bde42f64c4e6e3", "tabbable": null, "tooltip": null, - "value": "

\n Receptor: ampa

" + "value": "
" } }, - "17a49984b91841388cecaace3c1e9498": { + "1f316e757662491391eff798219237db": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DropdownModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_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": "HTMLView", - "description": "", + "_view_name": "DropdownView", + "description": "Spectrogram Colormap:", "description_allow_html": false, - "layout": "IPY_MODEL_433695bc5fc24d9baef39bd55df0b286", - "placeholder": "​", - "style": "IPY_MODEL_5b3a67a867a94cf89c447586459fa2f2", + "disabled": false, + "index": 0, + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "style": "IPY_MODEL_78b337aa9ec745259d328b9b8eb309c8", "tabbable": null, - "tooltip": null, - "value": "Synaptic delays" + "tooltip": null } }, - "180072daaff54551bda3cecf2db432c6": { + "1f80bb5efe934882aaa6c70008758577": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "BoundedFloatTextModel", "_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": "L2_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_bfb2851bfa404357b511fe0f3b623ae8", - "step": null, - "style": "IPY_MODEL_22fbd67cc4134fd9a601e3b505badd9e", + "layout": "IPY_MODEL_054a8f6428ea45a29cd5bc0b41c1099c", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_d0f7e3ec476d4a7fa71dbf4d34c022af", "tabbable": null, "tooltip": null, - "value": 100.0 + "value": 0.1 + } + }, + "209ffddd0e1c4459956e6e47bb1ed6dc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DropdownModel", + "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_56207e5e5f03461680727dbd61ed43e7", + "style": "IPY_MODEL_1a4db50ec649456a9e535d41e6e9a800", + "tabbable": null, + "tooltip": null } }, - "180ee6b2a3734bd394ae952fac05e7c7": { + "20eb33b811754f30bebbc4d3d559e430": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -2531,15 +2816,40 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_3e99e78cfd834059a69703fbb8a50162", + "layout": "IPY_MODEL_badda086a1944688ad0cb98940aec1a1", "placeholder": "​", - "style": "IPY_MODEL_a4d3b085682545c7a924a39a7d311e08", + "style": "IPY_MODEL_5e48c0b1196a4a07803b5969960bdc82", "tabbable": null, "tooltip": null, - "value": "
" + "value": "

\n Receptor: gabaa

" + } + }, + "2197b9ec6efe4e7b80844efd83bd2a68": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatTextModel", + "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_9a0a4248bc9d4bb69df2681300ebdd2e", + "step": null, + "style": "IPY_MODEL_fe585abb046b43b393bf7c62c5061ce0", + "tabbable": null, + "tooltip": null, + "value": 30.0 } }, - "1850b468809e4b5c9fcbf9a4a933ff3c": { + "2231462353094145ad39419c8c6c9333": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2562,7 +2872,7 @@ "display": null, "flex": null, "flex_flow": null, - "grid_area": "header", + "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -2592,7 +2902,7 @@ "width": null } }, - "189d7f9a003a4ba7b09ddfa02ea7c37c": { + "24d1e6db2130427fb6db64195e98b196": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -2606,96 +2916,137 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "Std dev time:", + "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_fbc767434c8b4122b5a32ba140842f7b", + "layout": "IPY_MODEL_7ab042dc81f942a99227cb6cd0aa8a9d", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_f6d2d73bc49e465ead35284fc76f6073", + "style": "IPY_MODEL_985d6814251945ebacc14ac2506b2caa", "tabbable": null, "tooltip": null, - "value": 2.47 + "value": 1.43884 } }, - "18b208e8605b48f1a787bcb210c3b491": { + "24f98c7e298d46b08f4713072ff2d6be": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "FloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Data Smooth Window (ms):", "description_allow_html": false, - "layout": "IPY_MODEL_24ce3ae1acd7476baa5c824152397336", - "placeholder": "​", - "style": "IPY_MODEL_00c7def1a39c4048abb660c10229b82c", + "disabled": false, + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "step": null, + "style": "IPY_MODEL_b6a7b854396d4315b8aa764a37b781c6", "tabbable": null, "tooltip": null, - "value": "NMDA weights" + "value": 0.0 } }, - "19087d70289841f19f7ade22877eac13": { - "model_module": "@jupyter-widgets/base", + "254ea3a3c9de43b7a1597b44dee917b5": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "ButtonModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_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_6b50d38d5ccc47d0b83c11622a059c29", + "style": "IPY_MODEL_10e1ad842b6741409a753d5052871eaa", + "tabbable": null, + "tooltip": null + } + }, + "25f050b7dc444741b763cda4dcc346cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DropdownModel", + "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_bd92d9fe56da418a834b30d868afd7ed", + "style": "IPY_MODEL_f98fa7a24d5a4cdfba6156521cec81b5", + "tabbable": null, + "tooltip": null + } + }, + "26dd3ece96a34d12a5467d5d16e53746": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_5d3f67f9ad494198915ab06762f9fff5", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_2fbb4743ef6c4ebcb1b64c1344ef6605", + "tabbable": null, + "tooltip": null, + "value": 0.0 + } + }, + "27fc65f330584fe3b40ffb585ac0b896": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "19336f30d3a540f68e9a4b1e00750e45": { + "28117b49420e4436bfc7cf77fe6b0f9c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2748,23 +3099,103 @@ "width": null } }, - "197d6c35660a40949fd48d043ac51439": { - "model_module": "@jupyter-widgets/base", + "2890701e085d45b1a953a71f271ea405": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DescriptionStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, + "_view_name": "StyleView", + "description_width": "150px" + } + }, + "2892fe8e28f44557b48e0ec81df69aed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_a707e81798c94cab8ce894eaad120083", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_fc45a05b185d490f8909573950375d72", + "tabbable": null, + "tooltip": null, + "value": 0.0 + } + }, + "28a98741c0c9462ab0ff0e4b74192268": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_80a3524a620245f09c3b56c62dac2d07", + "placeholder": "​", + "style": "IPY_MODEL_e68617f5730445dbbdc9ba0444375a5d", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: ampa

" + } + }, + "299e8a40ff9d42e8867ca9f4590c6807": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "2a7dfce994254a078838f2b385933566": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, "border_right": null, "border_top": null, "bottom": null, @@ -2801,30 +3232,34 @@ "width": null } }, - "1a09b6637bfa4f44a28543b0b68fc8f0": { + "2abdccdf37e2488583ab85977d6b426d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_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 + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L2_pyramidal:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_bb6e3f712ba54777abf2b31e4d6b64b6", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_e5a30df512164dbb8b0e4dfda42931b9", + "tabbable": null, + "tooltip": null, + "value": 0.1 } }, - "1a3445d9f91e4ea3b1c08f3c2edd3577": { + "2c84cc7f29c243cbbc137175803f09ab": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2877,46 +3312,7 @@ "width": null } }, - "1a622e7fe5cb4f379ef892885a7e1865": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "1ac83dfe6b814cbb85bf01f724cf8a3a": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_1e377ca80baa43aba03b0d2b7fbdb0a5", - "IPY_MODEL_6f596bf8c6f2472788c98a088d2e1035", - "IPY_MODEL_2288082671d043c689e8035afb1d9b5e" - ], - "layout": "IPY_MODEL_cb1e4af5adde43ec87f6d3ae4122f94a", - "tabbable": null, - "tooltip": null - } - }, - "1b07da4792ba4fdca44c8acdb4544f50": { + "2cc96b7210c94868bf8553db2f8fa1e2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -2969,7 +3365,7 @@ "width": null } }, - "1b892215b10644b8891c71ade591c909": { + "2cd0ef1ade6743e4ab44169122452b9a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3022,7 +3418,47 @@ "width": null } }, - "1baa4e65c34348e3875159bf392331e1": { + "2d726e9d7c814cf2920c6eae7f18c1ff": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatTextModel", + "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_9a0a4248bc9d4bb69df2681300ebdd2e", + "step": null, + "style": "IPY_MODEL_affe73717a0a495caba5a204f33b478e", + "tabbable": null, + "tooltip": null, + "value": 1.0 + } + }, + "2e5b93f41675436a833d4e0f0b87df4a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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" + } + }, + "2e8c982959a1473584be00fb361e2c56": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3055,7 +3491,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "560px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -3072,10 +3508,48 @@ "right": null, "top": null, "visibility": null, - "width": "576px" + "width": null + } + }, + "2e9bfc351be9402fb9696fd2e7ac6fc0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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" + } + }, + "2ecba3e8593f4a76ab3de9d3b9585532": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_7d828b20605741378f1fc0c05c3925b8", + "placeholder": "​", + "style": "IPY_MODEL_43a3fa9eebce433ba404cc6700dcb796", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: nmda

" } }, - "1bf8832739674cc4898104e6e96cbb15": { + "2ee25115b074403682d3c3dbb0497532": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "IntTextModel", @@ -3089,40 +3563,36 @@ "_view_module_version": "2.0.0", "_view_name": "IntTextView", "continuous_update": false, - "description": "No. Spikes:", + "description": "Trials:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_ccf64e54613c40c3b782ab2b879ccc16", + "layout": "IPY_MODEL_140259cb2a77413299cdd5b5a22c2482", "step": 1, - "style": "IPY_MODEL_dd19c448de4d4d179d1e715bbbc7fe81", + "style": "IPY_MODEL_067d3bde0fa9475cbc5e0266d84ca4a9", "tabbable": null, "tooltip": null, "value": 1 } }, - "1c68ed7b27ca4386b844a7dec10875bc": { + "2f37b2c735d84d438db39a194bc5024d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "button_color": "#8A2BE2", - "font_family": null, + "background": null, + "description_width": "", "font_size": null, - "font_style": null, - "font_variant": null, - "font_weight": null, - "text_color": null, - "text_decoration": null + "text_color": null } }, - "1c9aa97416264004a808e119ca398749": { + "2f5bd1cff63541b9b4464c643fac3033": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -3134,25 +3604,28 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "200px" } }, - "1ccaf2574e3144b0bf8d541bae04e7fa": { + "2f5bd995c1634c66a0177a583012e7d8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "1ccc7d1803024021b51a1f81e3fedfc3": { + "2fa843ed9f5a4280b884f90f7b1c99de": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3205,205 +3678,96 @@ "width": null } }, - "1d2c974adf7440ccb40b790272e6eee5": { - "model_module": "@jupyter-widgets/base", + "2fbb4743ef6c4ebcb1b64c1344ef6605": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DescriptionStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "1e377ca80baa43aba03b0d2b7fbdb0a5": { + "2fc3426a744c4963b28136c5960bf834": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_1b07da4792ba4fdca44c8acdb4544f50", - "placeholder": "​", - "style": "IPY_MODEL_c0c4d2cc20f74d4caee094e2e6d2a307", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: ampa

" + "_view_name": "StyleView", + "description_width": "150px" } }, - "1eaf82c4f6544ce8afa108049765f3ee": { + "2feec8d38f0e40499182a4272e847fd2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L5_basket:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_7d5af0fdcd2c4c0a8c18a8cafb38435a", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_9431cb91c546450888d2af86c8513496", - "tabbable": null, - "tooltip": null, - "value": 0.008958 + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "1eb64dd16a5347a2ad73b54f0408f023": { + "30234faaf48847da8decfeee1e9c81d1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "VBoxModel", "_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_ab51f08dceb44043bb0222c874f29ddd", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_0ec905da69e54731939196df80337598", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_729340defe144418bfd055d72e27effe", + "IPY_MODEL_ed6b47b8c9ea47f1b71a17fe8670e172" + ], + "layout": "IPY_MODEL_720bcc62cc1f4d138b422d4394c76bf6", "tabbable": null, - "tooltip": null, - "value": 1.0 - } - }, - "1ef0b90823f54ec6ae2e964e4affb894": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": "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 + "tooltip": null } }, - "1f4831d051a945bd90d10250282a0fbe": { + "3035e55d16d14b3383c347dfb696a4f5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "200px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "203e1c65e82940318ade96051600e6d5": { + "307f5567ee23439fb6ca6d36b696d11a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3456,7 +3820,7 @@ "width": null } }, - "2061651ee3b2452cb98374a5faa094ec": { + "30951fb4ef174511bb8334123bcf9796": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3509,30 +3873,40 @@ "width": null } }, - "20c231172fa94ad18c0148b6dbdf7efd": { + "31a55081edb34d24b54ca4992c1bcb36": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelStyleModel", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "description_width": "150px" + } + }, + "32a41f8ec3e846b6a5cba44040a254c5": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", - "font_family": null, "font_size": null, - "font_style": null, - "font_variant": null, - "font_weight": null, - "text_color": null, - "text_decoration": null + "text_color": null } }, - "20f09601402e48218f0a4db196809b7e": { + "32d2a554b4984bb5b2c1824293b3cd77": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -3546,20 +3920,43 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L5_pyramidal:", + "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_15a7ac39c8f84127b6a6e46614354776", + "layout": "IPY_MODEL_b2b593d355014dddad94bf19a53d6159", "max": 1000000.0, "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_0171ee36da2e424f9a2d76fc2d0b7d7f", + "step": 0.1, + "style": "IPY_MODEL_31a55081edb34d24b54ca4992c1bcb36", "tabbable": null, "tooltip": null, - "value": 0.1423 + "value": 0.1 + } + }, + "32e27ffe7c3d4e2498ad26cd53007982": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_1d52cb7c4e7a4279957fef429ae8fe31", + "IPY_MODEL_8fc04070b2e84494938f592c9298af0a" + ], + "layout": "IPY_MODEL_74be6d6169b04573a49230303660384c", + "tabbable": null, + "tooltip": null } }, - "22211fd14fd64505baebb4e7871a4968": { + "334b3327dca749ef812e8602f3f1e17b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -3574,38 +3971,41 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_adb4034c42d041619dda042aa7b992ac", + "layout": "IPY_MODEL_88e77f8f77ee45659b4387eecaee0d9b", "placeholder": "​", - "style": "IPY_MODEL_cd6c059b74a04876a2dd054df2847ea2", + "style": "IPY_MODEL_c1fa04003ffb4b44a7ba56ef70fdc30f", "tabbable": null, "tooltip": null, "value": "
" } }, - "2288082671d043c689e8035afb1d9b5e": { + "33603cd6031246808ba5f84cc997f2b2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DropdownModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DropdownModel", + "_options_labels": [ + "None" + ], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "DropdownView", + "description": "Data to Compare:", "description_allow_html": false, - "layout": "IPY_MODEL_464bf565d03745879b1209e0e5fcc704", - "placeholder": "​", - "style": "IPY_MODEL_614eb64b4d1e4def83cdad8772657260", + "disabled": true, + "index": 0, + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "style": "IPY_MODEL_afa5ea857390488397863cdb246a054f", "tabbable": null, - "tooltip": null, - "value": "
" + "tooltip": null } }, - "22e863d8cb154476a8f5528e5fb3768b": { + "33aab058394e4e969238d7def3d1db0e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3658,22 +4058,7 @@ "width": null } }, - "22fbd67cc4134fd9a601e3b505badd9e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "233f3a7e2d4b46c0afa9af41131d7a75": { + "33eefc232b894eebab2e7cd642ef0bf7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3726,83 +4111,16 @@ "width": null } }, - "234a460fd63c41858e7a06df6465fc6c": { - "model_module": "@jupyter-widgets/controls", + "345f3636881b4946b6e16c34da3b872c": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "LayoutModel", "_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_ff524f8d00cc4e75bc522c268ca68911", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_bc3479caa5e140e5959819be6a399b4f", - "tabbable": null, - "tooltip": null, - "value": 0.01525 - } - }, - "23ca6191319b45868264687421091df3": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "2470322640304c6084d43e05205a2162": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "IntTextModel", - "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_54935ed6c90640bab71b2ef3e10a0dd6", - "step": 1, - "style": "IPY_MODEL_3307c0dd4eae4698b22d70c6b7a07a1f", - "tabbable": null, - "tooltip": null, - "value": 2 - } - }, - "24ce3ae1acd7476baa5c824152397336": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, @@ -3846,77 +4164,7 @@ "width": null } }, - "24eb5f04a65141cfb544b61246c699f5": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonModel", - "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_13c74b90d7da4b90946708f609e4acee", - "style": "IPY_MODEL_8f5a4d06abd547e3a908d74baec96de5", - "tabbable": null, - "tooltip": null - } - }, - "2527df20d4f944b3a40c0d70c85d4d81": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_c9edaee8edc54f1c8e0e97e5b2cd04b9", - "placeholder": "​", - "style": "IPY_MODEL_8d57ec34f78449e6907e433286be236b", - "tabbable": null, - "tooltip": null, - "value": "
" - } - }, - "26624f3e03714cccb30cb6f49647b3e1": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_2bd32f5e766344659490336ebf83b310", - "IPY_MODEL_5ecabbb37e734e488b170d3c6e7fffcf", - "IPY_MODEL_3664ccb5376a49c282b4de08c5536f59" - ], - "layout": "IPY_MODEL_59b6c1c9ec7c498aa070a860896ba8f7", - "tabbable": null, - "tooltip": null - } - }, - "2678a1fd79cf4298b611adeee1c650ce": { + "348c5f5c34a341bb98198f70c6d3abfa": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -3969,54 +4217,7 @@ "width": null } }, - "26aa3403e7c6419f88583ca30aa91739": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_6fedabc238ad42f38e8f42596c5d4874", - "IPY_MODEL_a42f19ad6f3044e2895d8e8032a15cdd", - "IPY_MODEL_b2df8c84027b4021a5387e186e7a63d5" - ], - "layout": "IPY_MODEL_6873c82e49354b6c84c45647590e45f2", - "tabbable": null, - "tooltip": null - } - }, - "26c5cd1be1a44ac494d2c84a138cd0ce": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_d74bd15067354f72b4e515cc26a88d4c", - "placeholder": "​", - "style": "IPY_MODEL_7e4d921024ca4d35932840671d454f98", - "tabbable": null, - "tooltip": null, - "value": "
" - } - }, - "26cd207315094c85bb8d5decde2faecd": { + "34a8b34b7b254acc8b2144ef656c815c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -4028,79 +4229,63 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" - } - }, - "275e076e6bf04693b233847ce1a0ac8d": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_17a4365ced0d479d92b872706b41e8b4", - "IPY_MODEL_f1b4c30497d942ebbcc383232c1262b5", - "IPY_MODEL_2527df20d4f944b3a40c0d70c85d4d81" - ], - "layout": "IPY_MODEL_0df9d27f9bed4558b221978522cc6e9e", - "tabbable": null, - "tooltip": null - } - }, - "27848abeebd0401284972af1f78a6130": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_49f64ceaa4b644d4ad1145c82c9242cd", - "placeholder": "​", - "style": "IPY_MODEL_9f5b3ec7cf474e5ba3be012633421cd8", - "tabbable": null, - "tooltip": null, - "value": "
" + "description_width": "200px" } }, - "2918e72f84f940d3b7cf14b1dd9124dd": { - "model_module": "@jupyter-widgets/controls", + "34f6d7639a8f41879557503a7d91ccfc": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "LayoutModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_26624f3e03714cccb30cb6f49647b3e1" - ], - "layout": "IPY_MODEL_0c365c19004c4e1993b7f11366aa243d", - "tabbable": null, - "tooltip": null + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": 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 } }, - "293c500e8500459789adf0a8d5746f4f": { + "3550b4eaba3e437389b01d3c4d47a42a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4153,40 +4338,60 @@ "width": null } }, - "2943d2786a8e4c599afd8ab41c92e2e5": { - "model_module": "@jupyter-widgets/controls", + "3649edbf50be4df094c32637852fa940": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "LayoutModel", "_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 - } - }, - "296a261d27c8411c90f55e281f53b6ad": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "299ba804e1f54426b879bdaf181ab02f": { + "36527125956d4242928f85b63c6af6ad": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -4200,109 +4405,38 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "L5_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_c029b610ecee4b419778d87f3e4d346e", + "layout": "IPY_MODEL_4ab9d2a5e2664a14b8f83b5065721e38", "max": 1000000.0, "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_724f10888373464f8904b10a1330d8a3", + "step": 0.1, + "style": "IPY_MODEL_6c15000c920148bd9530e24f972f86e3", "tabbable": null, "tooltip": null, - "value": 0.02 + "value": 1.0 } }, - "2bd32f5e766344659490336ebf83b310": { + "3684ad15740a4dfcb8de20639ff9a3cc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_ff05b5361f2942bf9841ee112e55e374", - "placeholder": "​", - "style": "IPY_MODEL_e43c67ca2af14bc7899d41dec231b835", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: ampa

" - } - }, - "2cc9d00e5f6741e997566784d88f272f": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_680bc70dc87246a08ec09eb1bda4d1b6", - "msg_id": "", - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "404c2fe842f649e3b15b7068b2730a54", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": "Accordion(children=(VBox(children=(VBox(children=(HTML(value='

\\n Receptor: gabaa

'), BoundedF…" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "tabbable": null, - "tooltip": null - } - }, - "2cfe158751924c70bfea8e5356b09b29": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_71429736f7f645b4bd21bfab3105f1a7", - "msg_id": "", - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "336b50f5016d4e1eb56987fc01f92aa2", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": "Tab()" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "2d76e923f80241b09fbaba5213ae6a5f": { + "375af561c0094f31bfc92f0502fa782c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4355,7 +4489,25 @@ "width": null } }, - "2d8aee3936df4fb68c20d936dec1c0e2": { + "37de4370cc284101a4dc170b6305a2de": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "37e1ce6b71b5423abc141224468ea120": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4378,7 +4530,7 @@ "display": null, "flex": null, "flex_flow": null, - "grid_area": "footer", + "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -4408,25 +4560,30 @@ "width": null } }, - "30cc8c63e8454ac1aea7ed4f1accd728": { + "393c87cadc0248cbbef6281b80646ff4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2e8c982959a1473584be00fb361e2c56", + "placeholder": "​", + "style": "IPY_MODEL_fe60289780fd42f28c0d8799b2abfd09", + "tabbable": null, + "tooltip": null, + "value": "
" } }, - "3177e559edc54f6ab1d0e07ec60dc9f3": { + "399b59fd050b4e188ce32d069c6b0bae": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4479,126 +4636,87 @@ "width": null } }, - "328bfff3de074de1ab73848399fb9c61": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", - "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 - } - }, - "3307c0dd4eae4698b22d70c6b7a07a1f": { - "model_module": "@jupyter-widgets/controls", + "39aaf4a433bb47c789a1f0885cc02188": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "336b50f5016d4e1eb56987fc01f92aa2": { + "3a18fa7bc34347ecae7633bcf75d16aa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TabModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "TabModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "TabView", - "box_style": "", - "children": [ - "IPY_MODEL_45f8a3f28f344fee9f1ad7a2084567f8" - ], - "layout": "IPY_MODEL_19336f30d3a540f68e9a4b1e00750e45", - "selected_index": 0, - "tabbable": null, - "titles": [ - "Figure 1" - ], - "tooltip": null - } - }, - "33ea5744b94f45f2ba48cb0deacbbe70": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DropdownModel", - "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:", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Mean time:", "description_allow_html": false, - "disabled": true, - "index": 3, - "layout": "IPY_MODEL_3efc2592b9ee4f5187ca865c0208fc3a", - "style": "IPY_MODEL_82445b6a043c4447af26dc20b18bfcd8", - "tabbable": null, - "tooltip": null - } - }, - "3425d824542d4de4a69491d67debe6ec": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonModel", - "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_eade6b1d5494426d9123195cd8f6817f", - "style": "IPY_MODEL_59dc6d993d0448098521256ad4c80878", + "layout": "IPY_MODEL_b3f704de43ed4a05b9198f8c0d40410d", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_17ba21e66a2446f0816024b587ca8bfc", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 63.53 } }, - "34ab3c86a8cd47df908b229a4fbf1d7d": { + "3c7d65392d8347e8960504e7319c3878": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4631,7 +4749,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "60px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -4648,167 +4766,63 @@ "right": null, "top": null, "visibility": null, - "width": "576px" - } - }, - "35c6c66de8ed46a2a8a60bb15c992235": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonModel", - "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_e10393d9ac40406abe9b51d13bea8b0f", - "style": "IPY_MODEL_62856aed00d84c638f1c5e2bc1f8c7bb", - "tabbable": null, - "tooltip": null - } - }, - "35e3bfec5c6c45e482715abec2e68ded": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "363cdfd494e048c990eda5bfd01eeb53": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_b6885c3d34e4450e9890d57db73dcc25", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_ff09664d9fe1477fae9e9ba2b472290f", - "tabbable": null, - "tooltip": null, - "value": 0.1 - } - }, - "3664ccb5376a49c282b4de08c5536f59": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_9eeaa07e45964225be03eb036530df22", - "placeholder": "​", - "style": "IPY_MODEL_5a2f41d365c54009aaf887d92ae76196", - "tabbable": null, - "tooltip": null, - "value": "
" - } - }, - "36a8823ac93b4fc38f60eb3c9965f406": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_3f01961a1efa41d5ba05d6b9a135cb06", - "IPY_MODEL_f175c1e9a2dd4e05b34e01c74f61b948", - "IPY_MODEL_26c5cd1be1a44ac494d2c84a138cd0ce" - ], - "layout": "IPY_MODEL_a472cfbb17664f838717cbf46437216a", - "tabbable": null, - "tooltip": null + "width": null } }, - "377fb5895df94db9bb6ae9b2a41f40cb": { - "model_module": "@jupyter-widgets/controls", + "3e833d5f2a014a46befa9e9159fc3b79": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" - } - }, - "37c4fb6c9bc94dc49dca5479da7e9145": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_f887503e940d400ca99af4a251ffe40f", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_71c07904ad17477794e61d9c3c63dc9d", - "tabbable": null, - "tooltip": null, - "value": 0.00025 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_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%" } }, - "38a03936de2f423085936f1bdd10cdf5": { + "3f6487950d32469094c7ec42fb78b927": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4861,125 +4875,22 @@ "width": null } }, - "3917c70dc9f8486eacff96e0abdcbfe7": { + "3ff3a767e6e748d593ac28c4982d4a77": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_470f205cdb7f4cbfb73ef488f9d96414", - "placeholder": "​", - "style": "IPY_MODEL_30cc8c63e8454ac1aea7ed4f1accd728", - "tabbable": null, - "tooltip": null, - "value": "
" + "_view_name": "StyleView", + "description_width": "200px" } }, - "39512adace8c4a58ac8bb265b86c6953": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_ca0150bdc23d4bea8a19baf8a247991a", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_f39bd65c1446404d84bf8487e6a26098", - "tabbable": null, - "tooltip": null, - "value": 0.025 - } - }, - "397161a5991d454792c56748d95d3bd0": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "FloatTextModel", - "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_bfb2851bfa404357b511fe0f3b623ae8", - "step": null, - "style": "IPY_MODEL_b32edc730b43418d8454ce9d83a1778b", - "tabbable": null, - "tooltip": null, - "value": 1.0 - } - }, - "3987e43a27fc4ac986271e237c2f4a2f": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "FileUploadModel", - "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", - "button_style": "success", - "description": "Load data", - "description_allow_html": false, - "disabled": false, - "error": "", - "icon": "upload", - "layout": "IPY_MODEL_82a8fb27a60140588a3831f26d18f783", - "multiple": false, - "style": "IPY_MODEL_60745ef6b4ab4c24b00e515e89f201be", - "tabbable": null, - "tooltip": null, - "value": [] - } - }, - "39a6198a463f4762a8c991a292aa5fc7": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "3a63e8ff05184758910ba45e5dec32c7": { + "407ce6e557ee49288e41ed8151e574fa": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5032,116 +4943,30 @@ "width": null } }, - "3abc1f3ca4e4426d8dede7946c5be71b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "TabModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "TabModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "TabView", - "box_style": "", - "children": [ - "IPY_MODEL_e3a045581cfb49649c1af9f094853b6e", - "IPY_MODEL_ad5c77f0b36443a9bb743af38cae6e2e", - "IPY_MODEL_cef9d38263b847ba93ba64bcb684797d", - "IPY_MODEL_0bd8ac254a9b46a3b5e1961ca434fb93" - ], - "layout": "IPY_MODEL_b6443065842b40c28f0602f6922a0848", - "selected_index": 0, - "tabbable": null, - "titles": [ - "Simulation", - "Network connectivity", - "External drives", - "Visualization" - ], - "tooltip": null - } - }, - "3ac0026a50944616a9691a0799898110": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "3afe8244a6c342e896ed9f9dc2ac35d5": { + "415c3075afe74aa8a08d5928706a8f0f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "3b740102b06642dc897ec4f782468e01": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "3ba1e4391be14d64bdb49b81c7b6d754": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DropdownModel", - "_options_labels": [ - "default" - ], + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Simulation Data:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_bfb2851bfa404357b511fe0f3b623ae8", - "style": "IPY_MODEL_5cffc56bfa904f5b987f810d59c52600", + "layout": "IPY_MODEL_fc69cfaa7c5b4156b0579b243d1ae944", + "placeholder": "​", + "style": "IPY_MODEL_faa4b2ffd2484563b4a32281c7daebe0", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "NMDA weights" } }, - "3cd5d57efa2d4dab871cca617162078b": { + "415f8fb4574f41c2a669c2f19bc44fbe": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5174,7 +4999,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "auto", "justify_content": null, "justify_items": null, "left": null, @@ -5191,10 +5016,10 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "270px" } }, - "3ce063a9cf9d4d0185a8f64d04f7c051": { + "4180b2cbf7134a5d9a09246fcd29c274": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5247,7 +5072,7 @@ "width": null } }, - "3d846dda903b4830bb2d0c022b336bfe": { + "419460dc43a542d7aad1a0dc6a0311e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -5262,33 +5087,15 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_c4920d4813334e93b8420e2487ed9f3a", + "layout": "IPY_MODEL_b78f8d1894ea43c984f52824052e83e6", "placeholder": "​", - "style": "IPY_MODEL_a2d0258a04914a51bd889176334a9b9e", + "style": "IPY_MODEL_5fe85e1872c44982a6be495bc01280fb", "tabbable": null, "tooltip": null, "value": "
" } }, - "3dee1b21b8b647aa8182821ca76681b7": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "3e99e78cfd834059a69703fbb8a50162": { + "41b293b88f504404a8632074a5ee4772": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5341,72 +5148,63 @@ "width": null } }, - "3eabbae49cf5459bafe0227008d06e8a": { + "422654b8e24149999e9ef11cd2477bb3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "" + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_6ea70e8bc21a41cdbed94ff924a66134", + "placeholder": "​", + "style": "IPY_MODEL_ab8d746822a54df1aebf0eaf081c7375", + "tabbable": null, + "tooltip": null, + "value": "Synaptic delays" } }, - "3eb4c5f4437146cdbbed80de7d49a51d": { + "4388dde1eb2a4b54b3ff2e6070eed693": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_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_3efc2592b9ee4f5187ca865c0208fc3a", - "step": null, - "style": "IPY_MODEL_0f0555cafeaa401fb41e8f110d65483f", - "tabbable": null, - "tooltip": null, - "value": 0.0 + "_view_name": "StyleView", + "description_width": "" } }, - "3ef71f474a1a49ffa7ec7c3f8a15300f": { + "43a3fa9eebce433ba404cc6700dcb796": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_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_3efc2592b9ee4f5187ca865c0208fc3a", - "step": null, - "style": "IPY_MODEL_c7abda71e618446abef9c6683fb5c8a3", - "tabbable": null, - "tooltip": null, - "value": 30.0 + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "3efc2592b9ee4f5187ca865c0208fc3a": { + "43ef69cf2e6f43f1a3d7b8f12c7c68f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5440,7 +5238,7 @@ "grid_template_columns": null, "grid_template_rows": null, "height": null, - "justify_content": null, + "justify_content": "space-between", "justify_items": null, "left": null, "margin": null, @@ -5456,55 +5254,60 @@ "right": null, "top": null, "visibility": null, - "width": "98%" + "width": null } }, - "3f01961a1efa41d5ba05d6b9a135cb06": { + "440af6fce7c146d580006f8711537e95": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "LabelStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "LabelStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_c99f21cf795c44bfb1af7b14d7315284", - "placeholder": "​", - "style": "IPY_MODEL_15425fb34d2e4f7089e1d76c3c108107", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: nmda

" + "_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 } }, - "3fdc0c8b72b646548a0fef69e2856ee0": { + "4413c882143f4a84895afe39c37912a9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HBoxModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HBoxModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_40fc36d09be04647b1cafb62a278b6c5" - ], - "layout": "IPY_MODEL_19087d70289841f19f7ade22877eac13", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_62510bd16e7c4926a08c4fc5564297eb", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_90463729cacf42d8a1291fd1ad86f7b7", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 0.00025 } }, - "40296635aae3427a9caf5c50924adc84": { + "445ec6c2b56844a1aef383fb6e6aafbf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5557,55 +5360,22 @@ "width": null } }, - "404c2fe842f649e3b15b7068b2730a54": { + "44dcc0e4e4064cee8410352eb6d0a43c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "AccordionModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "AccordionModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "AccordionView", - "box_style": "", - "children": [ - "IPY_MODEL_157d6c32d7e44b579333d5e6d2bd83fc", - "IPY_MODEL_f2df32346f934753a398ab59d299b5ca", - "IPY_MODEL_440d32de892c4dedb752f975941e6c87", - "IPY_MODEL_fc8e745c45884b5e88443bf03f7cb455", - "IPY_MODEL_58cd022c2e0046b4b054a0111f966059", - "IPY_MODEL_dfcf00c284544c3aabf2e8987b6312b9", - "IPY_MODEL_0147d1f8aed54cc38e8174bae67709a4", - "IPY_MODEL_b93f2c0422b94247a700b2b788c6080e", - "IPY_MODEL_b0a314c80b444e13b277375eb1ef74d8", - "IPY_MODEL_6657f0c9389548d1832ee9f923fb49b3", - "IPY_MODEL_2918e72f84f940d3b7cf14b1dd9124dd", - "IPY_MODEL_0d4c4288f52849f796e437927e5f736a" - ], - "layout": "IPY_MODEL_40296635aae3427a9caf5c50924adc84", - "selected_index": null, - "tabbable": null, - "titles": [ - "L2_basket→L2_basket (soma)", - "L2_basket→L2_pyramidal (soma)", - "L2_basket→L5_pyramidal (distal)", - "L2_pyramidal→L2_basket (soma)", - "L2_pyramidal→L2_pyramidal (proximal)", - "L2_pyramidal→L5_basket (soma)", - "L2_pyramidal→L5_pyramidal (proximal)", - "L2_pyramidal→L5_pyramidal (distal)", - "L5_basket→L5_basket (soma)", - "L5_basket→L5_pyramidal (soma)", - "L5_pyramidal→L5_basket (soma)", - "L5_pyramidal→L5_pyramidal (proximal)" - ], - "tooltip": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "40b8b4280f5c460abc27d245292ce8c6": { + "45066d9e515145688521063469ec5096": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -5620,44 +5390,14 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_7d85567c87ed4dc49646a821448602ba", - "IPY_MODEL_d66576becbb442d3ad25cdd104f0a356", - "IPY_MODEL_3d846dda903b4830bb2d0c022b336bfe" + "IPY_MODEL_ba10d45fca2f4865bf70ad5ba090eb82" ], - "layout": "IPY_MODEL_0d505fead373445b87c0dae94f8dc6d4", + "layout": "IPY_MODEL_0cf39b9ba5bb48908194e3da1bbb7fe6", "tabbable": null, "tooltip": null } }, - "40fc36d09be04647b1cafb62a278b6c5": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "FileUploadModel", - "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_f92c4471303e4feb869044baffe4eaad", - "multiple": false, - "style": "IPY_MODEL_4cb65399d8a04959a6e6c5a5d138e0e4", - "tabbable": null, - "tooltip": null, - "value": [] - } - }, - "4175f6cc42bf43bfb80281d9d5e03200": { + "454ef6302ccf4413b76b08253bc9f01f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5691,7 +5431,7 @@ "grid_template_columns": null, "grid_template_rows": null, "height": null, - "justify_content": "space-between", + "justify_content": null, "justify_items": null, "left": null, "margin": null, @@ -5710,7 +5450,124 @@ "width": null } }, - "42ac2cb25e324ab98ea1bc50d23e0ab0": { + "45520f95c325483ab671792ce0dfc41c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "461e1a4074d743e49ebff883ef1a77fc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DropdownModel", + "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_9a0a4248bc9d4bb69df2681300ebdd2e", + "style": "IPY_MODEL_a16fbbd4167f43e6bf1cf760e828ea49", + "tabbable": null, + "tooltip": null + } + }, + "464db501fd854998b540fb6b75bef50f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_81dc82d8deb148369f236c64acf05901" + ], + "layout": "IPY_MODEL_97b5f62c5df94f828b760e6fde439a14", + "tabbable": null, + "tooltip": null + } + }, + "467d502ba8744a30946f687be8ca524c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_407ce6e557ee49288e41ed8151e574fa", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_f00a853f8bba41dca21ba156cc43c9d0", + "tabbable": null, + "tooltip": null, + "value": 7e-06 + } + }, + "46f8bf24574444d68e9f77deb5b163cb": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_6ae0067d1ea54e3c83bc3a542257c06a", + "IPY_MODEL_f38b6ef03361476ebeca2d44ab0b5e56", + "IPY_MODEL_d08e8317236e44798575becaa9eb2ef2" + ], + "layout": "IPY_MODEL_a766270c782b408aa4715e9bfce88571", + "tabbable": null, + "tooltip": null + } + }, + "474134f0917e4f63a4263c91c3909919": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5763,7 +5620,7 @@ "width": null } }, - "42dead01273c4e4aa73b34d69cbd5759": { + "47481e2daab4460fa8b78322c49337c8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -5778,29 +5635,49 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_86db634920af4c72b49633c89b04e23b", - "IPY_MODEL_8c02bf47ab544c059202733419cf91ca", - "IPY_MODEL_1bf8832739674cc4898104e6e96cbb15", - "IPY_MODEL_0bcc9057ed9947d0a212d64688127459", - "IPY_MODEL_8ba8a6ccc2394803869700c4e9d8fbfb", - "IPY_MODEL_20f09601402e48218f0a4db196809b7e", - "IPY_MODEL_be4a1be6216c43698bf4b51bb1427341", - "IPY_MODEL_7d48ea63c29a4592b8db03751528eba6", - "IPY_MODEL_18b208e8605b48f1a787bcb210c3b491", - "IPY_MODEL_16f8a2c4a4ee4d26898bf8d20229c6af", - "IPY_MODEL_551b5140979042d59bd1555e35494837", - "IPY_MODEL_ce78ded02f7f40d0b910a8bd9b26eb79", - "IPY_MODEL_979c07f2ec4c4b20beff33719bfc934a", - "IPY_MODEL_47956dbd019f4cdca64a55d585f3ff87", - "IPY_MODEL_363cdfd494e048c990eda5bfd01eeb53", - "IPY_MODEL_def68401039c4b54a39375fcd7fe3d9f" + "IPY_MODEL_b8f6a9a0ba67458d98161e2043de703b", + "IPY_MODEL_64c4fb8be2bd4fe7abc9fb06147979e4", + "IPY_MODEL_0663cda971e045ecad093e9b64ddb9d5" ], - "layout": "IPY_MODEL_84f37b196f4840dfa5b986549298fd10", + "layout": "IPY_MODEL_e4396a111f174dbabb6ca74c2f62b05f", "tabbable": null, "tooltip": null } }, - "433695bc5fc24d9baef39bd55df0b286": { + "478391749190430a8d63fe919aa7bd71": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "48fe902ec1cc4d80ad70f37e2e476030": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "490e271ab06e4567a526ec9e5aa8e4d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -5830,9 +5707,9 @@ "grid_column": null, "grid_gap": null, "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": 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, @@ -5853,43 +5730,14 @@ "width": null } }, - "436d48fec62e44938689baa4c1b91b91": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", + "4918f08fce92414dab7233e25b12d309": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", "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_94c064f9b5fd4b35941286589e1d15b7", - "msg_id": "", - "outputs": [ - { - "data": { - "image/png": "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", - "text/plain": "
" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "tabbable": null, - "tooltip": null - } - }, - "43a8791f87564663993826ccd48e47db": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", @@ -5932,70 +5780,90 @@ "right": null, "top": null, "visibility": null, - "width": "98%" + "width": null } }, - "43ac6d5ebbb34f1980a0a3780c6fa5ce": { + "49bfcb0435d5419e916898e803f58f91": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d78aff8d2fe74bc1a6be169e0b057e2d", + "placeholder": "​", + "style": "IPY_MODEL_45520f95c325483ab671792ce0dfc41c", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: gabaa

" } }, - "43c3c0832a15473fab747f2daab7c096": { + "4a003ec628e0496093f8ff6fe7e37eb3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "DropdownModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "DropdownModel", + "_options_labels": [ + "2row x 1col (1:3)", + "2row x 1col (1:1)", + "1row x 2col (1:1)", + "single figure", + "2row x 2col (1:1)" + ], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_0487d6868c6b4196b44f1090bba22f55", - "IPY_MODEL_d33639a3907e4f4e96c6dddbaf5dc19b" - ], - "layout": "IPY_MODEL_0cbba81eaa3a4570a07903fa97dffc3a", + "_view_name": "DropdownView", + "description": "Layout template:", + "description_allow_html": false, + "disabled": false, + "index": 0, + "layout": "IPY_MODEL_ab68653803714a66898953e2918214a5", + "style": "IPY_MODEL_902dab12c4e64a89bc098395952c67f3", "tabbable": null, "tooltip": null } }, - "440d32de892c4dedb752f975941e6c87": { + "4a221d63422d4e7ba6660d8805ed4d5f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_a04ae09c85a6446fa9e3f2b912126e5e" - ], - "layout": "IPY_MODEL_1273d8ad076d4516881eddf6f8891a66", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L2_pyramidal:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_4918f08fce92414dab7233e25b12d309", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_a58c0257e781455fa02c4ece7bd9ccc3", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 0.01525 } }, - "44bb8188302246dab7fe4a04d2ea516c": { + "4a2299fa41f5422d84ed40a7a31f1f9e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6048,48 +5916,7 @@ "width": null } }, - "450659a86c1844b1b1c7d1eba2200bd3": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "45f8a3f28f344fee9f1ad7a2084567f8": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_e3c9f8884d46486cb1d5ecda507c9249", - "IPY_MODEL_6bc3d2c2bd35489282e91df7b3b5dee9" - ], - "layout": "IPY_MODEL_c9848000050e43e9ab5f02661ec357ff", - "tabbable": null, - "tooltip": null - } - }, - "464bf565d03745879b1209e0e5fcc704": { + "4a633b23c8d54481be58143f9f88c615": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6142,7 +5969,7 @@ "width": null } }, - "4686340184464b29be6875268ba9db8b": { + "4ab9d2a5e2664a14b8f83b5065721e38": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6195,87 +6022,100 @@ "width": null } }, - "470f205cdb7f4cbfb73ef488f9d96414": { - "model_module": "@jupyter-widgets/base", + "4b616f54ca474202bc1c9a123f7235d2": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "VBoxModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_ceda715490c645f3854df1e35c67ed74", + "IPY_MODEL_d478a5aeed9b4727aa199e2002adfc61", + "IPY_MODEL_ada0539153b04a7a87549ff57cb9c3e1" + ], + "layout": "IPY_MODEL_c9f5f80a2a7f4f26974e06b9bd17c632", + "tabbable": null, + "tooltip": null } }, - "47956dbd019f4cdca64a55d585f3ff87": { + "4b9b4973a5724213bffa12c226fb2f13": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "VBoxModel", "_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_1a3445d9f91e4ea3b1c08f3c2edd3577", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_570ec1b7297e45deb24769765e5b8927", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d4472640556843769536524b78128d98" + ], + "layout": "IPY_MODEL_fb6743abd42f4edb8dbea1320c5d9225", "tabbable": null, - "tooltip": null, - "value": 0.1 + "tooltip": null + } + }, + "4c0f330e04c8440fa6a88427aff26672": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_f5970af54f6648b4bd701133d79d773b", + "IPY_MODEL_7929192523b243378a5e7f968d7566a5", + "IPY_MODEL_12edb3910c494622b1155753084661db" + ], + "layout": "IPY_MODEL_a97c227325b840f4ba76985bab4b37e0", + "tabbable": null, + "tooltip": null + } + }, + "4cc701877e6f457c9681d38151ecb4a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_30234faaf48847da8decfeee1e9c81d1", + "IPY_MODEL_47481e2daab4460fa8b78322c49337c8" + ], + "layout": "IPY_MODEL_d8559dde206041dcb015acaf958ef13c", + "tabbable": null, + "tooltip": null } }, - "487ef07b67264551baabe18f3a9b48bb": { + "4f093ad0e9c143f1977cb75c4da0be31": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6328,32 +6168,25 @@ "width": null } }, - "489e834010c9436eacd813497118bbd7": { + "4f75404dac894b1596b3f632461c0f32": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "IntTextModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "IntTextModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "IntTextView", - "continuous_update": false, - "description": "No. Spikes:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_44bb8188302246dab7fe4a04d2ea516c", - "step": 1, - "style": "IPY_MODEL_b8710cabe97c443389f369683c57c916", - "tabbable": null, - "tooltip": null, - "value": 1 + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "489fc6b41ea34e5bb5c42a3195ff0070": { + "4f83b46fa9694afdbc9f1ab061abd2fc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -6368,38 +6201,75 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_045c93fa7b994108913bc105d66439b3", + "layout": "IPY_MODEL_4a2299fa41f5422d84ed40a7a31f1f9e", "placeholder": "​", - "style": "IPY_MODEL_0e0d490faf3042ff8716af5f26755fae", + "style": "IPY_MODEL_fdff431728bd475eb9a9f0405ffa37c3", "tabbable": null, "tooltip": null, "value": "
" } }, - "48fadc1358d541b99460b736bdb6da7f": { + "4fe8ef76b93a4f55a9d3059ea14d8b10": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LabelView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L5_basket:", "description_allow_html": false, - "layout": "IPY_MODEL_b99eb4c110c14feba05f505ee1a10d5e", - "placeholder": "​", - "style": "IPY_MODEL_1a09b6637bfa4f44a28543b0b68fc8f0", + "disabled": false, + "layout": "IPY_MODEL_52a7e4660764402ba9e55925ed4a4cd8", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_cd6046f953ce4a4c9dc09292501915e6", "tabbable": null, "tooltip": null, - "value": "Run simulation to add figures here." + "value": 0.0 + } + }, + "50b13d96857449d5bbd1b2799ced4c73": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_99035d9f22a945038265b86f8195d5ca", + "msg_id": "", + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "08aeca6b5c604c509516b25ded660fbc", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": "Tab()" + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "tabbable": null, + "tooltip": null } }, - "4909010dba5b4ce49c6ca741ad032dbc": { + "51584ce94b5e4f8e965806ba5f7a9510": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6452,30 +6322,87 @@ "width": null } }, - "49e0d75b55c946648c1a31c466f8015c": { + "51ac862e65a54f15ab9bb849fcfe55ec": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "dt (ms):", "description_allow_html": false, - "layout": "IPY_MODEL_c3dd72ed5c4d4ac1a30564b106af151e", - "placeholder": "​", - "style": "IPY_MODEL_05ccfdd8d4344a86bf780ddd03029a3a", + "disabled": false, + "layout": "IPY_MODEL_cb0155abf7544fa4a9317d14255a4dfb", + "max": 10.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_a2d3409f4c3c4c6ba87a9d60e03f66db", "tabbable": null, "tooltip": null, - "value": "
" + "value": 0.025 + } + }, + "5297ee4b727c441381073656bdccc8a1": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "49f64ceaa4b644d4ad1145c82c9242cd": { + "52a7e4660764402ba9e55925ed4a4cd8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6528,7 +6455,7 @@ "width": null } }, - "4a35408dfd5a41e5a4903dfcb0af2a71": { + "5313b973f5434216b41176b1d7554b99": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6581,90 +6508,64 @@ "width": null } }, - "4b09d4adee864373b0d05f649c6973fb": { + "531632b736f5463aa7da8f40b037f07a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "weight", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_d7a10c67ce774d7f835d8e73e861b380", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_6be298da78824696bbbdde07e4418cab", - "tabbable": null, - "tooltip": null, - "value": 0.02 + "_view_name": "StyleView", + "description_width": "" } }, - "4bc4218bbc1745eab1b9aa8fd041daa2": { + "53802db349fd4ab4bb0a7838e10433a1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "" } }, - "4bc7f18831f749a79e4f9adcd5cb6057": { + "53e36f72136c43cab86d59dfe8b53f10": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "BoundedFloatTextModel", "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" - ], + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Type:", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L5_basket:", "description_allow_html": false, - "disabled": true, - "index": 0, - "layout": "IPY_MODEL_bfb2851bfa404357b511fe0f3b623ae8", - "style": "IPY_MODEL_7da73f939a124c139ad62a8155a50a32", + "disabled": false, + "layout": "IPY_MODEL_7dc3559fd2684a5f951af5ad68a7ee2a", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_d0e0273ac93f4fe2ba01863ae41a79f0", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 0.19934 } }, - "4bc951fa21bf40d5a236d87c0a9f083d": { + "542e46043c904b8091589c258639611f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6717,7 +6618,7 @@ "width": null } }, - "4c2496c3e09248f69cd68f892375880e": { + "54adb07844d14d8b9907d23388cbcd79": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -6731,42 +6632,88 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "L2_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_c88edc7ecf414e139c053292970205cd", + "layout": "IPY_MODEL_94b78c2d6dec4a588cf06638796039eb", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_90d7b7e9995240b484048b844d9222b3", + "style": "IPY_MODEL_578fb1a027094ca8bcdb26b2381c8a22", "tabbable": null, "tooltip": null, - "value": 0.05 + "value": 0.019482 + } + }, + "55eb87ca646b44b4a68e6c9972dc4a81": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "4cb65399d8a04959a6e6c5a5d138e0e4": { + "55f6ef252e6541a5838803f83e7ee149": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "150px" } }, - "4cc919b504744d669f267bf818f98d3f": { + "56207e5e5f03461680727dbd61ed43e7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6816,10 +6763,10 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "98%" } }, - "4cd83319fa1c45f1857e71085472406d": { + "56b4037f4e69493ca802ce71169326cd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -6872,30 +6819,29 @@ "width": null } }, - "4d97a3e7cb3c47dcbab2fd9b88773d00": { + "57501e14e47c4841b9acf5373ab369e2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "VBoxModel", "_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_eade6b1d5494426d9123195cd8f6817f", - "style": "IPY_MODEL_e529558bd5a14898a446f82c1d8ca34b", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_59a7228b1e3b4e9e90053176ede13d23" + ], + "layout": "IPY_MODEL_37e1ce6b71b5423abc141224468ea120", "tabbable": null, "tooltip": null } }, - "4de37ab166964f218552eda31c2adf9a": { + "578fb1a027094ca8bcdb26b2381c8a22": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -6907,69 +6853,81 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "150px" } }, - "4fa010012f0d421abc82604e219c8e00": { - "model_module": "@jupyter-widgets/controls", + "58485566fab245abb0b55832cea2e2ad": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "LayoutModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "dt (ms):", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_620d12a38b83459b9e534be761beb21e", - "max": 10.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_16273fb253a44fefbc824381b2108ed3", - "tabbable": null, - "tooltip": null, - "value": 0.025 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "4fbd9ddae4b449718f9df267e0950d36": { + "589696569c5e4ea195180652f89d2094": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_4bc7f18831f749a79e4f9adcd5cb6057", - "IPY_MODEL_3ba1e4391be14d64bdb49b81c7b6d754", - "IPY_MODEL_c70a29d6f888445c91cf6d7637bdf454", - "IPY_MODEL_e00c98239a91464aa2b55f51280d97d9", - "IPY_MODEL_58e2774b791245e9bc4c633a3b2042f2", - "IPY_MODEL_eb41fb40c2d74aa0997286e540f8bffd", - "IPY_MODEL_397161a5991d454792c56748d95d3bd0", - "IPY_MODEL_180072daaff54551bda3cecf2db432c6", - "IPY_MODEL_98457a2251d74fd59a118b5ad32942f0", - "IPY_MODEL_083d6a59dad04e0789ee37be7971449e", - "IPY_MODEL_cc3f8a0e36ad467bba29a3ca0e19b53e" - ], - "layout": "IPY_MODEL_43a8791f87564663993826ccd48e47db", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "50debd46e9134dd6bff2344f12838687": { + "5949d7de03544e458dbd5d1f5f11eae7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7002,7 +6960,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "auto", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -7019,52 +6977,61 @@ "right": null, "top": null, "visibility": null, - "width": "270px" + "width": null } }, - "518879b2dc204b729b4146325a2f824c": { + "59a7228b1e3b4e9e90053176ede13d23": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedIntTextModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedIntTextModel", + "_model_name": "VBoxModel", "_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_f14ca5334966447c911b9e42cb875ab7", - "max": 4, - "min": 1, - "step": 1, - "style": "IPY_MODEL_0cc719c7a1e743d497de5bd3c60e9d4c", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cfde407905184195abfdc49bf952c719", + "IPY_MODEL_921484e7731c434b84c24c6e1592351c", + "IPY_MODEL_a7b4d2286f794a38b2e8e2dfe3211dbd" + ], + "layout": "IPY_MODEL_953b2ba957ff4f0486661ebe051f1a17", "tabbable": null, - "tooltip": null, - "value": 1 + "tooltip": null } }, - "51ce392859cc432bb4f63dc829e0232c": { + "59db068541874a9cbf99726df01cfcb0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_d77e30ca9c2544b09fda32dd7d0f9770", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_c914b5e71d4e445b855be1226e40e0ee", + "tabbable": null, + "tooltip": null, + "value": 0.001 } }, - "521ac3cea740488f9f6227630ee42b8d": { + "5a5319ef8df44bc0ae672f3826fee5c3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -7078,20 +7045,45 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L2_basket:", + "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_197d6c35660a40949fd48d043ac51439", + "layout": "IPY_MODEL_b083fe6baf17438bb7b49244a8b49928", "max": 1000000.0, "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_96bf9b3a1e0749d0b03f2095931df3ea", + "step": 0.1, + "style": "IPY_MODEL_0c85a099811044439becc6a6c9033f3a", "tabbable": null, "tooltip": null, - "value": 0.0 + "value": 0.1 + } + }, + "5a7acd8e77a24e12a904bab5a8ba0d05": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "IntTextModel", + "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_4180b2cbf7134a5d9a09246fcd29c274", + "step": 1, + "style": "IPY_MODEL_a73653f2154b4886a3a42e141aab4511", + "tabbable": null, + "tooltip": null, + "value": 2 } }, - "525fe8bc755e4b6d83cf37159063df3a": { + "5b398de596364341b0e4224ee0f60971": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7144,7 +7136,7 @@ "width": null } }, - "52b8496ac7474548a1c89b5df684f2c5": { + "5be1e237de754f9d940d76a3938d10bb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7197,7 +7189,54 @@ "width": null } }, - "5445e8aa65234c899c56e07edecb10f7": { + "5c2bbea4926b4ba5b14cb6e60e2613ea": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_169637c51cba4af181ee6e19da4c9414", + "placeholder": "​", + "style": "IPY_MODEL_478391749190430a8d63fe919aa7bd71", + "tabbable": null, + "tooltip": null, + "value": "AMPA weights" + } + }, + "5c70c98aa56f48019ea59d1d0a7066cc": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_a5f5d209747f40d19d6592d79c66b462", + "IPY_MODEL_7e467e6c56ef4fdca0898303a3fd7c09", + "IPY_MODEL_50b13d96857449d5bbd1b2799ced4c73" + ], + "layout": "IPY_MODEL_28117b49420e4436bfc7cf77fe6b0f9c", + "tabbable": null, + "tooltip": null + } + }, + "5c96c6b076e644838fbdf46e5fc74df1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7247,10 +7286,10 @@ "right": null, "top": null, "visibility": null, - "width": "99%" + "width": null } }, - "54935ed6c90640bab71b2ef3e10a0dd6": { + "5d3f67f9ad494198915ab06762f9fff5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7303,22 +7342,7 @@ "width": null } }, - "54cbdbd4d8bf44f99641b9733b07d1b0": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "551b5140979042d59bd1555e35494837": { + "5e23f2f3d5844fd5a3c5f49641d814ba": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -7332,20 +7356,20 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L2_pyramidal:", + "description": "L2_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_856cc7c4562d4f578b22c96aa0902237", + "layout": "IPY_MODEL_3c7d65392d8347e8960504e7319c3878", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_67c5c69ce0944adea1d9515af169a9f7", + "style": "IPY_MODEL_d2c6849ca3c94e278c40c89d57c7dd30", "tabbable": null, "tooltip": null, - "value": 0.004317 + "value": 0.006562 } }, - "557e1db1150640e38696717608dcad2f": { + "5e41ccd3a71b4d9ea3d6c87c42dad267": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -7360,62 +7384,129 @@ "description_width": "150px" } }, - "56757ede23bf4339b419cdd4d63c5489": { + "5e48c0b1196a4a07803b5969960bdc82": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_7ec85fc4dab749acbe54ce7f8a8ad0b9", - "placeholder": "​", - "style": "IPY_MODEL_c023b21fa932484ea3bdde08cc9a9ff6", - "tabbable": null, - "tooltip": null, - "value": "NMDA weights" + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "56b9a6ba8b544e92bcbbbdd9dc1a1934": { + "5edb3972ad7442388c4abea6f5484009": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_07c26372f39244e28b880e77d0d5dfe8", - "placeholder": "​", - "style": "IPY_MODEL_0cadccd568954bbd88439ac0bac783de", - "tabbable": null, - "tooltip": null, - "value": "AMPA weights" + "_view_name": "StyleView", + "description_width": "200px" } }, - "56b9c301035049d3a478bf1f20d71fc1": { - "model_module": "@jupyter-widgets/base", + "5ee2bceb68b14ab69f51b065f1119e44": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "BoundedFloatTextModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_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_c5249f8d7f744841ad0149f0a0086417", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_e9291cfe01db4f15829c8d94ddfcb6b7", + "tabbable": null, + "tooltip": null, + "value": 0.08831 + } + }, + "5eecb4bc93f4458d93167eb7b6cd3632": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "5faf0dc74e0b44378b5c1496d515dd17": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, @@ -7459,22 +7550,25 @@ "width": null } }, - "570ec1b7297e45deb24769765e5b8927": { + "5fe38dcd45514dd5b058a013671ae861": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "575c231951fc4b13a1d874e416d96908": { + "5fe85e1872c44982a6be495bc01280fb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", @@ -7492,7 +7586,7 @@ "text_color": null } }, - "588b95794e724523b72cb3663fdfc013": { + "6012636f4d3e41d390ef70ec2fb7cba5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7545,119 +7639,87 @@ "width": null } }, - "58cb1d4f894047e8953a1ae41f066832": { - "model_module": "@jupyter-widgets/controls", + "608441eff28f4c6f850c4513ca44e964": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" - } - }, - "58cd022c2e0046b4b054a0111f966059": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_d3aeefd7b05545ddb8d89ea08aa026d1", - "IPY_MODEL_36a8823ac93b4fc38f60eb3c9965f406" - ], - "layout": "IPY_MODEL_1b892215b10644b8891c71ade591c909", - "tabbable": null, - "tooltip": null + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "58ce4a08447440d9a9dafc024e49de31": { + "610f77448b6d41eea79f060586d421fa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "IntTextModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "IntTextModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "IntTextView", + "_view_name": "FloatTextView", "continuous_update": false, - "description": "No. Spikes:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_f918e9a15e734a87806ca02ca61f0da6", - "step": 1, - "style": "IPY_MODEL_51ce392859cc432bb4f63dc829e0232c", - "tabbable": null, - "tooltip": null, - "value": 1 - } - }, - "58e2774b791245e9bc4c633a3b2042f2": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DropdownModel", - "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": "tstop (ms):", "description_allow_html": false, "disabled": false, - "index": 0, - "layout": "IPY_MODEL_bfb2851bfa404357b511fe0f3b623ae8", - "style": "IPY_MODEL_fa9321412c944f818cedd37fda1efffa", - "tabbable": null, - "tooltip": null - } - }, - "591a980ae3e24c87bebea945d87d8e9b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_2d8aee3936df4fb68c20d936dec1c0e2", - "placeholder": "​", - "style": "IPY_MODEL_edc649b19e32472f8cbb92f720614e91", + "layout": "IPY_MODEL_9bdc98a4437c47a7a9fa2a284339f38d", + "max": 1000000.0, + "min": 0.0, + "step": 1.0, + "style": "IPY_MODEL_1997ba458875474981784273a13e4a4a", "tabbable": null, "tooltip": null, - "value": "
Simulation finished
" + "value": 170.0 } }, - "593ae6ac88d3425a9410047b3217e685": { + "62510bd16e7c4926a08c4fc5564297eb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7710,34 +7772,30 @@ "width": null } }, - "5948501cf39d469b9ff3acc17d3e31f6": { + "6358bd38514042ef85af7252c02d07cf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L2_basket:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_80c598adb73f4095889ec17522f0b1ff", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_bc660b58b4d04a6c99232bffd373e57e", + "layout": "IPY_MODEL_34f6d7639a8f41879557503a7d91ccfc", + "placeholder": "​", + "style": "IPY_MODEL_3684ad15740a4dfcb8de20639ff9a3cc", "tabbable": null, "tooltip": null, - "value": 0.1 + "value": "\n HUMAN NEOCORTICAL NEUROSOLVER
" } }, - "59b6c1c9ec7c498aa070a860896ba8f7": { + "6377102b022a41809ce19ac4c124093b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -7752,15 +7810,15 @@ "align_content": null, "align_items": null, "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": 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_area": "right-sidebar", "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -7770,7 +7828,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "760px", "justify_content": null, "justify_items": null, "left": null, @@ -7782,37 +7840,43 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": null, + "overflow": "scroll", "padding": null, "right": null, "top": null, "visibility": null, - "width": null + "width": "714px" } }, - "59dc6d993d0448098521256ad4c80878": { + "64c4fb8be2bd4fe7abc9fb06147979e4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "RadioButtonsModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "RadioButtonsModel", + "_options_labels": [ + "Evoked", + "Poisson", + "Rhythmic" + ], "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_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 + "_view_name": "RadioButtonsView", + "description": "Drive:", + "description_allow_html": false, + "disabled": false, + "index": 0, + "layout": "IPY_MODEL_8f698592aaf948c9ad2c72da5daa6710", + "style": "IPY_MODEL_b0360731c82d4943bffa5044603c4bf0", + "tabbable": null, + "tooltip": null } }, - "5a2dbbce551f4253b1db3ea55ae8cd4f": { + "656397f53079450791771317ac9fa5a0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -7824,73 +7888,86 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "description_width": "" } }, - "5a2f41d365c54009aaf887d92ae76196": { - "model_module": "@jupyter-widgets/controls", + "660664227173417e85a26d0bc5556efe": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "LayoutModel", "_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 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_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%" } }, - "5a676d04f70e4e27b7fe9b988d8dcba5": { + "66c8629474c1481590bc9e9f0c9e527d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "RadioButtonsModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "RadioButtonsModel", - "_options_labels": [ - "proximal", - "distal" - ], + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "RadioButtonsView", - "description": "Location", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_bc171c4e26f84130b81f6193eacd085e", - "style": "IPY_MODEL_3eabbae49cf5459bafe0227008d06e8a", + "layout": "IPY_MODEL_e5375542f7f24b199b34a0f18256632c", + "placeholder": "​", + "style": "IPY_MODEL_081b364d640a4a729c01f66c3335007c", "tabbable": null, - "tooltip": null - } - }, - "5b3a67a867a94cf89c447586459fa2f2": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "tooltip": null, + "value": "
Simulation finished
" } }, - "5b6b549c49c64bdbad709bd70f9c6739": { + "6748c0c4def74dcbac56e5772ab53846": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -7905,168 +7982,71 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_4bc951fa21bf40d5a236d87c0a9f083d", + "layout": "IPY_MODEL_fe133e07a47d49a5bb5e89e96f9989fb", "placeholder": "​", - "style": "IPY_MODEL_2943d2786a8e4c599afd8ab41c92e2e5", + "style": "IPY_MODEL_7a03dc4752934a56b58471af71525e77", "tabbable": null, "tooltip": null, - "value": "

\n Receptor: ampa

" - } - }, - "5bfcc91a665146e881ad8690f837ab36": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "AccordionModel", - "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_42dead01273c4e4aa73b34d69cbd5759", - "IPY_MODEL_647bbbed726d4d01878a3e5f3f29fd80", - "IPY_MODEL_03745711bc0d48218ba9141d9699f656" - ], - "layout": "IPY_MODEL_1d2c974adf7440ccb40b790272e6eee5", - "selected_index": null, - "tabbable": null, - "titles": [ - "evdist1 (distal)", - "evprox1 (proximal)", - "evprox2 (proximal)" - ], - "tooltip": null - } - }, - "5c49e0ad312e4110bb4005aa8918bbe2": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "5cffc56bfa904f5b987f810d59c52600": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "5d2fa5ce5c024a69a6411f40d9fc9d9c": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", - "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 - } - }, - "5e012fc6972b4430a5b522dd3d593455": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" + "value": "
" } }, - "5e748e1b4a1e4dfdbce54dbf003f1b82": { + "67794d94985c474293b5e1683383cf9f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DropdownModel", - "_options_labels": [ - "default" - ], + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Simulation Data:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_3efc2592b9ee4f5187ca865c0208fc3a", - "style": "IPY_MODEL_e993724a7cf941a78b42e0f33276a878", + "layout": "IPY_MODEL_07bae56f49a94185982a8f3b83ae6ac5", + "placeholder": "​", + "style": "IPY_MODEL_ce3a7ea110d74526921c88f870d7456f", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "

\n Receptor: ampa

" } }, - "5ecabbb37e734e488b170d3c6e7fffcf": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "67d36326985b40e3bfeda9b390aa3bfe": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", "state": { "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", "_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_9fbc36add0da41b8a306d86540cf0575", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_9dd59e91a47941ceb378bda6c82061c1", + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_68c4ea5b32c743bbbb6c1adb96bd6c93", + "msg_id": "", + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "107c5722e2d64610a80b38a8072223b5", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": "Accordion(children=(VBox(children=(BoundedFloatText(value=63.53, description='Mean time:', max=1000000.0, step…" + }, + "metadata": {}, + "output_type": "display_data" + } + ], "tabbable": null, - "tooltip": null, - "value": 0.0005 + "tooltip": null } }, - "5f5e2beabde04e8585d8ef8099c13217": { + "67fd84b427004c2cb9c285d6a940ed92": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8119,85 +8099,87 @@ "width": null } }, - "5f639aff0cd04f0c82dbfb6e1e16c2da": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "60745ef6b4ab4c24b00e515e89f201be": { - "model_module": "@jupyter-widgets/controls", + "68c4ea5b32c743bbbb6c1adb96bd6c93": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "LayoutModel", "_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 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "6086bc5709ad4cf3a0d65cefa09ccca2": { + "68e74492e669416f80cdab6bc18ea818": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", "description_allow_html": false, - "layout": "IPY_MODEL_0a712c8c64c740879002c4de4ecec8ef", - "placeholder": "​", - "style": "IPY_MODEL_daf2d81707b543d084b0b6cf8446eeb7", + "disabled": false, + "layout": "IPY_MODEL_ec4730cf841d4955bc67c94996a02760", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_4388dde1eb2a4b54b3ff2e6070eed693", "tabbable": null, "tooltip": null, - "value": "AMPA weights" - } - }, - "614eb64b4d1e4def83cdad8772657260": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "value": 0.0005 } }, - "61ca75027b0740b69d77b5bed8e5b867": { + "6a2668c9df554439b136545298633582": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8250,7 +8232,30 @@ "width": null } }, - "620d12a38b83459b9e534be761beb21e": { + "6ae0067d1ea54e3c83bc3a542257c06a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2fa843ed9f5a4280b884f90f7b1c99de", + "placeholder": "​", + "style": "IPY_MODEL_7cb2dcdf0a634effbb3c02b926596d3f", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: ampa

" + } + }, + "6aeb0b34ebb643309835b5a67cff9eb8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8303,7 +8308,7 @@ "width": null } }, - "62745d0cc9104082bd969ec11fdb4214": { + "6b50d38d5ccc47d0b83c11622a059c29": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8356,29 +8361,22 @@ "width": null } }, - "62856aed00d84c638f1c5e2bc1f8c7bb": { + "6b7cfa3083ed4f99b915caae4dc47f6b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "" } }, - "62af885a132a4d3abe8b9a2d130d260f": { + "6c15000c920148bd9530e24f972f86e3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -8390,50 +8388,33 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "150px" } }, - "647bbbed726d4d01878a3e5f3f29fd80": { + "6ca23515faf945d1b2bce05c1a3182ac": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_0db629b3851543129a9534ee95f081d6", - "IPY_MODEL_189d7f9a003a4ba7b09ddfa02ea7c37c", - "IPY_MODEL_58ce4a08447440d9a9dafc024e49de31", - "IPY_MODEL_d658b2d528f046cfb8644c1efa006f98", - "IPY_MODEL_56b9a6ba8b544e92bcbbbdd9dc1a1934", - "IPY_MODEL_d20f3ac449694589979c57fc2d9918e2", - "IPY_MODEL_234a460fd63c41858e7a06df6465fc6c", - "IPY_MODEL_c0fb048c77b8494b80e3f5f165695adf", - "IPY_MODEL_ba9c759f578f4606aa2bad5d42b25265", - "IPY_MODEL_0e0dabe9dfaa42039437a9b6211f5c55", - "IPY_MODEL_79e9fc4219d84e90a81eca2d46d9eb0d", - "IPY_MODEL_fcc7217bb82d424fb30e9c9c8da63d57", - "IPY_MODEL_d394e49ef4174d1ab7821571070d4988", - "IPY_MODEL_f9f2d37bcd4d4927a767285dcf27a050", - "IPY_MODEL_b4a11900c16843a79aff80794267890e", - "IPY_MODEL_b9193400acf94512aee049c09b6458ca", - "IPY_MODEL_98207b6dad4e49c0aaa712a8de8be5e9", - "IPY_MODEL_8becaaffbd3a407a9ec940fb03f0c796", - "IPY_MODEL_78be8b2ec8434f098f43e4edcfa20822" - ], - "layout": "IPY_MODEL_8f8e77db96174d0e8831806b382a754c", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_345f3636881b4946b6e16c34da3b872c", + "placeholder": "​", + "style": "IPY_MODEL_101b2f75d51d49f9937154e02a80b37f", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "Synaptic delays" } }, - "648f5c0fae554b7a98e1e06258044d05": { + "6dc086d006d24c9f9ac7516acb9a9ad7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8486,60 +8467,55 @@ "width": null } }, - "65126f88dc22438db8597d45c22955be": { - "model_module": "@jupyter-widgets/base", + "6dc45e8582a942e4809535e2504fd0d4": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "IntTextModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "IntTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_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%" + "_view_name": "IntTextView", + "continuous_update": false, + "description": "Seed: ", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_7da17b4559664caf91c1391de0a766fd", + "step": 1, + "style": "IPY_MODEL_02de19922a7f43b0a2ff59b59635b157", + "tabbable": null, + "tooltip": null, + "value": 2 + } + }, + "6e6a4103c9d84a888536079f1ec27e7e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_5297ee4b727c441381073656bdccc8a1", + "placeholder": "​", + "style": "IPY_MODEL_1c05cf27fe4a4a07b85a6050a8729db4", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: nmda

" } }, - "6657f0c9389548d1832ee9f923fb49b3": { + "6e80b5c4a5904816b21f91c62e7d07c6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -8554,15 +8530,14 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_a084fc8649074a89a966128a570f5712", - "IPY_MODEL_a19faa5fe58642ccafb01d2a3d8be300" + "IPY_MODEL_4c0f330e04c8440fa6a88427aff26672" ], - "layout": "IPY_MODEL_b6103675b132490db4bf18d67db49cd8", + "layout": "IPY_MODEL_09fca856ad114fbd87ad4c63c33edc3b", "tabbable": null, "tooltip": null } }, - "6663e9d2cc584e129aea5b9c9708ce21": { + "6e8aedaffa7e4653a98c9639c2237724": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8615,7 +8590,7 @@ "width": null } }, - "66d50cc85d07486a91fb8a37454f6e6c": { + "6ea70e8bc21a41cdbed94ff924a66134": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8668,47 +8643,137 @@ "width": null } }, - "673f4eb4c6a74904add5656b72570b6d": { + "6fb619fb9a4d47a3b21aba02cb4743b0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TabModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "TabModel", + "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "TabView", + "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_436d48fec62e44938689baa4c1b91b91" + "IPY_MODEL_12d45e9c02d74a9b85a0a14b07060011", + "IPY_MODEL_08b5df934f1c49e98e1d32bd6b5bf397" ], - "layout": "IPY_MODEL_a3effcad9d644927974840466534a8c3", - "selected_index": 0, + "layout": "IPY_MODEL_ec33eb775be24984a7ec4732d6e6bec9", "tabbable": null, - "titles": [ - "Figure 1" - ], "tooltip": null } }, - "674d8d4f75234234802ba392849d1e97": { - "model_module": "@jupyter-widgets/base", + "70834fa98ad547f2ac9950e09c2c5201": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "ButtonStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, + "_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 + } + }, + "713ab1f7e06149189b553fb8d877e478": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "720bcc62cc1f4d138b422d4394c76bf6": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": "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 + } + }, + "7226d275a5324ed1b3865043a22117ad": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, @@ -8747,30 +8812,111 @@ "width": null } }, - "6768ef48dba14a47bbb8a8bc92967750": { + "7282b30b1f9f48ebbd8e8f29372b4965": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LabelView", + "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_38a03936de2f423085936f1bdd10cdf5", + "layout": "IPY_MODEL_0d74539a6f504169a70c24eb40f95506", "placeholder": "​", - "style": "IPY_MODEL_20c231172fa94ad18c0148b6dbdf7efd", + "style": "IPY_MODEL_713ab1f7e06149189b553fb8d877e478", "tabbable": null, "tooltip": null, - "value": "Figure config:" + "value": "

\n Receptor: gabaa

" + } + }, + "728e95733d40434a8c638160d47881ce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatTextModel", + "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_56207e5e5f03461680727dbd61ed43e7", + "step": null, + "style": "IPY_MODEL_2e9bfc351be9402fb9696fd2e7ac6fc0", + "tabbable": null, + "tooltip": null, + "value": 30.0 + } + }, + "729340defe144418bfd055d72e27effe": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FileUploadModel", + "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_dacf3bc982ac4d64a75bf63626ab725c", + "multiple": false, + "style": "IPY_MODEL_cf6ea87304f34b8387c43fdb0e54dbd8", + "tabbable": null, + "tooltip": null, + "value": [] + } + }, + "72a88d4f49d2475a8849a63cf11b69be": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FileUploadModel", + "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", + "button_style": "success", + "description": "Load data", + "description_allow_html": false, + "disabled": false, + "error": "", + "icon": "upload", + "layout": "IPY_MODEL_0f9078d0dcfd4ae9b74552006767471b", + "multiple": false, + "style": "IPY_MODEL_b61d67f27ebf4cc8ad64442d7b7fc653", + "tabbable": null, + "tooltip": null, + "value": [] } }, - "676ec639b3b548318875bd918604d88c": { + "72bef530bfe04a10b8fccb182a519e51": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8823,7 +8969,29 @@ "width": null } }, - "67c5c69ce0944adea1d9515af169a9f7": { + "7392b90919364a54b4657b5c54faf5c3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonStyleModel", + "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 + } + }, + "74ac80edc519483ba5fa520b04b6fe10": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -8835,10 +9003,10 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "description_width": "" } }, - "680bc70dc87246a08ec09eb1bda4d1b6": { + "74be6d6169b04573a49230303660384c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8891,7 +9059,54 @@ "width": null } }, - "6873c82e49354b6c84c45647590e45f2": { + "74df258650d34182bc9ab4e6962f430e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_78e5a90554d145e6b796802f11629d83", + "placeholder": "​", + "style": "IPY_MODEL_2f5bd995c1634c66a0177a583012e7d8", + "tabbable": null, + "tooltip": null, + "value": "
" + } + }, + "75853a6dc4864e0d976fdc5082e7dc7d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_02246be944154e57adb79ca0f09fbd9d", + "IPY_MODEL_99df4f586c324d909b4b1bbbb832be37", + "IPY_MODEL_c31a67eff9ce4c88b401d737c37e7462" + ], + "layout": "IPY_MODEL_33aab058394e4e969238d7def3d1db0e", + "tabbable": null, + "tooltip": null + } + }, + "75d86462fcff46ab9973957fc16a2048": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -8944,30 +9159,34 @@ "width": null } }, - "689ba65158fa4a35b668807868865ba2": { + "75fba6c88bf747a18f5b168e55896011": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "ButtonView", - "button_style": "primary", - "description": "Make figure", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", + "description_allow_html": false, "disabled": false, - "icon": "", - "layout": "IPY_MODEL_eade6b1d5494426d9123195cd8f6817f", - "style": "IPY_MODEL_328bfff3de074de1ab73848399fb9c61", + "layout": "IPY_MODEL_90d67d241fd64563a3c82830c6622bce", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_53802db349fd4ab4bb0a7838e10433a1", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 0.0005 } }, - "6a2f3c296e0e4f31b5221f010352ea32": { + "768d4d47b9af49ea95aabc900caf64ab": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -8979,133 +9198,110 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "150px" } }, - "6a3dfaf5b5af49c6857414c451de7743": { + "77debe9eec174c7f8712e9a6597de710": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_81e98b4db80f4a72a21911688960ee1e", - "IPY_MODEL_299ba804e1f54426b879bdaf181ab02f", - "IPY_MODEL_489fc6b41ea34e5bb5c42a3195ff0070" - ], - "layout": "IPY_MODEL_87be1a32542d43df8e981f58951c8ac4", - "tabbable": null, - "tooltip": null - } - }, - "6b83f28ac7c147aa83ce07e9ffe542ab": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" - } - }, - "6bc3d2c2bd35489282e91df7b3b5dee9": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "TabModel", + "model_name": "IntTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "TabModel", + "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "TabView", - "box_style": "", - "children": [ - "IPY_MODEL_ccd8af71525b4727b4dad32d16457b93", - "IPY_MODEL_4fbd9ddae4b449718f9df267e0950d36" - ], - "layout": "IPY_MODEL_73051196baf040699a47273ce0b9c65a", - "selected_index": 1, + "_view_name": "IntTextView", + "continuous_update": false, + "description": "No. Spikes:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_9442abd06f7c453fb1651a49f95a50c6", + "step": 1, + "style": "IPY_MODEL_768d4d47b9af49ea95aabc900caf64ab", "tabbable": null, - "titles": [ - "ax0", - "ax1" - ], - "tooltip": null + "tooltip": null, + "value": 1 } }, - "6be298da78824696bbbdde07e4418cab": { + "784eb3e8b2314ae894cbb49913903529": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "ButtonStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" - } - }, - "6be8ffd3cb924b4ba6184970f77cac0b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "LabelModel", - "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_676ec639b3b548318875bd918604d88c", - "placeholder": "​", - "style": "IPY_MODEL_4bc4218bbc1745eab1b9aa8fd041daa2", - "tabbable": null, - "tooltip": null, - "value": "default: current dipole" + "button_color": null, + "font_family": null, + "font_size": null, + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "6cf5e0daab9f4fb393a6418cb9bea796": { - "model_module": "@jupyter-widgets/controls", + "78937bf27c1e47ac90bb166eedc52015": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "TextStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "TextStyleModel", + "_model_name": "LayoutModel", "_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 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "6d9522969ea94dee96d1f24a8c756c10": { + "78b337aa9ec745259d328b9b8eb309c8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -9120,22 +9316,60 @@ "description_width": "200px" } }, - "6e47e793c8434530b8c9aaee71e9a131": { - "model_module": "@jupyter-widgets/controls", + "78e5a90554d145e6b796802f11629d83": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "6f596bf8c6f2472788c98a088d2e1035": { + "7929192523b243378a5e7f968d7566a5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -9152,73 +9386,57 @@ "description": "weight", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_4a35408dfd5a41e5a4903dfcb0af2a71", + "layout": "IPY_MODEL_1dba24a209a8403bbd33fcaf7f64aff8", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_4de37ab166964f218552eda31c2adf9a", + "style": "IPY_MODEL_a586f22df0e04f3aa08a466a65aea47e", "tabbable": null, "tooltip": null, - "value": 0.0005 + "value": 0.02 } }, - "6fa053e4a2d6476ea3ad93215a8ac4f0": { + "7a03dc4752934a56b58471af71525e77": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "6fedabc238ad42f38e8f42596c5d4874": { + "7a20a073420c4a7a9f26f4267d272957": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "AccordionModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "AccordionModel", "_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_02a2faeb5dfb445fa952252b11e9f24f", - "placeholder": "​", - "style": "IPY_MODEL_f7800c3ce5f849dbb76e5749f5b901f7", + "_view_name": "AccordionView", + "box_style": "", + "children": [], + "layout": "IPY_MODEL_1ddadd0983de44a9ab27dbd5c52c1ed9", + "selected_index": null, "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: ampa

" - } - }, - "709169496df744bcb695622be1ef076e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "titles": [], + "tooltip": null } }, - "71429736f7f645b4bd21bfab3105f1a7": { + "7ab042dc81f942a99227cb6cd0aa8a9d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9271,7 +9489,7 @@ "width": null } }, - "71c07904ad17477794e61d9c3c63dc9d": { + "7b33739fe0a64ddab03a1e9f5dea989b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -9283,10 +9501,10 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "150px" } }, - "721b6daeb34b40b5b8065fef82efb540": { + "7c284facd5c946ca9936d927f1bfa2f8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -9300,62 +9518,38 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "Mean time:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_10fbf403c6014984a5aa31a45b7faf13", + "layout": "IPY_MODEL_84af1c76146f47fe990584a9d1c8a18d", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_0416cae4ffbd4624a9e9ba6bdcb3a28a", + "style": "IPY_MODEL_b252b201e3904a92acf9ab1fe8a1cca2", "tabbable": null, "tooltip": null, - "value": 0.0005 + "value": 26.61 } }, - "721e44de95004cd2b429ff42a97093f9": { + "7cb2dcdf0a634effbb3c02b926596d3f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "HTMLStyleModel", "_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_5f5e2beabde04e8585d8ef8099c13217", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_93a94645cd124ca3a412a0418370d362", - "tabbable": null, - "tooltip": null, - "value": 0.684013 - } - }, - "724f10888373464f8904b10a1330d8a3": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "73051196baf040699a47273ce0b9c65a": { + "7d28ade3bc0243a098593e6c95c7df3d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9408,56 +9602,7 @@ "width": null } }, - "73ddd5cd0d374798a8568592cf59ad35": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_891bcbfd03244c7eaa0815bfba6b918b", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_f8b98549e08b48cc833054b3555512da", - "tabbable": null, - "tooltip": null, - "value": 0.0 - } - }, - "7425e94c23cb4536a716c014710de0b7": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "AccordionModel", - "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_c93aead1a9aa4f9fa73462504d1d19f6", - "selected_index": null, - "tabbable": null, - "titles": [], - "tooltip": null - } - }, - "75ab4fe4ac214078ab3479e9315b8760": { + "7d828b20605741378f1fc0c05c3925b8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9510,7 +9655,7 @@ "width": null } }, - "75bb7d24a97746ea94bf5bd663fe643e": { + "7da17b4559664caf91c1391de0a766fd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9563,34 +9708,7 @@ "width": null } }, - "76cbe628065d457c98fa81395e54cf09": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_14249fee7c5942169bf79978ec3810fd", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_23ca6191319b45868264687421091df3", - "tabbable": null, - "tooltip": null, - "value": 1.0 - } - }, - "775521d70749440faf06761bac41ee6e": { + "7dc3559fd2684a5f951af5ad68a7ee2a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9623,7 +9741,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "460px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -9640,64 +9758,78 @@ "right": null, "top": null, "visibility": null, - "width": "576px" + "width": null } }, - "78be8b2ec8434f098f43e4edcfa20822": { + "7e083386eadd43689e10afe5bbb93dd1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "ButtonStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "ButtonStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L2_basket:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_62745d0cc9104082bd969ec11fdb4214", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_5e012fc6972b4430a5b522dd3d593455", - "tabbable": null, - "tooltip": null, - "value": 0.1 + "_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 } }, - "79e9fc4219d84e90a81eca2d46d9eb0d": { + "7e467e6c56ef4fdca0898303a3fd7c09": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L5_pyramidal:", + "_view_name": "LabelView", + "description": "", "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_945a6b9872544ba59fc56fc085100b73", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_0dece52c70c548e49105cadbd3029161", + "layout": "IPY_MODEL_1904bf8b79084549a461ff0421d87820", + "placeholder": "​", + "style": "IPY_MODEL_440af6fce7c146d580006f8711537e95", "tabbable": null, "tooltip": null, - "value": 0.0 + "value": "Figure config:" + } + }, + "7e9ace225c514d6d80a7cb4fb442612d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "LabelStyleModel", + "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 } }, - "7a44284fada94038a74b4fc1d9d59c37": { + "7fa3fff1fe744a7f93767d6bb18eb831": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -9709,10 +9841,34 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "description_width": "" + } + }, + "804269a8c51a4ce2be0115924cb30019": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_89978674257c465b9c67386bd870436c", + "IPY_MODEL_4413c882143f4a84895afe39c37912a9", + "IPY_MODEL_74df258650d34182bc9ab4e6962f430e" + ], + "layout": "IPY_MODEL_375af561c0094f31bfc92f0502fa782c", + "tabbable": null, + "tooltip": null } }, - "7c80bea67fab4dbc82ca138e38956ad7": { + "80a3524a620245f09c3b56c62dac2d07": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9765,7 +9921,88 @@ "width": null } }, - "7d16050eadaf407d8ca9fc3353310062": { + "813e20ac89044ef8b30b21d2eabba03c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "AccordionModel", + "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_6e80b5c4a5904816b21f91c62e7d07c6", + "IPY_MODEL_dda94c02038241628ffa4d86082ec9c3", + "IPY_MODEL_464db501fd854998b540fb6b75bef50f", + "IPY_MODEL_57501e14e47c4841b9acf5373ab369e2", + "IPY_MODEL_cc6359f0156148f7847527f488912938", + "IPY_MODEL_e10eeea4e8fc468f9bcde068e6a3bb26", + "IPY_MODEL_45066d9e515145688521063469ec5096", + "IPY_MODEL_c2d442f082924d7f8b5654abb9dd2e33", + "IPY_MODEL_99c7224bb5eb4f649a0eb1134c0d6472", + "IPY_MODEL_32e27ffe7c3d4e2498ad26cd53007982", + "IPY_MODEL_a372e0ee7e214556a43897ddc16a1cd7", + "IPY_MODEL_1926221971404e3b8ddb01e30d753036" + ], + "layout": "IPY_MODEL_67fd84b427004c2cb9c285d6a940ed92", + "selected_index": null, + "tabbable": null, + "titles": [ + "L2_basket→L2_basket (soma)", + "L2_basket→L2_pyramidal (soma)", + "L2_basket→L5_pyramidal (distal)", + "L2_pyramidal→L2_basket (soma)", + "L2_pyramidal→L2_pyramidal (proximal)", + "L2_pyramidal→L5_basket (soma)", + "L2_pyramidal→L5_pyramidal (proximal)", + "L2_pyramidal→L5_pyramidal (distal)", + "L5_basket→L5_basket (soma)", + "L5_basket→L5_pyramidal (soma)", + "L5_pyramidal→L5_basket (soma)", + "L5_pyramidal→L5_pyramidal (proximal)" + ], + "tooltip": null + } + }, + "81a46989fbc5430daba3a993b989a877": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_87fd590cb96340989115fbc8fdb8cef0", + "msg_id": "", + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "090fd79e6c5d4bdc8c3d362e0ec8d5d6", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": "Tab()" + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "tabbable": null, + "tooltip": null + } + }, + "81dc82d8deb148369f236c64acf05901": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -9780,16 +10017,16 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_3425d824542d4de4a69491d67debe6ec", - "IPY_MODEL_82c47a53cfdf4501be9a7e007c2478a6", - "IPY_MODEL_5a676d04f70e4e27b7fe9b988d8dcba5" + "IPY_MODEL_f82f4425be07432ca498225e15a0e50b", + "IPY_MODEL_59db068541874a9cbf99726df01cfcb0", + "IPY_MODEL_1e72d365676648eb8234e14ef2ec264a" ], - "layout": "IPY_MODEL_1ef0b90823f54ec6ae2e964e4affb894", + "layout": "IPY_MODEL_986c8a14b9404ab5b323a81d060090e4", "tabbable": null, "tooltip": null } }, - "7d1bd1fdd8044699b1e52d209b7158d5": { + "8256f5946b4e413584680ffb7cbf4cec": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9839,46 +10076,19 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "98%" } }, - "7d48ea63c29a4592b8db03751528eba6": { - "model_module": "@jupyter-widgets/controls", + "83d8b7443eae4aea974d11e047e0f998": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "LayoutModel", "_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_dcdce2e860034d12ae2e5e239673453c", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_b48c73e6a15d43debf3e319b53aee01c", - "tabbable": null, - "tooltip": null, - "value": 0.006562 - } - }, - "7d565daeda6a49f386a7ef120ba03f17": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, @@ -9922,7 +10132,22 @@ "width": null } }, - "7d5af0fdcd2c4c0a8c18a8cafb38435a": { + "840f07bc5ffe4173aa5f9ed60d18754f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "84af1c76146f47fe990584a9d1c8a18d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -9975,30 +10200,45 @@ "width": null } }, - "7d85567c87ed4dc49646a821448602ba": { + "851de8812a1e4b2bb2da4f782a92ee86": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "8552cc8490674635bf75c964ffb8835a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "VBoxModel", "_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_4686340184464b29be6875268ba9db8b", - "placeholder": "​", - "style": "IPY_MODEL_071ca42e7df2415a9069cd061af1ea4f", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_4cc701877e6f457c9681d38151ecb4a9", + "IPY_MODEL_67d36326985b40e3bfeda9b390aa3bfe" + ], + "layout": "IPY_MODEL_6e8aedaffa7e4653a98c9639c2237724", "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: gabaa

" + "tooltip": null } }, - "7da73f939a124c139ad62a8155a50a32": { + "8616439ffc2249b2ba646f67cc2fd0e9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -10010,10 +10250,52 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "200px" + "description_width": "150px" + } + }, + "86abcf85fe9a47769fcbcdbbbf66bb88": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonStyleModel", + "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 + } + }, + "86e69787335444fa969634891592b73a": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_6012636f4d3e41d390ef70ec2fb7cba5", + "msg_id": "", + "outputs": [], + "tabbable": null, + "tooltip": null } }, - "7e4d921024ca4d35932840671d454f98": { + "8702842997f94886b3134acfe43eab78": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", @@ -10031,7 +10313,7 @@ "text_color": null } }, - "7ec85fc4dab749acbe54ce7f8a8ad0b9": { + "87101e9b992542bf85bb7d0e19aae4c0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10084,7 +10366,34 @@ "width": null } }, - "80c598adb73f4095889ec17522f0b1ff": { + "875137253eba4cfc8320ff8d96bedc32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_c7d9f90c97404c9a997a0f3b3437d781", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_656397f53079450791771317ac9fa5a0", + "tabbable": null, + "tooltip": null, + "value": 0.025 + } + }, + "87f4659442bf4050a6ce361a6290bf36": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10137,7 +10446,7 @@ "width": null } }, - "8133f33dc21249ffb6cd644bc7f0ed2b": { + "87fd590cb96340989115fbc8fdb8cef0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10190,45 +10499,7 @@ "width": null } }, - "81e98b4db80f4a72a21911688960ee1e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_be19d740003f4d01abedb9a523d59c8d", - "placeholder": "​", - "style": "IPY_MODEL_daf4acbfcce049b39f3c9c124cb34617", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: gabaa

" - } - }, - "82445b6a043c4447af26dc20b18bfcd8": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "82a8fb27a60140588a3831f26d18f783": { + "88e77f8f77ee45659b4387eecaee0d9b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10281,35 +10552,45 @@ "width": null } }, - "82c47a53cfdf4501be9a7e007c2478a6": { + "897e2b8e8842426e86edf8752e53f593": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "RadioButtonsModel", + "model_name": "DescriptionStyleModel", + "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": "" + } + }, + "89978674257c465b9c67386bd870436c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "RadioButtonsModel", - "_options_labels": [ - "Evoked", - "Poisson", - "Rhythmic" - ], + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "RadioButtonsView", - "description": "Drive:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_bc171c4e26f84130b81f6193eacd085e", - "style": "IPY_MODEL_296a261d27c8411c90f55e281f53b6ad", + "layout": "IPY_MODEL_1bc97f7a701f490b885485df294f7e47", + "placeholder": "​", + "style": "IPY_MODEL_f83d52ea72f6486695ec36b0c7842c23", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "

\n Receptor: ampa

" } }, - "84f37b196f4840dfa5b986549298fd10": { + "8b9a3e29484d443dbac0aa767d229bdb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10362,7 +10643,57 @@ "width": null } }, - "856cc7c4562d4f578b22c96aa0902237": { + "8bcee94f8dfc468aa79a3589c1d3fded": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_afbbe8ab8284425ab5a43226e4dc6f2d", + "placeholder": "​", + "style": "IPY_MODEL_589696569c5e4ea195180652f89d2094", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: gabab

" + } + }, + "8c7e01a08d3a4045841ec8c0499920b4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_c4160e3b4df0403f8c5adc188b9bfdd1", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_982cb9e591e2492c83b0d38c7315d320", + "tabbable": null, + "tooltip": null, + "value": 1.0 + } + }, + "8cc3a8f614cd46c2a47cc9a19dcd365e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10415,22 +10746,7 @@ "width": null } }, - "85df3fa8b2254edaa495a113840bd7ba": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "8646597e41c0463b88a41477ae704e3b": { + "8cc460107c534ff186ffe29ee1896b07": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10483,56 +10799,7 @@ "width": null } }, - "86aad171553f4e8eabbf9589639e1b43": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", - "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 - } - }, - "86db634920af4c72b49633c89b04e23b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_d6d2ba0c9787415fb76a34792db70717", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_85df3fa8b2254edaa495a113840bd7ba", - "tabbable": null, - "tooltip": null, - "value": 63.53 - } - }, - "87be1a32542d43df8e981f58951c8ac4": { + "8de0ded4d1d94d85b9f1266ec324284a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10585,25 +10852,7 @@ "width": null } }, - "887cee370dde4ce098088387e8842dbf": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "891bcbfd03244c7eaa0815bfba6b918b": { + "8de251d2e0094e2199128c0d5080dadf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10656,7 +10905,7 @@ "width": null } }, - "8930cfeaf64f4328aebbce634f7be74b": { + "8f698592aaf948c9ad2c72da5daa6710": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10706,10 +10955,10 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "auto" } }, - "8a06ebef322543928b4ec5036342ec48": { + "8f910338e82040b9aee7fafc8ef7f8f3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10762,7 +11011,61 @@ "width": null } }, - "8a2a45ee7df64b13b416f177079cd81e": { + "8fc04070b2e84494938f592c9298af0a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_c8c28337f83142bfb00f6b29d1d1248e", + "IPY_MODEL_875137253eba4cfc8320ff8d96bedc32", + "IPY_MODEL_c208afc1a2bf4540bf081e4da2428252" + ], + "layout": "IPY_MODEL_a9b04b9b22fe476c9d568249db8df4f2", + "tabbable": null, + "tooltip": null + } + }, + "902dab12c4e64a89bc098395952c67f3": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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" + } + }, + "90463729cacf42d8a1291fd1ad86f7b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" + } + }, + "90d67d241fd64563a3c82830c6622bce": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10815,45 +11118,60 @@ "width": null } }, - "8a5b047fa5c3414b97d76a5494d9e5ce": { - "model_module": "@jupyter-widgets/controls", + "911d636b49b44bb7a2ccb5f94d3ada8e": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" - } - }, - "8ba8a6ccc2394803869700c4e9d8fbfb": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_f998ffc0a4dd4c36a9ab25fd6cae3c3a", - "placeholder": "​", - "style": "IPY_MODEL_b28e190d6ebd44c997fbdf43b68cf0de", - "tabbable": null, - "tooltip": null, - "value": "AMPA weights" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "8becaaffbd3a407a9ec940fb03f0c796": { + "91f644b94a2d44aa9006faba31f65a15": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -10867,20 +11185,20 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L5_basket:", + "description": "weight", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_588b95794e724523b72cb3663fdfc013", + "layout": "IPY_MODEL_58485566fab245abb0b55832cea2e2ad", "max": 1000000.0, "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_aab138443d4541fd92c5428e57c50a60", + "step": 0.01, + "style": "IPY_MODEL_ded3173cc43e404eb93841c5485581d7", "tabbable": null, "tooltip": null, - "value": 1.0 + "value": 0.00025 } }, - "8c02bf47ab544c059202733419cf91ca": { + "921484e7731c434b84c24c6e1592351c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -10894,20 +11212,20 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "Std dev time:", + "description": "weight", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_f4205524a01f416c8e177d162509c25e", + "layout": "IPY_MODEL_5faf0dc74e0b44378b5c1496d515dd17", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_cfc543a168e74ab1baeae6705cc7943d", + "style": "IPY_MODEL_531632b736f5463aa7da8f40b037f07a", "tabbable": null, "tooltip": null, - "value": 3.85 + "value": 0.0005 } }, - "8c335e05db6141a38aea3d33ec245a56": { + "9442abd06f7c453fb1651a49f95a50c6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -10922,10 +11240,10 @@ "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", + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, "bottom": null, "display": null, "flex": null, @@ -10940,7 +11258,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "140px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -10952,7 +11270,7 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": "auto", + "overflow": null, "padding": null, "right": null, "top": null, @@ -10960,43 +11278,7 @@ "width": null } }, - "8cd3f61db63f40179c0859c4f1cb0106": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "8ceaf56d49cd4ec4bcc976d17593af7b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "8d0b702f36e34a329fbabd9e5b72b9a2": { + "94b78c2d6dec4a588cf06638796039eb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11049,81 +11331,14 @@ "width": null } }, - "8d57ec34f78449e6907e433286be236b": { - "model_module": "@jupyter-widgets/controls", + "953b2ba957ff4f0486661ebe051f1a17": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_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 - } - }, - "8f5a4d06abd547e3a908d74baec96de5": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", - "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 - } - }, - "8f74d4f1a5cb4e1bb51eb6c78d0d72ae": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_13700f790d38421094e17e80b2800df8", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_39a6198a463f4762a8c991a292aa5fc7", - "tabbable": null, - "tooltip": null, - "value": 0.1 - } - }, - "8f8e77db96174d0e8831806b382a754c": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", @@ -11169,7 +11384,7 @@ "width": null } }, - "8fe373564cf54d9aa778ac0227930cf7": { + "96ed635a47844f128dd9948d3a73fe4e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", @@ -11187,7 +11402,7 @@ "text_color": null } }, - "906fe845d91c49f6ad8caebb6ea53938": { + "970d11976cae45d09cdc5e789048634a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -11201,20 +11416,43 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L2_pyramidal:", + "description": "L5_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_dd6af3d3efd6460eaa3bfe336ee37972", + "layout": "IPY_MODEL_098e5aa4e05a40e7b928e0f186b771c8", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_8a5b047fa5c3414b97d76a5494d9e5ce", + "style": "IPY_MODEL_2890701e085d45b1a953a71f271ea405", "tabbable": null, "tooltip": null, "value": 0.0 } }, - "9094c03cdef743e79d0d24a042b5f866": { + "9721554ec75f40ba8816966d53239aa8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "LabelStyleModel", + "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 + } + }, + "974b865355dd4444943e4255403c2092": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11267,22 +11505,30 @@ "width": null } }, - "90d7b7e9995240b484048b844d9222b3": { + "97a9e49c7e924e46949f5aa11307faa1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "" + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_fa184a954ec84a98b6fb67ac3b824d6c", + "placeholder": "​", + "style": "IPY_MODEL_0750610999d0487187c9de0f39e0f544", + "tabbable": null, + "tooltip": null, + "value": "
" } }, - "90d8b053c0924cca83246e77457ca235": { + "97b5f62c5df94f828b760e6fde439a14": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11335,34 +11581,60 @@ "width": null } }, - "92c1b8411d8f4b03be615804dc9f851b": { - "model_module": "@jupyter-widgets/controls", + "97d8b05ef3c546f8ae52e5a0ba15d348": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "LayoutModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "weight", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_66d50cc85d07486a91fb8a37454f6e6c", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_b13fe65859cd4ea69178dad6bcc9b8a5", - "tabbable": null, - "tooltip": null, - "value": 0.025 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "9313a310afcd48259bb58b1864c0ea21": { + "98282b16744846c79b0b467ffeb7a76c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11395,7 +11667,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "560px", "justify_content": null, "justify_items": null, "left": null, @@ -11412,37 +11684,25 @@ "right": null, "top": null, "visibility": null, - "width": "98%" + "width": "576px" } }, - "939475dc85a9409eaed5fac37eb4ecd1": { + "982cb9e591e2492c83b0d38c7315d320": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L5_pyramidal:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_593ae6ac88d3425a9410047b3217e685", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_a59fc75650034ee98875cc74c68a7d0d", - "tabbable": null, - "tooltip": null, - "value": 0.0 + "_view_name": "StyleView", + "description_width": "150px" } }, - "93a94645cd124ca3a412a0418370d362": { + "9832db6e50a2493092a13aaccdeee35a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -11454,10 +11714,37 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "description_width": "" + } + }, + "9845a15402a641c2a87b67d8eb6b1d9f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_a920e9bf27be4fd9af07e5f98bf6b10b", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_1b35669e88984785bbdf31b506b48ae6", + "tabbable": null, + "tooltip": null, + "value": 0.1 } }, - "9431cb91c546450888d2af86c8513496": { + "985d6814251945ebacc14ac2506b2caa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -11472,7 +11759,7 @@ "description_width": "150px" } }, - "945a6b9872544ba59fc56fc085100b73": { + "986c8a14b9404ab5b323a81d060090e4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11525,22 +11812,7 @@ "width": null } }, - "94773bfcade642d7b501ec997a9e8ec1": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "94c064f9b5fd4b35941286589e1d15b7": { + "99035d9f22a945038265b86f8195d5ca": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11593,45 +11865,56 @@ "width": null } }, - "96297f46873540a9aa958ffdd2edab6b": { + "99c7224bb5eb4f649a0eb1134c0d6472": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HBoxModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HBoxModel", + "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HBoxView", + "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_4d97a3e7cb3c47dcbab2fd9b88773d00", - "IPY_MODEL_3987e43a27fc4ac986271e237c2f4a2f" + "IPY_MODEL_0670e81912244247a1ec6d79afd9f72e" ], - "layout": "IPY_MODEL_34ab3c86a8cd47df908b229a4fbf1d7d", + "layout": "IPY_MODEL_bb9bded2e2d14d4cbec505fade99bd94", "tabbable": null, "tooltip": null } }, - "96bf9b3a1e0749d0b03f2095931df3ea": { + "99df4f586c324d909b4b1bbbb832be37": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_ff1750ba838c45558fe292942e617a4b", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_897e2b8e8842426e86edf8752e53f593", + "tabbable": null, + "tooltip": null, + "value": 0.00025 } }, - "9735365f2fa34bceab497d70cd80887b": { + "9a0a4248bc9d4bb69df2681300ebdd2e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11681,99 +11964,19 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "98%" } }, - "979c07f2ec4c4b20beff33719bfc934a": { - "model_module": "@jupyter-widgets/controls", + "9a6ffd152ec44a60a5acdbbdc7d4351e": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "LayoutModel", "_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_e93d9ddc58b64187ae0954aff6e10e54", - "placeholder": "​", - "style": "IPY_MODEL_8fe373564cf54d9aa778ac0227930cf7", - "tabbable": null, - "tooltip": null, - "value": "Synaptic delays" - } - }, - "98207b6dad4e49c0aaa712a8de8be5e9": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_da80c83078294b82a60531c8faab9c78", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_43ac6d5ebbb34f1980a0a3780c6fa5ce", - "tabbable": null, - "tooltip": null, - "value": 0.1 - } - }, - "98457a2251d74fd59a118b5ad32942f0": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DropdownModel", - "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_bfb2851bfa404357b511fe0f3b623ae8", - "style": "IPY_MODEL_f9d42d17e9744d58be3df9f29fedc061", - "tabbable": null, - "tooltip": null - } - }, - "9916ba647c654e2ca47049ed8858cde6": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, @@ -11817,60 +12020,59 @@ "width": null } }, - "9965561e43994cc6ae256abfa93b529f": { + "9b3c045e58b24984bf352d7824211db2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "FloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "ButtonView", - "button_style": "", - "description": "Clear axis", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Data Dipole Scaling:", + "description_allow_html": false, "disabled": false, - "icon": "", - "layout": "IPY_MODEL_ce5e59ae78174fcbbd1f40c3871b88ed", - "style": "IPY_MODEL_5d2fa5ce5c024a69a6411f40d9fc9d9c", + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "step": null, + "style": "IPY_MODEL_f8237ba3ad5b4247bab64bae0f346253", "tabbable": null, - "tooltip": null - } - }, - "9aa8ca56764e4050ad22ee8ffc98f658": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" + "tooltip": null, + "value": 1.0 } }, - "9aa94d10a4284518a63444acd09ad37d": { + "9b4586df861e453c9c3d66799187b818": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L2_pyramidal:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_2a7dfce994254a078838f2b385933566", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_55f6ef252e6541a5838803f83e7ee149", + "tabbable": null, + "tooltip": null, + "value": 0.0 } }, - "9c3f97c67cef40539417c4b28d60686d": { + "9bdc98a4437c47a7a9fa2a284339f38d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11893,7 +12095,7 @@ "display": null, "flex": null, "flex_flow": null, - "grid_area": "left-sidebar", + "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -11903,7 +12105,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "770px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -11920,10 +12122,10 @@ "right": null, "top": null, "visibility": null, - "width": "576px" + "width": null } }, - "9ce059112d92443abd9d3390945387ae": { + "9be00e954eee41f0b0fc3e3a20bf8e81": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -11973,134 +12175,59 @@ "right": null, "top": null, "visibility": null, - "width": "98%" - } - }, - "9d2f6bc7c60f42a79cb1734016d86ba9": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_9094c03cdef743e79d0d24a042b5f866", - "msg_id": "", - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "673f4eb4c6a74904add5656b72570b6d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": "Tab()" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "tabbable": null, - "tooltip": null - } - }, - "9dd59e91a47941ceb378bda6c82061c1": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" + "width": null } }, - "9eacefd154ff4ab5aa35fd0348c0fa56": { + "9c1a7912f4514d2fa4060273c259c460": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L5_pyramidal:", "description_allow_html": false, - "layout": "IPY_MODEL_fa5b960b7f4c46a68b87ca9d18aa352e", - "placeholder": "​", - "style": "IPY_MODEL_575c231951fc4b13a1d874e416d96908", + "disabled": false, + "layout": "IPY_MODEL_8b9a3e29484d443dbac0aa767d229bdb", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_d8ae7b2a195f40499b2ae08da4a609c6", "tabbable": null, "tooltip": null, - "value": "

\n Receptor: gabab

" + "value": 0.080074 } }, - "9ed0113c2b564128886e35965aef42c3": { - "model_module": "@jupyter-widgets/base", + "9d052936cd1b438f8af17e39a903e3aa": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "ButtonStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_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 } }, - "9eeaa07e45964225be03eb036530df22": { + "9d228877a7104a9ca69ce686559ac2ff": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12153,144 +12280,170 @@ "width": null } }, - "9f5b3ec7cf474e5ba3be012633421cd8": { + "9d931e90b881449e8ce6c39d7b96a2c8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "FileUploadModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "FileUploadModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_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_3e833d5f2a014a46befa9e9159fc3b79", + "multiple": false, + "style": "IPY_MODEL_86abcf85fe9a47769fcbcdbbbf66bb88", + "tabbable": null, + "tooltip": null, + "value": [] + } + }, + "9dccab1907184da2bc148abdf482def4": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_30951fb4ef174511bb8334123bcf9796", + "msg_id": "", + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "813e20ac89044ef8b30b21d2eabba03c", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": "Accordion(children=(VBox(children=(VBox(children=(HTML(value='

\\n Receptor: gabaa

'), BoundedF…" + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "tabbable": null, + "tooltip": null } }, - "9f62093887624e1fa5df281b86021365": { + "9f3de30124fc43988fef422616f203ad": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "ButtonModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "ButtonModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "ButtonView", + "button_style": "primary", + "description": "Make figure", + "disabled": false, + "icon": "", + "layout": "IPY_MODEL_dacf3bc982ac4d64a75bf63626ab725c", + "style": "IPY_MODEL_d381934cbd844aa88209e1e48da9a96f", + "tabbable": null, + "tooltip": null } }, - "9fbc36add0da41b8a306d86540cf0575": { - "model_module": "@jupyter-widgets/base", + "a0618ca4a1e14e95962ccef32d41790f": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DropdownModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "DropdownModel", + "_options_labels": [ + "default" + ], "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "DropdownView", + "description": "Simulation Data:", + "description_allow_html": false, + "disabled": false, + "index": 0, + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "style": "IPY_MODEL_2f5bd1cff63541b9b4464c643fac3033", + "tabbable": null, + "tooltip": null } }, - "a04ae09c85a6446fa9e3f2b912126e5e": { + "a112f90a6049499ca6f79e91bbcdece8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_a747bcdc13f2451290a9068fd2265d84", - "IPY_MODEL_b1e9a1e9577745bd8d763dd7c8ac706e", - "IPY_MODEL_27848abeebd0401284972af1f78a6130" - ], - "layout": "IPY_MODEL_1ccc7d1803024021b51a1f81e3fedfc3", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_12976c82898e4584b6768fcb53c48a27", + "placeholder": "​", + "style": "IPY_MODEL_2f37b2c735d84d438db39a194bc5024d", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "
" } }, - "a084fc8649074a89a966128a570f5712": { + "a16fbbd4167f43e6bf1cf760e828ea49": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_0b7f439827f8487d97339592a477d824", - "IPY_MODEL_39512adace8c4a58ac8bb265b86c6953", - "IPY_MODEL_3917c70dc9f8486eacff96e0abdcbfe7" - ], - "layout": "IPY_MODEL_75bb7d24a97746ea94bf5bd663fe643e", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "description_width": "200px" + } + }, + "a2d3409f4c3c4c6ba87a9d60e03f66db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" } }, - "a19faa5fe58642ccafb01d2a3d8be300": { + "a372e0ee7e214556a43897ddc16a1cd7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -12305,87 +12458,52 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_9eacefd154ff4ab5aa35fd0348c0fa56", - "IPY_MODEL_92c1b8411d8f4b03be615804dc9f851b", - "IPY_MODEL_49e0d75b55c946648c1a31c466f8015c" + "IPY_MODEL_dd5d85a6a2f9456bab38610aacda1474" ], - "layout": "IPY_MODEL_cf73689feb6a43a7999129773d6e020f", + "layout": "IPY_MODEL_dd0ea0a016ef48c184395c0a18d05e42", "tabbable": null, "tooltip": null } }, - "a2988e0f2b4c4b078f19c355878e69f1": { - "model_module": "@jupyter-widgets/base", + "a3afb76b34e64531a62aa68fb41e9a0b": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "HTMLModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_d952100f61b1424d99e21fa25ac393f3", + "placeholder": "​", + "style": "IPY_MODEL_ac77fa9667eb47328386c419ef8b690d", + "tabbable": null, + "tooltip": null, + "value": "AMPA weights" } }, - "a2d0258a04914a51bd889176334a9b9e": { + "a586f22df0e04f3aa08a466a65aea47e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "" } }, - "a328178aab9e4e779f3e4f0e3c314aba": { + "a58c0257e781455fa02c4ece7bd9ccc3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -12400,7 +12518,7 @@ "description_width": "150px" } }, - "a3effcad9d644927974840466534a8c3": { + "a591dbf9a8c7480bb84124deb517640c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12453,7 +12571,30 @@ "width": null } }, - "a42f19ad6f3044e2895d8e8032a15cdd": { + "a5f5d209747f40d19d6592d79c66b462": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoxModel", + "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_4a003ec628e0496093f8ff6fe7e37eb3", + "IPY_MODEL_9f3de30124fc43988fef422616f203ad" + ], + "layout": "IPY_MODEL_13159c9bc5974818a5d70cb0107ad623", + "tabbable": null, + "tooltip": null + } + }, + "a6789a4108e540379d105aded112349b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -12467,20 +12608,20 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "Std dev time:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_8a2a45ee7df64b13b416f177079cd81e", + "layout": "IPY_MODEL_72bef530bfe04a10b8fccb182a519e51", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_08a65e82d7a449ccb95a258e5a43f5af", + "style": "IPY_MODEL_2fc3426a744c4963b28136c5960bf834", "tabbable": null, "tooltip": null, - "value": 0.00025 + "value": 3.85 } }, - "a472cfbb17664f838717cbf46437216a": { + "a707e81798c94cab8ce894eaad120083": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12533,25 +12674,7 @@ "width": null } }, - "a4d3b085682545c7a924a39a7d311e08": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "a59fc75650034ee98875cc74c68a7d0d": { + "a73653f2154b4886a3a42e141aab4511": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -12566,53 +12689,30 @@ "description_width": "150px" } }, - "a5d5405ea2e74aa0a67e6311663cfacf": { + "a7534e9926b54d4cb5a5891886eed1cc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoxModel", + "model_name": "ButtonModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoxModel", + "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "BoxView", - "box_style": "", - "children": [ - "IPY_MODEL_fdcac94312494334b54848ee62b071a2", - "IPY_MODEL_689ba65158fa4a35b668807868865ba2" - ], - "layout": "IPY_MODEL_fec53da7c93e47ec89bb20b80805da2d", + "_view_name": "ButtonView", + "button_style": "", + "description": "Clear axis", + "disabled": false, + "icon": "", + "layout": "IPY_MODEL_5313b973f5434216b41176b1d7554b99", + "style": "IPY_MODEL_784eb3e8b2314ae894cbb49913903529", "tabbable": null, "tooltip": null } }, - "a747bcdc13f2451290a9068fd2265d84": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_90d8b053c0924cca83246e77457ca235", - "placeholder": "​", - "style": "IPY_MODEL_450659a86c1844b1b1c7d1eba2200bd3", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: gabaa

" - } - }, - "a7c63a17a1a0479597b984655d8efc5e": { + "a766270c782b408aa4715e9bfce88571": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12627,15 +12727,15 @@ "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", + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, - "grid_area": "right-sidebar", + "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -12645,7 +12745,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "760px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -12657,60 +12757,83 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": "scroll", + "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, - "width": "714px" + "width": null } }, - "a7f1f7e7caa04214b57ff7a40fd8c53f": { + "a7b4d2286f794a38b2e8e2dfe3211dbd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2231462353094145ad39419c8c6c9333", + "placeholder": "​", + "style": "IPY_MODEL_32a41f8ec3e846b6a5cba44040a254c5", + "tabbable": null, + "tooltip": null, + "value": "
" } }, - "aa5ace988e354de8acb1f0f2f24b00e4": { + "a838ff8d047b48ae9b781adc73ec627b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "initial" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "weight", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_8f910338e82040b9aee7fafc8ef7f8f3", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_104af57bd0a547b295eb18cea8702792", + "tabbable": null, + "tooltip": null, + "value": 0.05 } }, - "aab138443d4541fd92c5428e57c50a60": { + "a842d27b5fbf45a4bb59446ba1f2f154": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "aae8a3edc168410e89971937bc2c3c27": { + "a920e9bf27be4fd9af07e5f98bf6b10b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12763,7 +12886,7 @@ "width": null } }, - "ab51f08dceb44043bb0222c874f29ddd": { + "a97c227325b840f4ba76985bab4b37e0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12816,7 +12939,7 @@ "width": null } }, - "ac61ffaa0e004b999c22797bdb039920": { + "a9b04b9b22fe476c9d568249db8df4f2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -12869,7 +12992,7 @@ "width": null } }, - "ad5c77f0b36443a9bb743af38cae6e2e": { + "aa199ffb1625415cac99a36a88ac31e4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -12884,121 +13007,50 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_3fdc0c8b72b646548a0fef69e2856ee0", - "IPY_MODEL_2cc9d00e5f6741e997566784d88f272f" + "IPY_MODEL_09db4a787e054962951df64805d52636" ], - "layout": "IPY_MODEL_09f9f6d4d9fc464c99898de4099e5145", + "layout": "IPY_MODEL_bb67a539a9c44c22bf88bc2d7ae05033", "tabbable": null, "tooltip": null } }, - "ad9d3aa5cdb24131bf4d8776dc663af6": { + "aa6bfcfc09b24bc1acbf09b67aff0a8c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLStyleModel", "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_8646597e41c0463b88a41477ae704e3b", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_62af885a132a4d3abe8b9a2d130d260f", - "tabbable": null, - "tooltip": null, - "value": 0.0005 - } - }, - "adb4034c42d041619dda042aa7b992ac": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "adc163349b5f4703b22c4537857b1f40": { + "ab439fc71d544641a1bde42f64c4e6e3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DropdownModel", - "_options_labels": [ - "None" - ], + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Data to Compare:", - "description_allow_html": false, - "disabled": true, - "index": 0, - "layout": "IPY_MODEL_3efc2592b9ee4f5187ca865c0208fc3a", - "style": "IPY_MODEL_6d9522969ea94dee96d1f24a8c756c10", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "ae53877acaec4896899d6dfc0c26c17e": { + "ab68653803714a66898953e2918214a5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13048,185 +13100,122 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "98%" } }, - "ae8a81dc65134243be818e9ab2619dd0": { + "ab8d746822a54df1aebf0eaf081c7375": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "ae95e2976c2444d1a8a6e3554ac1ffe2": { + "ac77fa9667eb47328386c419ef8b690d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "afb10b3e5ebb4325914edc2f567aaa12": { + "ada0539153b04a7a87549ff57cb9c3e1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "IntTextModel", + "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "IntTextModel", + "_model_name": "HBoxModel", "_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_2678a1fd79cf4298b611adeee1c650ce", - "step": 1, - "style": "IPY_MODEL_6a2f3c296e0e4f31b5221f010352ea32", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_c7ac927190bb4897a4da6867d405bc7e" + ], + "layout": "IPY_MODEL_c8ba4beb1ac64063ae5cf63361f2c4d9", "tabbable": null, - "tooltip": null, - "value": 1 + "tooltip": null } }, - "b0a314c80b444e13b277375eb1ef74d8": { + "ae4b5d9eef1745d19b1c30cde817ba08": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "BoundedFloatTextModel", "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_6a3dfaf5b5af49c6857414c451de7743" - ], - "layout": "IPY_MODEL_ce29948a3ac2499bbb324ddc9e67bd57", - "tabbable": null, - "tooltip": null - } - }, - "b13fe65859cd4ea69178dad6bcc9b8a5": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" - } - }, - "b157e8e63ec846acb14060abe59fb114": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "b1e9a1e9577745bd8d763dd7c8ac706e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_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": "L2_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_9ed0113c2b564128886e35965aef42c3", + "layout": "IPY_MODEL_474134f0917e4f63a4263c91c3909919", "max": 1000000.0, "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_9aa94d10a4284518a63444acd09ad37d", + "step": 0.1, + "style": "IPY_MODEL_48fe902ec1cc4d80ad70f37e2e476030", "tabbable": null, "tooltip": null, - "value": 0.001 - } - }, - "b28e190d6ebd44c997fbdf43b68cf0de": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "value": 0.1 } }, - "b2df8c84027b4021a5387e186e7a63d5": { + "aeea15b169014043bf54125f30da64ea": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Std dev time:", "description_allow_html": false, - "layout": "IPY_MODEL_b8666a3681bd461bad3dbef78f266157", - "placeholder": "​", - "style": "IPY_MODEL_3ac0026a50944616a9691a0799898110", + "disabled": false, + "layout": "IPY_MODEL_9be00e954eee41f0b0fc3e3a20bf8e81", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_840f07bc5ffe4173aa5f9ed60d18754f", "tabbable": null, "tooltip": null, - "value": "
" + "value": 8.33 } }, - "b32edc730b43418d8454ce9d83a1778b": { + "afa5ea857390488397863cdb246a054f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -13241,7 +13230,7 @@ "description_width": "200px" } }, - "b364953d67ed4ef1ae3a183f963f1fa4": { + "afbbe8ab8284425ab5a43226e4dc6f2d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13294,7 +13283,7 @@ "width": null } }, - "b48c73e6a15d43debf3e319b53aee01c": { + "afe0647929eb48cbb664846d9b267b5d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -13306,56 +13295,25 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" - } - }, - "b4a11900c16843a79aff80794267890e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_ff5fabfe9a2641d0a986475491e250b8", - "placeholder": "​", - "style": "IPY_MODEL_b8daacfb62524485a3dc7a9b59865919", - "tabbable": null, - "tooltip": null, - "value": "Synaptic delays" + "description_width": "200px" } }, - "b5420f337765496386d3281064c0e15a": { + "affe73717a0a495caba5a204f33b478e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "200px" } }, - "b5678edf885e4251adfa26c9758d4dad": { + "b0360731c82d4943bffa5044603c4bf0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -13370,7 +13328,7 @@ "description_width": "" } }, - "b6103675b132490db4bf18d67db49cd8": { + "b052cc202c6d4c0e92e876940b510746": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13423,7 +13381,30 @@ "width": null } }, - "b6443065842b40c28f0602f6922a0848": { + "b07bb1be06bf40cdba9f927dac50f183": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_254ea3a3c9de43b7a1597b44dee917b5", + "IPY_MODEL_b7e1ea2b404548119576d40107b3637b" + ], + "layout": "IPY_MODEL_015a5fe1a4ab4cfbb802e8b0e41b2084", + "tabbable": null, + "tooltip": null + } + }, + "b083fe6baf17438bb7b49244a8b49928": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13476,7 +13457,22 @@ "width": null } }, - "b67e5621677e4cb7abaece72e4a7c801": { + "b252b201e3904a92acf9ab1fe8a1cca2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "b2b593d355014dddad94bf19a53d6159": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13529,7 +13525,7 @@ "width": null } }, - "b6885c3d34e4450e9890d57db73dcc25": { + "b3f704de43ed4a05b9198f8c0d40410d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13582,30 +13578,7 @@ "width": null } }, - "b6f755f02c3a460abcd4306ebbcd7281": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_8a06ebef322543928b4ec5036342ec48", - "placeholder": "​", - "style": "IPY_MODEL_5c49e0ad312e4110bb4005aa8918bbe2", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: nmda

" - } - }, - "b8666a3681bd461bad3dbef78f266157": { + "b4651d819ff74b95a03e8a6c2786589d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13620,10 +13593,10 @@ "align_content": null, "align_items": null, "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": 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, @@ -13638,7 +13611,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "670px", "justify_content": null, "justify_items": null, "left": null, @@ -13650,48 +13623,37 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": null, + "overflow": "scroll", "padding": null, "right": null, "top": null, "visibility": null, - "width": null - } - }, - "b8710cabe97c443389f369683c57c916": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" + "width": "674px" } }, - "b8daacfb62524485a3dc7a9b59865919": { + "b61d67f27ebf4cc8ad64442d7b7fc653": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "ButtonStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "background": null, - "description_width": "", + "button_color": "#8A2BE2", + "font_family": null, "font_size": null, - "text_color": null + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "b9193400acf94512aee049c09b6458ca": { + "b6505904bf8346caa5f005a011f1680c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -13705,42 +13667,20 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L5_pyramidal:", + "description": "weight", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_f5fd1292ab334087badb871a414160cd", + "layout": "IPY_MODEL_5c96c6b076e644838fbdf46e5fc74df1", "max": 1000000.0, "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_58cb1d4f894047e8953a1ae41f066832", + "step": 0.01, + "style": "IPY_MODEL_0f514930a9624b14ae5072020361bdef", "tabbable": null, "tooltip": null, - "value": 1.0 - } - }, - "b93f2c0422b94247a700b2b788c6080e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_275e076e6bf04693b233847ce1a0ac8d" - ], - "layout": "IPY_MODEL_0b2acb81f2ab47cdaf0d86ca423c7203", - "tabbable": null, - "tooltip": null + "value": 0.05 } }, - "b99eb4c110c14feba05f505ee1a10d5e": { + "b6541443c4f846d69b58cb4f7b09df96": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13793,67 +13733,44 @@ "width": null } }, - "ba9c759f578f4606aa2bad5d42b25265": { + "b6a7b854396d4315b8aa764a37b781c6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L2_basket:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_648f5c0fae554b7a98e1e06258044d05", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_5a2dbbce551f4253b1db3ea55ae8cd4f", - "tabbable": null, - "tooltip": null, - "value": 0.08831 + "_view_name": "StyleView", + "description_width": "200px" } }, - "bc082fb7dc014a1ead23822e67e2a54f": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", + "b6e1940d3c5a488992a9ed0cd0eb032d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonStyleModel", "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ButtonStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_2061651ee3b2452cb98374a5faa094ec", - "msg_id": "", - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "5bfcc91a665146e881ad8690f837ab36", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": "Accordion(children=(VBox(children=(BoundedFloatText(value=63.53, description='Mean time:', max=1000000.0, step…" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "tabbable": null, - "tooltip": 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 } }, - "bc171c4e26f84130b81f6193eacd085e": { + "b78f8d1894ea43c984f52824052e83e6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -13903,55 +13820,33 @@ "right": null, "top": null, "visibility": null, - "width": "auto" - } - }, - "bc3479caa5e140e5959819be6a399b4f": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" - } - }, - "bc660b58b4d04a6c99232bffd373e57e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "150px" + "width": null } }, - "bc91fb3e508a45f6bfeff82fec595a13": { + "b7e1ea2b404548119576d40107b3637b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "ButtonModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "ButtonModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "200px" + "_view_name": "ButtonView", + "button_style": "", + "description": "Clear axis", + "disabled": false, + "icon": "", + "layout": "IPY_MODEL_8cc460107c534ff186ffe29ee1896b07", + "style": "IPY_MODEL_70834fa98ad547f2ac9950e09c2c5201", + "tabbable": null, + "tooltip": null } }, - "be19d740003f4d01abedb9a523d59c8d": { + "b85931aeefe840cdb87d620d8ce6563e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14004,77 +13899,69 @@ "width": null } }, - "be4a1be6216c43698bf4b51bb1427341": { + "b8f6a9a0ba67458d98161e2043de703b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "ButtonModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "ButtonModel", "_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, + "_view_name": "ButtonView", + "button_style": "primary", + "description": "Add drive", "disabled": false, - "layout": "IPY_MODEL_3ce063a9cf9d4d0185a8f64d04f7c051", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_3afe8244a6c342e896ed9f9dc2ac35d5", + "icon": "", + "layout": "IPY_MODEL_dacf3bc982ac4d64a75bf63626ab725c", + "style": "IPY_MODEL_b6e1940d3c5a488992a9ed0cd0eb032d", "tabbable": null, - "tooltip": null, - "value": 7e-06 + "tooltip": null } }, - "be5435591b4a4d3087ef7f430a814bd0": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", + "ba10d45fca2f4865bf70ad5ba090eb82": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", "state": { "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_dea8f9c168ba46b898bdc808d6f0996b", - "msg_id": "", - "outputs": [], + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0be55bd528fb4d36bb1c2e3a9e178330", + "IPY_MODEL_91f644b94a2d44aa9006faba31f65a15", + "IPY_MODEL_4f83b46fa9694afdbc9f1ab061abd2fc" + ], + "layout": "IPY_MODEL_d32220c7c81c44d982504ec84fef3390", "tabbable": null, "tooltip": null } }, - "be9a37eb88c440eda62c93b657d030d1": { + "ba1dfd0a3cbf433fa9c874d3f22af55b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_233f3a7e2d4b46c0afa9af41131d7a75", - "placeholder": "​", - "style": "IPY_MODEL_f1956b3a98f74d24b5b1eca7c26bd5a9", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: gabab

" + "_view_name": "StyleView", + "description_width": "150px" } }, - "bec9dbe6e1af4c52be1f53d4beb8fad2": { + "badda086a1944688ad0cb98940aec1a1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14127,30 +14014,7 @@ "width": null } }, - "bf77f68d018648708141d3e2e56444b0": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/controls", - "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_b364953d67ed4ef1ae3a183f963f1fa4", - "placeholder": "​", - "style": "IPY_MODEL_028f20db5c63478a9d16126b8371fbb8", - "tabbable": null, - "tooltip": null, - "value": "
" - } - }, - "bfb2851bfa404357b511fe0f3b623ae8": { + "baebb97aaf3942c9a3a1868de4658593": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14200,28 +14064,63 @@ "right": null, "top": null, "visibility": null, - "width": "98%" + "width": null } }, - "c023b21fa932484ea3bdde08cc9a9ff6": { - "model_module": "@jupyter-widgets/controls", + "bb67a539a9c44c22bf88bc2d7ae05033": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "LayoutModel", "_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 + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_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" } }, - "c029b610ecee4b419778d87f3e4d346e": { + "bb6e3f712ba54777abf2b31e4d6b64b6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14274,107 +14173,14 @@ "width": null } }, - "c08ed5fb74a74b3d864058f5d07bea96": { - "model_module": "@jupyter-widgets/controls", + "bb9bded2e2d14d4cbec505fade99bd94": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_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 - } - }, - "c0c1d37071e84cd2b87c365fd0ed32ca": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DropdownModel", - "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_3efc2592b9ee4f5187ca865c0208fc3a", - "style": "IPY_MODEL_dbcd80f842d445b3a513093c19ed1e00", - "tabbable": null, - "tooltip": null - } - }, - "c0c4d2cc20f74d4caee094e2e6d2a307": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null - } - }, - "c0fb048c77b8494b80e3f5f165695adf": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_dfeba524980547e2aa7079bd76a105b0", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_6fa053e4a2d6476ea3ad93215a8ac4f0", - "tabbable": null, - "tooltip": null, - "value": 0.19934 - } - }, - "c2fdf556e8e74bc3969052bc85965f58": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", @@ -14420,7 +14226,22 @@ "width": null } }, - "c3dd72ed5c4d4ac1a30564b106af151e": { + "bc6adcbe20b74cb2919ad3c29067d8e4": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" + } + }, + "bd92d9fe56da418a834b30d868afd7ed": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14473,52 +14294,31 @@ "width": null } }, - "c425eed97b644e3cb73d9067fb2ae0ac": { + "bdba14610b714ed6b2d15f3a3c759548": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "VBoxModel", "_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_52b8496ac7474548a1c89b5df684f2c5", - "placeholder": "​", - "style": "IPY_MODEL_e18ef0432e404c3f93c62cab7db596ce", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8bcee94f8dfc468aa79a3589c1d3fded", + "IPY_MODEL_b6505904bf8346caa5f005a011f1680c", + "IPY_MODEL_ce4bcb6ac1f34d2880cacc28fca840b3" + ], + "layout": "IPY_MODEL_2c84cc7f29c243cbbc137175803f09ab", "tabbable": null, - "tooltip": null, - "value": "
" - } - }, - "c47967eb552b4023942806dfc654a99a": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", - "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 + "tooltip": null } }, - "c4920d4813334e93b8420e2487ed9f3a": { + "be003cbe4860470cace5570079503bcd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14571,7 +14371,7 @@ "width": null } }, - "c658a6a5143e46688178220db3bfe2ab": { + "bf4997e39adb44ec929d88048098d643": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14624,55 +14424,46 @@ "width": null } }, - "c70a29d6f888445c91cf6d7637bdf454": { + "bfd23f1dc1064e5fb65c6de9e3ab33a8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "VBoxModel", "_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_bfb2851bfa404357b511fe0f3b623ae8", - "step": null, - "style": "IPY_MODEL_f3d84641467d4e20b0a0329e788f6576", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_6e6a4103c9d84a888536079f1ec27e7e", + "IPY_MODEL_08a18cc793a44cd19be06521edddfd70", + "IPY_MODEL_393c87cadc0248cbbef6281b80646ff4" + ], + "layout": "IPY_MODEL_b052cc202c6d4c0e92e876940b510746", "tabbable": null, - "tooltip": null, - "value": 30.0 + "tooltip": null } }, - "c7a227c387a147a49d87b0f7fd207605": { + "c0059f18ca204e25a9ff12d37694f756": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LabelModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LabelModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LabelView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_7d565daeda6a49f386a7ef120ba03f17", - "placeholder": "​", - "style": "IPY_MODEL_b5420f337765496386d3281064c0e15a", - "tabbable": null, - "tooltip": null, - "value": "default: input histogram" + "_view_name": "StyleView", + "description_width": "150px" } }, - "c7abda71e618446abef9c6683fb5c8a3": { + "c1056ab1ca6a4e1ea0c7df38c26e0f2d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -14687,140 +14478,151 @@ "description_width": "200px" } }, - "c80fd2f2bc6d49c4bbdf2e17068e0789": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null - } - }, - "c88edc7ecf414e139c053292970205cd": { - "model_module": "@jupyter-widgets/base", + "c16f4e0674c64d1ba7ebae1a01f8719a": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "HTMLStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "c8e466d44c27441e9191b84ba35085ef": { + "c1943235e9a64106b569674c719a17d4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DropdownModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_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": "FloatTextView", - "continuous_update": false, - "description": "L2_pyramidal:", + "_view_name": "DropdownView", + "description": "Spectrogram Colormap:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_c80fd2f2bc6d49c4bbdf2e17068e0789", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_a328178aab9e4e779f3e4f0e3c314aba", + "index": 0, + "layout": "IPY_MODEL_9a0a4248bc9d4bb69df2681300ebdd2e", + "style": "IPY_MODEL_afe0647929eb48cbb664846d9b267b5d", + "tabbable": null, + "tooltip": null + } + }, + "c1c8bc55e82049e4b078b33dc760822f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_55eb87ca646b44b4a68e6c9972dc4a81", + "placeholder": "​", + "style": "IPY_MODEL_1e255ffd8ee74a7383972ddfcc786d2b", "tabbable": null, "tooltip": null, - "value": 1.43884 + "value": "
" + } + }, + "c1fa04003ffb4b44a7ba56ef70fdc30f": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "c208afc1a2bf4540bf081e4da2428252": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_be003cbe4860470cace5570079503bcd", + "placeholder": "​", + "style": "IPY_MODEL_96ed635a47844f128dd9948d3a73fe4e", + "tabbable": null, + "tooltip": null, + "value": "
" + } + }, + "c20a67f4a9fa4de9b62d60f319e84846": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_df645bf5f80542448c2d9ee85747ba2d", + "IPY_MODEL_e37bf519f8d54518a156056f727d3dc0", + "IPY_MODEL_2197b9ec6efe4e7b80844efd83bd2a68", + "IPY_MODEL_eba2d57258584abea25e897c626f7fea", + "IPY_MODEL_461e1a4074d743e49ebff883ef1a77fc", + "IPY_MODEL_cab4ab37c67643eeaf6a8fc31ea95356", + "IPY_MODEL_2d726e9d7c814cf2920c6eae7f18c1ff", + "IPY_MODEL_f197da2d0e4e4b28a7c4bc57f5182c38", + "IPY_MODEL_c1943235e9a64106b569674c719a17d4", + "IPY_MODEL_b07bb1be06bf40cdba9f927dac50f183", + "IPY_MODEL_4b9b4973a5724213bffa12c226fb2f13" + ], + "layout": "IPY_MODEL_8256f5946b4e413584680ffb7cbf4cec", + "tabbable": null, + "tooltip": null } }, - "c8e7a3b281e44f42bf015a19f4dbd4af": { + "c2d442f082924d7f8b5654abb9dd2e33": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -14835,14 +14637,14 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_3abc1f3ca4e4426d8dede7946c5be71b" + "IPY_MODEL_804269a8c51a4ce2be0115924cb30019" ], - "layout": "IPY_MODEL_1baa4e65c34348e3875159bf392331e1", + "layout": "IPY_MODEL_e69b38be8cba4fffbd0d516a2fe3d5e0", "tabbable": null, "tooltip": null } }, - "c93aead1a9aa4f9fa73462504d1d19f6": { + "c30e98a180244542b87ba9e4fbd189c4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14892,10 +14694,33 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "98%" + } + }, + "c31a67eff9ce4c88b401d737c37e7462": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c7c9198cce7047309c00388de02a024f", + "placeholder": "​", + "style": "IPY_MODEL_37de4370cc284101a4dc170b6305a2de", + "tabbable": null, + "tooltip": null, + "value": "
" } }, - "c9848000050e43e9ab5f02661ec357ff": { + "c4160e3b4df0403f8c5adc188b9bfdd1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14948,7 +14773,7 @@ "width": null } }, - "c9881d148ad0491bb010b29cb7cabf44": { + "c48b81e71e5c43adb8d5162300d30e17": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -14963,10 +14788,10 @@ "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", + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, "bottom": null, "display": null, "flex": null, @@ -14981,7 +14806,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "670px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -14993,15 +14818,15 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": "scroll", + "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, - "width": "674px" + "width": null } }, - "c99f21cf795c44bfb1af7b14d7315284": { + "c5249f8d7f744841ad0149f0a0086417": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15054,7 +14879,7 @@ "width": null } }, - "c9edaee8edc54f1c8e0e97e5b2cd04b9": { + "c552d69bed144a68b8edd59fbc737ed7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15107,7 +14932,48 @@ "width": null } }, - "ca0150bdc23d4bea8a19baf8a247991a": { + "c582e3e7c75d4f7ab03ee70b170c7275": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "LabelModel", + "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_b6541443c4f846d69b58cb4f7b09df96", + "placeholder": "​", + "style": "IPY_MODEL_d0ea9b6ca8b24ec09aa3fe556d77c157", + "tabbable": null, + "tooltip": null, + "value": "Run simulation to add figures here." + } + }, + "c5fb763ca2ee4824a06614f905be2ef0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "TextStyleModel", + "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 + } + }, + "c667ca85a2fc4863b33192628b0ed505": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15160,7 +15026,33 @@ "width": null } }, - "cad65f9088544b989a4958e23b0d0883": { + "c7ac927190bb4897a4da6867d405bc7e": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/output", + "_model_module_version": "1.0.0", + "_model_name": "OutputModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/output", + "_view_module_version": "1.0.0", + "_view_name": "OutputView", + "layout": "IPY_MODEL_97d8b05ef3c546f8ae52e5a0ba15d348", + "msg_id": "", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": "init network\ndrive type is Evoked, location=distal\ndrive type is Evoked, location=proximal\ndrive type is Evoked, location=proximal\nstart simulation\nUsing Joblib with 1 core(s).\nJoblib will run 1 trial(s) in parallel by distributing trials over 1 jobs.\nLoading custom mechanism files from /home/circleci/miniconda/envs/testenv/lib/python3.8/site-packages/hnn_core/mod/x86_64/libnrnmech.so\nBuilding the NEURON model\n[Done]\nTrial 1: 0.03 ms...\nTrial 1: 10.0 ms...\nTrial 1: 20.0 ms...\nTrial 1: 30.0 ms...\nTrial 1: 40.0 ms...\nTrial 1: 50.0 ms...\nTrial 1: 60.0 ms...\nTrial 1: 70.0 ms...\nTrial 1: 80.0 ms...\nTrial 1: 90.0 ms...\nTrial 1: 100.0 ms...\nTrial 1: 110.0 ms...\nTrial 1: 120.0 ms...\nTrial 1: 130.0 ms...\nTrial 1: 140.0 ms...\nTrial 1: 150.0 ms...\nTrial 1: 160.0 ms...\n" + } + ], + "tabbable": null, + "tooltip": null + } + }, + "c7c9198cce7047309c00388de02a024f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15213,7 +15105,22 @@ "width": null } }, - "cb1e4af5adde43ec87f6d3ae4122f94a": { + "c7cea5d0ff744c12bec1b979cb2fa1b8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "c7d9f90c97404c9a997a0f3b3437d781": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15266,83 +15173,7 @@ "width": null } }, - "cc3f8a0e36ad467bba29a3ca0e19b53e": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_6be8ffd3cb924b4ba6184970f77cac0b" - ], - "layout": "IPY_MODEL_8133f33dc21249ffb6cd644bc7f0ed2b", - "tabbable": null, - "tooltip": null - } - }, - "cc58fc683e6d4d02bfa2a4d6a6249b7b": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_9d2f6bc7c60f42a79cb1734016d86ba9" - ], - "layout": "IPY_MODEL_a7c63a17a1a0479597b984655d8efc5e", - "tabbable": null, - "tooltip": null - } - }, - "ccd8af71525b4727b4dad32d16457b93": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_33ea5744b94f45f2ba48cb0deacbbe70", - "IPY_MODEL_5e748e1b4a1e4dfdbce54dbf003f1b82", - "IPY_MODEL_3ef71f474a1a49ffa7ec7c3f8a15300f", - "IPY_MODEL_09e492a787ad4ea4b61867ca4f1bbfb0", - "IPY_MODEL_adc163349b5f4703b22c4537857b1f40", - "IPY_MODEL_3eb4c5f4437146cdbbed80de7d49a51d", - "IPY_MODEL_12386a520e6d4074bbfa8d71ec1e0959", - "IPY_MODEL_ea10ab73859d4955888bf72465576cb7", - "IPY_MODEL_c0c1d37071e84cd2b87c365fd0ed32ca", - "IPY_MODEL_d9250af4656f423d8ee013cf6d4b768e", - "IPY_MODEL_fec7241fd3224167950a71e0c2b5934c" - ], - "layout": "IPY_MODEL_65126f88dc22438db8597d45c22955be", - "tabbable": null, - "tooltip": null - } - }, - "ccf01812e0b14048b79d72a764e6b5c1": { + "c8116b0694c344f6a4bc3a54209ec592": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15395,10 +15226,37 @@ "width": null } }, - "ccf64e54613c40c3b782ab2b879ccc16": { - "model_module": "@jupyter-widgets/base", + "c86a5928fdd4487e8ae349254b3635bb": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "BoundedFloatTextModel", + "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_7226d275a5324ed1b3865043a22117ad", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_7b33739fe0a64ddab03a1e9f5dea989b", + "tabbable": null, + "tooltip": null, + "value": 0.0 + } + }, + "c8ba4beb1ac64063ae5cf63361f2c4d9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", @@ -15410,10 +15268,10 @@ "align_content": null, "align_items": null, "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": 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, @@ -15428,7 +15286,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "140px", "justify_content": null, "justify_items": null, "left": null, @@ -15440,7 +15298,7 @@ "object_fit": null, "object_position": null, "order": null, - "overflow": null, + "overflow": "auto", "padding": null, "right": null, "top": null, @@ -15448,7 +15306,45 @@ "width": null } }, - "cd03c8a1f88840feaa980df12c3c4dab": { + "c8c28337f83142bfb00f6b29d1d1248e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_41b293b88f504404a8632074a5ee4772", + "placeholder": "​", + "style": "IPY_MODEL_d758fd513249437a979883f17b0ff636", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: gabab

" + } + }, + "c914b5e71d4e445b855be1226e40e0ee": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" + } + }, + "c9f5f80a2a7f4f26974e06b9bd17c632": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15471,7 +15367,7 @@ "display": null, "flex": null, "flex_flow": null, - "grid_area": null, + "grid_area": "left-sidebar", "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -15481,7 +15377,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "30px", + "height": "770px", "justify_content": null, "justify_items": null, "left": null, @@ -15498,28 +15394,35 @@ "right": null, "top": null, "visibility": null, - "width": "auto" + "width": "576px" } }, - "cd6c059b74a04876a2dd054df2847ea2": { + "cab4ab37c67643eeaf6a8fc31ea95356": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "FloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "FloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Data Smooth Window (ms):", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_9a0a4248bc9d4bb69df2681300ebdd2e", + "step": null, + "style": "IPY_MODEL_2e5b93f41675436a833d4e0f0b87df4a", + "tabbable": null, + "tooltip": null, + "value": 0.0 } }, - "ce29948a3ac2499bbb324ddc9e67bd57": { + "cb0155abf7544fa4a9317d14255a4dfb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15572,7 +15475,7 @@ "width": null } }, - "ce5e59ae78174fcbbd1f40c3871b88ed": { + "cb0b60dd17e343fd89f165214620e83f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15625,57 +15528,30 @@ "width": null } }, - "ce78ded02f7f40d0b910a8bd9b26eb79": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_010362805d584bf9afa95807189ca35e", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_9aa8ca56764e4050ad22ee8ffc98f658", - "tabbable": null, - "tooltip": null, - "value": 0.019482 - } - }, - "cef9d38263b847ba93ba64bcb684797d": { + "cb793fb2ce0d405e872e4ea1f8689d1c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "ButtonModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_ed3deec00d4247ecb6c513d57b0d6384", - "IPY_MODEL_bc082fb7dc014a1ead23822e67e2a54f" - ], - "layout": "IPY_MODEL_4909010dba5b4ce49c6ca741ad032dbc", + "_view_name": "ButtonView", + "button_style": "", + "description": "Add plot", + "disabled": true, + "icon": "", + "layout": "IPY_MODEL_454ef6302ccf4413b76b08253bc9f01f", + "style": "IPY_MODEL_7e083386eadd43689e10afe5bbb93dd1", "tabbable": null, "tooltip": null } }, - "cf73689feb6a43a7999129773d6e020f": { + "cbff6aba46be472fa6882e37e415c083": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15728,75 +15604,94 @@ "width": null } }, - "cfc543a168e74ab1baeae6705cc7943d": { + "cc51de7920cd42a08e219771ca16f8a3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_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_ed5b2b5e3f9d46dfbfc6f76738400054", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_1125faa6968b47a29468d31d8c7d311a", + "tabbable": null, + "tooltip": null, + "value": 1.0 + } + }, + "cc6359f0156148f7847527f488912938": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_46f8bf24574444d68e9f77deb5b163cb", + "IPY_MODEL_bfd23f1dc1064e5fb65c6de9e3ab33a8" + ], + "layout": "IPY_MODEL_3f6487950d32469094c7ec42fb78b927", + "tabbable": null, + "tooltip": null + } + }, + "cc9018fb3090425290b1fbf9e80e3684": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonStyleModel", + "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", - "description_width": "150px" + "button_color": "#8A2BE2", + "font_family": null, + "font_size": null, + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "d00fe7dee5f64219893e10fb020cd8a2": { - "model_module": "@jupyter-widgets/base", + "cd6046f953ce4a4c9dc09292501915e6": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DescriptionStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "d07a05a75fc542b28bb03339c7689fc4": { + "cd7f44e3dbb64398b7be2dc07926f907": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -15830,7 +15725,7 @@ "grid_template_columns": null, "grid_template_rows": null, "height": null, - "justify_content": "space-between", + "justify_content": null, "justify_items": null, "left": null, "margin": null, @@ -15849,7 +15744,7 @@ "width": null } }, - "d138763e1b9c4736a927a74f76d60890": { + "cda1491853da44ceb7f3179388a5be19": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -15864,16 +15759,31 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_be9a37eb88c440eda62c93b657d030d1", - "IPY_MODEL_4c2496c3e09248f69cd68f892375880e", - "IPY_MODEL_bf77f68d018648708141d3e2e56444b0" + "IPY_MODEL_28a98741c0c9462ab0ff0e4b74192268", + "IPY_MODEL_68e74492e669416f80cdab6bc18ea818", + "IPY_MODEL_a112f90a6049499ca6f79e91bbcdece8" ], - "layout": "IPY_MODEL_dd667092da704539bae13d2ed3cb3908", + "layout": "IPY_MODEL_094c36af7e704f26a3cf8c08ebb57c0a", "tabbable": null, "tooltip": null } }, - "d20f3ac449694589979c57fc2d9918e2": { + "cdd2d2c8e1954a93bc63f76a4599d6d0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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" + } + }, + "ce0f49f6da6f457c8e6c8a9902c63aa3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -15887,70 +15797,76 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L5_pyramidal:", + "description": "L5_basket:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_ccf01812e0b14048b79d72a764e6b5c1", + "layout": "IPY_MODEL_a591dbf9a8c7480bb84124deb517640c", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_26cd207315094c85bb8d5decde2faecd", + "style": "IPY_MODEL_d93d83d23a8945b6ab56336d74a8eac2", "tabbable": null, "tooltip": null, - "value": 0.00865 + "value": 0.008958 } }, - "d33639a3907e4f4e96c6dddbaf5dc19b": { + "ce3a7ea110d74526921c88f870d7456f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "ButtonView", - "button_style": "success", - "description": "Delete drives", - "disabled": false, - "icon": "", - "layout": "IPY_MODEL_eade6b1d5494426d9123195cd8f6817f", - "style": "IPY_MODEL_86aad171553f4e8eabbf9589639e1b43", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "d394e49ef4174d1ab7821571070d4988": { + "ce4bcb6ac1f34d2880cacc28fca840b3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L5_basket:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_2d76e923f80241b09fbaba5213ae6a5f", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_557e1db1150640e38696717608dcad2f", + "layout": "IPY_MODEL_7d28ade3bc0243a098593e6c95c7df3d", + "placeholder": "​", + "style": "IPY_MODEL_e6b8e47223e242fead01bd5959b9ef22", "tabbable": null, "tooltip": null, - "value": 0.0 + "value": "
" + } + }, + "cead83e5a8e44c2c9fbee8fbaac846a1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "" } }, - "d3aeefd7b05545ddb8d89ea08aa026d1": { + "ceda715490c645f3854df1e35c67ed74": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -15965,98 +15881,129 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_5b6b549c49c64bdbad709bd70f9c6739", - "IPY_MODEL_ad9d3aa5cdb24131bf4d8776dc663af6", - "IPY_MODEL_d684361385ef4503be7aa8b6a9bddf9a" + "IPY_MODEL_f3182568e2f34bf5a95c5c8d824ab1d7" ], - "layout": "IPY_MODEL_142d0d55c0ab49c6a3c24ca22ac82dbf", + "layout": "IPY_MODEL_98282b16744846c79b0b467ffeb7a76c", "tabbable": null, "tooltip": null } }, - "d554cdcd7ad44a868552254d71449e32": { + "cedabf5fd7904dc08e439403471565ca": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "TextStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "TextStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "d63c575236614e879796c02624f7e999": { + "cf1738cb0de74336afb05c1fa8e4681a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_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_39aaf4a433bb47c789a1f0885cc02188", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_13cdf66c952d439a897a9b383b3c52a6", + "tabbable": null, + "tooltip": null, + "value": 3e-06 + } + }, + "cf6ea87304f34b8387c43fdb0e54dbd8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonStyleModel", + "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", - "description_width": "150px" + "button_color": "#8A2BE2", + "font_family": null, + "font_size": null, + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "d658b2d528f046cfb8644c1efa006f98": { + "cfde407905184195abfdc49bf952c719": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "IntTextModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "IntTextModel", + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "IntTextView", - "continuous_update": false, - "description": "Seed: ", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_9735365f2fa34bceab497d70cd80887b", - "step": 1, - "style": "IPY_MODEL_377fb5895df94db9bb6ae9b2a41f40cb", + "layout": "IPY_MODEL_542e46043c904b8091589c258639611f", + "placeholder": "​", + "style": "IPY_MODEL_4f75404dac894b1596b3f632461c0f32", "tabbable": null, "tooltip": null, - "value": 2 + "value": "

\n Receptor: ampa

" } }, - "d66576becbb442d3ad25cdd104f0a356": { + "d039ae54d00f4849b0daac3632473378": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "IntTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", + "_view_name": "IntTextView", "continuous_update": false, - "description": "weight", + "description": "No. Spikes:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_4cc919b504744d669f267bf818f98d3f", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_1ccaf2574e3144b0bf8d541bae04e7fa", + "layout": "IPY_MODEL_608441eff28f4c6f850c4513ca44e964", + "step": 1, + "style": "IPY_MODEL_056afc38ddf545eb93f56096dec0c384", "tabbable": null, "tooltip": null, - "value": 0.05 + "value": 1 } }, - "d684361385ef4503be7aa8b6a9bddf9a": { + "d08e8317236e44798575becaa9eb2ef2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", @@ -16071,174 +16018,80 @@ "_view_name": "HTMLView", "description": "", "description_allow_html": false, - "layout": "IPY_MODEL_c658a6a5143e46688178220db3bfe2ab", + "layout": "IPY_MODEL_c48b81e71e5c43adb8d5162300d30e17", "placeholder": "​", - "style": "IPY_MODEL_3b740102b06642dc897ec4f782468e01", + "style": "IPY_MODEL_12ccb1c369de4c88b76159e472faf9b5", "tabbable": null, "tooltip": null, "value": "
" } }, - "d6d2ba0c9787415fb76a34792db70717": { - "model_module": "@jupyter-widgets/base", + "d0e0273ac93f4fe2ba01863ae41a79f0": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DescriptionStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "d74bd15067354f72b4e515cc26a88d4c": { - "model_module": "@jupyter-widgets/base", + "d0ea9b6ca8b24ec09aa3fe556d77c157": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "LabelStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "LabelStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_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 } }, - "d7a10c67ce774d7f835d8e73e861b380": { - "model_module": "@jupyter-widgets/base", + "d0ed2a81f4cc4fc894af402ac54d13df": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "BoundedFloatTextModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L5_pyramidal:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_51584ce94b5e4f8e965806ba5f7a9510", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_c0059f18ca204e25a9ff12d37694f756", + "tabbable": null, + "tooltip": null, + "value": 0.1 } }, - "d7a2021d50024235af86848629fa3126": { + "d0f7e3ec476d4a7fa71dbf4d34c022af": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -16250,33 +16103,47 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "" + "description_width": "150px" } }, - "d9250af4656f423d8ee013cf6d4b768e": { + "d28b0b0fe7ef4a90b6e5c2bdb1155982": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HBoxModel", + "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HBoxModel", + "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HBoxView", + "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_35c6c66de8ed46a2a8a60bb15c992235", - "IPY_MODEL_e19bd2384f6243979640bac7e7488eae" + "IPY_MODEL_81a46989fbc5430daba3a993b989a877" ], - "layout": "IPY_MODEL_4175f6cc42bf43bfb80281d9d5e03200", + "layout": "IPY_MODEL_6377102b022a41809ce19ac4c124093b", "tabbable": null, "tooltip": null } }, - "da80c83078294b82a60531c8faab9c78": { + "d2c6849ca3c94e278c40c89d57c7dd30": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "d32220c7c81c44d982504ec84fef3390": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16329,80 +16196,98 @@ "width": null } }, - "daf2d81707b543d084b0b6cf8446eeb7": { + "d381934cbd844aa88209e1e48da9a96f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "ButtonStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "background": null, - "description_width": "", + "button_color": "#8A2BE2", + "font_family": null, "font_size": null, - "text_color": null + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "daf4acbfcce049b39f3c9c124cb34617": { + "d4472640556843769536524b78128d98": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "LabelModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "LabelModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "LabelView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_2cd0ef1ade6743e4ab44169122452b9a", + "placeholder": "​", + "style": "IPY_MODEL_7e9ace225c514d6d80a7cb4fb442612d", + "tabbable": null, + "tooltip": null, + "value": "default: current dipole" } }, - "db94053fa2654c5db13bb696491440bb": { + "d478a5aeed9b4727aa199e2002adfc61": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "HBoxModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "HBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_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 + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_0fa84863cc6d48a7b97e52a69a458459", + "IPY_MODEL_72a88d4f49d2475a8849a63cf11b69be" + ], + "layout": "IPY_MODEL_f2cf0608557a4e2780d8a62f3f59d9f7", + "tabbable": null, + "tooltip": null } }, - "dbcd80f842d445b3a513093c19ed1e00": { + "d67781339b194ac9aaf77b6997da4b55": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "VBoxModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "200px" + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e5459bf4e89041229df059566afb53cc", + "IPY_MODEL_9dccab1907184da2bc148abdf482def4" + ], + "layout": "IPY_MODEL_56b4037f4e69493ca802ce71169326cd", + "tabbable": null, + "tooltip": null } }, - "dbf109188c2f4012b1f3bf5935805044": { + "d7072d16d8e340fbb0f87f8696fd2d7f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -16416,88 +16301,38 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "Mean time:", + "description": "L2_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_d00fe7dee5f64219893e10fb020cd8a2", + "layout": "IPY_MODEL_0f5b74d10b9740648cd4f948a2432508", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_1a622e7fe5cb4f379ef892885a7e1865", + "style": "IPY_MODEL_5e41ccd3a71b4d9ea3d6c87c42dad267", "tabbable": null, "tooltip": null, - "value": 137.12 - } - }, - "dcdce2e860034d12ae2e5e239673453c": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "_model_module": "@jupyter-widgets/base", - "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "value": 0.004317 } }, - "dd19c448de4d4d179d1e715bbbc7fe81": { + "d758fd513249437a979883f17b0ff636": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "dd26624ba6f54d63a6d0446a8b67b729": { + "d77e30ca9c2544b09fda32dd7d0f9770": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16550,7 +16385,7 @@ "width": null } }, - "dd667092da704539bae13d2ed3cb3908": { + "d78aff8d2fe74bc1a6be169e0b057e2d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16603,60 +16438,31 @@ "width": null } }, - "dd6af3d3efd6460eaa3bfe336ee37972": { - "model_module": "@jupyter-widgets/base", + "d84509d6845f474287daca2e4f4e3d10": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "VBoxModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_2ecba3e8593f4a76ab3de9d3b9585532", + "IPY_MODEL_e70d316f43b34f09a3b99bda9d6d7e42", + "IPY_MODEL_97a9e49c7e924e46949f5aa11307faa1" + ], + "layout": "IPY_MODEL_baebb97aaf3942c9a3a1868de4658593", + "tabbable": null, + "tooltip": null } }, - "dea8f9c168ba46b898bdc808d6f0996b": { + "d8559dde206041dcb015acaf958ef13c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16698,67 +16504,33 @@ "max_width": null, "min_height": null, "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null - } - }, - "def68401039c4b54a39375fcd7fe3d9f": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", - "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_aae8a3edc168410e89971937bc2c3c27", - "max": 1000000.0, - "min": 0.0, - "step": 0.1, - "style": "IPY_MODEL_7a44284fada94038a74b4fc1d9d59c37", - "tabbable": null, - "tooltip": null, - "value": 0.1 + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "dfcf00c284544c3aabf2e8987b6312b9": { + "d8ae7b2a195f40499b2ae08da4a609c6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_fc7d7d5d6af143a9b08655f803ddf734" - ], - "layout": "IPY_MODEL_6663e9d2cc584e129aea5b9c9708ce21", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "dfeba524980547e2aa7079bd76a105b0": { + "d8b5176ddbb04ddca090672442cf82cc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16811,32 +16583,37 @@ "width": null } }, - "e00c98239a91464aa2b55f51280d97d9": { + "d905c840e98943ba9b52c8c5934d7247": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_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_bfb2851bfa404357b511fe0f3b623ae8", - "step": null, - "style": "IPY_MODEL_54cbdbd4d8bf44f99641b9733b07d1b0", - "tabbable": null, - "tooltip": null, - "value": 3000.0 + "_view_name": "StyleView", + "description_width": "200px" + } + }, + "d93d83d23a8945b6ab56336d74a8eac2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" } }, - "e10393d9ac40406abe9b51d13bea8b0f": { + "d952100f61b1424d99e21fa25ac393f3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16889,7 +16666,25 @@ "width": null } }, - "e126d8c14d7e4522847301407c257f5e": { + "d9d91e34e9814c2ba5e701e0ae0903ed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "dacf3bc982ac4d64a75bf63626ab725c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -16922,7 +16717,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "30px", "justify_content": null, "justify_items": null, "left": null, @@ -16939,51 +16734,56 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "auto" } }, - "e18ef0432e404c3f93c62cab7db596ce": { + "db681094acba4f0ea212a737775deddc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "HTMLModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "HTMLModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_c667ca85a2fc4863b33192628b0ed505", + "placeholder": "​", + "style": "IPY_MODEL_d9d91e34e9814c2ba5e701e0ae0903ed", + "tabbable": null, + "tooltip": null, + "value": "NMDA weights" } }, - "e19bd2384f6243979640bac7e7488eae": { + "dbe752b2f08f4f3d8df4c1f8d31cd094": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "HTMLModel", "_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_674d8d4f75234234802ba392849d1e97", - "style": "IPY_MODEL_db94053fa2654c5db13bb696491440bb", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_33eefc232b894eebab2e7cd642ef0bf7", + "placeholder": "​", + "style": "IPY_MODEL_aa6bfcfc09b24bc1acbf09b67aff0a8c", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "NMDA weights" } }, - "e1c9d01b2a0d437e8eb7c42638010d2f": { + "dd0ea0a016ef48c184395c0a18d05e42": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17036,7 +16836,7 @@ "width": null } }, - "e2cee9c5d678462caf6e6ceb82bb8195": { + "dd5d85a6a2f9456bab38610aacda1474": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -17051,16 +16851,16 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_c8e7a3b281e44f42bf015a19f4dbd4af", - "IPY_MODEL_96297f46873540a9aa958ffdd2edab6b", - "IPY_MODEL_fecc5c06e0de48aa925695b3bf11626c" + "IPY_MODEL_67794d94985c474293b5e1683383cf9f", + "IPY_MODEL_75fba6c88bf747a18f5b168e55896011", + "IPY_MODEL_334b3327dca749ef812e8602f3f1e17b" ], - "layout": "IPY_MODEL_9c3f97c67cef40539417c4b28d60686d", + "layout": "IPY_MODEL_d8b5176ddbb04ddca090672442cf82cc", "tabbable": null, "tooltip": null } }, - "e3a045581cfb49649c1af9f094853b6e": { + "dda94c02038241628ffa4d86082ec9c3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -17075,100 +16875,100 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_fd7550f304564a32a37726503c652e93" + "IPY_MODEL_01a66901ba394074bb5068af7cb2c5f5", + "IPY_MODEL_bdba14610b714ed6b2d15f3a3c759548" ], - "layout": "IPY_MODEL_775521d70749440faf06761bac41ee6e", + "layout": "IPY_MODEL_8cc3a8f614cd46c2a47cc9a19dcd365e", "tabbable": null, "tooltip": null } }, - "e3c9f8884d46486cb1d5ecda507c9249": { + "ded3173cc43e404eb93841c5485581d7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "ButtonView", - "button_style": "danger", - "description": "Close Figure 1", - "disabled": false, - "icon": "close", - "layout": "IPY_MODEL_9313a310afcd48259bb58b1864c0ea21", - "style": "IPY_MODEL_c47967eb552b4023942806dfc654a99a", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "description_width": "" } }, - "e43c67ca2af14bc7899d41dec231b835": { + "df645bf5f80542448c2d9ee85747ba2d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "DropdownModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "DropdownModel", + "_options_labels": [ + "current dipole", + "layer2 dipole", + "layer5 dipole", + "input histogram", + "spikes", + "PSD", + "spectrogram", + "network" + ], "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "_view_name": "DropdownView", + "description": "Type:", + "description_allow_html": false, + "disabled": true, + "index": 0, + "layout": "IPY_MODEL_9a0a4248bc9d4bb69df2681300ebdd2e", + "style": "IPY_MODEL_3ff3a767e6e748d593ac28c4982d4a77", + "tabbable": null, + "tooltip": null } }, - "e49cb1e8f3e94e5eb2e5ce1a66143951": { + "e097f4363f0a463e98c9d4470c0a1f62": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", - "description_allow_html": false, - "layout": "IPY_MODEL_8930cfeaf64f4328aebbce634f7be74b", - "placeholder": "​", - "style": "IPY_MODEL_709169496df744bcb695622be1ef076e", - "tabbable": null, - "tooltip": null, - "value": "

\n Receptor: ampa

" + "_view_name": "StyleView", + "description_width": "" } }, - "e529558bd5a14898a446f82c1d8ca34b": { + "e10eeea4e8fc468f9bcde068e6a3bb26": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "VBoxModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "ButtonStyleModel", + "_model_name": "VBoxModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_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 + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_75853a6dc4864e0d976fdc5082e7dc7d" + ], + "layout": "IPY_MODEL_6aeb0b34ebb643309835b5a67cff9eb8", + "tabbable": null, + "tooltip": null } }, - "e5d8a6d895e940e584d3b35caf3ec737": { + "e30540c08ed849eea3ba7b7198a8bf4b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17221,7 +17021,47 @@ "width": null } }, - "e6581cdab3aa4763b0c393172de15132": { + "e3209a4f228648a68553e2bc767045db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_0c1814501b3c46018cee9f034bb03c1f", + "IPY_MODEL_aeea15b169014043bf54125f30da64ea", + "IPY_MODEL_d039ae54d00f4849b0daac3632473378", + "IPY_MODEL_08d05d9363a74b289e21d3820cb6ad00", + "IPY_MODEL_5c2bbea4926b4ba5b14cb6e60e2613ea", + "IPY_MODEL_03a5f7f2391a45108e8062e3d648e3b6", + "IPY_MODEL_24d1e6db2130427fb6db64195e98b196", + "IPY_MODEL_ce0f49f6da6f457c8e6c8a9902c63aa3", + "IPY_MODEL_cf1738cb0de74336afb05c1fa8e4681a", + "IPY_MODEL_db681094acba4f0ea212a737775deddc", + "IPY_MODEL_26dd3ece96a34d12a5467d5d16e53746", + "IPY_MODEL_9b4586df861e453c9c3d66799187b818", + "IPY_MODEL_970d11976cae45d09cdc5e789048634a", + "IPY_MODEL_eff83bd2a43c487a8262097550d3b5e8", + "IPY_MODEL_050c70b8216d4d48b6e1b7769134b68c", + "IPY_MODEL_8c7e01a08d3a4045841ec8c0499920b4", + "IPY_MODEL_2abdccdf37e2488583ab85977d6b426d", + "IPY_MODEL_36527125956d4242928f85b63c6af6ad", + "IPY_MODEL_9845a15402a641c2a87b67d8eb6b1d9f" + ], + "layout": "IPY_MODEL_307f5567ee23439fb6ca6d36b696d11a", + "tabbable": null, + "tooltip": null + } + }, + "e35cad71a548402ab5e9a1de69d4d54a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", @@ -17238,38 +17078,41 @@ "description": "MPI cmd:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_293c500e8500459789adf0a8d5746f4f", + "layout": "IPY_MODEL_b85931aeefe840cdb87d620d8ce6563e", "placeholder": "Fill if applies", - "style": "IPY_MODEL_6cf5e0daab9f4fb393a6418cb9bea796", + "style": "IPY_MODEL_c5fb763ca2ee4824a06614f905be2ef0", "tabbable": null, "tooltip": null, "value": "mpiexec" } }, - "e8b16721b9ef40a9bf76450ea2976c02": { + "e37bf519f8d54518a156056f727d3dc0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLModel", + "model_name": "DropdownModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLModel", + "_model_name": "DropdownModel", + "_options_labels": [ + "default" + ], "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "HTMLView", - "description": "", + "_view_name": "DropdownView", + "description": "Simulation Data:", "description_allow_html": false, - "layout": "IPY_MODEL_1850b468809e4b5c9fcbf9a4a933ff3c", - "placeholder": "​", - "style": "IPY_MODEL_8ceaf56d49cd4ec4bcc976d17593af7b", + "disabled": false, + "index": 0, + "layout": "IPY_MODEL_9a0a4248bc9d4bb69df2681300ebdd2e", + "style": "IPY_MODEL_34a8b34b7b254acc8b2144ef656c815c", "tabbable": null, - "tooltip": null, - "value": "\n HUMAN NEOCORTICAL NEUROSOLVER
" + "tooltip": null } }, - "e93d9ddc58b64187ae0954aff6e10e54": { + "e4396a111f174dbabb6ca74c2f62b05f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17290,7 +17133,7 @@ "border_top": null, "bottom": null, "display": null, - "flex": null, + "flex": "1", "flex_flow": null, "grid_area": null, "grid_auto_columns": null, @@ -17322,47 +17165,32 @@ "width": null } }, - "e993724a7cf941a78b42e0f33276a878": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" - } - }, - "ea10ab73859d4955888bf72465576cb7": { + "e4d0cb7c87254a0d8f0fae539b092b81": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "FloatTextModel", + "model_name": "TextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "FloatTextModel", + "_model_name": "TextModel", "_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):", + "_view_name": "TextView", + "continuous_update": true, + "description": "Name:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_3efc2592b9ee4f5187ca865c0208fc3a", - "step": null, - "style": "IPY_MODEL_5f639aff0cd04f0c82dbfb6e1e16c2da", + "layout": "IPY_MODEL_78937bf27c1e47ac90bb166eedc52015", + "placeholder": "ID of your simulation", + "style": "IPY_MODEL_cedabf5fd7904dc08e439403471565ca", "tabbable": null, "tooltip": null, - "value": 100.0 + "value": "default" } }, - "eade6b1d5494426d9123195cd8f6817f": { + "e5375542f7f24b199b34a0f18256632c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17385,7 +17213,7 @@ "display": null, "flex": null, "flex_flow": null, - "grid_area": null, + "grid_area": "footer", "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, @@ -17395,7 +17223,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "30px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -17412,35 +17240,10 @@ "right": null, "top": null, "visibility": null, - "width": "auto" - } - }, - "eb41fb40c2d74aa0997286e540f8bffd": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "FloatTextModel", - "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_bfb2851bfa404357b511fe0f3b623ae8", - "step": null, - "style": "IPY_MODEL_94773bfcade642d7b501ec997a9e8ec1", - "tabbable": null, - "tooltip": null, - "value": 0.0 + "width": null } }, - "ed3deec00d4247ecb6c513d57b0d6384": { + "e5459bf4e89041229df059566afb53cc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", @@ -17455,33 +17258,29 @@ "_view_name": "HBoxView", "box_style": "", "children": [ - "IPY_MODEL_43c3c0832a15473fab747f2daab7c096", - "IPY_MODEL_7d16050eadaf407d8ca9fc3353310062" + "IPY_MODEL_9d931e90b881449e8ce6c39d7b96a2c8" ], - "layout": "IPY_MODEL_ac61ffaa0e004b999c22797bdb039920", + "layout": "IPY_MODEL_1e33d8a55d7a49179b93dce343a8f128", "tabbable": null, "tooltip": null } }, - "edc649b19e32472f8cbb92f720614e91": { + "e5a30df512164dbb8b0e4dfda42931b9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "150px" } }, - "ee0e5846ee744ea0b7c946728402a275": { + "e5f0940f102a45a78dc9a36da0d8e68b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -17495,20 +17294,38 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "Std dev time:", + "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_8d0b702f36e34a329fbabd9e5b72b9a2", + "layout": "IPY_MODEL_87f4659442bf4050a6ce361a6290bf36", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_b157e8e63ec846acb14060abe59fb114", + "style": "IPY_MODEL_27fc65f330584fe3b40ffb585ac0b896", "tabbable": null, "tooltip": null, - "value": 8.33 + "value": 0.00865 + } + }, + "e68617f5730445dbbdc9ba0444375a5d": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "f14c6ba8ae51464a8d806f7e494fe108": { + "e69b38be8cba4fffbd0d516a2fe3d5e0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17561,7 +17378,67 @@ "width": null } }, - "f14ca5334966447c911b9e42cb875ab7": { + "e6b8e47223e242fead01bd5959b9ef22": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "e70d316f43b34f09a3b99bda9d6d7e42": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_e30540c08ed849eea3ba7b7198a8bf4b", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_74ac80edc519483ba5fa520b04b6fe10", + "tabbable": null, + "tooltip": null, + "value": 0.0005 + } + }, + "e9291cfe01db4f15829c8d94ddfcb6b7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "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": "150px" + } + }, + "eb1797b488ed446b9710a91f66be5c51": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17614,132 +17491,110 @@ "width": null } }, - "f175c1e9a2dd4e05b34e01c74f61b948": { + "eb20132a45cc46d7bacc583b3c5b260f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "FloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_0ef3f6afd95644d48d43fcf488f37512", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_1c9aa97416264004a808e119ca398749", + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "step": null, + "style": "IPY_MODEL_d905c840e98943ba9b52c8c5934d7247", "tabbable": null, "tooltip": null, - "value": 0.0005 - } - }, - "f1956b3a98f74d24b5b1eca7c26bd5a9": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", - "state": { - "_model_module": "@jupyter-widgets/controls", - "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/base", - "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "background": null, - "description_width": "", - "font_size": null, - "text_color": null + "value": 3000.0 } }, - "f1b4c30497d942ebbcc383232c1262b5": { + "eba2d57258584abea25e897c626f7fea": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "FloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "FloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "weight", + "description": "Simulation Dipole Scaling:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_bec9dbe6e1af4c52be1f53d4beb8fad2", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_6b83f28ac7c147aa83ce07e9ffe542ab", + "layout": "IPY_MODEL_9a0a4248bc9d4bb69df2681300ebdd2e", + "step": null, + "style": "IPY_MODEL_cdd2d2c8e1954a93bc63f76a4599d6d0", "tabbable": null, "tooltip": null, - "value": 0.00025 - } - }, - "f2df32346f934753a398ab59d299b5ca": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_40b8b4280f5c460abc27d245292ce8c6", - "IPY_MODEL_d138763e1b9c4736a927a74f76d60890" - ], - "layout": "IPY_MODEL_cad65f9088544b989a4958e23b0d0883", - "tabbable": null, - "tooltip": null - } - }, - "f39bd65c1446404d84bf8487e6a26098": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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": "" + "value": 3000.0 } }, - "f3d84641467d4e20b0a0329e788f6576": { - "model_module": "@jupyter-widgets/controls", + "ec33eb775be24984a7ec4732d6e6bec9": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "_model_module": "@jupyter-widgets/controls", + "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "200px" + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null } }, - "f4205524a01f416c8e177d162509c25e": { + "ec4730cf841d4955bc67c94996a02760": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17792,7 +17647,52 @@ "width": null } }, - "f5fd1292ab334087badb871a414160cd": { + "ec74215a7e084810aaa7fa6f6876c1a9": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_cb793fb2ce0d405e872e4ea1f8689d1c", + "IPY_MODEL_a7534e9926b54d4cb5a5891886eed1cc" + ], + "layout": "IPY_MODEL_43ef69cf2e6f43f1a3d7b8f12c7c68f6", + "tabbable": null, + "tooltip": null + } + }, + "ed28f8dfc3dd45a29183039a6930cd49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "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_0b757719f67f4427b361887ed233f8d8" + ], + "layout": "IPY_MODEL_4a633b23c8d54481be58143f9f88c615", + "tabbable": null, + "tooltip": null + } + }, + "ed5b2b5e3f9d46dfbfc6f76738400054": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17845,91 +17745,99 @@ "width": null } }, - "f61ab6226f894ad2a57cdb32c2c4b8eb": { + "ed6b47b8c9ea47f1b71a17fe8670e172": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "ButtonModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "ButtonModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_05237bb81ab84c1d81dcdd12929a6c45", - "IPY_MODEL_4b09d4adee864373b0d05f649c6973fb", - "IPY_MODEL_c425eed97b644e3cb73d9067fb2ae0ac" - ], - "layout": "IPY_MODEL_fa0d23d9634844c5a15b81246505a0ee", + "_view_name": "ButtonView", + "button_style": "success", + "description": "Delete drives", + "disabled": false, + "icon": "", + "layout": "IPY_MODEL_dacf3bc982ac4d64a75bf63626ab725c", + "style": "IPY_MODEL_7392b90919364a54b4657b5c54faf5c3", "tabbable": null, "tooltip": null } }, - "f6d2d73bc49e465ead35284fc76f6073": { + "eff83bd2a43c487a8262097550d3b5e8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "BoundedFloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L2_basket:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_87101e9b992542bf85bb7d0e19aae4c0", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_299e8a40ff9d42e8867ca9f4590c6807", + "tabbable": null, + "tooltip": null, + "value": 0.0 } }, - "f7800c3ce5f849dbb76e5749f5b901f7": { + "f00a853f8bba41dca21ba156cc43c9d0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HTMLStyleModel", + "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HTMLStyleModel", + "_model_name": "DescriptionStyleModel", "_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 + "description_width": "150px" } }, - "f8831c9b239b4ec09db5b9677bb82a31": { + "f06999b7b8ba42b8b5539f2715da2543": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "BoundedIntTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "BoundedIntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", + "_view_name": "IntTextView", "continuous_update": false, - "description": "weight", + "description": "Cores:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_f14c6ba8ae51464a8d806f7e494fe108", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_d7a2021d50024235af86848629fa3126", + "layout": "IPY_MODEL_8de251d2e0094e2199128c0d5080dadf", + "max": 4, + "min": 1, + "step": 1, + "style": "IPY_MODEL_7fa3fff1fe744a7f93767d6bb18eb831", "tabbable": null, "tooltip": null, - "value": 0.0005 + "value": 1 } }, - "f887503e940d400ca99af4a251ffe40f": { + "f0c429668f514da2ae924462da05a783": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -17982,22 +17890,57 @@ "width": null } }, - "f8b98549e08b48cc833054b3555512da": { + "f10647ad62a34803a8838794c0505a45": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "FloatTextModel", "state": { + "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DescriptionStyleModel", + "_model_name": "FloatTextModel", "_view_count": null, - "_view_module": "@jupyter-widgets/base", + "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "StyleView", - "description_width": "150px" + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "Max Spectral Frequency (Hz):", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_56207e5e5f03461680727dbd61ed43e7", + "step": null, + "style": "IPY_MODEL_c1056ab1ca6a4e1ea0c7df38c26e0f2d", + "tabbable": null, + "tooltip": null, + "value": 100.0 + } + }, + "f197da2d0e4e4b28a7c4bc57f5182c38": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "FloatTextModel", + "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_9a0a4248bc9d4bb69df2681300ebdd2e", + "step": null, + "style": "IPY_MODEL_5edb3972ad7442388c4abea6f5484009", + "tabbable": null, + "tooltip": null, + "value": 100.0 } }, - "f918e9a15e734a87806ca02ca61f0da6": { + "f2cf0608557a4e2780d8a62f3f59d9f7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18030,7 +17973,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": null, + "height": "60px", "justify_content": null, "justify_items": null, "left": null, @@ -18047,10 +17990,67 @@ "right": null, "top": null, "visibility": null, - "width": null + "width": "576px" + } + }, + "f2cfd90b43e049cab80d13072931d45c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "GridBoxModel", + "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_6358bd38514042ef85af7252c02d07cf", + "IPY_MODEL_66c8629474c1481590bc9e9f0c9e527d", + "IPY_MODEL_4b616f54ca474202bc1c9a123f7235d2", + "IPY_MODEL_d28b0b0fe7ef4a90b6e5c2bdb1155982" + ], + "layout": "IPY_MODEL_490e271ab06e4567a526ec9e5aa8e4d3", + "tabbable": null, + "tooltip": null + } + }, + "f3182568e2f34bf5a95c5c8d824ab1d7": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "TabModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "TabModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "TabView", + "box_style": "", + "children": [ + "IPY_MODEL_aa199ffb1625415cac99a36a88ac31e4", + "IPY_MODEL_d67781339b194ac9aaf77b6997da4b55", + "IPY_MODEL_8552cc8490674635bf75c964ffb8835a", + "IPY_MODEL_5c70c98aa56f48019ea59d1d0a7066cc" + ], + "layout": "IPY_MODEL_1bf07f551748407aa62108784bba7eea", + "selected_index": 0, + "tabbable": null, + "titles": [ + "Simulation", + "Network connectivity", + "External drives", + "Visualization" + ], + "tooltip": null } }, - "f92c4471303e4feb869044baffe4eaad": { + "f3198cdc93e34239b04ecadadb1786a6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18083,7 +18083,7 @@ "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, - "height": "30px", + "height": null, "justify_content": null, "justify_items": null, "left": null, @@ -18100,10 +18100,10 @@ "right": null, "top": null, "visibility": null, - "width": "100%" + "width": null } }, - "f96242596bdd4f6aadd1f67a043c0783": { + "f32b779c125141b8a22c0770edd191c4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -18118,16 +18118,79 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_b6f755f02c3a460abcd4306ebbcd7281", - "IPY_MODEL_721b6daeb34b40b5b8065fef82efb540", - "IPY_MODEL_180ee6b2a3734bd394ae952fac05e7c7" + "IPY_MODEL_3a18fa7bc34347ecae7633bcf75d16aa", + "IPY_MODEL_a6789a4108e540379d105aded112349b", + "IPY_MODEL_77debe9eec174c7f8712e9a6597de710", + "IPY_MODEL_6dc45e8582a942e4809535e2504fd0d4", + "IPY_MODEL_fb8eea407be643a2b8bdbd45fee1db48", + "IPY_MODEL_fbf0abe63d8640e897fe17dbe1a5a08f", + "IPY_MODEL_467d502ba8744a30946f687be8ca524c", + "IPY_MODEL_5e23f2f3d5844fd5a3c5f49641d814ba", + "IPY_MODEL_415c3075afe74aa8a08d5928706a8f0f", + "IPY_MODEL_9c1a7912f4514d2fa4060273c259c460", + "IPY_MODEL_d7072d16d8e340fbb0f87f8696fd2d7f", + "IPY_MODEL_54adb07844d14d8b9907d23388cbcd79", + "IPY_MODEL_6ca23515faf945d1b2bce05c1a3182ac", + "IPY_MODEL_d0ed2a81f4cc4fc894af402ac54d13df", + "IPY_MODEL_32d2a554b4984bb5b2c1824293b3cd77", + "IPY_MODEL_ae4b5d9eef1745d19b1c30cde817ba08" ], - "layout": "IPY_MODEL_dd26624ba6f54d63a6d0446a8b67b729", + "layout": "IPY_MODEL_2cc96b7210c94868bf8553db2f8fa1e2", "tabbable": null, "tooltip": null } }, - "f998ffc0a4dd4c36a9ab25fd6cae3c3a": { + "f38b6ef03361476ebeca2d44ab0b5e56": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "BoundedFloatTextModel", + "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_9a6ffd152ec44a60a5acdbbdc7d4351e", + "max": 1000000.0, + "min": 0.0, + "step": 0.01, + "style": "IPY_MODEL_e097f4363f0a463e98c9d4470c0a1f62", + "tabbable": null, + "tooltip": null, + "value": 0.0005 + } + }, + "f5970af54f6648b4bd701133d79d773b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_cb0b60dd17e343fd89f165214620e83f", + "placeholder": "​", + "style": "IPY_MODEL_2feec8d38f0e40499182a4272e847fd2", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: gabaa

" + } + }, + "f69dbc60c89349e685155ed69ca39758": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18180,7 +18243,7 @@ "width": null } }, - "f9d42d17e9744d58be3df9f29fedc061": { + "f8237ba3ad5b4247bab64bae0f346253": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -18195,34 +18258,63 @@ "description_width": "200px" } }, - "f9f2d37bcd4d4927a767285dcf27a050": { + "f82f4425be07432ca498225e15a0e50b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "HTMLView", + "description": "", + "description_allow_html": false, + "layout": "IPY_MODEL_974b865355dd4444943e4255403c2092", + "placeholder": "​", + "style": "IPY_MODEL_c16f4e0674c64d1ba7ebae1a01f8719a", + "tabbable": null, + "tooltip": null, + "value": "

\n Receptor: gabaa

" + } + }, + "f83d52ea72f6486695ec36b0c7842c23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "f98fa7a24d5a4cdfba6156521cec81b5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "BoundedFloatTextModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "BoundedFloatTextModel", + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "FloatTextView", - "continuous_update": false, - "description": "L2_basket:", - "description_allow_html": false, - "disabled": false, - "layout": "IPY_MODEL_7c80bea67fab4dbc82ca138e38956ad7", - "max": 1000000.0, - "min": 0.0, - "step": 0.01, - "style": "IPY_MODEL_07f868fdcaa843a0a40f21e8711904b9", - "tabbable": null, - "tooltip": null, - "value": 0.0 + "_view_name": "StyleView", + "description_width": "" } }, - "fa0d23d9634844c5a15b81246505a0ee": { + "fa184a954ec84a98b6fb67ac3b824d6c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18275,7 +18367,25 @@ "width": null } }, - "fa5b960b7f4c46a68b87ca9d18aa352e": { + "faa4b2ffd2484563b4a32281c7daebe0": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "HTMLStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "HTMLStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "fb3efe10dfc74bc09b7e5221a5af2141": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18325,25 +18435,10 @@ "right": null, "top": null, "visibility": null, - "width": null - } - }, - "fa9321412c944f818cedd37fda1efffa": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "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" + "width": "99%" } }, - "fbc767434c8b4122b5a32ba140842f7b": { + "fb6743abd42f4edb8dbea1320c5d9225": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18396,58 +18491,30 @@ "width": null } }, - "fc662838fe224966b694f9ea9a93f285": { + "fb8eea407be643a2b8bdbd45fee1db48": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DropdownModel", - "_options_labels": [ - "Joblib", - "MPI" - ], + "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Backend:", + "_view_name": "HTMLView", + "description": "", "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_22e863d8cb154476a8f5528e5fb3768b", - "style": "IPY_MODEL_d554cdcd7ad44a868552254d71449e32", - "tabbable": null, - "tooltip": null - } - }, - "fc7d7d5d6af143a9b08655f803ddf734": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "VBoxModel", - "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_0b0dd3c2fcaf4f219b742f1fa17e161a", - "IPY_MODEL_37c4fb6c9bc94dc49dca5479da7e9145", - "IPY_MODEL_005b28d0c6e54394a3d5b392bf642ea3" - ], - "layout": "IPY_MODEL_3a63e8ff05184758910ba45e5dec32c7", + "layout": "IPY_MODEL_348c5f5c34a341bb98198f70c6d3abfa", + "placeholder": "​", + "style": "IPY_MODEL_a842d27b5fbf45a4bb59446ba1f2f154", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": "AMPA weights" } }, - "fc8e745c45884b5e88443bf03f7cb455": { + "fbeaeca6673045b9a9897f1e8aef9670": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", @@ -18462,14 +18529,24 @@ "_view_name": "VBoxView", "box_style": "", "children": [ - "IPY_MODEL_131592e2aaa944178d332b42f0188136" + "IPY_MODEL_209ffddd0e1c4459956e6e47bb1ed6dc", + "IPY_MODEL_a0618ca4a1e14e95962ccef32d41790f", + "IPY_MODEL_728e95733d40434a8c638160d47881ce", + "IPY_MODEL_eb20132a45cc46d7bacc583b3c5b260f", + "IPY_MODEL_33603cd6031246808ba5f84cc997f2b2", + "IPY_MODEL_24f98c7e298d46b08f4713072ff2d6be", + "IPY_MODEL_9b3c045e58b24984bf352d7824211db2", + "IPY_MODEL_f10647ad62a34803a8838794c0505a45", + "IPY_MODEL_1f316e757662491391eff798219237db", + "IPY_MODEL_ec74215a7e084810aaa7fa6f6876c1a9", + "IPY_MODEL_ed28f8dfc3dd45a29183039a6930cd49" ], - "layout": "IPY_MODEL_c2fdf556e8e74bc3969052bc85965f58", + "layout": "IPY_MODEL_660664227173417e85a26d0bc5556efe", "tabbable": null, "tooltip": null } }, - "fcc7217bb82d424fb30e9c9c8da63d57": { + "fbf0abe63d8640e897fe17dbe1a5a08f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "BoundedFloatTextModel", @@ -18483,103 +18560,60 @@ "_view_module_version": "2.0.0", "_view_name": "FloatTextView", "continuous_update": false, - "description": "L2_pyramidal:", + "description": "L5_pyramidal:", "description_allow_html": false, "disabled": false, - "layout": "IPY_MODEL_a2988e0f2b4c4b078f19c355878e69f1", + "layout": "IPY_MODEL_f69dbc60c89349e685155ed69ca39758", "max": 1000000.0, "min": 0.0, "step": 0.01, - "style": "IPY_MODEL_6e47e793c8434530b8c9aaee71e9a131", + "style": "IPY_MODEL_8616439ffc2249b2ba646f67cc2fd0e9", "tabbable": null, "tooltip": null, - "value": 0.0 + "value": 0.1423 } }, - "fd7550f304564a32a37726503c652e93": { + "fc1a904156324d9689656f166bf85a8e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "IntTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "IntTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_0faa975ef2334e719d31afb62af20b14", - "IPY_MODEL_03ec8980c27a4cd6b4a76454ae28feb3", - "IPY_MODEL_4fa010012f0d421abc82604e219c8e00", - "IPY_MODEL_afb10b3e5ebb4325914edc2f567aaa12", - "IPY_MODEL_fc662838fe224966b694f9ea9a93f285", - "IPY_MODEL_be5435591b4a4d3087ef7f430a814bd0" - ], - "layout": "IPY_MODEL_0986aedee6454a928a17e908281c9b0d", + "_view_name": "IntTextView", + "continuous_update": false, + "description": "No. Spikes:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_c552d69bed144a68b8edd59fbc737ed7", + "step": 1, + "style": "IPY_MODEL_14750414e2f64229a8d9fcd7252fb0c8", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 1 } }, - "fdcac94312494334b54848ee62b071a2": { + "fc45a05b185d490f8909573950375d72": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "DropdownModel", + "model_name": "DescriptionStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "DropdownModel", - "_options_labels": [ - "2row x 1col (1:3)", - "2row x 1col (1:1)", - "1row x 2col (1:1)", - "single figure", - "2row x 2col (1:1)" - ], + "_model_name": "DescriptionStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "DropdownView", - "description": "Layout template:", - "description_allow_html": false, - "disabled": false, - "index": 0, - "layout": "IPY_MODEL_9ce059112d92443abd9d3390945387ae", - "style": "IPY_MODEL_aa5ace988e354de8acb1f0f2f24b00e4", - "tabbable": null, - "tooltip": null - } - }, - "fe98215cb28e4577856158ea9a5e5440": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "_dom_classes": [], - "_model_module": "@jupyter-widgets/output", - "_model_module_version": "1.0.0", - "_model_name": "OutputModel", - "_view_count": null, - "_view_module": "@jupyter-widgets/output", - "_view_module_version": "1.0.0", - "_view_name": "OutputView", - "layout": "IPY_MODEL_56b9c301035049d3a478bf1f20d71fc1", - "msg_id": "", - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": "init network\ndrive type is Evoked, location=distal\ndrive type is Evoked, location=proximal\ndrive type is Evoked, location=proximal\nstart simulation\nUsing Joblib with 1 core(s).\nJoblib will run 1 trial(s) in parallel by distributing trials over 1 jobs.\nLoading custom mechanism files from /home/circleci/miniconda/envs/testenv/lib/python3.8/site-packages/hnn_core/mod/x86_64/libnrnmech.so\nBuilding the NEURON model\n[Done]\nTrial 1: 0.03 ms...\nTrial 1: 10.0 ms...\nTrial 1: 20.0 ms...\nTrial 1: 30.0 ms...\nTrial 1: 40.0 ms...\nTrial 1: 50.0 ms...\nTrial 1: 60.0 ms...\nTrial 1: 70.0 ms...\nTrial 1: 80.0 ms...\nTrial 1: 90.0 ms...\nTrial 1: 100.0 ms...\nTrial 1: 110.0 ms...\nTrial 1: 120.0 ms...\nTrial 1: 130.0 ms...\nTrial 1: 140.0 ms...\nTrial 1: 150.0 ms...\nTrial 1: 160.0 ms...\n" - } - ], - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "description_width": "150px" } }, - "fec53da7c93e47ec89bb20b80805da2d": { + "fc69cfaa7c5b4156b0579b243d1ae944": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18592,16 +18626,16 @@ "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, - "align_items": "stretch", + "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, - "display": "flex", + "display": null, "flex": null, - "flex_flow": "column", + "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, @@ -18632,51 +18666,52 @@ "width": null } }, - "fec7241fd3224167950a71e0c2b5934c": { + "fdda10c0eb98460788d2a6a8f3a4d1a7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "BoundedFloatTextModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "VBoxModel", + "_model_name": "BoundedFloatTextModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", - "_view_name": "VBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_c7a227c387a147a49d87b0f7fd207605" - ], - "layout": "IPY_MODEL_4cd83319fa1c45f1857e71085472406d", + "_view_name": "FloatTextView", + "continuous_update": false, + "description": "L5_basket:", + "description_allow_html": false, + "disabled": false, + "layout": "IPY_MODEL_3649edbf50be4df094c32637852fa940", + "max": 1000000.0, + "min": 0.0, + "step": 0.1, + "style": "IPY_MODEL_851de8812a1e4b2bb2da4f782a92ee86", "tabbable": null, - "tooltip": null + "tooltip": null, + "value": 1.0 } }, - "fecc5c06e0de48aa925695b3bf11626c": { + "fdff431728bd475eb9a9f0405ffa37c3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "HBoxModel", + "model_name": "HTMLStyleModel", "state": { - "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "HBoxModel", + "_model_name": "HTMLStyleModel", "_view_count": null, - "_view_module": "@jupyter-widgets/controls", + "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "HBoxView", - "box_style": "", - "children": [ - "IPY_MODEL_fe98215cb28e4577856158ea9a5e5440" - ], - "layout": "IPY_MODEL_8c335e05db6141a38aea3d33ec245a56", - "tabbable": null, - "tooltip": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "ff05b5361f2942bf9841ee112e55e374": { + "fe133e07a47d49a5bb5e89e96f9989fb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -18729,7 +18764,7 @@ "width": null } }, - "ff09664d9fe1477fae9e9ba2b472290f": { + "fe585abb046b43b393bf7c62c5061ce0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -18741,63 +18776,28 @@ "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", - "description_width": "150px" + "description_width": "200px" } }, - "ff524f8d00cc4e75bc522c268ca68911": { - "model_module": "@jupyter-widgets/base", + "fe60289780fd42f28c0d8799b2abfd09": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "HTMLStyleModel", "state": { - "_model_module": "@jupyter-widgets/base", + "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", - "_model_name": "LayoutModel", + "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", - "_view_name": "LayoutView", - "align_content": null, - "align_items": null, - "align_self": null, - "border_bottom": null, - "border_left": null, - "border_right": null, - "border_top": null, - "bottom": null, - "display": null, - "flex": null, - "flex_flow": null, - "grid_area": null, - "grid_auto_columns": null, - "grid_auto_flow": null, - "grid_auto_rows": null, - "grid_column": null, - "grid_gap": null, - "grid_row": null, - "grid_template_areas": null, - "grid_template_columns": null, - "grid_template_rows": null, - "height": null, - "justify_content": null, - "justify_items": null, - "left": null, - "margin": null, - "max_height": null, - "max_width": null, - "min_height": null, - "min_width": null, - "object_fit": null, - "object_position": null, - "order": null, - "overflow": null, - "padding": null, - "right": null, - "top": null, - "visibility": null, - "width": null + "_view_name": "StyleView", + "background": null, + "description_width": "", + "font_size": null, + "text_color": null } }, - "ff5fabfe9a2641d0a986475491e250b8": { + "ff1750ba838c45558fe292942e617a4b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", diff --git a/dev/gui/tutorial_erp.html b/dev/gui/tutorial_erp.html index 1a7d6bc8e..c0129063b 100644 --- a/dev/gui/tutorial_erp.html +++ b/dev/gui/tutorial_erp.html @@ -238,7 +238,7 @@

Launch GUILoad/view parameters to define network structure & to “activate” the