Open In Colab

Installing requirements¶

The cell below installs every Python package needed to run this notebook, at fully pinned versions, using uv for fast resolution. In Colab the cell is collapsed by default — click the ▶ button to run it.

In [1]:
# install cell skipped during CI (deps preinstalled into system Python)

⚠️ Restart runtime after install

The install may upgrade packages already loaded in the kernel. Go to Runtime → Restart session, then Run all cells below (skip this install cell on re-run).

This document is intended to showcase usage and allow the IBL team to access example data until we decide about uploading the full dataset. The idea is to iterate and add improvements to the structure, suggest visualization and data access patterns that might be desirable for the final documentation.

To use it, you will need to run this notebook in an environment that has both pynwb and remfile installed plus any additional dependencies that we use for analysis such as matplotib, numpy, pandas, etc.

Locate Examples¶

In [2]:
import h5py
import remfile
from dandi.dandiapi import DandiAPIClient
from pynwb import NWBHDF5IO

# Connect to DANDI and get the dandiset
dandiset_id = "000409"
client = DandiAPIClient()
dandiset = client.get_dandiset(dandiset_id, "draft")

# =============================================================================
# Session EIDs for NEW format files (desc-raw / desc-processed)
# =============================================================================

# Complete session with 2 probes - Session 1 (NYU-39, 2021-05-10, angelakilab)
# - Full data: all videos, pose estimation, spike sorting for both probes
TWO_PROBE_SESSION_EID_1 = "6ed57216-498d-48a6-b48b-a243a34710ea"

# Complete session with 2 probes - Session 2 (NYU-39, 2021-05-11, angelakilab)
# - Full data: all videos, pose estimation, spike sorting for both probes
TWO_PROBE_SESSION_EID_2 = "35ed605c-1a1a-47b1-86ff-2b56144f55af"

# Complete session with 1 probe (NYU-46, 2021-06-25, angelakilab)  
# - Full data: all videos, pose estimation, spike sorting for probe01
ONE_PROBE_SESSION_EID = "64e3fb86-928c-4079-865c-b364205b502e"

# Choose which session to use
session_eid = ONE_PROBE_SESSION_EID  # Change to TWO_PROBE_SESSION_EID_2 or ONE_PROBE_SESSION_EID
session_eid = "78b4fff5-c5ec-44d9-b5f9-d59493063f00"
# session_eid = "6713a4a7-faed-4df2-acab-ee4e63326f8"
# session_eid = "196a2adf-ff83-49b2-823a-33f990049c2"

# =============================================================================
# Fetch assets by EID
# =============================================================================

# First, filter asse    ts by EID
session_assets = [asset for asset in dandiset.get_assets() if session_eid in asset.path]

# Then, extract raw and processed files
raw_asset = next((asset for asset in session_assets if "desc-raw" in asset.path), None)
processed_asset = next((asset for asset in session_assets if "desc-processed" in asset.path), None)

print(f"Session EID: {session_eid}")
print(f"\nRaw file:       {raw_asset.path if raw_asset else 'Not found'}")
print(f"Processed file: {processed_asset.path if processed_asset else 'Not found'}")
Session EID: 78b4fff5-c5ec-44d9-b5f9-d59493063f00

Raw file:       sub-KS091/sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_desc-raw_ecephys.nwb
Processed file: sub-KS091/sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_desc-processed_behavior+ecephys.nwb

Raw NWB file¶

The raw data is stored in a separate file from the processed data. The raw data file contains the acquisition module with the raw ephys data (both AP and LF bands); video metadata (which includes properly aligned timestamps) and a link to the video files; and, when available, the NIDQ board data.

In [3]:
s3_url = raw_asset.get_content_url(follow_redirects=1, strip_query=False)
file_system = remfile.File(s3_url)
file = h5py.File(file_system, mode="r")

io = NWBHDF5IO(file=file)
nwbfile_raw = io.read()
In [4]:
nwbfile_raw.session_start_time
Out[4]:
datetime.datetime(2022, 7, 4, 14, 30, 15, 49000, tzinfo=tzoffset(None, 3600))
In [5]:
devices = nwbfile_raw.devices
probe_devices = [devices[name] for name in devices if "Probe" in name]
for probe_device in probe_devices:
    print(f"{probe_device.name}: {probe_device.serial_number}")
Probe00: 18005102151
Probe01: 18194814141
In [6]:
nwbfile_raw
Out[6]:

root (NWBFile)

session_description:
identifier: b7acca58-2558-4ec2-a797-23f49bc2316e
session_start_time2022-07-04 14:30:15.049000+01:00
timestamps_reference_time2022-07-04 14:30:15.049000+01:00
file_create_date
02026-02-08 09:53:57.452180+00:00
acquisition
ElectricalSeriesProbe00AP (ElectricalSeries)
resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe00AP.
conversion: 2.34375e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(164362247, 384)
Array size117.56 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)126230205696
Compressed size (bytes)61453524661
Compression ratio2.0540759279851195
timestamps
HDF5 dataset
Data typefloat64
Shape(164362247,)
Array size1.22 GiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)1314897976
Compressed size (bytes)793462428
Compression ratio1.6571647624378756
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

ElectricalSeriesProbe00LF (ElectricalSeries)
resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe00LF.
conversion: 4.6875e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(13696854, 384)
Array size9.80 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)10519183872
Compressed size (bytes)5364846101
Compression ratio1.9607615342477835
timestamps
HDF5 dataset
Data typefloat64
Shape(13696854,)
Array size104.50 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)109574832
Compressed size (bytes)71276130
Compression ratio1.5373285839172244
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

ElectricalSeriesProbe01AP (ElectricalSeries)
resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe01AP.
conversion: 2.34375e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(164362400, 384)
Array size117.56 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)126230323200
Compressed size (bytes)61994169449
Compression ratio2.036164438074203
timestamps
HDF5 dataset
Data typefloat64
Shape(164362400,)
Array size1.22 GiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)1314899200
Compressed size (bytes)793389570
Compression ratio1.6573184847892568
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

ElectricalSeriesProbe01LF (ElectricalSeries)
resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe01LF.
conversion: 4.6875e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(13696867, 384)
Array size9.80 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)10519193856
Compressed size (bytes)5387497680
Compression ratio1.9525194219666002
timestamps
HDF5 dataset
Data typefloat64
Shape(13696867,)
Array size104.50 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)109574936
Compressed size (bytes)71277703
Compression ratio1.5372961162903918
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

EventsAudio (LabeledEvents)
description: Auditory stimulus presentation events. Marks timing of audio stimulus delivery for auditory tasks or cue presentation. Label meanings: - audio_off: Audio stimulus off - audio_on: Audio stimulus on
timestamps
HDF5 dataset
Data typefloat64
Shape(2392,)
Array size18.69 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)19136
Compressed size (bytes)19136
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(2392,)
Array size18.69 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)19136
Compressed size (bytes)19136
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['audio_off' 'audio_on']
EventsBodyCamera (LabeledEvents)
description: Video frame acquisition times for the body camera. Each event marks when a video frame was captured by the camera, enabling temporal alignment of behavior videos with neural and task data. Label meanings: - exposure_end: Camera exposure end or frame readout complete - frame_start: Camera frame acquisition start (frame timestamp)
timestamps
HDF5 dataset
Data typefloat64
Shape(321934,)
Array size2.46 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575472
Compressed size (bytes)2575472
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(321934,)
Array size2.46 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575472
Compressed size (bytes)2575472
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['exposure_end' 'frame_start']
EventsFrame2ttl (LabeledEvents)
description: Monitor refresh events detected by photodiode for visual stimulus timing. The Frame2TTL device uses a photodiode to detect changes in screen luminance, providing precise timing of when visual stimuli are displayed on the monitor. This is essential for accurate stimulus-response latency measurements. Label meanings: - screen_dark: Screen transitioned to dark (photodiode detected low luminance) - screen_bright: Screen transitioned to bright (photodiode detected high luminance)
timestamps
HDF5 dataset
Data typefloat64
Shape(2250,)
Array size17.58 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)18000
Compressed size (bytes)18000
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(2250,)
Array size17.58 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)18000
Compressed size (bytes)18000
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['screen_dark' 'screen_bright']
EventsImecSync (LabeledEvents)
description: Multi-probe synchronization signal (1 Hz square wave). This signal is simultaneously recorded on NIDQ and all Neuropixels probes, enabling precise temporal alignment across multiple recording devices. The 1 Hz square wave provides regular alignment points for drift correction. Label meanings: - sync_low: Sync signal low phase (0.5s duration at 1 Hz) - sync_high: Sync signal high phase (0.5s duration at 1 Hz)
timestamps
HDF5 dataset
Data typefloat64
Shape(51712,)
Array size404.00 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)413696
Compressed size (bytes)413696
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(51712,)
Array size404.00 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)413696
Compressed size (bytes)413696
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['sync_low' 'sync_high']
EventsLeftCamera (LabeledEvents)
description: Video frame acquisition times for the left-side camera (body camera). Each event marks when a video frame was captured by the camera, enabling temporal alignment of behavior videos with neural and task data. Label meanings: - exposure_end: Camera exposure end or frame readout complete - frame_start: Camera frame acquisition start (frame timestamp)
timestamps
HDF5 dataset
Data typefloat64
Shape(644632,)
Array size4.92 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)5157056
Compressed size (bytes)5157056
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(644632,)
Array size4.92 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)5157056
Compressed size (bytes)5157056
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['exposure_end' 'frame_start']
EventsRightCamera (LabeledEvents)
description: Video frame acquisition times for the right-side camera (body camera). Each event marks when a video frame was captured by the camera, enabling temporal alignment of behavior videos with neural and task data. Label meanings: - exposure_end: Camera exposure end or frame readout complete - frame_start: Camera frame acquisition start (frame timestamp)
timestamps
HDF5 dataset
Data typefloat64
Shape(1614062,)
Array size12.31 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)12912496
Compressed size (bytes)12912496
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(1614062,)
Array size12.31 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)12912496
Compressed size (bytes)12912496
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['exposure_end' 'frame_start']
EventsRotaryEncoder0 (LabeledEvents)
description: Rotary encoder pulses tracking wheel movement (quadrature phase A). Each pulse represents a discrete angular increment of the wheel rotation, used to measure behavioral responses and locomotion with high temporal precision. Label meanings: - phase_low: Encoder phase transition to LOW - phase_high: Encoder phase transition to HIGH
timestamps
HDF5 dataset
Data typefloat64
Shape(1102925,)
Array size8.41 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8823400
Compressed size (bytes)8823400
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(1102925,)
Array size8.41 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8823400
Compressed size (bytes)8823400
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['phase_low' 'phase_high']
EventsRotaryEncoder1 (LabeledEvents)
description: Rotary encoder pulses tracking wheel movement (quadrature phase B). Combined with rotary_encoder_0, this provides directional information for wheel rotation through quadrature encoding. Label meanings: - phase_low: Encoder phase transition to LOW - phase_high: Encoder phase transition to HIGH
timestamps
HDF5 dataset
Data typefloat64
Shape(1103151,)
Array size8.42 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8825208
Compressed size (bytes)8825208
Compression ratio1.0
timestamps__unit: seconds
data
HDF5 dataset
Data typeuint64
Shape(1103151,)
Array size8.42 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8825208
Compressed size (bytes)8825208
Compression ratio1.0
data__labels
NumPy array
Data typeobject
Shape(2,)
Array size16.00 bytes

['phase_low' 'phase_high']
TimeSeriesBpod (TimeSeries)
starting_time: 2449.774671117159
rate: 30002.678151
resolution: -1.0
comments: no comments
description: Analog signal from Bpod behavioral control system. This continuous voltage signal encodes behavioral state machine events and timestamps from the Bpod system, which controls stimulus presentation and reward delivery during tasks. The analog encoding allows precise temporal alignment between Bpod events and neural recordings.
conversion: 0.000152587890625
offset: 0.0
unit: V
data
HDF5 dataset
Data typeint16
Shape(164377344, 1)
Array size313.52 MiB
Chunk shape(5000000, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)328754688
Compressed size (bytes)70432554
Compression ratio4.667652517612807
starting_time_unit: seconds
TimeSeriesImec0Sync (TimeSeries)
resolution: -1.0
comments: no comments
description: Synchronization channel (SY0) from Neuropixel probe 0 AP stream (stream: imec0.ap-SYNC). Contains a 16-bit status word where bit 6 carries a 1 Hz square wave (toggling between 0 and 1 every 0.5 seconds) used for sub-millisecond timing alignment across acquisition devices and data streams. The other bits carry hardware status and error flags. For NP1.0 probes, the sync channel appears identically in both AP and LF files. The sync signal can be generated internally by the Imec module (PXIe or OneBox) or externally by an NI-DAQ device acting as the master sync generator for multi-device setups.
conversion: 1171.875
offset: 0.0
unit: uV
data
HDF5 dataset
Data typeint16
Shape(164362247, 1)
Array size313.50 MiB
Chunk shape(5000000, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)328724494
Compressed size (bytes)525936
Compression ratio625.0275584862036
timestamps
HDF5 dataset
Data typefloat64
Shape(164362247,)
Array size1.22 GiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)1314897976
Compressed size (bytes)793462428
Compression ratio1.6571647624378756
timestamps_unit: seconds
interval: 1
VideoBodyCamera (ImageSeries)
resolution: -1.0
comments: no comments
description: Raw video from camera recording behavioral and task events.
conversion: 1.0
offset: 0.0
unit: n.a.
data
HDF5 dataset
Data typeuint8
Shape(0, 0, 0)
Array size0.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
timestamps
HDF5 dataset
Data typefloat64
Shape(160785,)
Array size1.23 MiB
Chunk shape(160785,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)1286280
Compressed size (bytes)952756
Compression ratio1.3500623454483625
timestamps_unit: seconds
interval: 1
external_file
HDF5 dataset
Data typeobject
Shape(1,)
Array size8.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8
Compressed size (bytes)16
Compression ratio0.5

['./sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_ecephys+image/sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_VideoBodyCamera.mp4']
starting_frame
NumPy array
Data typeint64
Shape(1,)
Array size8.00 bytes

[0]
format: external
VideoLeftCamera (ImageSeries)
resolution: -1.0
comments: no comments
description: Raw video from camera recording behavioral and task events.
conversion: 1.0
offset: 0.0
unit: n.a.
data
HDF5 dataset
Data typeuint8
Shape(0, 0, 0)
Array size0.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
external_file
HDF5 dataset
Data typeobject
Shape(1,)
Array size8.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8
Compressed size (bytes)16
Compression ratio0.5

['./sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_ecephys+image/sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_VideoLeftCamera.mp4']
starting_frame
NumPy array
Data typeint64
Shape(1,)
Array size8.00 bytes

[0]
format: external
VideoRightCamera (ImageSeries)
resolution: -1.0
comments: no comments
description: Raw video from camera recording behavioral and task events.
conversion: 1.0
offset: 0.0
unit: n.a.
data
HDF5 dataset
Data typeuint8
Shape(0, 0, 0)
Array size0.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
external_file
HDF5 dataset
Data typeobject
Shape(1,)
Array size8.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)8
Compressed size (bytes)16
Compression ratio0.5

['./sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_ecephys+image/sub-KS091_ses-78b4fff5-c5ec-44d9-b5f9-d59493063f00_VideoRightCamera.mp4']
starting_frame
NumPy array
Data typeint64
Shape(1,)
Array size8.00 bytes

[0]
format: external
electrodes (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

electrode_groups
Probe00 (ElectrodeGroup)
description: Electrode group for probe00
location: Unresolved
device (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18005102151
Probe01 (ElectrodeGroup)
description: Electrode group for probe01
location: Unresolved
device (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18194814141
devices
NIDQBoard (Device)
description: A NIDQ board used in conjunction with SpikeGLX.
Probe00 (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18005102151
Probe01 (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18194814141
intervals
epochs (TimeIntervals)
description: Session-level epochs defining the two main phases of an IBL recording session. The 'task' epoch covers the active behavioral task period where the mouse performs the decision-making task (responding to visual stimuli by turning a wheel). The 'passive' epoch covers the passive replay period where visual and auditory stimuli are presented without the mouse performing any task, used for receptive field mapping and stimulus response characterization. The passive protocol includes replay of task stimuli, sparse noise for receptive field mapping, and natural movie clips. See the 'protocol_type' column to distinguish between epochs.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_type
Type of protocol phase (task or passive)
epoch_description
Detailed description of what occurs during this epoch
table
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse performs a decision-making task where it must turn a wheel to move a visual stimulus (Gabor patch) to the center of the screen. Correct responses are rewarded with water; incorrect responses trigger white noise feedback. The trials table contains detailed timing and outcome data for each trial during this epoch.
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and auditory stimuli are presented while the mouse is head-fixed but not performing any task. This epoch includes: (1) replay of task-relevant stimuli (Gabor patches at various contrasts and positions), (2) sparse noise stimuli for receptive field mapping, and (3) natural movie clips. Used for characterizing sensory responses independent of task engagement.
subject (IblSubject)
age__reference: birth
sex: M
species: Mus musculus
subject_id: KS091
weight: 0.028399999999999998 kg
date_of_birth2021-12-14 00:00:00+00:00
uuid: e7a62e2c-9a39-41ce-98ce-35c7c1b4a845
expected_water_ml: 1.1900000000000002
remaining_water_ml: 1.1900000000000002
lab_meta_data
ibl_metadata (IblMetadata)
revision: 2025-05-06
localization (Localization)
anatomical_coordinates_tables
ElectrodesCCFv3 (AnatomicalCoordinatesTable)
description: Electrode positions in the Allen CCF coordinate system
method: IBL histology alignment pipeline
space (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name brain_region
id
0 3401.0 4105.0 5751.0 0 Probe01 ILA1
1 3401.0 4105.0 5751.0 1 Probe01 ILA1
2 3401.0 4087.0 5745.0 2 Probe01 ILA1
3 3401.0 4087.0 5745.0 3 Probe01 ILA1

... and 764 more row(s).

ElectrodesIBLBregma (AnatomicalCoordinatesTable)
description: Electrode positions in the IBL-Bregma coordinate system
method: IBL histology alignment pipeline
space (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
atlas_id
Allen Brain Atlas region ID. Negative values indicate left hemisphere, positive values indicate right hemisphere.
beryl_location
Brain region in IBL Beryl atlas (coarse grouping).
cosmos_location
Brain region in IBL Cosmos atlas (very coarse grouping).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name atlas_id beryl_location cosmos_location brain_region
id
0 12.0 1999.0 -3773.0 0 Probe01 707 ILA Isocortex ILA1
1 12.0 1999.0 -3773.0 1 Probe01 707 ILA Isocortex ILA1
2 6.0 1999.0 -3755.0 2 Probe01 707 ILA Isocortex ILA1
3 6.0 1999.0 -3755.0 3 Probe01 707 ILA Isocortex ILA1

... and 764 more row(s).

spaces
AllenCCFv3 (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
IBLBregma (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS
epochs (TimeIntervals)
description: Session-level epochs defining the two main phases of an IBL recording session. The 'task' epoch covers the active behavioral task period where the mouse performs the decision-making task (responding to visual stimuli by turning a wheel). The 'passive' epoch covers the passive replay period where visual and auditory stimuli are presented without the mouse performing any task, used for receptive field mapping and stimulus response characterization. The passive protocol includes replay of task stimuli, sparse noise for receptive field mapping, and natural movie clips. See the 'protocol_type' column to distinguish between epochs.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_type
Type of protocol phase (task or passive)
epoch_description
Detailed description of what occurs during this epoch
table
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse performs a decision-making task where it must turn a wheel to move a visual stimulus (Gabor patch) to the center of the screen. Correct responses are rewarded with water; incorrect responses trigger white noise feedback. The trials table contains detailed timing and outcome data for each trial during this epoch.
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and auditory stimuli are presented while the mouse is head-fixed but not performing any task. This epoch includes: (1) replay of task-relevant stimuli (Gabor patches at various contrasts and positions), (2) sparse noise stimuli for receptive field mapping, and (3) natural movie clips. Used for characterizing sensory responses independent of task engagement.
session_id: 78b4fff5-c5ec-44d9-b5f9-d59493063f00
lab: cortexlab
institution: University College London
protocol: _iblrig_tasks_ephysChoiceWorld6.5.3
source_script: Created using NeuroConv v0.9.2
source_script_file_name: /ebs/IBL-to-nwb/.venv/lib/python3.10/site-packages/neuroconv/basedatainterface.py

Locating and Accessing the AP and LF bands¶

The raw data is stored in the acquisition module as an ElectricalSeries. We can access the AP bands of each probe as follows and use the HTML representation to display the metada of the ElectricalSeries

In [7]:
ap_series = {name: nwbfile_raw.acquisition[name] for name in nwbfile_raw.acquisition if name.endswith("AP")}
for name, series in ap_series.items():
    print(f"{name}: {series.data.shape}")

# Display the first AP series
first_ap = next(iter(ap_series.values()))
first_ap
ElectricalSeriesProbe00AP: (164362247, 384)
ElectricalSeriesProbe01AP: (164362400, 384)
Out[7]:

ElectricalSeriesProbe00AP (ElectricalSeries)

resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe00AP.
conversion: 2.34375e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(164362247, 384)
Array size117.56 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)126230205696
Compressed size (bytes)61453524661
Compression ratio2.0540759279851195
timestamps
HDF5 dataset
Data typefloat64
Shape(164362247,)
Array size1.22 GiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)1314897976
Compressed size (bytes)793462428
Compression ratio1.6571647624378756
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

The LF bands can be accessed in a similar way:

In [8]:
lf_series = {name: nwbfile_raw.acquisition[name] for name in nwbfile_raw.acquisition if name.endswith("LF")}
for name, series in lf_series.items():
    print(f"{name}: {series.data.shape}")

# Display the first LF series
first_lf = next(iter(lf_series.values()))
first_lf
ElectricalSeriesProbe00LF: (13696854, 384)
ElectricalSeriesProbe01LF: (13696867, 384)
Out[8]:

ElectricalSeriesProbe00LF (ElectricalSeries)

resolution: -1.0
comments: no comments
description: Acquisition traces for the ElectricalSeriesProbe00LF.
conversion: 4.6875e-06
offset: 0.0
unit: volts
data
HDF5 dataset
Data typeint16
Shape(13696854, 384)
Array size9.80 GiB
Chunk shape(13020, 384)
Compressiongzip
Compression opts4
Uncompressed size (bytes)10519183872
Compressed size (bytes)5364846101
Compression ratio1.9607615342477835
timestamps
HDF5 dataset
Data typefloat64
Shape(13696854,)
Array size104.50 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)109574832
Compressed size (bytes)71276130
Compression ratio1.5373285839172244
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: electrode_table_region
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

Each of the ElectricalSeries has its own timestamps that are aligned to the common clock used across the entire NWB file. Each of the ElectricalSeries is linked to the corresponding probe metadata stored in the electrodes table. For example, we can access the electrodes table for probe 0 as follows:

In [9]:
first_ap.electrodes.to_dataframe()
Out[9]:
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
384 Cortical amygdalar area posterior part lateral... Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e0 square AP0,LF0 16.0 0.0 Probe00 e0 0 0 Probe00 7800.0 7016.0 2539.0 NaN
385 Cortical amygdalar area posterior part lateral... Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e1 square AP1,LF1 48.0 0.0 Probe00 e1 1 0 Probe00 7800.0 7016.0 2539.0 NaN
386 Cortical amygdalar area posterior part lateral... Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e2 square AP2,LF2 0.0 20.0 Probe00 e2 0 1 Probe00 7800.0 6996.0 2544.0 NaN
387 Cortical amygdalar area posterior part lateral... Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e3 square AP3,LF3 32.0 20.0 Probe00 e3 1 1 Probe00 7800.0 6996.0 2544.0 NaN
388 Cortical amygdalar area posterior part lateral... Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e4 square AP4,LF4 16.0 40.0 Probe00 e4 0 2 Probe00 7800.0 6976.0 2548.0 NaN
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
763 Field CA3 Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e379 square AP379,LF379 32.0 3780.0 Probe00 e379 31 9 Probe00 7925.0 3198.0 3002.0 NaN
764 Field CA3 Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e380 square AP380,LF380 16.0 3800.0 Probe00 e380 30 10 Probe00 7925.0 3180.0 3011.0 NaN
765 Field CA3 Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e381 square AP381,LF381 48.0 3800.0 Probe00 e381 31 10 Probe00 7925.0 3180.0 3011.0 NaN
766 Field CA3 Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e382 square AP382,LF382 0.0 3820.0 Probe00 e382 30 11 Probe00 7925.0 3162.0 3020.0 NaN
767 Field CA3 Probe00 pynwb.ecephys.ElectrodeGroup at 0x1407... e383 square AP383,LF383 32.0 3820.0 Probe00 e383 31 11 Probe00 7925.0 3162.0 3020.0 NaN

384 rows × 18 columns

Electrode Metadata¶

The electrodes attribute of an ElectricalSeries defines a region of the electrodes table stored in the NWB file. This table contains metadata about each of the channels recorded by the probe, including their location in the brain, their position in the probe shank, and other relevant information. A convenient way to access this information is to convert the table to a pandas dataframe as follows:

In [10]:
electrodes = nwbfile_raw.electrodes
electrodes
Out[10]:

electrodes (ElectrodesTable)

description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140701196667792\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140701196667472\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

DynamicTable objects such as the electrodes table (but also the Units and trials tables) can be easily converted to pandas dataframes for easier access and manipulation.

In [11]:
electrodes_df = electrodes.to_dataframe()
electrodes_df.columns
Out[11]:
Index(['location', 'group', 'electrode_name', 'contact_shapes', 'channel_name',
       'rel_x', 'rel_y', 'probe_name', 'contact_ids', 'shank_ids', 'adc_group',
       'adc_sample_order', 'group_name', 'x', 'y', 'z', 'imp', 'filtering'],
      dtype='object')

Specially useful columns includes 'x', 'y', and 'z' which contain the coordinates of each electrode in the Allen CCF space. Where x is the anterior-posterior axis (AP), y is the dorsal-ventral axis (DV), and z is the medial-lateral axis (ML). In addition, the location column contains the full name of the brain region where each electrode is located. Another useful property are the coordinates rel_x and rel_y which contain the position of each electrode in the probe shank (relative to the probe) and can be used to visualize the probe geometry. Note that all the position columns are in units of micrometers. Finally, the electrode table also contains the probe name which can be used to filter the table by probe.

In [12]:
columns = ["probe_name", "location", "x", "y", "z", "rel_x", "rel_y"]
electrodes_df[columns].sample(n=5)
Out[12]:
probe_name location x y z rel_x rel_y
id
257 Probe01 Secondary motor area layer 2/3 3075.0 1770.0 5100.0 48.0 2560.0
713 Probe00 fiber tracts 7925.0 3729.0 2901.0 48.0 3280.0
234 Probe01 Secondary motor area layer 5 3075.0 1989.0 5142.0 0.0 2340.0
403 Probe00 Cortical amygdalar area posterior part lateral... 7800.0 6838.0 2578.0 32.0 180.0
459 Probe00 Basomedial amygdalar nucleus posterior part 7800.0 6278.0 2656.0 32.0 740.0

Anatomical Location¶

More detailed anatomical location information is stored in the localization module

In [13]:
localization = nwbfile_raw.lab_meta_data["localization"]
localization
Out[13]:

localization (Localization)

anatomical_coordinates_tables
ElectrodesCCFv3 (AnatomicalCoordinatesTable)
description: Electrode positions in the Allen CCF coordinate system
method: IBL histology alignment pipeline
space (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name brain_region
id
0 3401.0 4105.0 5751.0 0 Probe01 ILA1
1 3401.0 4105.0 5751.0 1 Probe01 ILA1
2 3401.0 4087.0 5745.0 2 Probe01 ILA1
3 3401.0 4087.0 5745.0 3 Probe01 ILA1

... and 764 more row(s).

ElectrodesIBLBregma (AnatomicalCoordinatesTable)
description: Electrode positions in the IBL-Bregma coordinate system
method: IBL histology alignment pipeline
space (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
atlas_id
Allen Brain Atlas region ID. Negative values indicate left hemisphere, positive values indicate right hemisphere.
beryl_location
Brain region in IBL Beryl atlas (coarse grouping).
cosmos_location
Brain region in IBL Cosmos atlas (very coarse grouping).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name atlas_id beryl_location cosmos_location brain_region
id
0 12.0 1999.0 -3773.0 0 Probe01 707 ILA Isocortex ILA1
1 12.0 1999.0 -3773.0 1 Probe01 707 ILA Isocortex ILA1
2 6.0 1999.0 -3755.0 2 Probe01 707 ILA Isocortex ILA1
3 6.0 1999.0 -3755.0 3 Probe01 707 ILA Isocortex ILA1

... and 764 more row(s).

spaces
AllenCCFv3 (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
IBLBregma (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS

These module contains two coordinate tables linking the electrodes to their anatomical locations in the Allen CCF space and in the IBL virtual bregma centered space. As with the electrodes table, these tables can be converted to pandas dataframes for easier access and manipulation.

In [14]:
ccf_table_df = localization.anatomical_coordinates_tables["ElectrodesCCFv3"].to_dataframe()
ibl_bregma_table_df = localization.anatomical_coordinates_tables["ElectrodesIBLBregma"].to_dataframe()

ccf_table_df.columns
Out[14]:
Index(['x', 'y', 'z', 'localized_entity', 'probe_name', 'brain_region'], dtype='object')
In [15]:
ccf_table_df.sample(n=5)
Out[15]:
x y z localized_entity probe_name brain_region
id
222 3084.0 2094.0 5184.0 location \ id ... Probe01 MOs5
103 3251.0 3174.0 5495.0 location \ id ... Probe01 PL2/3
62 3276.0 3545.0 5607.0 location \ id ... Probe01 ILA1
328 3015.0 1071.0 4882.0 location ... Probe01 void
393 7800.0 6937.0 2557.0 ... Probe00 COApl

The tables provide the localization of each electrode in different coordinate systems and can be used for more detailed anatomical analyses and visualizations. For example, both tables contain the probe_name column which can be used to identify the probe associated with each electrode. In addition, the ElectrodesIBLBregma contains the localization in the Cosmos and Beryl spaces that should facilitate certain type of analyses and visualizations.

The localized_entity is a dynamic table region that links back to the electrodes table in the NWB file. This allows us to easily access the electrode metadata for each of the localized electrodes.

Anatomical Location of Probe Structure¶

We can illustrate how to combine the information from the anatomical coordinates table with the metadata contained in the electrodes table to create a visualization that combines the relative positions of the electrodes plus the atlas information. This allows us to see what areas does the probe traverse. We use here the Cosmos parcellation for this visualization as that provides an overall and easy view of the probe localization.

In [16]:
import matplotlib.pyplot as plt

from iblatlas.regions import BrainRegions

COSMOS_FULL_NAMES = {
    "Isocortex": "Isocortex",
    "OLF": "Olfactory areas",
    "HPF": "Hippocampal formation",
    "CTXsp": "Cortical subplate",
    "CNU": "Cerebral nuclei",
    "TH": "Thalamus",
    "HY": "Hypothalamus",
    "MB": "Midbrain",
    "HB": "Hindbrain",
    "CB": "Cerebellum",
    "root": "Not in Cosmos",
    "void": "Outside brain",
}


def get_cosmos_color(cosmos_acronym, brain_regions=None):
    if brain_regions is None:
        brain_regions = BrainRegions()
    try:
        index = brain_regions.acronym2index(cosmos_acronym)[1][0]
        if hasattr(index, "__len__"):
            index = index[0]
        rgb = brain_regions.rgb[index]
        return (rgb[0] / 255, rgb[1] / 255, rgb[2] / 255)
    except (IndexError, KeyError):
        return (0.5, 0.5, 0.5)

nwbfile = nwbfile_raw

# %% Get anatomical localization table
anatomical_tables = localization.anatomical_coordinates_tables
ibl_bregma_table_df = anatomical_tables["ElectrodesIBLBregma"].to_dataframe()

# %% Get all unique probe names
probe_names = sorted(ibl_bregma_table_df["probe_name"].unique())
n_probes = len(probe_names)

print(f"Found {n_probes} probe(s): {probe_names}")

# %% Create figure - 2 columns per probe (contacts + regions), side by side
fig, axes = plt.subplots(1, n_probes * 2, figsize=(5 * n_probes, 12), sharey=True)

# Handle single probe case (axes won't be a list)
if n_probes == 1:
    axes = [axes[0], axes[1]]

# Track all unique regions across all probes for the legend
all_unique_regions = []

# %% Plot each probe
for probe_index, probe_name in enumerate(probe_names):
    # Get axes for this probe
    ax_probe = axes[probe_index * 2]
    ax_regions = axes[probe_index * 2 + 1]

    # Filter data for this probe
    probe_table = ibl_bregma_table_df[ibl_bregma_table_df["probe_name"] == probe_name].copy()

    # Extract electrode positions from localized_entity
    probe_table["rel_x"] = [electrode["rel_x"].iloc[0] for electrode in probe_table["localized_entity"]]
    probe_table["rel_y"] = [electrode["rel_y"].iloc[0] for electrode in probe_table["localized_entity"]]

    # Sort by depth (rel_y)
    probe_table = probe_table.sort_values("rel_y").reset_index(drop=True)

    # Precompute colors
    cosmos_values = probe_table["cosmos_location"].values
    rel_x_values = probe_table["rel_x"].values
    rel_y_values = probe_table["rel_y"].values
    colors = [get_cosmos_color(c) for c in cosmos_values]

    # Track unique regions for legend
    for region in cosmos_values:
        if region not in all_unique_regions:
            all_unique_regions.append(region)

    # --- Left panel: Probe contacts ---
    contact_width = 12  # um
    contact_height = 10  # um

    for i in range(len(rel_x_values)):
        rect = plt.Rectangle(
            (rel_x_values[i] - contact_width / 2, rel_y_values[i] - contact_height / 2),
            contact_width,
            contact_height,
            facecolor=colors[i],
            edgecolor="black",
            linewidth=0.3,
        )
        ax_probe.add_patch(rect)

    # Set probe axis limits
    x_min, x_max = probe_table["rel_x"].min(), probe_table["rel_x"].max()
    y_min, y_max = probe_table["rel_y"].min(), probe_table["rel_y"].max()
    x_margin, y_margin = 50, 100

    ax_probe.set_xlim(x_min - x_margin, x_max + x_margin)
    ax_probe.set_ylim(y_min - y_margin, y_max + y_margin)
    
    # Simplify x-axis: single tick at max value
    ax_probe.set_xticks([x_max])
    ax_probe.set_xticklabels([f"{x_max:.0f}"])
    ax_probe.set_xlabel("Relative X (um)")
    
    if probe_index == 0:
        ax_probe.set_ylabel("Distance to Probe Tip (um)")
    ax_probe.set_title(f"{probe_name}")
    ax_probe.set_aspect("equal", adjustable="box")

    # --- Right panel: Region blocks ---
    blocks = []
    current_region = cosmos_values[0]
    block_start = rel_y_values[0]

    for i in range(1, len(cosmos_values)):
        if cosmos_values[i] != current_region:
            block_end = (rel_y_values[i - 1] + rel_y_values[i]) / 2
            blocks.append((current_region, block_start, block_end))
            current_region = cosmos_values[i]
            block_start = block_end

    # Add final block
    blocks.append((current_region, block_start, rel_y_values[-1] + contact_height / 2))

    # Plot region blocks
    block_width = 1.0
    for region, y_start, y_end in blocks:
        color = get_cosmos_color(region)
        height = y_end - y_start

        rect = plt.Rectangle(
            (0, y_start),
            block_width,
            height,
            facecolor=color,
            edgecolor="black",
            linewidth=0.5,
        )
        ax_regions.add_patch(rect)

        # Add label in the middle of the block
        y_center = (y_start + y_end) / 2
        display_name = COSMOS_FULL_NAMES.get(region, region)
        ax_regions.text(block_width + 0.1, y_center, display_name, va="center", ha="left", fontsize=9, fontweight="bold")

    ax_regions.set_xlim(-0.2, 2.0)
    ax_regions.set_ylim(y_min - y_margin, y_max + y_margin)
    ax_regions.set_xticks([])
    ax_regions.set_title("Cosmos Regions")
    ax_regions.axis("off")

# %% Add legend and title
legend_handles = [
    plt.Rectangle((0, 0), 1, 1, facecolor=get_cosmos_color(r), edgecolor="black", linewidth=0.5)
    for r in all_unique_regions
]
legend_labels = [COSMOS_FULL_NAMES.get(r, r) for r in all_unique_regions]


plt.suptitle(f"Session: {nwbfile.session_id}", fontsize=14, fontweight="bold")
plt.tight_layout(rect=[0, 0.08, 1, 0.96])

plt.show()
Found 2 probe(s): ['Probe00', 'Probe01']
No description has been provided for this image

Anatomical Location of Probes in the CCFv3 space¶

To get an overview of where the probes are located in the brain we can use brainrender to visualize the probe shanks together with the brain regions they traverse. Here is an example of how to do this for one of the probes using the Cosmos parcellation.

In [17]:
# Workaround: brainglobe-atlasapi 2.3.1 fetches its atlas-version manifest
# from a Colab-unfriendly S3 endpoint that returns 403 for some Colab IPs.
# Pre-seed the cache so BrainGlobeAtlas() below can find a version manifest
# even when the live fetch fails. See https://github.com/brainglobe/brainglobe-atlasapi/issues/738
from pathlib import Path
import urllib.request

_bg_dir = Path.home() / ".brainglobe"
_manifest_url = (
    "https://brainglobe.s3.us-west-2.amazonaws.com/atlas/atlases/last_versions.conf"
)
try:
    _manifest = urllib.request.urlopen(_manifest_url, timeout=20).read().decode()
except Exception as _e:  # noqa: BLE001
    print(f"Couldn't reach brainglobe manifest ({_e}); writing a minimal fallback.")
    _manifest = "[atlases]\nallen_mouse_25um = 3.0\n"

# Write to both the V1 and V2 cache paths so whichever brainglobe-atlasapi
# code path reads from disk finds the file.
for _p in (_bg_dir / "last_versions.conf",
           _bg_dir / "brainglobe-atlasapi" / "atlases" / "last_versions.conf"):
    _p.parent.mkdir(parents=True, exist_ok=True)
    if not _p.exists():
        _p.write_text(_manifest)

import matplotlib.pyplot as plt
import numpy as np
from brainglobe_atlasapi import BrainGlobeAtlas

# %% Get CCFv3 coordinates for all probes
anatomical_tables = localization.anatomical_coordinates_tables
ccf_table_df = anatomical_tables["ElectrodesCCFv3"].to_dataframe()

# Get all unique probe names
probe_names = sorted(ccf_table_df["probe_name"].unique())
n_probes = len(probe_names)

# Define colors for each probe
probe_colors = ["red", "blue", "green", "orange", "purple"][:n_probes]

# %% Load atlas
atlas = BrainGlobeAtlas("allen_mouse_25um")

# %% Collect probe data - compute slice positions per probe (mean coordinate approach)
# See documentation/probe_slice_visualization_guide.md for heuristics
probe_data = {}

for probe_name in probe_names:
    probe_table = ccf_table_df[ccf_table_df["probe_name"] == probe_name].copy()
    bg_x = probe_table["x"].values  # Anterior (0) to Posterior (13200)
    bg_y = probe_table["y"].values  # Dorsal (0) to Ventral (8000)
    bg_z = probe_table["z"].values  # Left (0) to Right (11400)
    
    # Calculate slice positions for this specific probe (mean coordinate)
    coronal_position = int(np.mean(bg_x))
    sagittal_position = int(np.mean(bg_z))
    horizontal_position = int(np.mean(bg_y))
    
    # Convert to slice indices
    coronal_index = int(coronal_position / atlas.resolution[0])
    sagittal_index = int(sagittal_position / atlas.resolution[2])
    horizontal_index = int(horizontal_position / atlas.resolution[1])
    
    probe_data[probe_name] = {
        "x_px": bg_x / atlas.resolution[0],
        "y_px": bg_y / atlas.resolution[1],
        "z_px": bg_z / atlas.resolution[2],
        "coronal_position": coronal_position,
        "sagittal_position": sagittal_position,
        "horizontal_position": horizontal_position,
        "coronal_index": coronal_index,
        "sagittal_index": sagittal_index,
        "horizontal_index": horizontal_index,
    }

# %% Create Figure: Grid with n_probes rows x 3 columns (one row per probe)
fig, axes = plt.subplots(n_probes, 3, figsize=(20, 7 * n_probes))

# Handle single probe case (axes won't be 2D)
if n_probes == 1:
    axes = axes.reshape(1, -1)

for row, probe_name in enumerate(probe_names):
    data = probe_data[probe_name]
    color = probe_colors[row]
    
    # Get slices centered on this probe's location
    reference_coronal = atlas.reference[data["coronal_index"], :, :]
    reference_sagittal = atlas.reference[:, :, data["sagittal_index"]]
    reference_horizontal = atlas.reference[:, data["horizontal_index"], :]
    
    # Coronal view
    ax = axes[row, 0]
    ax.imshow(reference_coronal, cmap="gray", aspect="equal")
    ax.scatter(data["z_px"], data["y_px"], c=color, s=10, alpha=0.8)
    ax.set_xlabel("Left - Right (pixels)")
    ax.set_ylabel("Dorsal - Ventral (pixels)")
    ax.set_title(f"{probe_name} - Coronal (AP = {data['coronal_position']} um)")
    
    # Sagittal view (transposed for correct orientation)
    ax = axes[row, 1]
    ax.imshow(reference_sagittal.T, cmap="gray", aspect="equal")
    ax.scatter(data["x_px"], data["y_px"], c=color, s=10, alpha=0.8)
    ax.set_xlabel("Anterior - Posterior (pixels)")
    ax.set_ylabel("Dorsal - Ventral (pixels)")
    ax.set_title(f"{probe_name} - Sagittal (ML = {data['sagittal_position']} um)")
    
    # Horizontal view
    ax = axes[row, 2]
    ax.imshow(reference_horizontal, cmap="gray", aspect="equal")
    ax.scatter(data["z_px"], data["x_px"], c=color, s=10, alpha=0.8)
    ax.set_xlabel("Left - Right (pixels)")
    ax.set_ylabel("Anterior - Posterior (pixels)")
    ax.set_title(f"{probe_name} - Horizontal (DV = {data['horizontal_position']} um)")

fig.suptitle(f"Session: {nwbfile_raw.session_id} - Probe Trajectories (Reference)", fontsize=14, fontweight="bold")
plt.tight_layout()
plt.show()
Could not fetch the latest atlas versions: 403
Using the last cached version from /home/runner/.brainglobe/last_versions.conf
Could not fetch the latest atlas versions: 403
Using the last cached version from /home/runner/.brainglobe/last_versions.conf
Could not fetch the latest atlas versions: 403
Using the last cached version from /home/runner/.brainglobe/last_versions.conf
Could not fetch the latest atlas versions: 403
Using the last cached version from /home/runner/.brainglobe/last_versions.conf

---------------------------------------------------------------------------
ReadError                                 Traceback (most recent call last)
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/brainglobe_atlasapi/bg_atlas.py in download_extract_file(self)
    203         try:
--> 204             tar = tarfile.open(destination_path)
    205             tar.extractall(path=self.brainglobe_dir)

/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/tarfile.py in open(cls, name, mode, fileobj, bufsize, **kwargs)
   1943             error_msgs_summary = '\n'.join(error_msgs)
-> 1944             raise ReadError(f"file could not be opened successfully:\n{error_msgs_summary}")
   1945 

ReadError: file could not be opened successfully:
- method gz: ReadError('not a gzip file')
- method bz2: ReadError('not a bzip2 file')
- method xz: ReadError('not an lzma file')
- method tar: ReadError('truncated header')

The above exception was the direct cause of the following exception:

ReadError                                 Traceback (most recent call last)
/tmp/ipykernel_2421/3983204879.py in <cell line: 0>()
     40 
     41 # %% Load atlas
---> 42 atlas = BrainGlobeAtlas("allen_mouse_25um")
     43 
     44 # %% Collect probe data - compute slice positions per probe (mean coordinate approach)

/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/brainglobe_atlasapi/bg_atlas.py in __init__(self, atlas_name, brainglobe_dir, interm_download_dir, check_latest, config_dir, fn_update)
     97                 raise ValueError(f"{atlas_name} is not a valid atlas name!")
     98             else:
---> 99                 self.download_extract_file()
    100 
    101         # Instantiate after eventual download:

/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/brainglobe_atlasapi/bg_atlas.py in download_extract_file(self)
    208             # Delete corrupted file so we can try again later
    209             destination_path.unlink(missing_ok=True)
--> 210             raise tarfile.ReadError(
    211                 f"Atlas download was interrupted or corrupted. "
    212                 f"Please try again. Details: {e}"

ReadError: Atlas download was interrupted or corrupted. Please try again. Details: file could not be opened successfully:
- method gz: ReadError('not a gzip file')
- method bz2: ReadError('not a bzip2 file')
- method xz: ReadError('not an lzma file')
- method tar: ReadError('truncated header')

Both the electrode and the anatomical coordinates tables are present both nwbfiles (the one with the raw data and the one with the processed data) and are identical in both files.

Accessing Video Data¶

In [18]:
from pathlib import Path

from pynwb.image import ImageSeries

# Videos in NWB are stored as ImageSeries with external_file containing relative paths
# We resolve them to full DANDI asset paths and get S3 URLs for streaming

nwb_parent = Path(raw_asset.path).parent
video_s3_urls = {}

for name, obj in nwbfile_raw.acquisition.items():
    # Check for ImageSeries with external_file (videos stored externally)
    if isinstance(obj, ImageSeries) and obj.external_file is not None:
        # Get the relative path and resolve to full DANDI path
        relative_path = obj.external_file[0].lstrip("./")
        full_path = str(nwb_parent / relative_path)
        
        # Fetch the video asset and get its S3 URL
        video_asset = dandiset.get_asset_by_path(full_path)
        if video_asset is not None:
            video_s3_urls[name] = video_asset.get_content_url(
                follow_redirects=1, strip_query=True
            )

video_s3_urls
Out[18]:
{'VideoBodyCamera': 'https://dandiarchive.s3.amazonaws.com/blobs/710/ab6/710ab6a6-0092-463d-80d7-c7c19966a380',
 'VideoLeftCamera': 'https://dandiarchive.s3.amazonaws.com/blobs/8bd/94f/8bd94ffa-07c3-4889-9ee8-adf26f1761b2',
 'VideoRightCamera': 'https://dandiarchive.s3.amazonaws.com/blobs/c9f/c05/c9fc050a-a7f0-4d97-bd87-a076eb483e8a'}
In [19]:
# Stream a video directly in the notebook using IPython HTML display
# This works but might have limitations in some notebook environments
from IPython.display import HTML

camera_to_display = "VideoLeftCamera"

if camera_to_display in video_s3_urls:
    video_url = video_s3_urls[camera_to_display]
    display(HTML(f"""
    <video width="640" height="480" controls>
        <source src="{video_url}" type="video/mp4">
        Your browser does not support the video tag.
    </video>
    <p><b>{camera_to_display}</b></p>
    """))
else:
    print(f"{camera_to_display} not available for this session")
Your browser does not support the video tag.

VideoLeftCamera

While IPython's HTML display works for basic video playback, anywidget provides a more robust, cross-platform solution. The package nwb-video-widgets offers a suite of widgets specifically designed for NWB video data that synchronize playback with timestamps and support multiple video streams. Here's how to use it:

In [20]:
from nwb_video_widgets import NWBDANDIVideoPlayer

video_grid=[["VideoLeftCamera", "VideoBodyCamera", "VideoRightCamera"]]
NWBDANDIVideoPlayer(asset=raw_asset, nwbfile=nwbfile_raw, video_grid = video_grid)

Processed files¶

The processed file contains the processed data including the spike sorting results, the trials information, the pose estimation results, the wheel position, lick times and other behavioral data.

In [21]:
s3_url = processed_asset.get_content_url(follow_redirects=1, strip_query=False)
file_system = remfile.File(s3_url)
file = h5py.File(file_system, mode="r")

io = NWBHDF5IO(file=file)
nwbfile_processed = io.read()
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/hdmf/spec/namespace.py:620: UserWarning: Ignoring the following cached namespace(s) because another version is already loaded:
hdmf-common - cached version: 1.9.0, loaded version: 1.8.0
hdmf-experimental - cached version: 0.6.0, loaded version: 0.5.0
Please update to the latest package versions.
  self.warn_for_ignored_namespaces(ignored_namespaces)
In [22]:
nwbfile_processed
Out[22]:

root (NWBFile)

session_description:
identifier: e9740564-a40c-4761-a3e9-efb83394a9ca
session_start_time2022-07-04 14:30:15.049000+01:00
timestamps_reference_time2022-07-04 14:30:15.049000+01:00
file_create_date
02026-03-03 09:32:05.447286+00:00
processing
lick_times (ProcessingModule)
description: Lick event timestamps detected from video-based tongue pose estimation. Licks are detected by tracking tongue landmark positions (Lightning Pose) and identifying frames with significant tongue movement. Licking indicates consummatory behavior following water reward delivery.
EventsLickTimes (Events)
description: Lick event timestamps detected from tongue pose estimation (Lightning Pose). Detection algorithm: frame-to-frame position changes in tongue landmarks (tongue_end_l_x, tongue_end_l_y, tongue_end_r_x, tongue_end_r_y) are computed, and frames where any coordinate changes by more than std(diff)/4 are marked as lick events. If left and right camera data exist, the licks detected from both cameras are combined.
timestamps
HDF5 dataset
Data typefloat64
Shape(40348,)
Array size315.22 KiB
Chunk shape(40348,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)322784
Compressed size (bytes)240819
Compression ratio1.340359357027477
timestamps__unit: seconds
motion_energy (ProcessingModule)
description: Motion energy quantifies total movement within video regions of interest (ROIs). Values are computed as the sum of Euclidean pixel intensity differences between frames, normalized to [0, 1] range. Useful as a behavioral covariate for neural analysis.
LeftCameraMotionEnergy (TimeSeries)
resolution: -1.0
comments: no comments
description: Motion energy calculated for a region of the left camera video. ROI dimensions: 168 pixels wide, 112 pixels tall, top-left corner at (249, 191). Calculation: For each frame, pixel intensity differences are computed between frame N and frame N+2 (default offset). The Euclidean norm (L2) of differences is summed across all ROI pixels, then min-max normalized to [0, 1] range. Higher values indicate more movement within the ROI. CAUTION: Video loading libraries may use different axis conventions. When loading with cv2 in Python, x and y axes are flipped. The region then becomes [191:303, 249:417].
conversion: 1.0
offset: 0.0
unit: a.u.
data
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1344276
Compression ratio1.9159815395052802
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
RightCameraMotionEnergy (TimeSeries)
resolution: -1.0
comments: no comments
description: Motion energy calculated for a region of the right camera video. ROI dimensions: 85 pixels wide, 57 pixels tall, top-left corner at (446, 81). Calculation: For each frame, pixel intensity differences are computed between frame N and frame N+2 (default offset). The Euclidean norm (L2) of differences is summed across all ROI pixels, then min-max normalized to [0, 1] range. Higher values indicate more movement within the ROI. CAUTION: Video loading libraries may use different axis conventions. When loading with cv2 in Python, x and y axes are flipped. The region then becomes [81:138, 446:531].
conversion: 1.0
offset: 0.0
unit: a.u.
data
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)3307964
Compression ratio1.9495061010337476
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
passive_protocol (ProcessingModule)
description: Data from the IBL passive stimulus protocol, presented at the end of each recording session while the mouse is disengaged from the task. The protocol consists of three phases: (1) spontaneous activity with no stimuli, (2) receptive field mapping (RFM) using sparse noise visual stimuli, and (3) task replay presenting the same Gabor patches and auditory stimuli (valve, tone, noise) used during the active behavioral task. Data revision: 2025-12-04.
gabor_table (TimeIntervals)
description: Gabor patch presentations table. Data revision: 2025-12-04.
columns
start_time
The beginning of the stimulus.
stop_time
The end of the stimulus.
position
gabor patch position
contrast
gabor patch contrast
phase
gabor patch phase
table
start_time stop_time position contrast phase
id
0 5126.874515 5127.185221 -35.0 0.0625 3.124994
1 5129.124614 5129.435687 -35.0 1.0000 2.162905
2 5131.441141 5131.768878 35.0 1.0000 2.200607
3 5134.424608 5134.735413 35.0 0.0625 1.741850

... and 175 more row(s).

passive_intervals (TimeIntervals)
description: Detailed timing of passive protocol phases (spontaneous activity, RFM, task replay). Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_name
Name of the specific passive protocol phase
table
start_time stop_time protocol_name
id
0 4185.545797 4785.626265 spontaneousActivity
1 5111.224793 5478.753002 taskReplay
passive_task_replay (TimeIntervals)
description: Passive stimulation events including valve, tone, and noise stimuli. Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stim_type
Type of stimulation (valve, tone, or noise)
table
start_time stop_time stim_type
id
0 5125.087475 5125.587463 noise
1 5127.316809 5127.416800 tone
2 5130.037133 5130.137124 tone
3 5130.516457 5130.583451 valve

... and 116 more row(s).

pose_estimation (ProcessingModule)
description: Pose estimation from video using Lightning Pose.
LeftCamera (PoseEstimation)
PoseEstimationSeriesLeftPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2260409
Compression ratio2.278886697053498
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesLeftTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)223870
Compression ratio23.009853933086166
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesNoseTip (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesNoseTip'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2528216
Compression ratio2.0374904675866303
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
timestamp_link
0 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2260409
Compression ratio2.278886697053498
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
1 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)223870
Compression ratio23.009853933086166
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
2 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2161629
Compression ratio2.3830250241831505
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
3 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4381698
Compression ratio1.1756209579026213
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
4 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4380152
Compression ratio1.176035900124014
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
5 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4378088
Compression ratio1.1765903289289754
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
6 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4433984
Compression ratio1.161757913425037
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
7 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)226410
Compression ratio22.751715913608056
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
8 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2199970
Compression ratio2.3414937476420135
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
9 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2239492
Compression ratio2.3001716460697335
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2161629
Compression ratio2.3830250241831505
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4381698
Compression ratio1.1756209579026213
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilLeft (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4380152
Compression ratio1.176035900124014
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilRight (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4378088
Compression ratio1.1765903289289754
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4433984
Compression ratio1.161757913425037
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)226410
Compression ratio22.751715913608056
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2199970
Compression ratio2.3414937476420135
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2239492
Compression ratio2.3001716460697335
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
description: Estimated positions of body parts using Lightning Pose.
source_software: Lightning Pose
skeleton (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
RightCamera (PoseEstimation)
PoseEstimationSeriesLeftPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)2327239
Compression ratio5.54210031715694
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesLeftTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)426927
Compression ratio30.210766711873458
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesNoseTip (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesNoseTip'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5888418
Compression ratio2.1903662409835714
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
timestamp_link
0 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)2327239
Compression ratio5.54210031715694
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
1 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)426927
Compression ratio30.210766711873458
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
2 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5444531
Compression ratio2.3689445426979843
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
3 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10758534
Compression ratio1.198842890676369
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
4 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10762599
Compression ratio1.198390091463967
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
5 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10784081
Compression ratio1.1960028861059184
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
6 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10782972
Compression ratio1.196125891822774
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
7 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)454491
Compression ratio28.378542149349492
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
8 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5267188
Compression ratio2.448705457257269
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
9 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)1453269
Compression ratio8.87502038507668
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5444531
Compression ratio2.3689445426979843
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10758534
Compression ratio1.198842890676369
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilLeft (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10762599
Compression ratio1.198390091463967
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilRight (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10784081
Compression ratio1.1960028861059184
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10782972
Compression ratio1.196125891822774
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)454491
Compression ratio28.378542149349492
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesTubeBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5267188
Compression ratio2.448705457257269
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesTubeTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)1453269
Compression ratio8.87502038507668
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
description: Estimated positions of body parts using Lightning Pose.
source_software: Lightning Pose
skeleton (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
Skeletons (Skeletons)
LeftCamera (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
RightCamera (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
pupil (ProcessingModule)
description: Pupil diameter measurements from video-based eye tracking. Pupil diameter is estimated using pose estimation (DLC/Lightning Pose) to track keypoints around the pupil boundary. Diameter is computed as the median of multiple estimates (vertical, horizontal, and circular fits) for robustness. Pupil diameter correlates with arousal, attention, and cognitive state.
LeftPupilDiameter (TimeSeries)
resolution: -1.0
comments: no comments
description: Raw pupil diameter estimated from pose tracking keypoints around the pupil boundary. Multiple diameter estimates are computed: vertical (top-bottom distance), horizontal (left-right distance), and circular fits from other keypoint pairs. The final value is the median of these estimates, providing robustness against individual tracking errors.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)2251344
Compression ratio1.1440312986376138
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
LeftPupilDiameterSmoothed (TimeSeries)
resolution: -1.0
comments: no comments
description: Smoothed pupil diameter. This version has been temporally smoothed and interpolated over frames with missing or low-confidence keypoint detections. Useful for analyses where smooth trajectories are preferred over frame-by-frame accuracy.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)2374261
Compression ratio1.0848040716669314
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
RightPupilDiameter (TimeSeries)
resolution: -1.0
comments: no comments
description: Raw pupil diameter estimated from pose tracking keypoints around the pupil boundary. Multiple diameter estimates are computed: vertical (top-bottom distance), horizontal (left-right distance), and circular fits from other keypoint pairs. The final value is the median of these estimates, providing robustness against individual tracking errors.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)2082047
Compression ratio3.0973825278680067
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
RightPupilDiameterSmoothed (TimeSeries)
resolution: -1.0
comments: no comments
description: Smoothed pupil diameter. This version has been temporally smoothed and interpolated over frames with missing or low-confidence keypoint detections. Useful for analyses where smooth trajectories are preferred over frame-by-frame accuracy.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)5954010
Compression ratio1.0831181002383268
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
wheel (ProcessingModule)
description: Rotary encoder wheel used for behavioral responses. The wheel (6.2 cm diameter) is positioned under the mouse's forepaws, and rotation is measured via a quadrature encoder (1024 ticks, X4 encoding = 4096 effective ticks per revolution). Mice turn the wheel to move visual stimuli and report perceptual decisions. Contains raw position, detected movements, and derived kinematics.
WheelAccelerationSmoothed (TimeSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel angular acceleration derived from velocity (WheelVelocitySmoothed). Computed as the second derivative of the smoothed position signal.
conversion: 1.0
offset: 0.0
unit: rad/s^2
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)31645646
Compression ratio1.3849877483935704
starting_time_unit: seconds
WheelPosition (SpatialSeries)
resolution: -1.0
comments: no comments
description: Absolute unwrapped wheel angle recorded from a quadrature rotary encoder. The wheel (diameter 6.2 cm) is positioned under the mouse's forepaws and serves as the primary behavioral input device for reporting perceptual decisions. Sampling is event-driven: timestamps are recorded only when the wheel moves (i.e., when the encoder generates TTL edges), resulting in irregular inter-sample intervals. The encoder uses X4 decoding of two 90-degree phase-shifted channels, providing 4096 effective counts per revolution (angular resolution ~0.088 degrees or 2*pi/4096 radians). Position is NOT periodic: values grow unboundedly as the wheel rotates, accumulating across multiple full revolutions (e.g., 3 full turns clockwise = -6*pi radians). The position is never wrapped back to [0, 2*pi]. Sign convention follows mathematical standard: counter-clockwise rotation (from the subject's perspective) is positive.
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)7366260
Compression ratio2.395870903280634
timestamps
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)12053219
Compression ratio1.4642236235813852
timestamps_unit: seconds
interval: 1
reference_frame: Initial angle at session start is defined as zero. Counter-clockwise is positive.
WheelPositionSmoothed (SpatialSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel position resampled to a uniform 1000 Hz grid and smoothed. The raw wheel position has irregular timestamps (event-driven from encoder edges). This series provides uniformly sampled position by: (1) linear interpolation to 1000 Hz, then (2) 8th order Butterworth lowpass filter (20 Hz corner, zero-phase) to remove high-frequency noise. This smoothed signal is used to derive velocity and acceleration via differentiation.
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)29951966
Compression ratio1.4633040114962736
starting_time_unit: seconds
reference_frame: Uniformly sampled at 1000 Hz via linear interpolation, then lowpass filtered.
WheelVelocitySmoothed (TimeSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel angular velocity derived from smoothed position (WheelPositionSmoothed). Computed as the first derivative of position after interpolation to 1000 Hz and lowpass filtering.
conversion: 1.0
offset: 0.0
unit: rad/s
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)29727607
Compression ratio1.4743478006823758
starting_time_unit: seconds
WheelMovementIntervals (TimeIntervals)
description: The onset and offset times of all detected movements. Movements are defined as a wheel movement of at least 0.012 rad over 200ms. For a rotary encoder of resolution 1024 in X4 encoding, this is equivalent to around 8 ticks. Movements below 50ms are discarded and two detected movements within 100ms of one another are considered as a single movement. For the onsets a lower threshold is used to find a more precise onset time. The wheel diameter is 6.2 cm and the number of ticks is 4096 per revolution.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
peak_amplitude
The absolute maximum amplitude of each detected wheel movement, relative to onset position.
table
start_time stop_time peak_amplitude
id
0 0.343596 0.723596 0.132027
1 3.532596 4.394596 0.700072
2 6.731596 11.317596 11.646018
3 22.972596 24.000596 0.591526

... and 1548 more row(s).

electrodes (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
electrode_name
Unique identifier derived from probe contact ids.
contact_shapes
Contact shape per electrode as defined by the probe.
channel_name
The name of this channel, showing all recording streams for the electrode (e.g., 'AP379,LF379').
rel_x
Relative x coordinate on the probe (µm).
rel_y
Relative y coordinate on the probe (µm).
probe_name
IBL probe name in canonical format (e.g., 'Probe00', 'Probe01').
contact_ids
Channel IDs as specified by the probe manufacturer.
shank_ids
Shank ID for each electrode (for multi-shank probes).
adc_group
ADC group index from SpikeGLX metadata.
adc_sample_order
ADC sample order from SpikeGLX metadata.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group electrode_name contact_shapes channel_name rel_x rel_y probe_name contact_ids shank_ids adc_group adc_sample_order group_name x y z imp filtering
id
0 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140700232785104\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e0 square AP0,LF0 16.0 0.0 Probe01 e0 0 0 Probe01 3401.0 4105.0 5751.0 NaN
1 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140700232785104\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e1 square AP1,LF1 48.0 0.0 Probe01 e1 1 0 Probe01 3401.0 4105.0 5751.0 NaN
2 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140700232785104\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e2 square AP2,LF2 0.0 20.0 Probe01 e2 0 1 Probe01 3401.0 4087.0 5745.0 NaN
3 Infralimbic area layer 1 Probe01 pynwb.ecephys.ElectrodeGroup at 0x140700232785104\nFields:\n description: Electrode group for probe01\n device: Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n\n location: Unresolved\n e3 square AP3,LF3 32.0 20.0 Probe01 e3 1 1 Probe01 3401.0 4087.0 5745.0 NaN

... and 764 more row(s).

electrode_groups
Probe00 (ElectrodeGroup)
description: Electrode group for probe00
location: Unresolved
device (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18005102151
Probe01 (ElectrodeGroup)
description: Electrode group for probe01
location: Unresolved
device (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18194814141
devices
Probe00 (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18005102151
Probe01 (Device)
description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}
manufacturer: imec
serial_number: 18194814141
intervals
epochs (TimeIntervals)
description: Session-level epochs defining the two main phases of an IBL recording session. The 'task' epoch covers the active behavioral task period where the mouse performs the decision-making task (responding to visual stimuli by turning a wheel). The 'passive' epoch covers the passive replay period where visual and auditory stimuli are presented without the mouse performing any task, used for receptive field mapping and stimulus response characterization. The passive protocol includes replay of task stimuli, sparse noise for receptive field mapping, and natural movie clips. See the 'protocol_type' column to distinguish between epochs.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_type
Type of protocol phase (task or passive)
epoch_description
Detailed description of what occurs during this epoch
table
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse performs a decision-making task where it must turn a wheel to move a visual stimulus (Gabor patch) to the center of the screen. Correct responses are rewarded with water; incorrect responses trigger white noise feedback. The trials table contains detailed timing and outcome data for each trial during this epoch.
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and auditory stimuli are presented while the mouse is head-fixed but not performing any task. This epoch includes: (1) replay of task-relevant stimuli (Gabor patches at various contrasts and positions), (2) sparse noise stimuli for receptive field mapping, and (3) natural movie clips. Used for characterizing sensory responses independent of task engagement.
trials (TimeIntervals)
description: Trial data from the IBL decision-making task. On each trial, a visual stimulus (Gabor patch) appears on the left or right of a screen, and the mouse must move it to the center by turning a wheel with its front paws within 60 seconds. Correct responses are rewarded with water; incorrect responses trigger a white noise auditory cue and 2-second timeout. If no response is recorded during 60 seconds, a white noise auditory cue is presented. Trial timeline: (1) start_time begins a quiescence period where the mouse must hold the wheel still; (2) after quiescence_period elapses, the stimulus and auditory go cue are presented (gabor_stimulus_onset_time); (3) the mouse responds by turning the wheel to move the stimulus; correct choices are defined by moving the visual stimulus into the center; (4) feedback_time marks reward punishment or presentation of the white noise auditory cue; (5) stop_time marks trial end. Stimulus contrast is uniformly sampled from 5 values (0%, 6.25%, 12.5%, 25%, 100%). On 0% contrast trials, no stimulus is visible but a correct side is still assigned based on block probability, allowing mice to perform above chance using prior information. After an initial 90 unbiased trials, stimulus probability alternates between left-biased (80:20) and right-biased (20:80) blocks of 20-100 trials (mean 51). Block changes are not cued. See IBL et al. (2021) eLife 10:e63711 for full task details.
columns
start_time
The beginning of the trial.
stop_time
The end of the trial.
quiescence_period
Required duration (seconds) the mouse must hold the wheel still before stimulus presentation. Sampled from exponential distribution (400-700ms, mean ~550ms).
gabor_stimulus_onset_time
Time when the visual stimulus (Gabor patch) appears on the screen, detected by the photodiode. Presented together with the auditory go cue.
auditory_cue_time
Time of the auditory go cue (100ms, 5kHz tone) signaling the mouse may respond. Presented together with the visual stimulus.
wheel_movement_onset_time
Time of first detected wheel movement (>= 0.1 radians threshold) after the go cue.
choice_registration_time
Time when the mouse's choice was registered: either the wheel movement reached the +/-35 degree threshold, or 60-second timeout elapsed.
feedback_time
Time of feedback delivery: water reward for correct responses, or white noise pulse + 2-second timeout for incorrect responses.
gabor_stimulus_offset_time
Time when the Gabor patch disappears from the screen, detected by the photodiode.
gabor_stimulus_contrast
Contrast of the Gabor patch as a percentage (0, 6.25, 12.5, 25, or 100). Uniformly sampled across trials. At 0% contrast (no visible stimulus), mice can still perform above chance using block probability prior.
gabor_stimulus_side
Side on the screen where stimulus was presented: 'left' or 'right'. Even at 0% contrast (no visible stimulus), a side is assigned to the stimulus for the trial, enabling the mice to perform a correct response using prior knowledge of the block distribution.
mouse_wheel_choice
Mouse's response: 'counter_clockwise' (counter_clockwise wheel turn moving stimulus leftward), 'clockwise' (clockwise wheel turn moving stimulus rightward), or 'none' (no response within 60s timeout). clockwise and counter_clockwise are wheel movements as seen from the perspective of the mouse
is_mouse_rewarded
Whether the mouse received a water reward (True) or not (False). If False, an additional negative feedback consisting of an auditory white noise stimulus.
reward_volume_uL
Volume of water reward in microliters (0 for incorrect/timeout trials).
probability_left
Block prior probability for the visual stimulus to be presented on the left side of the screen. After an initial block of 90 unbiased trials (0.5), blocks alternate between a probability of 0.2 (right-biased) and 0.8 (left-biased). Block lengths: 20-100 trials from truncated geometric distribution (mean 51). Block changes are not cued.
block_type
Block type based on stimulus probability bias: 'unbiased' (probability_left=0.5), 'left_block' (probability_left=0.8, stimulus 80% likely on the left side of the screen), or 'right_block' (probability_left=0.2, stimulus 80% likely on the right side of the screen).
block_index
Zero-indexed block number. Increments each time probability_left changes. Block 0 is the initial unbiased block (90 trials at 0.5 probability).
table
start_time stop_time quiescence_period gabor_stimulus_onset_time auditory_cue_time wheel_movement_onset_time choice_registration_time feedback_time gabor_stimulus_offset_time gabor_stimulus_contrast gabor_stimulus_side mouse_wheel_choice is_mouse_rewarded reward_volume_uL probability_left block_type block_index
id
0 103.884959 115.226015 0.541949 NaN 113.439040 113.477967 113.677692 113.677785 114.725958 100.0 right counter_clockwise True 1.5 0.5 unbiased 0
1 115.866423 119.975890 0.457997 116.381644 116.382710 117.707967 118.402564 118.402663 119.475868 25.0 left clockwise True 1.5 0.5 unbiased 0
2 120.616099 123.259428 0.426862 121.098089 121.099023 121.328967 121.695111 121.695203 122.759341 25.0 right counter_clockwise True 1.5 0.5 unbiased 0
3 123.949635 131.142860 0.423191 124.431558 124.432692 128.465967 128.570015 128.571022 130.642804 12.5 right clockwise False 0.0 0.5 unbiased 0

... and 888 more row(s).

subject (IblSubject)
age__reference: birth
sex: M
species: Mus musculus
subject_id: KS091
weight: 0.028399999999999998 kg
date_of_birth2021-12-14 00:00:00+00:00
uuid: e7a62e2c-9a39-41ce-98ce-35c7c1b4a845
expected_water_ml: 1.1900000000000002
remaining_water_ml: 1.1900000000000002
lab_meta_data
ibl_metadata (IblMetadata)
revision: 2025-05-06
ibl_probe_insertion_trajectories (IblProbeInsertionTrajectories)
Probe00 (IblProbeInsertionTrajectoryTable)
description: Probe insertion trajectory parameters for probe00. Each row represents a trajectory estimate from a different provenance level, progressing from theoretical to validated: Planned (pre-surgical target), Micro-manipulator (recorded during surgery), Histology track (traced from post-mortem brain slices), and Ephys aligned histology track (histology refined using electrophysiology). Insertion point coordinates (ml, ap, dv) are bregma-centered with units in micrometers: ml is medio-lateral (positive=right), ap is anterior-posterior (positive=anterior), dv is dorso-ventral (positive=dorsal). Angles characterize the spatial orientation of the probe: theta is polar angle from vertical (0=straight down into brain, 90=horizontal), phi is azimuth angle from the AP axis (0=tilted anteriorly, 90=tilted left, 180=posteriorly), roll defines the electrode-facing direction (rotation around probe axis). Depth is the insertion distance along the probe axis from the brain surface entry point to the probe tip.
columns
device
Reference to the Device object (e.g., NeuropixelsProbe) being localized. This links the trajectory to the actual probe device in the NWB file.
ml
Insertion point medio-lateral coordinate in micrometers, bregma-centered. Positive values are right of midline, negative are left. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
ap
Insertion point anterior-posterior coordinate in micrometers, bregma-centered. Positive values are anterior to bregma, negative are posterior. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
dv
Insertion point dorso-ventral coordinate in micrometers, bregma-centered. Typically negative values (brain surface is below bregma skull landmark level). Values vary with AP position due to brain surface curvature. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
depth_um
Insertion depth in micrometers, measured along the probe axis from the brain surface insertion point to the probe tip. This indicates how far the probe travels into the brain. For histology-derived trajectories, computed as the Euclidean distance between entry point and the deepest traced point projected onto the fitted trajectory line.
theta
Polar angle in degrees measuring probe tilt from vertical. 0 degrees means the probe is inserted straight down into the brain (along DV axis), 90 degrees means horizontal. For histology-derived trajectories, computed using spherical coordinates: theta = arccos(dz/depth) where dz is the vertical component of the entry-to-tip vector.
phi
Azimuth angle in degrees defining the direction of probe tilt in the horizontal plane. Measured counter-clockwise from the positive AP axis when viewed from above: 0 = tilted anteriorly, 90 = tilted left, 180 = tilted posteriorly, 270 = tilted right. For histology-derived trajectories, computed using spherical coordinates: phi = arctan2(dy, dx).
pid
Probe insertion UUID from Alyx database. This unique identifier links the trajectory to the specific probe insertion record in the IBL database, enabling traceability of all probe-related metadata and quality control information.
trajectory_source
Source of this trajectory estimate, representing increasing confidence and validation: 'Planned' (pre-surgical target coordinates from experimental design), 'Micro-manipulator' (coordinates recorded from stereotaxic manipulator during surgery), 'Histology track' (traced from post-mortem brain slices by fitting a line through manually picked points), 'Ephys aligned histology track' (histology refined by aligning detected unit depths with the histology trace).
roll
Probe rotation around its own longitudinal axis in degrees. Determines which direction the electrode sites face. A value of 0 typically indicates electrodes facing anterior.
table
device ml ap dv depth_um theta phi pid trajectory_source roll
id
0 Probe00 pynwb.device.Device at 0x140700232784496\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18005102151\n -2464.0 -2600.0 -143.0 6585.415277 6.353030 -18.593623 1ca6cd06-1ed5-45af-b73a-017d5e7cff48 Ephys aligned histology track 0.0
1 Probe00 pynwb.device.Device at 0x140700232784496\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18005102151\n -1900.0 -2150.0 0.0 6400.000000 20.000000 0.000000 1ca6cd06-1ed5-45af-b73a-017d5e7cff48 Planned 0.0
2 Probe00 pynwb.device.Device at 0x140700232784496\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18005102151\n -2090.0 -2100.0 0.0 6300.000000 20.000000 0.000000 1ca6cd06-1ed5-45af-b73a-017d5e7cff48 Micro-manipulator 0.0
3 Probe00 pynwb.device.Device at 0x140700232784496\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "3", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18005102151\n -2289.0 -2550.0 -93.0 6888.922029 8.106919 -9.751776 1ca6cd06-1ed5-45af-b73a-017d5e7cff48 Histology track 0.0
Probe01 (IblProbeInsertionTrajectoryTable)
description: Probe insertion trajectory parameters for probe01. Each row represents a trajectory estimate from a different provenance level, progressing from theoretical to validated: Planned (pre-surgical target), Micro-manipulator (recorded during surgery), Histology track (traced from post-mortem brain slices), and Ephys aligned histology track (histology refined using electrophysiology). Insertion point coordinates (ml, ap, dv) are bregma-centered with units in micrometers: ml is medio-lateral (positive=right), ap is anterior-posterior (positive=anterior), dv is dorso-ventral (positive=dorsal). Angles characterize the spatial orientation of the probe: theta is polar angle from vertical (0=straight down into brain, 90=horizontal), phi is azimuth angle from the AP axis (0=tilted anteriorly, 90=tilted left, 180=posteriorly), roll defines the electrode-facing direction (rotation around probe axis). Depth is the insertion distance along the probe axis from the brain surface entry point to the probe tip.
columns
device
Reference to the Device object (e.g., NeuropixelsProbe) being localized. This links the trajectory to the actual probe device in the NWB file.
ml
Insertion point medio-lateral coordinate in micrometers, bregma-centered. Positive values are right of midline, negative are left. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
ap
Insertion point anterior-posterior coordinate in micrometers, bregma-centered. Positive values are anterior to bregma, negative are posterior. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
dv
Insertion point dorso-ventral coordinate in micrometers, bregma-centered. Typically negative values (brain surface is below bregma skull landmark level). Values vary with AP position due to brain surface curvature. This is where the probe enters the brain surface. For histology-derived trajectories, computed from the intersection of the fitted probe track with brain surface.
depth_um
Insertion depth in micrometers, measured along the probe axis from the brain surface insertion point to the probe tip. This indicates how far the probe travels into the brain. For histology-derived trajectories, computed as the Euclidean distance between entry point and the deepest traced point projected onto the fitted trajectory line.
theta
Polar angle in degrees measuring probe tilt from vertical. 0 degrees means the probe is inserted straight down into the brain (along DV axis), 90 degrees means horizontal. For histology-derived trajectories, computed using spherical coordinates: theta = arccos(dz/depth) where dz is the vertical component of the entry-to-tip vector.
phi
Azimuth angle in degrees defining the direction of probe tilt in the horizontal plane. Measured counter-clockwise from the positive AP axis when viewed from above: 0 = tilted anteriorly, 90 = tilted left, 180 = tilted posteriorly, 270 = tilted right. For histology-derived trajectories, computed using spherical coordinates: phi = arctan2(dy, dx).
pid
Probe insertion UUID from Alyx database. This unique identifier links the trajectory to the specific probe insertion record in the IBL database, enabling traceability of all probe-related metadata and quality control information.
trajectory_source
Source of this trajectory estimate, representing increasing confidence and validation: 'Planned' (pre-surgical target coordinates from experimental design), 'Micro-manipulator' (coordinates recorded from stereotaxic manipulator during surgery), 'Histology track' (traced from post-mortem brain slices by fitting a line through manually picked points), 'Ephys aligned histology track' (histology refined by aligning detected unit depths with the histology trace).
roll
Probe rotation around its own longitudinal axis in degrees. Determines which direction the electrode sites face. A value of 0 typically indicates electrodes facing anterior.
table
device ml ap dv depth_um theta phi pid trajectory_source roll
id
0 Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n -739.0 2350.0 -1143.0 2757.103993 17.385231 158.599449 19c5b0d5-a255-47ff-9f8d-639e634a7b61 Ephys aligned histology track 0.0
1 Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n -700.0 2200.0 0.0 2500.000000 19.000000 180.000000 19c5b0d5-a255-47ff-9f8d-639e634a7b61 Planned 0.0
2 Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n -650.0 2200.0 0.0 3000.000000 19.000000 180.000000 19c5b0d5-a255-47ff-9f8d-639e634a7b61 Micro-manipulator 0.0
3 Probe01 pynwb.device.Device at 0x140700232784800\nFields:\n description: A PRB_1_4_0480_1 probe. Additional metadata: {"model_name": "PRB_1_4_0480_1", "manufacturer": "imec", "port": "4", "slot": "2", "part_number": "PRB_1_4_0480_1"}\n manufacturer: imec\n serial_number: 18194814141\n -739.0 2375.0 -1168.0 3198.109372 17.581281 154.880882 19c5b0d5-a255-47ff-9f8d-639e634a7b61 Histology track 0.0
localization (Localization)
anatomical_coordinates_tables
ElectrodesCCFv3 (AnatomicalCoordinatesTable)
description: Electrode positions in the Allen CCF coordinate system
method: IBL histology alignment pipeline
space (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shape(3,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name brain_region
id
0 3401.0 4105.0 5751.0 0 Probe01 ILA1
1 3401.0 4105.0 5751.0 1 Probe01 ILA1
2 3401.0 4087.0 5745.0 2 Probe01 ILA1
3 3401.0 4087.0 5745.0 3 Probe01 ILA1

... and 764 more row(s).

ElectrodesIBLBregma (AnatomicalCoordinatesTable)
description: Electrode positions in the IBL-Bregma coordinate system
method: IBL histology alignment pipeline
space (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS
columns
x
The x coordinate
y
The y coordinate
z
The z coordinate
localized_entity
A reference to the object being localized (e.g. electrode)
probe_name
IBL probe name in canonical format (e.g., Probe00, Probe01).
atlas_id
Allen Brain Atlas region ID. Negative values indicate left hemisphere, positive values indicate right hemisphere.
beryl_location
Brain region in IBL Beryl atlas (coarse grouping).
cosmos_location
Brain region in IBL Cosmos atlas (very coarse grouping).
brain_region
The brain region associated with the localization
table
x y z localized_entity probe_name atlas_id beryl_location cosmos_location brain_region
id
0 12.0 1999.0 -3773.0 0 Probe01 707 ILA Isocortex ILA1
1 12.0 1999.0 -3773.0 1 Probe01 707 ILA Isocortex ILA1
2 6.0 1999.0 -3755.0 2 Probe01 707 ILA Isocortex ILA1
3 6.0 1999.0 -3755.0 3 Probe01 707 ILA Isocortex ILA1

... and 764 more row(s).

spaces
AllenCCFv3 (AllenCCFv3Space)
space_name: AllenCCFv3
origin: Anterior-Superior-Left (ASL) corner of the 3D image volume
units: um
orientation: PIR
extent
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shape(3,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[13200. 8000. 11400.]
IBLBregma (Space)
space_name: IBLBregma
origin: bregma
units: um
orientation: RAS
epochs (TimeIntervals)
description: Session-level epochs defining the two main phases of an IBL recording session. The 'task' epoch covers the active behavioral task period where the mouse performs the decision-making task (responding to visual stimuli by turning a wheel). The 'passive' epoch covers the passive replay period where visual and auditory stimuli are presented without the mouse performing any task, used for receptive field mapping and stimulus response characterization. The passive protocol includes replay of task stimuli, sparse noise for receptive field mapping, and natural movie clips. See the 'protocol_type' column to distinguish between epochs.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_type
Type of protocol phase (task or passive)
epoch_description
Detailed description of what occurs during this epoch
table
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse performs a decision-making task where it must turn a wheel to move a visual stimulus (Gabor patch) to the center of the screen. Correct responses are rewarded with water; incorrect responses trigger white noise feedback. The trials table contains detailed timing and outcome data for each trial during this epoch.
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and auditory stimuli are presented while the mouse is head-fixed but not performing any task. This epoch includes: (1) replay of task-relevant stimuli (Gabor patches at various contrasts and positions), (2) sparse noise stimuli for receptive field mapping, and (3) natural movie clips. Used for characterizing sensory responses independent of task engagement.
trials (TimeIntervals)
description: Trial data from the IBL decision-making task. On each trial, a visual stimulus (Gabor patch) appears on the left or right of a screen, and the mouse must move it to the center by turning a wheel with its front paws within 60 seconds. Correct responses are rewarded with water; incorrect responses trigger a white noise auditory cue and 2-second timeout. If no response is recorded during 60 seconds, a white noise auditory cue is presented. Trial timeline: (1) start_time begins a quiescence period where the mouse must hold the wheel still; (2) after quiescence_period elapses, the stimulus and auditory go cue are presented (gabor_stimulus_onset_time); (3) the mouse responds by turning the wheel to move the stimulus; correct choices are defined by moving the visual stimulus into the center; (4) feedback_time marks reward punishment or presentation of the white noise auditory cue; (5) stop_time marks trial end. Stimulus contrast is uniformly sampled from 5 values (0%, 6.25%, 12.5%, 25%, 100%). On 0% contrast trials, no stimulus is visible but a correct side is still assigned based on block probability, allowing mice to perform above chance using prior information. After an initial 90 unbiased trials, stimulus probability alternates between left-biased (80:20) and right-biased (20:80) blocks of 20-100 trials (mean 51). Block changes are not cued. See IBL et al. (2021) eLife 10:e63711 for full task details.
columns
start_time
The beginning of the trial.
stop_time
The end of the trial.
quiescence_period
Required duration (seconds) the mouse must hold the wheel still before stimulus presentation. Sampled from exponential distribution (400-700ms, mean ~550ms).
gabor_stimulus_onset_time
Time when the visual stimulus (Gabor patch) appears on the screen, detected by the photodiode. Presented together with the auditory go cue.
auditory_cue_time
Time of the auditory go cue (100ms, 5kHz tone) signaling the mouse may respond. Presented together with the visual stimulus.
wheel_movement_onset_time
Time of first detected wheel movement (>= 0.1 radians threshold) after the go cue.
choice_registration_time
Time when the mouse's choice was registered: either the wheel movement reached the +/-35 degree threshold, or 60-second timeout elapsed.
feedback_time
Time of feedback delivery: water reward for correct responses, or white noise pulse + 2-second timeout for incorrect responses.
gabor_stimulus_offset_time
Time when the Gabor patch disappears from the screen, detected by the photodiode.
gabor_stimulus_contrast
Contrast of the Gabor patch as a percentage (0, 6.25, 12.5, 25, or 100). Uniformly sampled across trials. At 0% contrast (no visible stimulus), mice can still perform above chance using block probability prior.
gabor_stimulus_side
Side on the screen where stimulus was presented: 'left' or 'right'. Even at 0% contrast (no visible stimulus), a side is assigned to the stimulus for the trial, enabling the mice to perform a correct response using prior knowledge of the block distribution.
mouse_wheel_choice
Mouse's response: 'counter_clockwise' (counter_clockwise wheel turn moving stimulus leftward), 'clockwise' (clockwise wheel turn moving stimulus rightward), or 'none' (no response within 60s timeout). clockwise and counter_clockwise are wheel movements as seen from the perspective of the mouse
is_mouse_rewarded
Whether the mouse received a water reward (True) or not (False). If False, an additional negative feedback consisting of an auditory white noise stimulus.
reward_volume_uL
Volume of water reward in microliters (0 for incorrect/timeout trials).
probability_left
Block prior probability for the visual stimulus to be presented on the left side of the screen. After an initial block of 90 unbiased trials (0.5), blocks alternate between a probability of 0.2 (right-biased) and 0.8 (left-biased). Block lengths: 20-100 trials from truncated geometric distribution (mean 51). Block changes are not cued.
block_type
Block type based on stimulus probability bias: 'unbiased' (probability_left=0.5), 'left_block' (probability_left=0.8, stimulus 80% likely on the left side of the screen), or 'right_block' (probability_left=0.2, stimulus 80% likely on the right side of the screen).
block_index
Zero-indexed block number. Increments each time probability_left changes. Block 0 is the initial unbiased block (90 trials at 0.5 probability).
table
start_time stop_time quiescence_period gabor_stimulus_onset_time auditory_cue_time wheel_movement_onset_time choice_registration_time feedback_time gabor_stimulus_offset_time gabor_stimulus_contrast gabor_stimulus_side mouse_wheel_choice is_mouse_rewarded reward_volume_uL probability_left block_type block_index
id
0 103.884959 115.226015 0.541949 NaN 113.439040 113.477967 113.677692 113.677785 114.725958 100.0 right counter_clockwise True 1.5 0.5 unbiased 0
1 115.866423 119.975890 0.457997 116.381644 116.382710 117.707967 118.402564 118.402663 119.475868 25.0 left clockwise True 1.5 0.5 unbiased 0
2 120.616099 123.259428 0.426862 121.098089 121.099023 121.328967 121.695111 121.695203 122.759341 25.0 right counter_clockwise True 1.5 0.5 unbiased 0
3 123.949635 131.142860 0.423191 124.431558 124.432692 128.465967 128.570015 128.571022 130.642804 12.5 right clockwise False 0.0 0.5 unbiased 0

... and 888 more row(s).

units (Units)
description: Spike-sorted units from Neuropixels 1.0 probes. Spike sorting was performed using a Python implementation of Kilosort 2.5 (iblsorter, formerly pykilosort) with IBL-specific optimizations for drift correction and automated quality control. Unit quality is determined by three metrics: (1) refractory period violations using the slidingRP algorithm (Hill et al. 2011), (2) noise cutoff based on amplitude distribution, and (3) median spike amplitude threshold (>50 uV). The 'label' column indicates the proportion of metrics passed (1.0 = all passed, i.e. 'good' unit). Each unit includes brain region assignment from IBL's histology pipeline with Allen CCF coordinates. For methodology details, see the IBL spike sorting white paper: https://doi.org/10.6084/m9.figshare.19705522
waveform_rate: 30000.0
waveform_unit: volts
resolution: 3.3333333333333335e-05
columns
unit_name
Unique reference for each unit.
electrodes
the electrodes that each spike unit came from
min_spike_amplitude_uV
Minimum spike amplitude in microvolts.
max_electrode
Index into the electrodes table for the electrode with maximum spike amplitude for this unit.
spike_amplitudes_uV
Peak amplitude of each spike for each unit in microvolts.
spike_times
the spike times for each unit in seconds
isi_violations_ratio
Ratio of observed to expected ISI violations (Steinmetz/cortex-lab method). Can exceed 1.0. Equivalent to SpikeInterface's isi_violations_ratio.
spike_amplitude_std_dB
Standard deviation of log-transformed spike amplitudes in decibels. High values (>6 dB) may indicate drift or contamination.
median_spike_amplitude_uV
Median spike amplitude in microvolts. IBL uses 50 uV threshold for quality filtering.
cumulative_drift_um_per_hour
Sum of absolute depth changes between consecutive spikes, normalized to um/hour. Formula: sum(abs(diff(spike_depths)))/duration*3600. High values indicate either electrode drift or depth estimation noise. Scales with spike count (~0.79 correlation). NOT actual electrode displacement.
presence_ratio_std
Standard deviation of spike counts across 10-second time bins.
firing_rate
Average firing rate in Hz.
presence_ratio
Fraction of time bins (60s default) with at least one spike. Good units typically >0.9.
peak_to_trough_duration_ms
Duration from negative trough to positive peak of the mean waveform in milliseconds. Used to distinguish fast-spiking interneurons (~0.2-0.4 ms) from regular-spiking pyramidal cells (~0.4-0.8+ ms).
spike_distances_from_probe_tip_um
Distance from the probe tip for each spike in micrometers, computed from waveform center of mass. 0 = probe tip, values increase toward brain surface.
kilosort2_label
Original Kilosort2 classification: 'good', 'mua', or 'noise'.
waveform_mean
the spike waveform mean for each spike unit
probe_name
Name of probe this unit was recorded from in canonical format (e.g., 'Probe00', 'Probe01').
sliding_rp_violation
Binary pass/fail (0.0 or 1.0) using sliding refractory period algorithm. Primary metric for ibl_quality_score. Aligns with SpikeInterface's sliding_rp_violations.
rp_violation
Contamination estimate using Hill et al. (2011) quadratic formula. Aligns with SpikeInterface's rp_violations.
missed_spikes_estimate
Estimated fraction of spikes missed due to detection threshold (0.0-1.0).
cluster_uuid
Globally unique identifier for cross-referencing with IBL database via ONE API.
noise_cutoff
Standard deviations the lower amplitude quartile deviates from expected. Large values indicate missed spikes at detection threshold.
distance_from_probe_tip_um
Mean distance from the probe tip in micrometers, computed from waveform center of mass. 0 = probe tip, values increase toward brain surface.
spike_count
Total number of spikes assigned to this unit. Integer type; -1 indicates missing data.
max_spike_amplitude_uV
Maximum spike amplitude in microvolts.
ibl_quality_score
Proportion of IBL quality metrics passed (0.0, 0.33, 0.67, or 1.0). 1.0 = all three passed.
table
unit_name electrodes min_spike_amplitude_uV max_electrode spike_amplitudes_uV spike_times isi_violations_ratio spike_amplitude_std_dB median_spike_amplitude_uV cumulative_drift_um_per_hour presence_ratio_std firing_rate presence_ratio peak_to_trough_duration_ms spike_distances_from_probe_tip_um kilosort2_label waveform_mean probe_name sliding_rp_violation rp_violation missed_spikes_estimate cluster_uuid noise_cutoff distance_from_probe_tip_um spike_count max_spike_amplitude_uV ibl_quality_score
id
0 probe00_0 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404] 11.723447 384 [13.375040970279262, 17.110027360076785, 14.369677041876372, 21.28653835076992, 21.41173668083738, 14.201055019635287, 13.852686337998454, 13.75290510186562, 20.200342127875, 24.238034858133158, 13.71863759422389, 22.519567248349666, 20.6781560507026, 22.675742449897292, 18.005564886080624, 38.71674249183971, 27.12324770437444, 57.086792977158744, 38.994887219066676, 26.354118039567705, 12.873771630055051, 13.049368784545923, 24.710504144106338, 41.127886896104464, 36.213216336, 12.534803072001475, 36.042838460795494, 13.617544338679409, 18.73648251490474, 13.955933541486008, 18.45603391885939, 16.676335913163687, 13.475382080415388, 50.70255225865256, 25.88956999667893, 12.496893418801267, 18.243576557295512, 22.435850415161518, 20.140151860973443, 24.795977677268507, 28.564663230598516, 20.218735809955923, 14.698571255913073, 16.582151723042582, 75.5973625201875, 21.807209315683092, 12.202237914046066, 20.951479593622846, 15.266190324085647, 16.639858554879613, 22.62465585287074, 12.76976042301081, 15.03709259237249, 13.174568808634566, 18.56994837378032, 16.195266081608924, 19.30107944927437, 21.198854119954813, 23.676253386981294, 38.72527019451013, 29.70095504812384, 106.35701982729272, 37.66227528583332, 18.438839603780984, 28.217202544319516, 17.362433129343025, 51.02992185361827, 21.323174947045853, 32.70073793548658, 13.894269476149157, 45.461179547931245, 24.67079628741295, 18.685644938993114, 50.69717882343791, 15.442266886573286, 11.944786502665437, 12.648151723844945, 19.273541440809883, 16.718562779366586, 22.256992269879916, 12.395083592293421, 19.0197550442738, 29.669696969126132, 20.960510420586687, 18.536772662795542, 14.976297559906103, 19.81918227806352, 26.736463704212188, 16.007578697885094, 18.352912072939894, 23.920548182789855, 31.578286271083474, 14.593486039434376, 21.81342467942917, 34.191568059822686, 15.36246663037639, 13.311207710808624, 17.737574121866473, 14.663840433475881, 15.498977633950604, ...] [0.20745938853675364, 0.2643091342886814, 0.2654420927949777, 0.2730062569399557, 0.27513888471651343, 0.27667171093091425, 0.2857020566722757, 0.2910669484226786, 0.298831046421709, 0.31179342462609866, 0.3124598708062729, 0.31375944085761276, 0.32738826524217673, 0.33231996697546634, 0.33588545403939873, 0.33915104032225274, 0.3398841311204444, 0.3408504780816971, 0.34628201445011747, 0.34698178293930043, 0.34768155142848345, 0.34828135299064034, 0.34884783224378846, 0.3494476338059453, 0.3501474022951283, 0.3528465093248341, 0.35294647625186026, 0.3555456163545399, 0.35634535177074905, 0.35807811183920213, 0.35914442572748106, 0.3622434004652914, 0.36717510219858107, 0.36717510219858107, 0.3686746061039732, 0.3718069031507923, 0.37417278709041096, 0.37577225792282926, 0.38233675279754586, 0.38310316590474625, 0.38383625670293803, 0.3845027028831123, 0.3855356944623824, 0.3861021737155305, 0.38813483456506204, 0.38896789229027995, 0.3896010161614455, 0.39033410695963716, 0.39123380930287244, 0.39273331320826455, 0.3938662717145608, 0.3939329163325783, 0.3969652464523713, 0.3975317257055194, 0.39809820495866755, 0.39876465113884174, 0.3996643534820771, 0.4011645298834117, 0.40169794926499214, 0.4026981106054554, 0.40529853009065997, 0.4061986752970769, 0.40983259483409346, 0.4106660626178129, 0.4170004177740803, 0.419567498547936, 0.4216011599402114, 0.43036924102493945, 0.43140274107675153, 0.43373645087116586, 0.44177108030622086, 0.4424045158218476, 0.44787206448304684, 0.448738870978115, 0.4536396615463851, 0.46237440391976437, 0.46430804917799334, 0.46810866227175385, 0.4702090010867267, 0.47214264634495573, 0.4729761141286751, 0.48164417907935686, 0.4852447599050247, 0.48634493737953427, 0.49204585702017495, 0.49287932480389435, 0.49894697026937157, 0.507348325529263, 0.5113156321797674, 0.5163831163047814, 0.5182500841403128, 0.5268848103796459, 0.5385519225543353, 0.5435181458778032, 0.5446847084034501, 0.548684351348525, 0.5752486465753975, 0.5766818519640493, 0.5838145485494329, 0.5922804594498415, ...] 1.125169 1.673211 13.646273 9.185903e+05 31.536577 9.709524 0.998179 0.400000 [175.17576599121094, 131.333251953125, 77.48837280273438, 157.16310119628906, 122.05664825439453, 111.27754211425781, 105.9950180053711, 81.45589447021484, 127.05867004394531, 93.73214721679688, 80.39907836914062, 108.60465240478516, 154.3846893310547, 77.0789794921875, 159.84716796875, 82.90924072265625, 112.82776641845703, 96.88059997558594, 86.5158920288086, 95.55340576171875, 129.4549560546875, 92.68951416015625, 76.38343048095703, 75.7435302734375, 109.01295471191406, 127.37599182128906, 104.80730438232422, 147.20852661132812, 96.42877197265625, 128.1128387451172, 117.53744506835938, 78.77871704101562, 95.61511993408203, 89.39507293701172, 132.0340576171875, 59.54128646850586, 115.71365356445312, 100.1664810180664, 60.75063705444336, 119.16492462158203, 74.53923034667969, 126.25784301757812, 76.97262573242188, 84.77833557128906, 97.29998779296875, 142.58038330078125, 108.8682861328125, 122.23017883300781, 90.35913848876953, 87.03221893310547, 57.2049446105957, 45.07733917236328, 127.30696868896484, 135.13510131835938, 109.84564208984375, 89.62858581542969, 139.20950317382812, 109.34623718261719, 94.14205932617188, 77.86511993408203, 107.09302520751953, 83.9254150390625, 121.97879028320312, 116.28115844726562, 105.84847259521484, 92.00922393798828, 90.19691467285156, 98.87602996826172, 103.66456604003906, 125.35472869873047, 91.48787689208984, 118.24093627929688, 88.0013427734375, 93.86632537841797, 105.43978881835938, 143.35678100585938, 98.42024230957031, 91.38775634765625, 85.22183990478516, 93.03317260742188, 107.5857925415039, 114.27827453613281, 92.76493835449219, 91.92111206054688, 85.7473373413086, 119.5753173828125, 86.27880096435547, 116.63943481445312, 142.603515625, 56.60708236694336, 117.61515808105469, 116.07252502441406, 115.39674377441406, 80.19223022460938, 98.58860778808594, 99.8572998046875, 79.77159118652344, 98.68637084960938, 114.06785583496094, 145.15249633789062, ...] mua [[-3.1718957e-07, -8.3350506e-07, -1.5073474e-06, -3.6355712e-07, -8.6254227e-07, -2.3393818e-07, -6.2132676e-07, -2.3227815e-06, 1.9232131e-07, -9.21607e-07, -1.2261114e-06, -2.7238611e-06, -9.572035e-07, -6.948577e-07, -1.1360544e-06, -4.6193134e-07, -5.7368943e-08, 2.999841e-07, -4.008707e-07, 8.7672817e-07, -3.6822776e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7199545e-07, -2.4961992e-07, -1.1035991e-06, -1.7769273e-06, -7.1848046e-07, 6.406491e-07, -5.0340304e-07, -1.7220444e-06, -5.773795e-07, -8.6649425e-07, -1.1049844e-06, -7.080563e-07, -1.7706973e-06, 6.799148e-08, -1.3633132e-06, -5.61757e-07, -1.5421384e-07, -1.4004331e-06, 1.637494e-07, -8.695778e-08, -7.124985e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4682865e-07, 9.92177e-07, -6.8960446e-07, -1.700975e-06, -3.3349244e-07, -1.0424893e-06, -3.5004896e-07, -1.0983472e-06, -9.286839e-07, -9.876943e-07, -5.4352967e-08, -1.1423684e-06, -6.0746925e-07, -8.4268584e-07, -3.3239954e-07, -9.724546e-07, -4.123097e-07, -2.621948e-07, 2.457792e-07, 2.571598e-07, 5.101895e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.735575e-07, 7.4862896e-07, 5.3114906e-07, -9.85495e-07, 6.7556346e-07, 3.7306506e-07, -5.4009956e-07, -6.129633e-07, -4.2186443e-07, -1.1754462e-06, 6.739418e-07, -1.1663553e-06, -4.3509723e-07, 1.03326954e-07, -1.1944385e-06, -9.970986e-07, -7.210641e-07, -1.3879996e-06, -2.4247282e-07, 2.9590854e-08, -2.0811663e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.2294386e-07, -3.4482522e-07, 5.591041e-07, -5.175325e-07, -1.1746797e-06, 9.1877916e-07, -9.898151e-07, 3.5445913e-07, -2.8483646e-07, -1.7043601e-06, -1.6202853e-06, -1.1693928e-06, 7.671812e-07, -1.6278447e-06, -1.549062e-07, -1.1855046e-06, -4.3296995e-07, 1.0514264e-06, -5.006526e-07, -3.447588e-07, -7.31696e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.840557e-07, -6.77749e-07, -2.475768e-07, -9.711337e-07, -7.2914264e-07, 2.3178686e-07, -4.766292e-07, -9.594444e-07, -1.8804069e-07, -2.423598e-06, -4.5979726e-07, -1.6666755e-09, 5.85474e-07, -1.9728632e-06, -1.6911926e-07, -7.0220153e-07, -1.4404561e-06, 2.8266936e-07, -7.679174e-07, -1.2572963e-06, 7.963649e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.0514087e-07, 9.0299415e-07, 1.3701895e-06, -1.6890738e-06, -2.1414053e-06, -7.0217546e-08, 1.2812419e-07, -7.067715e-07, -1.2974253e-06, -4.960246e-07, -2.246248e-08, -1.6267849e-06, -9.2844374e-08, -8.0884445e-07, -2.92194e-07, -1.2133149e-06, 2.3774638e-07, -1.0603103e-06, -1.8273415e-06, -1.757042e-07, -1.0419591e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4965543e-07, 1.3424008e-07, -8.8290403e-07, -8.776085e-07, -6.9238615e-07, -1.8242929e-06, -5.353221e-07, 8.290846e-07, -2.3645143e-06, -8.982403e-07, -1.2589247e-06, -1.0725414e-06, -1.563595e-07, -1.1099125e-06, -4.8998425e-07, -4.4265978e-08, -3.168499e-08, -2.4897713e-07, -6.406775e-07, 9.82244e-07, -5.823588e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9621725e-06, -8.220202e-07, -1.110204e-06, -2.6088682e-07, -1.0103793e-06, -2.2662482e-07, -1.4170048e-06, -9.620834e-08, 1.3487308e-07, -3.8814449e-07, -7.75604e-07, -1.3979984e-07, -1.5616026e-06, -1.3990291e-06, -7.110395e-07, -1.0336894e-06, -2.0569664e-06, -9.2810217e-07, 2.3739119e-07, -1.5782646e-06, -4.3735406e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.561469e-07, -4.0111783e-07, -1.5066558e-06, 3.7958677e-07, -1.2126056e-06, -4.7041914e-07, -1.5658412e-06, -1.32245e-06, 4.2956975e-07, 6.479573e-07, -1.6656884e-07, -5.211016e-07, -2.5864693e-07, -8.538983e-07, -1.1442705e-06, -8.8873946e-07, -1.344062e-07, 6.2725e-08, -6.074439e-08, -1.5807832e-06, -1.1283512e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6310425e-08, -6.4716505e-07, -1.417114e-06, 8.3524094e-07, -2.4625734e-07, -1.5664662e-07, 8.4779494e-08, -6.6972615e-07, -4.2613254e-07, -5.596675e-07, 3.704377e-07, -1.7630841e-06, -5.999882e-07, -4.8738843e-07, -7.8275224e-07, 1.1153665e-07, -7.541229e-07, 2.974822e-07, 5.7855377e-08, -4.1483377e-09, -4.0548878e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.625354e-06, -1.1553172e-06, -2.2691313e-06, 5.8021067e-07, 4.79156e-07, -2.9772812e-07, -1.5695159e-06, -1.25754e-06, -1.0754748e-06, -8.142757e-07, 5.217857e-07, -8.360862e-07, -7.137725e-07, -1.018982e-06, 6.97244e-07, 8.8443596e-07, 2.7117682e-07, 7.832234e-07, 4.772025e-08, -3.3322172e-07, -1.08722965e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.8518725e-08, -1.2430535e-06, -1.6125193e-06, 1.6104866e-06, -8.333707e-07, 7.919354e-07, -7.403254e-07, -3.8267228e-07, 2.3660374e-07, -3.289161e-07, -3.694658e-07, -1.2394581e-06, 4.3466093e-07, -1.0404326e-06, -1.338565e-06, -1.5150103e-07, 3.7715086e-08, -7.8904117e-07, 4.3428676e-07, -5.513164e-07, 1.5729503e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4159984e-06, -2.0028794e-07, -1.8824408e-06, 1.2857952e-06, -1.8847305e-06, 7.5388954e-07, -4.2649397e-08, -2.8800065e-07, -1.3722096e-06, -1.6259773e-06, -7.38273e-07, -7.358745e-08, -3.3278906e-07, 1.01762794e-07, -5.689742e-07, -3.4551238e-07, -1.0009117e-07, 4.718307e-09, 4.0855684e-07, -4.2518718e-07, 1.6040956e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.7242225e-07, -1.4268401e-06, -1.6393847e-06, -7.1241004e-08, -9.249775e-07, -6.5890777e-07, -5.5734645e-08, -6.5431107e-07, -1.1004292e-06, 6.3103784e-07, -1.2883479e-06, -6.9798443e-07, -4.7396253e-07, -1.3565523e-07, -6.670135e-07, 3.490704e-07, 1.3764651e-07, -1.6765514e-06, 1.3718085e-07, -4.7447404e-07, 1.4235809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.289001e-07, 3.052003e-07, -1.1307347e-06, 3.9901387e-08, 1.4111502e-06, 1.6977216e-07, -9.647647e-08, -1.0245144e-06, -3.1231633e-07, -5.774143e-08, -1.4310895e-06, -6.1685296e-07, -1.4807744e-06, -9.284195e-07, -3.145499e-08, -9.769046e-07, -9.0810704e-07, -3.981721e-07, -6.203521e-07, -9.502638e-08, 7.0657956e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0071461e-07, -6.655879e-07, -1.8835933e-06, -5.585116e-07, -3.2109057e-07, -3.7988457e-07, -1.3831828e-06, -6.807985e-07, -4.6307204e-07, 1.0231947e-06, -7.896481e-07, -1.4695756e-06, -1.1582665e-08, -1.1040105e-06, -1.2557668e-06, 1.398949e-07, -7.163678e-07, -6.8535024e-07, -1.5745507e-06, 9.851805e-07, 2.4162446e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.282211e-07, -1.04228846e-07, -9.390449e-07, -8.366014e-08, -3.3914498e-07, 6.19591e-07, -9.0283635e-07, -1.7593134e-06, 7.2971125e-07, -7.508239e-07, -1.1508857e-06, -2.4664278e-06, -1.6784405e-08, 1.4946939e-07, 1.1399676e-06, 4.965402e-07, -1.2562123e-07, 3.718052e-07, -6.9332333e-07, 1.2412458e-07, 4.7459804e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.562401e-08, -6.8505904e-07, -1.186154e-06, -3.4719443e-07, -1.2774187e-06, -1.0311587e-06, 5.778476e-07, -2.1243368e-06, 1.044328e-06, -1.5247053e-06, -9.473978e-07, -5.8777925e-07, -2.0808598e-06, -8.3357364e-08, 3.6172878e-07, -5.031427e-07, -4.516419e-08, 6.8775745e-07, -7.066377e-08, 5.398225e-07, -6.010948e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.3138547e-07, 5.8645867e-08, -2.432336e-06, -1.8425704e-06, -8.8516504e-07, -1.1628229e-06, 4.451392e-07, -1.024107e-06, -5.9687125e-07, -9.013215e-07, 1.1077855e-06, -6.362877e-07, -5.772515e-07, -3.7757422e-07, -2.1168596e-08, -2.0032521e-06, -6.061749e-07, 8.796679e-09, -5.511888e-07, -5.722595e-07, -1.7619731e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.631243e-07, -1.5515268e-06, -9.610496e-07, -7.1557884e-07, 4.5695748e-07, -2.3123712e-06, -1.4995028e-06, -1.7389297e-07, -9.0744686e-07, 3.8331075e-07, 5.3539156e-07, -1.982969e-06, -1.0215523e-06, -1.0944148e-06, -1.3395093e-06, -3.6038227e-07, 4.715507e-08, -1.7343987e-06, -1.1403488e-06, -1.0912444e-06, -1.3948451e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2841906e-06, -2.145423e-07, -3.3624653e-07, 1.3273625e-06, 4.447478e-07, -4.658907e-07, 9.55451e-08, 8.453921e-07, -6.025855e-07, 7.8652766e-07, -7.904612e-07, -6.9251035e-07, -4.361646e-07, -3.326835e-07, -4.994905e-07, -1.6093464e-06, -1.9511995e-06, -1.0882807e-06, -2.1802948e-06, -1.9060492e-06, 3.0736823e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.1198629e-06, 1.6713636e-06, 1.6670508e-06, 2.921048e-07, 1.883439e-06, 8.407825e-07, 4.6917802e-07, 1.7018433e-06, 3.1296125e-07, 3.611822e-09, -5.550026e-09, -3.0757583e-08, 4.975944e-08, 9.719498e-07, 2.23569e-08, -4.696052e-08, -1.9501144e-06, -1.68577e-06, -3.9706669e-07, -2.4921715e-06, -2.1063292e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2476534e-06, 1.7313755e-06, 4.6789373e-06, 2.2809618e-06, 2.5401516e-06, 1.335806e-06, 1.3927574e-06, 1.3981949e-06, 1.3716494e-06, 4.910191e-07, -4.5678425e-07, 4.5302573e-07, -1.6896838e-06, 7.044703e-07, -5.6754686e-07, 3.9960952e-07, -1.6122788e-06, -2.8323127e-08, -1.5307858e-06, -1.5701962e-06, -4.0353353e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.824018e-06, 2.9469056e-06, 3.6448441e-06, 2.097355e-06, 2.7377278e-06, 3.7551433e-06, 1.6052234e-06, 2.484531e-06, 1.4357755e-06, 1.2700943e-06, 4.8266187e-09, 1.6739652e-07, 4.1781067e-07, 4.3959056e-07, -4.9984752e-08, 1.637047e-06, -1.561597e-06, -8.93075e-07, 4.500862e-07, -9.1280094e-07, 4.0515027e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.2575047e-06, 2.7381816e-06, 3.481664e-06, 2.814431e-06, 4.408872e-06, 3.013689e-06, 4.4065905e-06, 3.125218e-06, 2.917734e-06, 3.0584279e-06, 2.1404276e-06, 1.8313057e-06, 4.3411433e-07, 1.4021237e-08, 1.5287018e-06, 9.3902287e-07, -2.3174937e-07, 1.1959512e-06, 1.157221e-07, -1.4138307e-06, -2.5972136e-09, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.41995e-06, 4.8313113e-06, 5.7585194e-06, 5.475221e-06, 4.5386805e-06, 3.7790105e-06, 5.4516154e-06, 4.072355e-06, 3.137809e-06, 2.972311e-06, 2.9956516e-06, 3.5598468e-06, 8.751613e-07, 1.0431613e-06, 1.6248582e-06, 1.8492692e-06, 2.2143271e-07, 7.761515e-07, -2.8506355e-07, -4.1151536e-09, -1.2501623e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7987218e-06, 5.2948353e-06, 7.500297e-06, 3.953271e-06, 5.5741057e-06, 4.878847e-06, 7.1532436e-06, 3.851342e-06, 2.9753223e-06, 5.0686945e-06, 3.3351457e-06, 4.773221e-06, 2.705328e-06, 1.9729953e-06, 1.0680187e-06, 2.1923465e-06, -1.0050661e-06, 1.2105689e-06, 1.0608892e-08, -2.3543134e-07, -3.227625e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.125165e-06, 7.1724717e-06, 6.6751677e-06, 5.7187644e-06, 7.705761e-06, 5.0444023e-06, 6.8857294e-06, 5.3373274e-06, 4.3623622e-06, 4.273442e-06, 2.8506092e-06, 4.246015e-06, 2.9202974e-06, 2.0778787e-06, 1.8868227e-06, 5.626713e-07, 7.2609197e-07, 1.0094748e-06, -1.2277052e-08, -1.1049297e-06, -1.9390072e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.800715e-06, 7.245641e-06, 5.969564e-06, 7.693099e-06, 6.5508493e-06, 5.71463e-06, 5.5437467e-06, 5.9508548e-06, 4.3617947e-06, 5.3062595e-06, 3.1879715e-06, 2.810231e-06, 3.2034673e-06, 2.5290674e-06, 1.9801214e-06, -2.5208988e-07, 1.6601507e-06, 6.186161e-07, -6.3448745e-08, -1.2756003e-07, 2.2144026e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.0107686e-06, 6.1516494e-06, 6.0184525e-06, 5.522756e-06, 6.3115913e-06, 4.018506e-06, 5.3636663e-06, 6.799035e-06, 3.3002966e-06, 3.3651131e-06, 3.5258754e-06, 5.1550396e-06, 1.2858989e-06, 3.206273e-06, 8.2116685e-07, 1.1353538e-06, 9.0199285e-07, -1.290485e-06, 5.838383e-07, -3.677397e-07, 6.0240914e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.9990904e-06, 5.307754e-06, 4.4910685e-06, 3.4314248e-06, 4.982905e-06, 6.312473e-06, 3.113441e-06, 5.663198e-06, 3.144783e-06, 3.724204e-06, 1.5504684e-06, 4.427038e-06, 1.4377076e-06, 2.9333537e-06, 2.910641e-07, 1.1566871e-06, 3.6503246e-07, -1.9228494e-09, -1.7572816e-06, -1.3603642e-06, -2.430035e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.030801e-06, 4.186233e-06, 3.4443929e-06, 4.5791858e-06, 3.2109635e-06, 4.219051e-06, 3.361778e-06, 4.2264323e-06, 2.782463e-06, 2.8480808e-06, 1.7562102e-06, 3.2799012e-06, 1.1319894e-06, 1.4072032e-06, 6.77128e-07, 1.5586617e-06, 1.7205522e-08, -2.718188e-07, -2.0324017e-06, -1.5362327e-06, -3.0622095e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.8183695e-08, 3.0819176e-06, 3.5841138e-06, 2.3768976e-06, 6.817784e-07, 2.5119239e-06, 5.248329e-07, 2.4921226e-06, 1.6668979e-06, 2.2075915e-06, 1.0083114e-06, 8.929823e-07, 4.4242228e-08, 1.3519757e-06, -7.598415e-08, 8.857352e-07, -1.6617521e-06, -1.0366155e-06, -2.301474e-06, -1.2436433e-06, -2.012997e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.711145e-06, 7.5195646e-07, 7.122826e-07, 7.707603e-07, -6.3239565e-07, 1.3748341e-06, -2.3802386e-07, 6.6137324e-07, -1.8219171e-06, -8.719111e-07, -1.1072076e-06, 1.0373274e-06, -4.251434e-07, -4.1316076e-07, -5.7185787e-07, -6.861635e-07, -3.0142073e-06, -2.4712415e-06, -2.2398553e-06, -2.604314e-06, -1.7936126e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.520866e-06, -9.421867e-07, -2.5496072e-06, -1.5543211e-06, -2.4345613e-06, 5.64194e-07, -7.797869e-07, 2.8850076e-07, -2.9704054e-06, -1.5309023e-06, -2.91683e-06, -1.1925297e-06, -2.5141967e-06, -2.3484317e-06, -3.1816962e-06, -2.4741041e-06, -3.6740685e-06, -3.63971e-06, -2.2604377e-06, -3.8798134e-06, -2.4604024e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.4311495e-06, -4.0552263e-06, -6.118181e-06, -4.714683e-06, -4.5111724e-06, -2.3040927e-06, -4.313174e-06, -1.8831688e-06, -3.663652e-06, -3.7745738e-06, -4.796655e-06, -3.5468468e-06, -3.2212183e-06, -3.318578e-06, -4.0258237e-06, -5.990471e-06, -3.7615332e-06, -4.4545977e-06, -2.7690203e-06, -4.695574e-06, -3.979439e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.387991e-06, -6.1437095e-06, -7.203271e-06, -4.895731e-06, -5.315931e-06, -4.9516957e-06, -5.7293087e-06, -4.8192423e-06, -5.0221033e-06, -5.259044e-06, -5.986666e-06, -6.554321e-06, -4.7111034e-06, -5.219983e-06, -6.0335105e-06, -6.4755195e-06, -5.742964e-06, -6.545972e-06, -4.528403e-06, -4.677111e-06, -4.8883576e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0671383e-05, -8.571183e-06, -9.347408e-06, -7.830988e-06, -8.3880495e-06, -7.0166843e-06, -7.903785e-06, -7.3519213e-06, -7.611615e-06, -5.981051e-06, -6.8348427e-06, -5.8726932e-06, -6.803293e-06, -4.4525364e-06, -5.6158797e-06, -5.7172274e-06, -5.9723934e-06, -4.929476e-06, -4.759244e-06, -6.1272026e-06, -6.075942e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0434233e-05, -1.0024506e-05, -1.27116855e-05, -1.0127665e-05, -9.8111395e-06, -9.230173e-06, -9.104303e-06, -8.996703e-06, -8.869793e-06, -7.5807375e-06, -8.923475e-06, -7.5294947e-06, -8.0153e-06, -5.865075e-06, -6.1786222e-06, -6.2139306e-06, -7.660526e-06, -7.2345147e-06, -6.2605295e-06, -6.758875e-06, -6.187988e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.29268155e-05, -1.1329044e-05, -1.1766563e-05, -1.128278e-05, -1.1378499e-05, -9.988924e-06, -9.058767e-06, -7.202846e-06, -1.0354795e-05, -9.093732e-06, -8.828075e-06, -8.864214e-06, -7.803137e-06, -7.812591e-06, -8.363511e-06, -7.788117e-06, -7.827767e-06, -7.225822e-06, -7.664159e-06, -6.5158674e-06, -4.2803686e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.20802815e-05, -1.1763225e-05, -1.1685566e-05, -1.3278843e-05, -1.1615317e-05, -1.0261991e-05, -1.0524053e-05, -9.546655e-06, -9.797126e-06, -1.0612167e-05, -8.042734e-06, -8.40427e-06, -7.3532165e-06, -8.783434e-06, -8.327965e-06, -8.547635e-06, -6.0576676e-06, -6.380735e-06, -6.6250063e-06, -5.7943935e-06, -4.7533495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1429433e-05, -1.1949376e-05, -1.3129564e-05, -1.3379225e-05, -1.1955786e-05, -1.1437231e-05, -1.0275655e-05, -1.06789485e-05, -9.565515e-06, -1.0442311e-05, -9.463367e-06, -1.0375649e-05, -7.813083e-06, -8.878243e-06, -7.751954e-06, -7.2047383e-06, -6.8044374e-06, -6.0215734e-06, -5.936521e-06, -7.381451e-06, -5.2499136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.05498475e-05, -1.0400279e-05, -9.068477e-06, -1.0717787e-05, -1.0876195e-05, -1.1080226e-05, -8.852125e-06, -9.985288e-06, -1.112827e-05, -9.897174e-06, -7.356884e-06, -9.358151e-06, -8.07703e-06, -7.948522e-06, -7.946689e-06, -6.995506e-06, -7.8111425e-06, -7.452856e-06, -6.3189705e-06, -6.883336e-06, -4.897661e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.81439e-06, -1.0815849e-05, -9.739418e-06, -8.624484e-06, -9.551628e-06, -9.848163e-06, -7.2330026e-06, -8.329009e-06, -8.062208e-06, -7.889257e-06, -7.89632e-06, -7.4251157e-06, -5.7661787e-06, -6.723274e-06, -6.566149e-06, -7.0622846e-06, -4.33079e-06, -5.5458113e-06, -4.422929e-06, -3.5155008e-06, -4.701556e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.262004e-06, -8.836971e-06, -6.9375656e-06, -8.573057e-06, -7.6019846e-06, -7.813382e-06, -7.2020766e-06, -7.3514225e-06, -7.170378e-06, -7.598486e-06, -5.175813e-06, -6.822252e-06, -5.443138e-06, -5.766995e-06, -4.573205e-06, -4.074344e-06, -4.959998e-06, -4.528467e-06, -2.77369e-06, -4.4618982e-06, -3.1347354e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.499725e-06, -4.6812133e-06, -5.675224e-06, -5.4424154e-06, -5.846031e-06, -5.533192e-06, -4.878334e-06, -4.9604605e-06, -4.085732e-06, -4.643627e-06, -3.0923347e-06, -4.747213e-06, -3.536023e-06, -3.991846e-06, -3.0639544e-06, -3.9288207e-06, -3.3380202e-06, -2.3708549e-06, -3.3752203e-06, -1.5873468e-06, -2.040585e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.538564e-07, -1.6817157e-06, -1.5015305e-06, -1.9534218e-06, -2.5620236e-06, -2.2450558e-06, -1.8993378e-06, -2.2630961e-06, -1.3337067e-06, -3.7765305e-06, -6.9725166e-07, -1.4147968e-06, -9.3256716e-07, -1.3885915e-06, -1.7254839e-06, -1.5161279e-06, -1.5061992e-06, -1.0617425e-06, -9.105668e-07, -1.800332e-07, -8.9163575e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1010944e-06, 1.027654e-06, 7.2092064e-07, 1.2583014e-06, 8.674391e-07, 4.00845e-08, 1.7545358e-06, 8.8670936e-07, -2.9547678e-08, 1.0913557e-06, -3.1911313e-07, 1.0079975e-06, 4.2867595e-07, 1.1662115e-06, 1.7634571e-06, 7.896e-07, 5.8145093e-09, 2.641177e-07, -3.7241648e-07, 1.2421681e-06, 7.7569587e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.752179e-06, 3.4307852e-06, 2.982542e-06, 3.8628705e-06, 3.5292069e-06, 2.7810672e-06, 4.0148025e-06, 2.4267501e-06, 1.9878623e-06, 3.9040688e-06, 3.8721464e-06, 3.862112e-06, 2.790609e-06, 3.48306e-06, 4.0054965e-06, 2.9853436e-06, 3.38639e-06, 3.2125336e-06, 1.5199499e-06, 2.2572624e-06, 1.4993905e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.729659e-06, 6.7488963e-06, 7.653395e-06, 6.746105e-06, 6.175621e-06, 6.718088e-06, 5.484523e-06, 6.4954766e-06, 6.045282e-06, 5.0417652e-06, 5.2091245e-06, 5.2617183e-06, 4.6990226e-06, 5.166999e-06, 5.5246614e-06, 5.1287698e-06, 5.449908e-06, 5.80877e-06, 4.4084327e-06, 6.1091396e-06, 3.9578417e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.637127e-06, 9.776813e-06, 9.468138e-06, 8.8229335e-06, 8.573981e-06, 7.325335e-06, 7.87428e-06, 6.302601e-06, 7.695016e-06, 6.087347e-06, 8.627472e-06, 7.754035e-06, 6.7060478e-06, 7.05369e-06, 7.3922483e-06, 6.51708e-06, 7.110757e-06, 6.0050043e-06, 5.521474e-06, 8.282174e-06, 5.4773973e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.049647e-06, 1.1198614e-05, 8.0402115e-06, 9.661504e-06, 1.0031951e-05, 1.0092388e-05, 9.619756e-06, 8.168145e-06, 1.0302666e-05, 7.941982e-06, 8.138466e-06, 9.465235e-06, 6.457398e-06, 7.753613e-06, 7.9079455e-06, 6.410898e-06, 8.798413e-06, 7.548216e-06, 7.883829e-06, 9.397863e-06, 7.742718e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.322218e-06, 8.898554e-06, 1.0158364e-05, 1.03046605e-05, 1.0753391e-05, 1.0682679e-05, 9.463072e-06, 1.0543443e-05, 9.769474e-06, 9.447511e-06, 9.950882e-06, 9.883157e-06, 9.486048e-06, 8.98263e-06, 7.057225e-06, 8.116798e-06, 8.311912e-06, 8.720475e-06, 1.0655326e-05, 8.0504815e-06, 8.34531e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0036845e-05, 1.1084894e-05, 9.807478e-06, 1.0518144e-05, 1.0557165e-05, 8.769784e-06, 9.543865e-06, 1.0758406e-05, 1.0299725e-05, 9.910986e-06, 1.00806665e-05, 9.975635e-06, 1.0318847e-05, 1.0350499e-05, 9.117249e-06, 8.976011e-06, 9.154862e-06, 8.679171e-06, 8.78107e-06, 1.0919129e-05, 6.5715612e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.9415495e-06, 1.1136814e-05, 9.044543e-06, 9.307909e-06, 9.286114e-06, 8.178527e-06, 1.1341463e-05, 9.391293e-06, 9.536096e-06, 8.739318e-06, 9.874284e-06, 1.0507086e-05, 7.742851e-06, 8.607876e-06, 8.489494e-06, 8.236733e-06, 9.50566e-06, 9.0183985e-06, 7.0279602e-06, 8.0755135e-06, 7.951772e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.095843e-06, 9.216967e-06, 5.9693148e-06, 7.960098e-06, 9.018315e-06, 9.068988e-06, 1.0726861e-05, 7.597141e-06, 8.264606e-06, 9.341009e-06, 7.787583e-06, 8.09465e-06, 7.455343e-06, 8.927993e-06, 6.5468807e-06, 7.4472364e-06, 7.649189e-06, 5.6577906e-06, 6.6197717e-06, 7.937648e-06, 7.893466e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.5721765e-06, 9.06751e-06, 6.6910106e-06, 8.729467e-06, 7.480429e-06, 8.119972e-06, 7.69261e-06, 6.6275716e-06, 7.201635e-06, 8.932529e-06, 8.285594e-06, 6.965701e-06, 7.3215374e-06, 8.09791e-06, 6.805537e-06, 6.915967e-06, 6.3493503e-06, 6.071019e-06, 5.900393e-06, 6.225524e-06, 6.7851415e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.080047e-06, 5.7049383e-06, 4.1376397e-06, 6.954185e-06, 6.4754677e-06, 7.302454e-06, 6.6405555e-06, 6.1926366e-06, 7.892995e-06, 8.186669e-06, 5.7645448e-06, 6.2591153e-06, 6.3911175e-06, 7.595545e-06, 4.8497186e-06, 4.9318005e-06, 6.1833243e-06, 6.5755116e-06, 4.214663e-06, 5.894077e-06, 5.4552434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.837141e-06, 2.7013273e-06, 2.3652099e-06, 4.1627736e-06, 4.574799e-06, 2.6634534e-06, 3.663391e-06, 4.0979103e-06, 6.175912e-06, 6.2858026e-06, 4.0329705e-06, 5.7443513e-06, 4.722329e-06, 5.8856394e-06, 3.953868e-06, 5.4752327e-06, 5.2704336e-06, 3.3147787e-06, 3.5794915e-06, 5.8160513e-06, 5.1514453e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1229388e-06, 1.940699e-06, -5.1992635e-07, 3.0489828e-06, 2.8827862e-06, 2.8119466e-06, 1.6579816e-06, 2.9808916e-06, 4.777135e-06, 3.351197e-06, 2.7649553e-06, 4.3435543e-06, 3.9132647e-06, 4.7554786e-06, 2.382692e-06, 4.720428e-06, 4.2442916e-06, 3.875527e-06, 3.048832e-06, 4.2738916e-06, 2.812434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.225378e-07, 9.92953e-07, -8.3823494e-07, 1.5750655e-06, 8.6542593e-07, 1.05330756e-07, 1.5370453e-06, 2.525699e-06, 2.6984135e-06, 1.2151304e-06, 2.8133213e-06, 2.2513782e-06, 2.7411002e-06, 1.8028545e-06, 1.3423975e-06, 3.5973546e-06, 1.7956834e-06, 4.5996635e-06, 2.5910317e-06, 3.146702e-06, 3.0532601e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3067392e-07, -1.4742775e-06, -5.3240046e-07, -7.3647357e-07, -9.562199e-07, -4.792887e-07, -1.6540547e-08, 1.4596631e-07, 2.0065318e-06, 1.5021224e-06, 1.5071246e-06, 1.5480304e-06, 1.080858e-06, 1.819604e-06, 1.5281025e-06, 2.48011e-06, 1.0436354e-06, 2.4650572e-06, 1.3261924e-06, 2.520803e-06, 1.886172e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.66146e-07, -1.3477163e-06, -2.5885527e-06, -3.1715836e-06, -1.842999e-06, -1.605563e-06, -2.6552648e-06, -1.1714029e-07, 3.2206593e-09, 5.5200815e-07, 1.6069232e-06, 3.750509e-08, 6.9404285e-07, 8.634587e-07, 1.2583239e-06, 5.4832634e-07, 2.9229818e-07, -1.656625e-07, 6.8440437e-07, 9.407034e-07, 1.919724e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8692848e-06, -3.1114423e-06, -3.6432511e-06, -3.7514383e-06, -1.7105876e-06, -3.2384573e-06, -4.009349e-06, -2.0025147e-06, -1.1588384e-06, -3.6664062e-07, -1.3721403e-06, -6.9867946e-07, 5.0986245e-07, -4.6175379e-07, 1.5299598e-08, -1.774756e-08, -5.8093076e-07, -5.067987e-07, 1.8291658e-07, -5.7297314e-07, -4.7649195e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.0746305e-06, -5.01086e-06, -5.7207353e-06, -4.1956123e-06, -1.8459557e-06, -2.6614061e-06, -3.7440777e-06, -5.024878e-06, -2.3747407e-06, -8.575101e-07, -2.255289e-06, -1.5688854e-06, -1.5179635e-06, -9.022176e-07, -7.778618e-07, 6.103111e-07, -1.5552901e-07, -8.361894e-07, -4.9112632e-08, -4.8960567e-07, -4.3743555e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.9543519e-06, -3.6562697e-06, -3.4726704e-06, -4.2753622e-06, -3.7745278e-06, -3.6187375e-06, -2.9912026e-06, -3.5598705e-06, -2.9165544e-06, -3.3423294e-06, -1.5125637e-06, -2.4813457e-06, 1.08481714e-07, -1.1645357e-06, 8.607097e-08, -4.764243e-07, -2.6256305e-07, -8.7073226e-07, -4.2818434e-07, -1.4330839e-09, -1.1682773e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1519604e-06, -3.5559137e-06, -3.8470794e-06, -2.8075265e-06, -3.846783e-06, -3.5395283e-06, -3.6395377e-06, -1.9875981e-06, -2.7943647e-06, -2.443191e-06, -1.8721939e-06, -1.8163421e-06, -8.779287e-08, -1.1253655e-06, 1.0193352e-07, -1.495036e-06, -9.252954e-07, -1.4656937e-06, -7.634643e-07, -1.1593534e-06, -2.4077093e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.823055e-06, -4.475974e-06, -4.0345635e-06, -1.9959932e-06, -3.7025202e-06, -4.548703e-06, -2.9199173e-06, -3.523688e-06, -2.608198e-06, -2.2687627e-06, -1.4278899e-06, -2.7486735e-06, -2.2142299e-06, -8.953383e-07, -6.449028e-07, -1.1978946e-06, -1.9501056e-06, -1.2133315e-06, -9.5049455e-07, -7.7773177e-07, -1.2485824e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5974464e-06, -5.549543e-06, -3.871095e-06, -3.1341974e-06, -3.7546965e-06, -3.1678894e-06, -3.0192186e-06, -3.7085717e-06, -3.15721e-06, -3.6606743e-06, -2.42794e-06, -2.5859958e-06, -1.425096e-06, -2.1237756e-06, -1.6285213e-07, -1.9546917e-06, -1.0389554e-06, -1.7133241e-06, 1.0259461e-07, 2.0431452e-07, -7.830648e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3622802e-06, -4.1647495e-06, -2.4992496e-06, -2.84513e-06, -5.1394018e-06, -3.6172673e-06, -3.0773776e-06, -4.4737985e-06, -2.836305e-06, -2.0663724e-06, -2.7141991e-06, -3.3867238e-06, -2.637552e-06, -3.0565193e-06, -1.7835877e-06, -2.054784e-06, -1.1193665e-06, -4.448715e-07, -1.2259718e-06, -1.6079581e-06, -1.3385206e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2792054e-06, -2.5217093e-06, -2.875654e-06, -2.971976e-06, -3.4251466e-06, -4.2402007e-06, -3.3269257e-06, -4.237966e-06, -3.0457375e-06, -3.4750249e-06, -2.69752e-06, -3.700221e-06, -4.480744e-06, -2.060668e-06, -1.6533243e-06, -1.1369576e-06, -1.104502e-06, -1.9695785e-06, -1.2562864e-06, -1.3299662e-06, -1.0959116e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4498875e-06, -1.073724e-06, -3.4761686e-06, -3.4968955e-06, -3.5740914e-06, -4.6219443e-06, -3.616954e-06, -4.792187e-06, -3.39199e-06, -1.8813441e-06, -3.0218887e-06, -1.6630464e-06, -3.7196771e-06, -7.009716e-07, -1.7768789e-06, -1.7770496e-06, -1.0661997e-06, -5.142539e-07, -4.3898126e-07, -1.8513068e-06, -1.4577457e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.050503e-06, -3.4789664e-06, -2.6814791e-06, -2.3065732e-06, -3.1079862e-06, -4.2805714e-06, -2.7503804e-06, -3.597181e-06, -3.1420782e-06, -2.8445615e-06, -1.7307422e-06, -3.049378e-06, -2.5617028e-06, -4.419509e-06, -2.028003e-06, -3.0629762e-06, -1.0601993e-06, -1.97701e-06, -7.227843e-07, -1.7575792e-06, -2.6271414e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.5191802e-06, -2.1347614e-06, -3.3319e-06, -4.4608205e-06, -3.8978123e-06, -2.8259733e-06, -1.7871919e-06, -4.267651e-06, -2.0382504e-06, -1.5205292e-06, -3.250611e-06, -2.22125e-06, -2.9464416e-06, -3.1299533e-06, -1.9157283e-06, -1.4665363e-06, -1.2260066e-06, -2.3693894e-06, -3.6133855e-07, -1.4989675e-06, -1.0990767e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.613845e-06, -1.7436962e-06, -1.2716366e-06, -3.1487607e-06, -4.988572e-06, -2.759571e-06, -3.7768145e-06, -3.0439342e-06, -3.0592164e-06, -1.7929004e-06, -2.921306e-06, -4.029116e-06, -3.187441e-06, -2.2991926e-06, -1.2026352e-06, -1.9144682e-06, -1.7690336e-06, -3.738349e-07, -1.6570664e-06, -1.7357111e-06, -8.9953926e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.3489125e-07, -2.0648909e-06, -2.8070804e-06, -2.7897913e-06, -2.5085528e-06, -4.627642e-06, -3.8020833e-06, -1.6563802e-06, -3.2189218e-06, -2.525704e-06, -3.2522996e-06, -3.4544619e-06, -2.3969292e-06, -1.5098767e-06, -1.0599592e-06, -2.258371e-06, -1.6071178e-06, -9.058459e-07, -1.2887762e-07, -1.1991953e-06, -1.6362159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7327766e-06, -1.4911027e-06, -2.8663094e-06, -2.657341e-06, -2.9937955e-06, -1.8126045e-06, -3.7442223e-06, -2.0303723e-06, -2.6062248e-06, -2.6308708e-06, -2.8422446e-06, -2.371701e-06, -1.6453e-06, -2.7851268e-06, -9.313905e-07, -2.288149e-06, -2.0210919e-06, -1.7867555e-06, -1.0430083e-06, -2.3462576e-06, -1.4144098e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3753465e-06, -3.4943383e-07, -2.2329523e-06, -2.8863515e-06, -1.4042419e-06, 7.458175e-07, -3.3059564e-06, -2.2928375e-06, -1.6090062e-06, -2.8339573e-06, -1.1113086e-06, -2.1677351e-06, -1.1416718e-06, -2.2342942e-06, -4.6134616e-07, -1.7107579e-06, -1.8406449e-06, -2.18856e-06, -6.250842e-07, -2.519777e-06, -2.1109847e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.6320665e-07, -2.0723655e-06, -2.6626767e-06, -1.223426e-06, -1.3904523e-06, -1.920947e-06, -2.1664382e-06, -5.8756147e-08, -1.1268452e-06, -1.9055906e-06, -1.4934676e-06, -1.9804347e-06, -5.8424166e-07, -2.3641626e-06, -1.6759121e-06, -1.7634627e-06, -6.347406e-07, -2.1356987e-06, -5.6123383e-07, -2.1090736e-06, -1.8014005e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6292503e-06, -1.2635102e-06, -3.0783685e-06, -9.650016e-07, -5.8463013e-07, -6.9136104e-07, -1.6322545e-06, -7.0099077e-07, -7.115473e-07, -2.1922629e-06, -7.983797e-07, -1.4924119e-06, -7.2541695e-07, -3.0798892e-06, -1.059226e-06, -3.8918365e-06, -1.0063415e-07, -1.7455989e-06, -5.946158e-07, -1.2423791e-06, 2.1712674e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3411694e-06, -9.554867e-07, -3.3847737e-06, -1.0762892e-06, -5.37573e-07, -9.4052905e-07, -1.0221546e-06, -4.3134867e-07, -9.850693e-07, -1.5914327e-06, -1.260112e-06, -1.5820619e-06, -2.2976987e-07, -2.286868e-06, -1.1177319e-06, -1.8909625e-06, -8.853023e-08, -1.4358075e-06, 1.0006603e-06, -1.7998591e-06, -1.1181397e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1589937e-06, -2.4275508e-07, -8.477175e-07, -1.180876e-06, 1.732225e-07, 2.9330081e-07, 3.2632776e-09, -1.234509e-06, -2.9403742e-07, -1.0573974e-06, -3.350085e-07, -4.880571e-07, -1.0328524e-06, -1.2556232e-07, -3.312323e-07, -2.3530147e-06, 2.9314725e-07, -1.3970091e-06, -3.0448604e-07, -1.2367934e-06, -1.6135388e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.915901e-07, 7.118407e-07, -3.189126e-08, 1.0902111e-06, 6.904426e-07, 6.588112e-07, 8.202509e-07, 1.0301899e-06, -7.416288e-07, -2.0325774e-06, 3.955225e-07, -4.3135606e-07, 1.7419977e-09, 4.4789869e-07, 2.0538448e-07, 2.162301e-08, -3.509682e-08, -7.829732e-07, -8.449857e-07, -1.5634532e-06, 2.1549641e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.200546e-07, 6.386071e-07, 1.5105466e-07, -7.5817175e-09, 7.4987116e-07, 1.7969253e-06, -1.1687848e-06, 2.9940952e-06, -4.2149327e-07, -4.1512016e-07, -3.90055e-07, -4.1918256e-07, -1.317133e-08, 1.2650216e-06, -3.7112642e-07, -3.0339334e-07, -5.587443e-08, -1.0451693e-06, -7.0862836e-07, -1.2092581e-06, -5.3985787e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8387442e-06, 2.413534e-06, -1.0607208e-08, -7.102544e-07, 4.9427393e-07, 3.5834996e-06, 8.6565285e-07, 9.3399507e-07, -3.9532775e-08, 7.086751e-07, 7.640999e-08, 9.357308e-07, -4.770248e-08, 5.800718e-07, 7.7195847e-07, 1.0776515e-07, 2.9254747e-07, -1.2710564e-06, -4.5546258e-07, -2.0554981e-07, 6.4400353e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.6925294e-06, 1.1911311e-06, 8.981812e-07, 1.1982589e-06, 9.3487365e-08, 5.0388064e-07, 7.2025585e-09, 2.259963e-06, 5.920212e-07, 5.417121e-07, 1.066971e-06, 1.495255e-06, -9.0285994e-08, 4.9680136e-07, -6.487936e-07, 7.1009663e-07, 9.306684e-07, 6.371779e-07, 2.0968491e-07, 1.8483505e-06, -2.0293524e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.1831074e-08, 1.0518947e-06, 1.172845e-06, 5.6695353e-07, 1.2171686e-06, 1.4170685e-06, 8.7297246e-07, -1.3325044e-07, 1.2659959e-07, -1.3074039e-07, -8.918679e-09, 5.655369e-07, 5.2605935e-07, -1.0291808e-07, 6.2747756e-07, 1.4915017e-06, 1.7728053e-06, 2.7266637e-07, 6.877418e-07, 1.6103825e-06, 1.176742e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8870585e-06, 1.9837448e-06, 1.4908007e-06, 7.58099e-07, 2.1769415e-06, -2.1054667e-07, 4.778797e-07, 1.6014174e-06, 2.3043756e-07, 1.1117918e-06, -4.2689052e-08, 1.0115668e-06, -2.6255262e-07, 1.0745748e-06, 8.807607e-07, 7.819536e-07, 9.714308e-08, 2.7299717e-07, 1.0656646e-06, 5.294186e-07, 1.5710771e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.460904e-06, 1.7780065e-06, 1.3282106e-06, 7.921697e-07, 1.2414214e-06, 7.55795e-07, 2.6399266e-07, 1.5604837e-07, -5.191105e-07, 9.689655e-07, 3.0517376e-07, 1.168117e-06, 1.642414e-07, 8.999939e-07, 4.967092e-07, 3.8257664e-07, -5.004521e-07, -3.2031213e-07, -6.714978e-08, -6.7598116e-08, 9.2074595e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2089973e-06, 7.133471e-07, 1.4061258e-06, -1.1700299e-06, 8.5140437e-07, 6.837321e-07, 4.4675295e-07, 4.3606576e-07, 8.562827e-09, 6.780633e-08, 3.934249e-08, 1.3626129e-06, 1.0814574e-06, 5.332244e-07, 6.245883e-08, -6.198876e-07, 3.3563526e-07, 9.975061e-10, -4.0663747e-07, -1.0649178e-06, 2.3612606e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.4043013e-07, -1.3293101e-06, -6.752898e-07, -3.339589e-07, 1.9647339e-06, -4.936818e-07, 1.1544121e-06, -2.595869e-07, -6.8438754e-07, 1.8053359e-07, 2.3282986e-07, 7.206909e-07, 2.0204047e-09, 1.8868937e-07, 3.712975e-07, -4.058515e-07, -1.1509122e-07, -3.8838766e-07, -6.3307203e-07, -1.0492607e-06, 2.6338117e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.3810582e-07, -7.2066587e-07, -1.1852917e-06, -9.2818425e-07, 5.0719615e-07, 8.6932675e-07, 8.898834e-07, -1.852303e-07, -3.5261047e-07, 6.748575e-08, 5.1089415e-07, 2.62826e-07, -7.5754923e-07, 5.45525e-07, 5.377708e-07, -5.8555145e-08, 3.1304603e-07, -6.9874733e-07, 7.1567365e-07, 2.4707973e-07, -1.2118261e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6136345e-07, 2.2186791e-07, 8.299768e-07, -3.1226264e-08, -1.6070178e-06, -1.1274753e-07, -2.764092e-07, 8.553859e-08, -9.1677373e-07, -2.4790762e-07, -1.1489967e-06, 6.9884607e-07, -9.844755e-07, -4.5813792e-07, -6.615536e-07, -1.2962912e-06, -1.7322421e-07, -7.8761616e-08, 6.9480086e-07, -1.5933613e-06, -1.3834665e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2894037e-06, -5.175876e-07, -2.6154777e-07, 9.557498e-07, -1.2321242e-06, 4.0501504e-07, -5.1543953e-08, -1.1274318e-06, -2.0105178e-06, -1.722297e-06, 7.1851446e-07, -7.941056e-07, -1.923221e-06, 1.4303686e-07, -1.036034e-06, -7.294617e-07, -8.838735e-07, -1.1690873e-06, -8.394907e-08, -3.7298116e-07, -7.7077414e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.6464035e-07, -1.1349939e-06, 4.3367817e-07, -1.8434983e-07, -4.5715544e-07, 4.92485e-07, -8.009819e-08, -6.304949e-07, -4.8552164e-07, -1.0883587e-06, 2.414062e-07, -2.1270525e-07, -1.8482065e-06, -6.4773724e-07, -1.0616666e-06, -1.957749e-06, -1.8402188e-06, 4.5156474e-07, 7.549407e-07, -6.4701646e-07, -5.8494106e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1603806e-06, -9.4700215e-07, -1.4737357e-06, -2.0449512e-07, -9.398726e-08, -5.824983e-07, 7.958304e-07, -6.593212e-07, -1.4218228e-06, 2.2691601e-08, 6.5147407e-09, -1.7693856e-06, -1.4661533e-06, -1.6085519e-06, -5.371544e-07, -1.4443444e-06, -2.9036355e-06, -4.9538477e-07, -7.059991e-07, -1.8400119e-06, -1.9124136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.3873343e-07, -1.296895e-06, -2.1611445e-06, -2.490235e-07, 1.770232e-08, -1.2633991e-06, -4.1213346e-07, 1.2348053e-07, 2.854643e-07, 7.4612466e-08, -1.0886855e-06, -2.1052037e-06, 2.3109203e-07, -1.7774175e-07, -1.2426303e-06, -9.3796154e-07, -1.0738356e-06, -4.0388227e-07, -1.0091172e-06, -2.1254373e-06, -2.5711986e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1685986e-07, -2.238247e-06, -1.3173645e-06, -5.663552e-07, -1.2540958e-06, -1.2857874e-06, -1.048457e-07, -5.4285323e-09, -1.7012144e-06, -4.5902152e-07, -1.5940061e-06, -4.857941e-07, 1.940783e-07, -7.237679e-07, -1.795933e-06, -8.2834606e-07, -4.6863883e-07, 2.4354275e-08, -1.8539322e-06, -4.4662107e-07, -2.117352e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.023809e-06, 9.7317226e-08, -1.8162335e-06, -2.8381334e-07, -1.5630646e-06, -5.961359e-07, -4.210445e-07, -8.8919785e-07, -8.226556e-07, -2.817686e-06, -5.8068997e-07, 1.0707565e-06, -9.3394294e-07, -1.0157332e-06, -2.2706572e-06, 1.1539687e-07, -7.0587754e-07, 5.1647345e-07, -1.943872e-06, -1.144199e-06, -3.052082e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 1.0 0.641269 0.500000 4f33f112-d692-470d-b1b8-22cf5328f9eb 5533.689535 20.0 53196 106.357020 0.333333
1 probe00_1 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406] 12.659316 386 [13.709021810005417, 12.954418924990161, 18.83230155782138, 15.73757618831517, 23.878462011735554, 30.445286988807926, 13.979496565047798, 31.768310016291853, 17.88980340179851, 25.172268360997926, 14.312670810124615, 23.25380704324562, 15.911054797709488, 15.494471513526873, 16.29419088229187, 16.418592720406664, 13.763130377448139, 15.111534438368102, 12.867026555158168, 18.91505805550135, 13.0774161755415, 13.254667584640199, 13.313736723820833, 13.47914916705095, 14.405239519806432, 14.101596178356866, 14.647947223165536, 15.49685857919214, 16.324737781397534, 12.669753750626576, 17.99425821115976, 15.991517449927883, 14.017023457831977, 16.680444082898745, 14.578505503342896, 13.196396577990031, 14.545934992624552, 14.052469131012433, 13.158941957049164, 16.23657032223149, 12.80836171933286, 19.07978129767498, 13.05978708286397, 16.597280139609392, 14.32633228334623, 16.94102283249776, 14.86382217171429, 13.084223345246881, 13.645169112732079, 16.77862904799836, 18.020961086135756, 14.068166784862955, 18.569904490541408, 22.350050784908948, 17.723573972513584, 16.389629517345703, 14.871526978661942, 18.21156602755849, 13.96634308956539, 16.915825097215052, 13.391238325299557, 12.95858869612374, 14.922198967584375, 13.447548565418186, 15.40122826664083, 13.845073031327358, 17.47779523952282, 13.676978150550621, 13.592368770395067, 15.414974580721983, 19.974651261538586, 15.775523095724964, 14.51594217765093, 13.10013990946337, 14.439315170218057, 14.08584196393332, 13.019385027617679, 12.976385375684307, 15.328718659440588, 14.411153241941621, 17.88454955301528, 15.877411730939704, 14.153175231283742, 24.846823013483196, 19.91434721651357, 14.696907731044949, 15.034825732329747, 13.182403073256397, 12.970415092976094, 16.159075005260878, 19.062714668473642, 15.181690497279686, 13.269111479121996, 17.651469716086684, 13.381260621250712, 18.482763501033972, 14.687935548294329, 15.544806233847197, 15.248923212500285, 15.527119533178622, ...] [0.0378055767158437, 0.22426471895297584, 0.32532228208363645, 0.33198674388537924, 0.3463486590681349, 0.34884783224378846, 0.37207348162286197, 0.4059653043176355, 0.40973257870004715, 0.4191007565890532, 0.43650356391311423, 0.45223943566973646, 0.5009806316616469, 0.5443514048246939, 0.5617165212778941, 0.6563747376446667, 0.729056434044552, 0.7811121947124132, 0.8132788113098155, 0.8494443582935219, 0.8927995025269537, 0.9686849767536109, 0.9871256360328419, 1.0085674875998318, 1.0325436793209297, 1.035578218189664, 1.0465492433304722, 1.1750571492001314, 1.2280719546665992, 1.2699972322078508, 1.2771662834292035, 1.2792336377348963, 1.3309508398014938, 1.5668267298282996, 1.5838747789399927, 1.5935831591581975, 1.6121875943479114, 1.6610746073033118, 1.728556680401257, 1.780442896605455, 1.8106843909085992, 1.8829495260619835, 1.9457212677084945, 1.9488259190088646, 1.9727905523003189, 1.9749236952043587, 1.9988882225169324, 2.000854713631594, 2.034685026875353, 2.12854873172334, 2.138388165618561, 2.2347873816558255, 2.240685698467103, 2.259680278028844, 2.262412831579831, 2.3472269035084823, 2.3499609038840656, 2.35222812370772, 2.371632858080761, 2.393504861085426, 2.4438171362897547, 2.5202024394661073, 2.6404976116226977, 2.6895963390885083, 2.6980969966509516, 2.7573682482039867, 2.7610685344370505, 2.9863771688042444, 3.027265405172324, 3.0304644847903646, 3.144291933777522, 3.2049561703859877, 3.2551604971232986, 3.2845963673152276, 3.368132654405449, 3.3844645297645046, 3.3909972799081274, 3.466577916059364, 3.8325115046004083, 3.8378095478724807, 3.8520709473721473, 3.8634000965073967, 3.9378283080224272, 3.9996361425632636, 4.021821179611152, 4.053743901969164, 4.0608813066051, 4.098336004764703, 4.101571183501552, 4.1532453847429895, 4.15510745129224, 4.157501536855563, 4.162461743297324, 4.207191083566412, 4.210057494343716, 4.273385174307402, 4.295716514084071, 4.3655127686821205, 4.368513490574928, 4.420292613903044, ...] 0.017299 1.424293 15.134922 3.766966e+06 57.146816 24.860988 0.998179 1.000000 [109.68396759033203, 108.80651092529297, 196.3152618408203, 118.28694152832031, 56.026153564453125, 42.09296417236328, 190.71359252929688, 96.69256591796875, 122.73764038085938, 108.67363739013672, 88.90071105957031, 93.32963562011719, 188.11044311523438, 140.33627319335938, 134.6336669921875, 68.0504150390625, 160.7938232421875, 93.29022216796875, 56.77910614013672, 133.01068115234375, 135.6490478515625, 132.05447387695312, 106.03314971923828, 123.86151123046875, 243.443115234375, 71.79044342041016, 71.11961364746094, 101.49183654785156, 86.39129638671875, 126.03534698486328, 80.49200439453125, 92.05962371826172, 133.205810546875, 106.34309387207031, 97.11279296875, 64.51605224609375, 147.93670654296875, 90.95315551757812, 119.50899505615234, 129.87469482421875, 169.29293823242188, 159.28871154785156, 129.4086456298828, 175.12911987304688, 54.69630813598633, 96.24870300292969, 134.63357543945312, 115.20439147949219, 134.41317749023438, 105.1613998413086, 129.87705993652344, 108.36209106445312, 209.37005615234375, 143.2292022705078, 76.43730163574219, 155.2503204345703, 112.17405700683594, 156.68206787109375, 132.89010620117188, 86.24356079101562, 157.57650756835938, 145.7410888671875, 133.6832733154297, 95.37146759033203, 93.06957244873047, 145.73358154296875, 117.95323944091797, 184.26205444335938, 85.04801940917969, 93.12206268310547, 101.23828887939453, 137.7090301513672, 79.83845520019531, 114.48873901367188, 121.97014617919922, 95.46247863769531, 146.96286010742188, 111.71700286865234, 139.83612060546875, 141.67990112304688, 101.9470443725586, 123.38526153564453, 157.19952392578125, 127.09353637695312, 48.972557067871094, 227.9293212890625, 83.71383666992188, 209.85861206054688, 105.590576171875, 190.28543090820312, 79.05470275878906, 85.87229919433594, 113.09724426269531, 229.0543975830078, 145.96531677246094, 64.46220397949219, 110.25888061523438, 158.14663696289062, 130.73211669921875, 52.45402526855469, ...] good [[1.2178883e-07, 1.73362e-07, 7.424618e-08, 2.6611758e-07, 8.187839e-07, 4.851108e-07, 5.397047e-07, 7.65501e-07, -8.264007e-07, 1.1257098e-06, -9.838559e-07, -1.3428491e-06, -4.119167e-07, -2.8042878e-06, -2.2822865e-06, -2.1424962e-06, -1.360955e-06, -9.239801e-07, -2.2248332e-06, -2.9822972e-06, -4.4770482e-07, -2.6855598e-06, -1.625568e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.043309e-06, 5.8655525e-07, -4.6641395e-07, 1.0075889e-06, 1.4251714e-06, 2.3113705e-06, 1.0375301e-06, 1.3044059e-06, -3.159928e-07, 1.9899717e-09, -1.5951258e-06, -5.250182e-07, -6.692595e-07, -1.1554687e-06, -3.5207113e-06, -1.0740116e-06, -2.5304594e-06, -6.4928014e-07, -1.023937e-06, -2.2383701e-06, -8.704936e-07, -1.5319274e-06, -2.9527127e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.911447e-06, 1.0955164e-06, -9.054605e-08, 1.7173597e-06, 2.2167897e-06, 1.8936222e-06, 3.3328223e-07, 1.1926486e-09, -4.0193197e-07, 6.9763513e-07, -1.6781565e-06, -3.212008e-08, -7.16764e-07, -2.5510399e-06, -2.2996942e-06, -1.0408289e-06, -2.5906015e-06, -4.3726862e-07, -2.0964603e-06, -2.741641e-06, -1.6268343e-06, -9.926193e-07, -1.9930096e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5274701e-06, 2.376234e-06, 1.830713e-06, 1.5914959e-06, 1.6141785e-06, 1.1135285e-06, 1.3346424e-07, 2.4888743e-07, -4.4168905e-07, 2.949915e-07, 9.238147e-08, -5.3695453e-07, -9.403467e-07, -1.3919e-07, -1.7177076e-06, -1.2851629e-06, -1.33341e-06, -1.8464405e-06, -7.952701e-07, -1.6736094e-06, -2.3489242e-06, -1.1818138e-06, -1.826628e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.7943494e-06, 1.8929991e-06, 2.7575556e-06, 1.5491064e-06, 1.3098081e-06, 9.420805e-07, -1.1226425e-07, 2.0615123e-06, -3.7220715e-07, 1.2500331e-07, 3.1973926e-07, -1.16919935e-07, -1.1211505e-06, 2.4458814e-08, -2.2026616e-06, -3.8762747e-07, -8.408914e-07, -1.8227797e-06, 6.34142e-08, -1.8898684e-06, -1.0547251e-06, -1.3906534e-07, -2.4174612e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.844867e-07, 1.3347053e-06, 2.9786904e-06, 1.5733306e-06, 4.26697e-07, 1.7484435e-06, 1.95264e-06, 1.2380347e-06, 2.2551274e-07, 1.5391838e-06, -2.7709223e-08, -4.6451862e-07, -2.6551174e-07, 4.278118e-07, -1.3881282e-06, -2.8878472e-07, -1.5283204e-06, -1.4049212e-06, -4.3374675e-07, -2.3424252e-06, 2.1827044e-07, -1.2688797e-06, -2.1774003e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9764607e-06, 1.9677382e-06, 4.1033545e-06, 1.8152291e-06, 1.4664836e-06, 2.0779291e-06, 2.205646e-06, 1.1471384e-06, 9.007643e-07, 1.3238174e-06, 8.0462564e-07, -3.402975e-07, -1.1591478e-06, 2.3842577e-07, -1.2953569e-06, -7.1766334e-07, -8.643183e-07, -1.6451537e-06, -6.194683e-07, -2.1408448e-06, 3.291778e-07, -1.8839892e-06, -7.882171e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.085392e-06, 1.6239189e-06, 2.675064e-06, 3.3996682e-06, 2.568254e-07, 2.1287176e-06, 3.0008614e-06, 2.3849284e-06, 6.122644e-07, 1.8682329e-06, 2.6253878e-07, -1.8169143e-07, -1.3232839e-06, -9.15181e-09, -1.2294613e-07, -3.6076443e-07, -3.570612e-08, -1.6337538e-06, -7.2006e-08, -1.5658593e-06, -6.658187e-07, -4.60264e-07, -1.39466e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2265099e-06, 3.1637978e-06, 3.6367956e-06, 3.4184889e-06, 1.2058824e-06, 1.6135209e-06, 2.759099e-06, 1.1009954e-06, 1.0873748e-06, 1.287365e-06, 7.6462703e-07, -8.516891e-07, -5.981136e-07, -3.7144866e-07, -3.1382731e-07, -8.7501627e-07, -1.002873e-06, -1.6931599e-06, -1.4655918e-06, -1.3060135e-06, -5.254592e-07, -9.3594554e-07, -2.7598253e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.9812458e-06, 1.4094608e-06, 3.3600745e-06, 2.928536e-06, 1.6582513e-06, 1.637836e-06, 1.5572934e-06, 1.4994389e-06, 8.3441535e-07, 2.8546524e-06, 2.9904464e-07, -1.5688087e-08, -3.1668606e-08, -1.04218714e-07, -5.757173e-07, -8.679443e-07, -1.4384927e-06, -1.7438659e-06, -1.3243982e-06, -1.6155357e-06, 1.4247044e-07, 1.6946595e-07, -1.0685764e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7981034e-06, 1.6583951e-06, 1.8058641e-06, 2.2474958e-07, 2.2938145e-06, 1.7861096e-06, 4.397413e-07, 1.269924e-06, 9.722247e-07, 1.5726837e-06, -8.143881e-08, 8.790225e-09, 2.8177365e-07, -3.449514e-07, 5.5344806e-08, -1.1857809e-06, -1.9672723e-06, -8.635195e-07, -9.105647e-07, -2.7156375e-07, -4.142558e-07, -5.187122e-07, -1.8832359e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.077219e-06, 1.2659224e-06, 1.15921694e-07, 1.1113918e-06, 1.6809977e-06, 2.747652e-06, 1.9051465e-06, 1.798142e-06, 9.89284e-07, 1.8727117e-06, -1.8443995e-07, 8.166581e-07, 1.074003e-06, -1.3423295e-07, 2.1836394e-07, -2.3400357e-06, -2.493211e-06, -4.9325524e-07, -1.369208e-08, -5.1761424e-07, -7.2068775e-07, -6.113236e-07, -2.8377535e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.417682e-06, 1.3500471e-06, 1.2787677e-06, 1.7759331e-06, 2.4131697e-07, 2.1862052e-06, -3.0078343e-08, 9.584917e-07, 1.3596156e-07, 5.9992846e-07, -6.3109223e-07, 4.096107e-07, 7.212071e-08, 8.0560575e-08, -1.6004469e-06, -1.5878309e-06, -2.671817e-07, -9.0150235e-07, 1.8909193e-07, -8.014225e-07, -1.0567478e-06, -8.461771e-08, -1.751783e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8418648e-06, 6.469461e-07, 6.4956987e-07, 2.0748098e-06, 8.505715e-08, 1.4018631e-06, 1.3138852e-06, 7.872468e-07, -1.1265964e-08, 5.4222613e-07, -2.91517e-07, 1.446533e-06, 2.7966573e-07, -7.6122326e-08, -2.5424472e-07, -1.1841776e-06, -1.2193387e-07, -5.879835e-07, -8.0919517e-07, -9.49139e-07, -1.8763751e-06, -1.220236e-06, -8.515757e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.766128e-08, 1.1672773e-06, 2.3549886e-07, -2.1141965e-07, -5.4508786e-07, 6.2465216e-07, 2.7205448e-07, 1.0963743e-06, -1.8837947e-07, 6.5870944e-07, -1.2258217e-06, 1.47803e-07, -6.6786737e-07, 9.1990694e-07, -1.0373298e-06, -1.662175e-06, -1.6187139e-06, -3.000321e-07, -9.58353e-07, -1.124914e-06, -9.1910283e-07, -1.0986596e-06, -2.8919973e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1855441e-06, 2.4165732e-07, -2.562137e-07, 4.597343e-08, 5.4121455e-07, 5.4142384e-07, 9.05786e-07, 1.3696938e-06, -4.3467966e-07, 6.9740634e-07, -9.846943e-07, 5.833516e-07, -1.47769e-06, 8.453933e-07, -1.5057134e-06, -1.8252468e-06, -1.306144e-06, -7.6358083e-07, -5.394348e-08, -2.0949449e-06, -5.646268e-07, -1.475692e-06, -4.9668176e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.05002734e-07, 5.553834e-07, 1.0504608e-06, -3.5770628e-07, 7.2650425e-07, -2.9294462e-08, -1.826808e-09, 5.443968e-07, -9.4776095e-07, -3.4411522e-07, 3.5978573e-07, -2.26848e-08, -5.873713e-08, -7.682752e-07, -8.417506e-07, -3.169784e-07, -1.0103033e-06, -5.3514793e-09, 2.49702e-08, -1.3247281e-06, -3.1863658e-07, -9.377911e-08, -1.0077385e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.851669e-07, 1.9490827e-07, -1.4440344e-07, 2.2603689e-07, 5.545446e-07, 6.690782e-07, 1.0054379e-06, 2.7293591e-08, -1.1961568e-07, -2.2296472e-07, -1.4624172e-07, 5.601064e-07, -1.530055e-06, -1.2978872e-09, -2.1172335e-07, -1.0825008e-06, -7.4631595e-07, -6.867524e-07, -5.92857e-07, -4.841025e-07, -6.837878e-07, -8.685863e-07, -8.0497165e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.994085e-07, 2.5857983e-07, 1.0589466e-06, 1.2069477e-06, 5.728665e-07, 2.3044208e-07, 3.685323e-08, 3.446193e-08, -2.3497014e-07, 9.3819745e-07, 3.1942568e-07, 3.2912877e-07, -1.3863137e-06, 2.133954e-07, -7.974403e-07, -4.217295e-07, -8.9811334e-07, -1.2797245e-06, -7.890752e-07, -1.6712742e-07, -5.167848e-07, -8.62305e-07, -3.5103955e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7789214e-07, 1.9438435e-06, 1.9820247e-06, 8.404697e-07, 1.5030678e-06, 7.508112e-07, 8.5276747e-07, 9.004677e-07, 3.4097394e-07, 3.0051223e-07, 3.6462217e-07, -4.6886643e-07, -1.4460895e-06, 1.0255403e-06, -1.7028242e-07, -1.3622079e-07, -2.5694774e-07, -5.2348946e-07, -1.3150411e-06, -2.4616267e-07, 1.769133e-07, -6.58412e-07, 7.7293697e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3579988e-07, 1.8699202e-06, 1.7312047e-06, 1.1424515e-06, 8.8810555e-07, 1.3644799e-06, 2.2243412e-06, -2.7913043e-07, 1.2452886e-06, 1.4661777e-07, -5.19805e-09, -7.8396e-08, -7.282481e-07, 1.4595018e-06, 6.571943e-07, 6.285939e-07, 1.5504545e-06, -2.4289847e-07, -1.3326949e-06, 1.8720463e-07, 4.6942392e-07, -6.9283717e-09, 2.6871308e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.371607e-07, 2.7372048e-06, 1.8666583e-06, 1.6218466e-06, 1.4229619e-06, 1.1239833e-06, 1.8380374e-06, 6.0013804e-08, 2.0517132e-07, -2.560372e-07, 1.4421651e-06, 8.393096e-07, 3.2721372e-09, 1.0062881e-06, 1.1339743e-06, -1.7762011e-07, 5.997186e-07, -1.2890128e-07, -1.0779272e-06, -1.4292263e-07, 8.93783e-08, 1.2785285e-06, -1.7173985e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4757716e-06, 1.668886e-06, 2.9997186e-06, 3.4933507e-06, 1.7676889e-06, 2.9270832e-06, 2.0494363e-06, 1.1701799e-06, 1.2493858e-06, 1.8228006e-06, 3.8027127e-07, 1.3614178e-06, -7.9385507e-07, -1.3962078e-07, -6.3547327e-07, -4.2154926e-07, -6.0186153e-07, -1.1270989e-06, -1.3502932e-06, -2.479906e-06, -1.0053753e-06, -1.0190893e-06, -7.095558e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.680525e-07, 1.2612891e-06, 1.3332931e-06, 2.0592556e-06, 2.098967e-06, 8.1445035e-07, 1.9107733e-06, 1.2866553e-06, 5.4969735e-07, 1.6242907e-06, 3.784362e-07, 4.8014107e-07, -1.2672331e-07, -1.2989674e-06, 3.0535523e-07, -2.176118e-06, -1.6932531e-06, -9.612759e-07, -1.6635489e-06, -1.0730434e-06, -3.6796723e-07, 2.793425e-07, -6.699198e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7039775e-07, 1.4983436e-06, -4.6188692e-08, 1.0195096e-06, 1.698655e-06, 5.980463e-07, 3.69254e-07, 1.2996553e-06, -3.6016218e-07, 1.021759e-06, -3.3428444e-07, 4.2511246e-07, 5.553402e-07, 4.9355606e-07, 1.5792924e-07, -1.7993011e-06, -1.216755e-06, 8.532114e-08, -8.082427e-07, -3.7254517e-07, 3.826544e-08, 2.8059068e-07, -6.2587804e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3100971e-06, 8.295481e-07, -1.3382935e-06, 6.1212523e-07, 3.1062888e-07, 8.81341e-07, -7.016233e-07, 1.6376765e-06, 1.8691568e-07, 5.5312876e-07, 6.023297e-07, 8.000287e-07, 7.68585e-07, 9.653113e-07, 1.6118505e-06, 3.8378113e-07, -6.066688e-08, 8.5000136e-07, -2.0448942e-08, 8.3757286e-08, 1.1900675e-06, -6.1209164e-08, -1.0006177e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3983537e-06, -1.758103e-06, -3.2021048e-06, -3.8777e-07, -6.707487e-07, -5.2297087e-09, 9.611344e-07, 1.984097e-06, -1.1513464e-06, 5.0135423e-08, 9.150534e-08, -4.4124266e-07, 4.141778e-07, 1.3822676e-06, 1.668171e-07, 4.0201033e-07, 1.8232865e-06, 7.5912703e-07, -4.9138373e-07, 5.3106895e-08, -5.5491705e-07, 1.9148986e-06, -4.6992177e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6879384e-06, -1.9808156e-06, -3.4591499e-06, -2.9966575e-06, -1.263489e-06, -9.73288e-07, 5.13553e-07, -2.6466932e-08, -1.1320476e-06, 1.5711638e-07, 1.8315387e-07, 2.0032694e-06, 2.1087435e-06, 1.1089398e-06, 1.7678992e-06, 2.1057135e-06, 1.5211263e-06, 3.0906327e-07, 3.754161e-07, -9.037498e-09, -7.3082205e-08, 1.987497e-06, 2.2093825e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2845116e-06, -3.4248017e-06, -4.155582e-06, -2.7921642e-06, -1.963001e-06, -1.3775264e-06, -6.437174e-07, -4.2771518e-07, 2.86609e-07, -1.134289e-06, 1.3443935e-06, 1.1206171e-06, 2.727536e-06, -1.4772888e-07, 3.1316117e-06, 1.5208815e-06, 1.3953162e-06, 1.0660265e-06, -1.3710306e-07, 8.2378835e-07, 1.4571834e-06, 1.195505e-06, 2.0659836e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4309763e-06, -3.5182002e-06, -6.1834903e-06, -3.527786e-06, -1.7558596e-06, -2.8382055e-06, -1.491647e-06, -8.720217e-07, 2.5087652e-07, -8.5791623e-07, 1.1563939e-06, 3.216511e-07, 2.5208792e-06, 7.3408654e-07, 2.9953449e-06, 2.1310923e-06, 1.8525334e-06, 2.2459292e-06, 1.3399165e-06, 8.8633686e-07, 2.4598387e-06, 2.0446003e-06, 2.9690998e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.3218413e-06, -4.7576104e-06, -7.4269997e-06, -5.304775e-06, -3.900548e-06, -3.7765672e-06, -8.145381e-07, -9.81749e-07, 2.4520074e-07, -6.7063945e-07, 1.1269917e-06, -1.4517713e-07, 1.1017803e-06, -4.1693664e-07, 2.7074034e-06, 1.4855009e-06, 2.3658831e-06, 1.6481545e-06, 1.2449955e-06, 2.4423643e-06, 2.0224375e-06, 2.1777703e-06, 2.614812e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.6452867e-06, -5.806438e-06, -6.3085067e-06, -5.82773e-06, -5.5477976e-06, -4.405889e-06, -2.2344943e-06, -2.2272163e-06, 2.5151184e-08, -6.5183684e-07, 1.1761801e-06, 9.354726e-07, -4.5695614e-07, 2.040489e-06, 2.9494167e-06, 3.5419043e-06, 2.5933407e-06, 2.342912e-06, 2.5257423e-06, 1.7806244e-06, 2.0838684e-06, 3.3561312e-06, 2.6857597e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8654514e-06, -6.646278e-06, -6.615297e-06, -5.1959423e-06, -5.4791176e-06, -3.9937613e-06, -3.6008162e-06, -3.7911736e-06, -8.319591e-07, -2.1428182e-06, 2.9323262e-08, 4.3050647e-07, 1.0601194e-06, 2.3013363e-06, 1.559521e-06, 1.9681904e-06, 2.7274077e-06, 2.6429918e-06, 2.6771058e-06, 3.1567974e-06, 3.2277435e-06, 1.7896703e-06, 4.5013676e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.7815563e-06, -5.4377324e-06, -6.7630444e-06, -4.441064e-06, -4.0310374e-06, -6.1956016e-06, -3.0024348e-06, -3.4637058e-06, -1.1067016e-06, -2.9304167e-06, 2.1871197e-06, 2.9239771e-07, 8.3730305e-07, 2.8892762e-06, 2.4002084e-06, 1.8105825e-06, 2.6421594e-06, 2.3937987e-06, 4.4177496e-06, 1.6919236e-06, 3.3583885e-06, 2.366187e-06, 2.2165877e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.256794e-06, -6.397353e-06, -7.696184e-06, -6.361628e-06, -5.137974e-06, -5.8027326e-06, -3.21602e-06, -3.907404e-06, -2.283181e-06, -1.4805503e-06, 9.384743e-07, -2.2453435e-07, 1.6141819e-06, 8.904401e-07, 4.1140256e-06, 3.5805624e-06, 2.864126e-06, 2.7941871e-06, 3.7193845e-06, 3.4439547e-06, 3.5647374e-06, 3.1799614e-06, 2.9414655e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.0172983e-06, -7.585013e-06, -7.5046555e-06, -7.2113444e-06, -5.259214e-06, -5.186128e-06, -3.2805033e-06, -3.5713138e-06, -7.4948855e-07, -3.3632373e-06, 6.526385e-07, 7.351846e-07, 6.032627e-07, 1.7246687e-06, 3.3008905e-06, 3.4627187e-06, 2.7443878e-06, 4.3370255e-06, 4.0940126e-06, 3.1315749e-06, 1.8033031e-06, 4.7680655e-06, 5.793584e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.8022327e-06, -7.6549295e-06, -8.303005e-06, -5.7758143e-06, -5.3320928e-06, -4.829025e-06, -3.1134232e-06, -3.6017245e-06, -8.2609773e-07, -2.9542157e-06, 1.7154754e-06, -1.4316425e-08, 2.6135806e-06, 2.1164437e-06, 4.2370334e-06, 4.7618596e-06, 4.9153577e-06, 4.6522155e-06, 4.8567463e-06, 5.338867e-06, 3.1144073e-06, 4.537702e-06, 3.257032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.5444557e-06, -6.8634727e-06, -8.953328e-06, -6.4315436e-06, -4.8024103e-06, -5.106186e-06, -3.7261473e-06, -3.8788894e-06, -1.1782828e-06, -1.8878458e-06, 2.3965438e-07, 1.0518493e-06, 3.256272e-06, 2.1143553e-06, 3.977704e-06, 2.673462e-06, 3.6798947e-06, 3.7310263e-06, 5.1079105e-06, 3.4094587e-06, 3.4449615e-06, 3.3748915e-06, 3.4187829e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.57402e-06, -6.2128993e-06, -8.017347e-06, -7.225719e-06, -5.1230363e-06, -5.3062436e-06, -2.9057023e-06, -3.4182694e-06, -1.011033e-06, -2.228142e-06, 1.2678445e-06, 6.5902896e-07, 3.206842e-06, 2.0007824e-06, 3.2796427e-06, 3.7198074e-06, 3.4106756e-06, 3.0034248e-06, 4.7243475e-06, 4.2442607e-06, 3.299822e-06, 2.8187505e-06, 5.640287e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.7552276e-06, -5.7822185e-06, -6.3356138e-06, -7.1822415e-06, -5.835953e-06, -6.2780455e-06, -2.8947486e-06, -3.5656622e-06, -8.1250636e-07, -2.3570383e-06, 2.302133e-06, 3.649978e-07, 2.7236542e-06, 1.2515692e-06, 3.897326e-06, 3.3371891e-06, 3.7996024e-06, 3.2122655e-06, 4.807394e-06, 4.0237883e-06, 3.321408e-06, 4.3953714e-06, 2.8607938e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.690316e-06, -5.4835323e-06, -7.0981628e-06, -5.161525e-06, -4.166218e-06, -5.5098208e-06, -2.1112908e-06, -3.78838e-06, -1.543754e-06, -2.2847712e-06, 2.0181137e-06, 7.0969173e-07, 2.5110203e-06, 1.1727592e-06, 3.384177e-06, 4.494862e-06, 4.3521222e-06, 3.790668e-06, 5.0892095e-06, 4.10514e-06, 4.290623e-06, 3.918104e-06, 4.226692e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.2370725e-06, -6.9024554e-06, -7.694996e-06, -5.388756e-06, -3.6236688e-06, -5.7892303e-06, -2.7846193e-06, -3.953044e-06, -5.785421e-07, -1.746005e-06, 2.8665595e-06, 8.353974e-07, 2.6621067e-06, 8.873627e-07, 3.7541051e-06, 3.3232325e-06, 4.464588e-06, 4.411057e-06, 5.292827e-06, 5.2521273e-06, 4.9862438e-06, 4.316521e-06, 5.3346575e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8792216e-06, -6.2414724e-06, -7.329855e-06, -5.758712e-06, -2.4035453e-06, -4.8690326e-06, -2.3183457e-06, -3.8540056e-06, 1.8863045e-07, -1.1691061e-06, 3.2305497e-06, 1.614339e-06, 1.3292702e-06, 1.7769021e-06, 3.1931463e-06, 3.2034832e-06, 5.286213e-06, 3.6634256e-06, 4.4126964e-06, 4.248699e-06, 5.8080186e-06, 3.8745893e-06, 4.5465495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4065523e-06, -3.8805856e-06, -5.973423e-06, -5.063254e-06, -4.279592e-06, -5.3126173e-06, -3.384871e-06, -2.9951134e-06, -7.864975e-07, -9.672474e-07, 1.7046139e-06, 6.235901e-07, 2.1175374e-06, 2.132952e-06, 3.6904632e-06, 2.5086358e-06, 4.315518e-06, 3.7000532e-06, 3.7297673e-06, 4.9880523e-06, 5.664054e-06, 3.953938e-06, 5.439863e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.453958e-06, -3.153536e-06, -4.962938e-06, -4.721769e-06, -2.8152817e-06, -4.3228174e-06, -1.6791553e-06, -2.690475e-06, 7.887931e-08, -3.1695095e-07, 2.0141324e-06, -5.970875e-10, 2.3723705e-06, 1.7603923e-06, 2.6823934e-06, 3.2719608e-06, 3.4266395e-06, 2.8823893e-06, 4.3351974e-06, 4.9440055e-06, 4.02058e-06, 3.614431e-06, 3.3006404e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.184888e-06, -3.3050064e-06, -4.5083216e-06, -3.8226663e-06, -2.5750878e-06, -4.3253303e-06, -1.0331528e-06, -1.8321992e-06, 4.211061e-07, -2.084987e-06, 2.776035e-06, 1.0166831e-06, 2.549368e-06, 1.1687274e-06, 3.5912124e-06, 3.4210989e-06, 4.2716774e-06, 3.919874e-06, 2.300043e-06, 5.201873e-06, 3.467527e-06, 3.2037335e-06, 3.2951575e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.6345805e-06, -2.4511412e-06, -5.070043e-06, -3.815973e-06, -2.0402026e-06, -3.5901824e-06, 5.445559e-07, -1.4494437e-06, 4.4329974e-07, -1.1357083e-06, 2.7872134e-06, 6.814197e-07, 2.7059632e-06, 7.507226e-07, 3.212463e-06, 3.6133697e-06, 3.884085e-06, 2.9056805e-06, 3.7796117e-06, 3.5581568e-06, 3.4657764e-06, 2.6132634e-06, 2.9169698e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.1083013e-06, -1.9184447e-06, -6.413262e-06, -3.015728e-06, -2.550751e-06, -3.0428903e-06, -4.490429e-07, -6.699386e-07, -4.2258068e-07, -7.1822205e-07, 1.7822e-06, 8.497965e-07, 1.5237329e-06, 5.4227564e-07, 2.493939e-06, 3.2255914e-06, 2.7792955e-06, 1.069347e-06, 2.304428e-06, 2.9938965e-06, 4.6385644e-06, 1.729681e-06, 1.5334053e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8878444e-06, -2.2182157e-06, -4.6094174e-06, -1.7034513e-06, -2.287959e-06, -2.4916985e-06, -6.144325e-07, -2.2257423e-06, -1.0577228e-06, 1.2678046e-07, 6.762962e-07, 5.387613e-08, 1.671837e-06, 8.607882e-07, 3.6196338e-06, 1.3628952e-06, 2.4999042e-06, 2.763896e-06, 2.7861402e-06, 2.6700595e-06, 3.166744e-06, 1.9923377e-06, 1.3807903e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6426407e-06, -1.6520006e-06, -3.2859257e-06, -2.4871438e-06, -1.5881849e-06, -1.3188235e-06, -7.130883e-07, -8.8925674e-07, 1.3535372e-08, -6.4973597e-07, 1.5338434e-06, -6.774984e-07, 9.735302e-07, 1.6938673e-06, 2.6880748e-06, 6.77991e-07, 2.5264173e-06, 1.186025e-06, 3.7452724e-06, 3.494093e-06, 2.0703837e-06, 2.3136372e-06, 1.3180131e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.1104946e-06, -2.971048e-07, -5.1696807e-06, -2.0694833e-06, -1.6380528e-06, -1.7709085e-06, -1.1530868e-06, -1.9121835e-06, -3.860156e-07, -2.1928722e-06, 4.0308205e-07, -1.4580618e-06, 7.392058e-07, 5.458885e-07, 1.3069468e-06, 1.2722162e-06, 1.4665534e-06, 2.7938152e-06, 2.8632144e-06, 1.0617963e-06, 2.4739745e-06, 2.2659e-06, 5.700441e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6025646e-06, -1.0069543e-06, -4.1761186e-06, -2.4550732e-06, -2.214153e-06, -2.3961634e-06, -2.1734718e-07, -1.9142458e-06, 4.9356606e-07, -1.0508875e-06, 7.9426525e-07, -3.4789696e-07, 1.7777782e-06, 1.6731661e-06, 1.2666792e-06, 1.2870262e-06, 1.144862e-06, 1.824493e-06, 3.1332424e-06, 2.561795e-06, 2.3515188e-06, 3.7231957e-06, 1.5735756e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.553766e-06, -1.4521363e-06, -3.865438e-06, -2.766486e-06, -1.7789605e-06, -1.94937e-06, -6.3777424e-07, -6.592645e-07, 6.573705e-07, -7.896001e-07, 7.2326156e-07, -5.165453e-07, 9.125441e-07, 1.0882552e-06, 7.5427437e-07, 1.7854254e-06, 1.3939713e-06, 3.0514648e-06, 2.2077415e-06, 1.554615e-06, 1.3539759e-06, 2.3386438e-06, 2.361763e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0976169e-06, -4.136973e-07, -2.525469e-06, -1.9427814e-06, -2.3048926e-06, -1.6306028e-06, -1.7335201e-06, -6.4400535e-07, 4.0316172e-07, -1.3891835e-06, 1.147622e-06, -4.837227e-07, -1.888865e-07, 3.397413e-07, 6.728693e-07, 1.9885892e-06, 1.2630483e-06, 2.7314736e-06, 1.5846856e-06, 4.0247238e-07, 2.556324e-06, 1.1926254e-06, -1.690137e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0186645e-06, -2.2777922e-06, -2.7411656e-06, -1.2103815e-06, -1.232833e-06, -1.04028395e-07, -3.614939e-07, -1.3441056e-06, -1.2956322e-06, -1.0564469e-06, -4.927463e-08, -5.36177e-07, -3.5819068e-07, -1.6377504e-06, 1.9041104e-07, 2.0658416e-07, 5.42306e-07, 1.0214562e-06, 2.4007184e-06, 6.8704986e-07, 1.2680657e-06, 8.7850265e-07, 1.2474715e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.0821786e-07, -1.3361289e-06, -8.825011e-07, -1.5558569e-06, -1.4678194e-06, -1.6089359e-06, -7.5554203e-07, -5.899405e-07, -2.4243727e-06, -1.934726e-07, -9.955492e-07, -1.863575e-06, -5.283057e-07, -4.2536846e-07, -3.004919e-07, -7.109322e-07, -1.8323712e-07, 1.1533959e-06, 1.9627475e-06, 4.180488e-07, 8.2639595e-08, 7.5287045e-07, 6.766473e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.6687785e-07, -8.307147e-07, -1.0347924e-06, -1.2874198e-06, -8.931154e-07, -6.5337133e-07, -5.762562e-07, -2.9798505e-07, -2.1763205e-06, -3.683466e-07, -2.3601801e-06, -1.5422102e-06, 1.5556225e-07, -2.1235337e-06, -6.190937e-07, -4.0359424e-07, 9.059338e-07, -1.8109422e-08, 4.5011387e-07, -4.0342318e-08, 2.4343552e-07, 5.3476526e-07, -3.1703016e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.465369e-06, -6.0457205e-07, 1.0465703e-06, -5.7432965e-07, 3.1987675e-08, 1.3223553e-06, -1.9628266e-07, 6.862376e-07, -9.821999e-07, -1.2554495e-06, -1.5103404e-06, -1.7613293e-06, -1.1440712e-06, -5.1449626e-07, -8.769629e-07, -1.6228757e-06, 1.8965108e-07, -1.0370792e-06, -2.1861038e-07, -6.59232e-07, 2.9645042e-07, 1.5238172e-06, -7.312133e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0001567e-06, 9.725516e-07, 1.1414442e-06, 6.27914e-07, 1.6568637e-07, -2.1135297e-06, -7.248032e-07, -5.8345614e-07, -8.1340306e-07, -8.647941e-07, -1.4519769e-06, -4.505003e-07, -1.5540775e-06, -1.58125e-06, -1.9107508e-06, -1.0430111e-06, -6.5140216e-07, -1.3639899e-06, -4.973891e-07, -1.2939095e-06, -1.3159558e-06, 3.352387e-07, -1.2464693e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0245297e-07, 1.6278095e-06, 6.0074944e-07, 2.3395146e-06, -2.8581655e-07, -4.3973245e-08, 9.46245e-07, -7.0916997e-07, -8.500193e-07, -1.911075e-06, -2.2203478e-06, -1.0398064e-06, -2.8378468e-06, -2.9233888e-06, -2.189669e-06, -1.3077856e-06, -3.5516232e-06, -1.2128045e-06, -2.3161783e-06, -2.3840112e-06, -2.1647718e-06, -1.0452457e-06, -1.6474922e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1614255e-06, 1.4794582e-06, 2.1232433e-06, 2.1031817e-06, -4.85917e-07, 8.4562214e-07, -3.5338033e-07, -1.0417282e-06, -1.4033321e-06, -7.4641866e-07, -2.5820032e-06, -1.7908001e-06, -2.1485052e-06, -1.1686438e-06, -2.9298674e-06, -2.016754e-06, -1.66159e-06, -1.3232489e-06, -2.9191654e-06, -1.7664968e-06, -2.6156943e-06, -1.441075e-07, -1.0587976e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.8983204e-06, 1.6621345e-06, 2.3950124e-06, 2.438201e-06, 1.1223481e-06, 2.7972637e-06, -5.7842647e-07, -2.2106573e-07, -1.1875047e-06, -1.2825124e-06, -2.3673188e-06, -1.904697e-06, -2.5089892e-06, -1.2435255e-06, -3.9979486e-06, -2.844864e-06, -2.7518163e-06, -2.583588e-06, -2.696838e-06, -2.0520397e-06, -1.2639999e-06, -3.8091284e-06, -4.6652673e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.5082821e-06, 3.3203996e-06, 3.5768303e-06, 3.068226e-06, 2.4936458e-06, 1.1491322e-06, 1.10667855e-07, 6.8968217e-07, -9.317993e-07, -1.2139502e-06, -2.8438901e-06, -2.3787084e-06, -2.8657796e-06, -2.5558406e-06, -3.0813362e-06, -3.7847014e-06, -3.627232e-06, -2.6440825e-06, -3.568935e-06, -2.396876e-06, -1.5905192e-06, -3.707023e-06, -1.4699282e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.890188e-06, 3.1156437e-06, 4.7275375e-06, 3.7592058e-06, 1.8432645e-06, 2.5316738e-06, -2.9779304e-07, 1.892152e-07, -1.7776699e-06, -9.294596e-07, -1.8810329e-06, -1.7713977e-06, -3.6212316e-06, -2.6694477e-06, -3.595651e-06, -3.4002508e-06, -2.9009416e-06, -3.1462116e-06, -4.4833487e-06, -4.0915456e-06, -3.888576e-06, -4.2315814e-06, -1.9922613e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1374236e-06, 3.182643e-06, 5.5886694e-06, 4.9666837e-06, 3.1232494e-06, 3.4136006e-06, 6.0906376e-07, 8.5449165e-07, -7.791339e-07, -5.784075e-07, -3.1938853e-06, -2.6327552e-06, -3.0194462e-06, -1.5222648e-06, -3.9607867e-06, -4.659413e-06, -4.110296e-06, -4.2637434e-06, -4.5191173e-06, -4.1585704e-06, -5.0784915e-06, -3.634548e-06, -1.3337344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.6769917e-06, 3.794846e-06, 7.2223056e-06, 3.407236e-06, 2.9065714e-06, 3.4010227e-06, 1.020242e-06, -1.7379803e-07, -1.8116953e-06, -1.3614721e-06, -2.7806668e-06, -3.169535e-06, -3.6105007e-06, -3.6273811e-06, -4.2796355e-06, -3.0745414e-06, -5.0117446e-06, -2.9268988e-06, -3.389845e-06, -3.0242331e-06, -3.1220738e-06, -2.906011e-06, -3.7712512e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.4877282e-06, 4.918024e-06, 7.140141e-06, 4.5666693e-06, 3.4431775e-06, 3.0982567e-06, 1.6776712e-06, -1.5444482e-07, -1.1493677e-06, -1.1769646e-06, -2.9145776e-06, -2.1168667e-06, -4.364513e-06, -1.7806148e-06, -2.8978202e-06, -3.181634e-06, -4.358558e-06, -2.951482e-06, -5.1535826e-06, -3.5590524e-06, -3.425307e-06, -3.0909387e-06, -3.2273547e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.910802e-06, 4.435181e-06, 6.961566e-06, 5.080401e-06, 3.8599546e-06, 3.449812e-06, 1.924925e-07, 1.6817072e-06, -2.6093207e-07, -8.3971815e-07, -2.8848622e-06, -3.5710634e-06, -2.7217648e-06, -2.3687558e-06, -4.028042e-06, -3.959987e-06, -4.8627253e-06, -4.6212594e-06, -5.982407e-06, -4.5038455e-06, -4.8774746e-06, -3.8796734e-06, -4.0254686e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.769832e-06, 5.262964e-06, 7.534356e-06, 4.8185257e-06, 3.1489476e-06, 4.2342513e-06, 1.1759607e-06, 3.282495e-06, 2.5457075e-07, 9.378974e-07, -2.7355873e-06, -3.1841714e-06, -2.716905e-06, -3.6918248e-06, -4.275813e-06, -4.9667383e-06, -4.4395906e-06, -3.8554913e-06, -4.3142877e-06, -3.9709576e-06, -5.0237563e-06, -5.537135e-06, -3.9222837e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.5767445e-06, 6.952253e-06, 7.7711575e-06, 5.4798325e-06, 3.9824135e-06, 4.9637856e-06, 2.0676791e-06, 3.1038676e-06, 1.6990568e-06, 2.0009286e-06, -3.5073435e-06, -1.2175453e-06, -3.6725974e-06, -1.3477536e-06, -3.1784225e-06, -5.1927864e-06, -4.2466577e-06, -5.1887964e-06, -4.175827e-06, -4.45208e-06, -4.3490563e-06, -4.071105e-06, -4.2898423e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.2579284e-06, 6.9314465e-06, 5.2405503e-06, 6.4532396e-06, 4.2278753e-06, 4.4368435e-06, 3.0807241e-06, 3.5436606e-06, 1.4420457e-06, -2.644655e-08, -1.6528938e-06, -2.250107e-06, -2.6203857e-06, -1.960729e-06, -3.3329902e-06, -4.6197574e-06, -4.068307e-06, -4.9487135e-06, -4.4295557e-06, -3.5197968e-06, -4.754239e-06, -4.5663155e-06, -3.0676533e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.064909e-06, 5.5850987e-06, 3.1848256e-06, 6.643936e-06, 3.7631048e-06, 4.56043e-06, 2.7273227e-06, 3.4106415e-06, 1.3400233e-06, 2.2185632e-06, -2.0506195e-06, -1.0344615e-06, -2.5255674e-06, -2.2665506e-06, -3.0149226e-06, -3.1381917e-06, -4.860479e-06, -4.0289924e-06, -4.014662e-06, -4.9847195e-06, -4.186454e-06, -5.6521267e-06, -4.5756087e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.4174874e-06, 5.5372675e-06, 4.542053e-06, 6.5115655e-06, 4.7962685e-06, 4.1847384e-06, 2.1574915e-06, 4.743353e-06, 3.569762e-08, 1.5748105e-06, -1.0004762e-06, -3.620395e-07, -2.3475786e-06, -1.8675184e-06, -3.1088325e-06, -3.5645458e-06, -4.42211e-06, -4.5500037e-06, -3.8333637e-06, -3.7481045e-06, -3.893598e-06, -4.427644e-06, -3.70837e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.5334044e-06, 6.0588727e-06, 7.183253e-06, 5.8359e-06, 2.8203117e-06, 4.7539925e-06, 2.8207935e-06, 4.222573e-06, 1.0259578e-06, 1.4810887e-06, -2.5300174e-06, -5.048321e-07, -2.541463e-06, -9.19085e-07, -3.7863515e-06, -4.138277e-06, -4.6611967e-06, -3.9552156e-06, -3.4475354e-06, -4.208582e-06, -4.8978854e-06, -4.6493724e-06, -4.5464835e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.8433646e-06, 6.7050723e-06, 5.197985e-06, 5.116108e-06, 4.4546905e-06, 4.994158e-06, 2.989807e-06, 4.1100384e-06, 7.2495885e-07, 2.7265091e-06, -2.7341127e-06, 6.191041e-07, -2.8173208e-06, -2.2492195e-07, -2.36613e-06, -3.6978008e-06, -3.906133e-06, -4.31277e-06, -4.177758e-06, -3.5448165e-06, -3.8193593e-06, -4.520756e-06, -4.2165975e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.52951e-06, 5.838644e-06, 5.343405e-06, 5.929559e-06, 4.788543e-06, 4.6993828e-06, 2.2561608e-06, 3.4359414e-06, 3.0563825e-07, 2.6287905e-06, -2.8168479e-06, -1.1299051e-06, -3.5040155e-06, -4.3576495e-07, -3.6544575e-06, -3.066637e-06, -2.7400429e-06, -3.2619687e-06, -3.9629795e-06, -3.5682012e-06, -2.137178e-06, -4.042605e-06, -2.663292e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.443627e-06, 5.830586e-06, 4.5157367e-06, 5.6102936e-06, 3.9443485e-06, 5.1182246e-06, 2.2844388e-06, 2.6826128e-06, 1.6997556e-06, 3.1309253e-06, -1.7897767e-06, -3.1199654e-08, -2.7739225e-06, 1.8435344e-08, -3.31922e-06, -3.298014e-06, -4.582639e-06, -3.2984435e-06, -3.1915706e-06, -4.2308666e-06, -2.3001098e-06, -3.6084402e-06, -3.4440704e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.791198e-06, 5.6716353e-06, 4.9229175e-06, 4.8612524e-06, 3.8431544e-06, 4.437098e-06, 1.6168881e-06, 2.532041e-06, 5.8073715e-07, 1.896929e-06, -1.3525957e-06, 1.3472971e-06, -2.051017e-06, -6.016354e-07, -2.8896065e-06, -1.5185891e-06, -2.7344172e-06, -1.3438728e-06, -2.2150462e-06, -2.8871405e-06, -2.0800435e-06, -2.9409566e-06, -2.9809394e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.516548e-06, 2.7258845e-06, 3.4012344e-06, 4.7559747e-06, 4.1675667e-06, 3.8354883e-06, 2.695253e-06, 3.0535948e-06, 1.6579883e-06, 2.4428637e-06, -1.863263e-07, 6.714687e-07, -1.3717622e-06, -1.1089136e-06, -1.8815224e-06, -1.7523118e-06, -2.501952e-06, -8.1976225e-07, -1.8964745e-06, -1.5998671e-06, -7.11824e-07, -2.547852e-06, -1.557441e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.579628e-06, 2.4339035e-06, 3.8594058e-06, 3.6611937e-06, 2.3923512e-06, 4.0295354e-06, 2.1307314e-06, 1.0925653e-06, 1.4641492e-07, 1.6664369e-06, 6.6826004e-08, 1.5896594e-06, -1.43631755e-08, 3.525069e-07, -2.4397316e-06, -1.7817881e-06, -1.0358285e-06, -8.9591026e-07, -1.0678951e-06, -2.1021008e-06, -3.1876772e-07, -2.5313295e-06, -1.796193e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2047816e-06, 2.3773528e-06, 2.548583e-06, 2.1886035e-06, 2.6104124e-06, 3.9631113e-06, 3.1930394e-06, 1.8283197e-06, 1.069328e-06, 2.0435211e-06, 7.564921e-09, -2.0599953e-07, -7.6225706e-07, -7.6767896e-07, -1.4201322e-06, -1.6806109e-06, -1.2083805e-06, -2.1411752e-06, -3.2053532e-07, -2.07903e-06, -2.3479952e-06, 7.089786e-09, -1.9161434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7210613e-06, 3.6785136e-06, 4.071155e-06, 2.6791108e-06, 2.8729842e-06, 2.9066848e-06, 1.6414372e-06, 2.3022167e-06, 3.5839224e-07, 3.2683062e-07, -4.2637237e-07, -7.072797e-07, -6.588128e-07, 7.2174936e-07, 9.722147e-08, -1.7378129e-06, -1.3337619e-06, -1.224481e-06, -1.7542077e-06, -1.6858289e-06, -9.284981e-07, -1.0832055e-06, -1.0491026e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3584447e-07, 2.4097455e-06, 1.88607e-07, 2.3525931e-06, 2.458472e-06, 2.7210574e-06, 1.153482e-06, 1.3136114e-06, 5.4451135e-07, 4.607137e-07, -1.6436346e-07, -2.972248e-07, -6.7639314e-07, 6.573597e-07, 1.0744109e-07, -2.8181722e-07, -1.2975917e-07, -9.378388e-07, -1.7700379e-06, -1.8129825e-06, -2.3034545e-06, -2.967136e-06, -1.5547358e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.731303e-07, 8.6432856e-08, -1.9871577e-06, 4.7186603e-07, -5.3017242e-08, -7.9173697e-07, 6.180666e-08, -3.433192e-07, -6.422895e-07, 2.5014387e-07, 8.467292e-08, 3.403215e-07, -1.098063e-06, -5.2099364e-07, -3.9058565e-07, -6.539801e-07, -8.618844e-07, 5.0475908e-08, 6.245593e-07, -1.1650206e-06, -6.0082783e-09, 1.5325014e-07, -1.0852032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2864887e-07, -1.1824996e-07, -2.3744753e-06, -4.3210366e-07, -1.6575828e-07, -2.7343458e-07, -1.8426861e-06, 5.017421e-07, -1.5368523e-06, -6.1584876e-07, -4.614513e-07, -9.304823e-07, 6.6330486e-08, -7.323888e-07, -7.5281594e-07, -7.2697975e-07, -2.591533e-07, 2.4401197e-07, -1.2944611e-06, -7.2455856e-07, 2.1679998e-07, 1.0943189e-06, -1.5428952e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.0879133e-07, -9.4317943e-07, -4.58032e-07, 9.943858e-07, 1.045169e-06, -6.041123e-07, 1.2031317e-07, 8.4373486e-10, -1.8969179e-07, 1.1665147e-06, 5.081355e-07, -9.82943e-07, -4.2930418e-07, -1.3188314e-06, -1.0484908e-07, 2.4647184e-07, 3.7325026e-07, -2.7986113e-07, -2.0072166e-06, -3.054389e-07, -1.5577246e-08, 1.0100002e-06, -5.2434314e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.690412e-08, -1.5249814e-06, -2.8253207e-06, 6.712599e-07, -1.4398738e-06, -1.300978e-06, -4.9535295e-08, -1.8542478e-07, -1.033375e-07, 2.0527412e-07, -5.1245763e-07, 1.081359e-06, -7.7317713e-07, -6.0760726e-07, -4.9549504e-07, 1.7549585e-06, 4.9824246e-07, 1.0773982e-07, -6.7379966e-07, 6.0690434e-07, 8.34581e-07, 8.2135944e-07, 5.3493585e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9629576e-07, 3.3311417e-07, -1.8646756e-06, 7.8692057e-07, -1.0665194e-06, -3.7214767e-07, -7.6386084e-07, -1.7536022e-06, -1.1950672e-06, 1.6554205e-07, -8.0704507e-07, 8.719754e-07, -4.6410003e-07, -1.433582e-07, -4.4550814e-07, 8.180121e-08, 6.5984443e-07, -5.007067e-07, 8.1549445e-07, 2.4729192e-07, 1.840539e-06, 2.853151e-07, 1.3950537e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.07282e-08, -7.5997214e-08, -2.3874898e-06, 2.004544e-07, -1.208886e-06, 2.6172114e-07, 2.8278182e-08, 3.387906e-07, -1.4111062e-07, -2.3353675e-07, 2.9718632e-07, 1.9195966e-07, -4.4260725e-07, 1.9862778e-06, 8.26765e-07, -2.7726317e-08, 6.576982e-07, -5.461071e-07, 5.6091807e-07, 1.6355132e-06, 3.5303236e-07, -1.4295031e-06, 6.4173037e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1946989e-07, -7.786683e-07, -8.3626196e-07, -8.24213e-07, -7.286679e-07, 3.8986832e-07, 6.79606e-08, -5.304264e-07, -6.968303e-07, -5.925622e-07, 7.0698286e-07, 1.4298173e-06, -5.7871944e-08, -9.1402e-08, 2.1824104e-07, -6.960067e-08, -1.6533108e-06, -4.4189466e-08, 6.9718124e-07, 8.152148e-07, -8.7338805e-07, -7.3692524e-07, -5.244667e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0585822e-07, -1.0050549e-06, -1.3995661e-06, -9.885583e-07, 8.540101e-08, -4.7064756e-07, -2.1196367e-08, 7.443801e-09, -7.246787e-07, 2.8888587e-07, 9.382386e-07, 5.002496e-07, 2.200301e-07, -4.631592e-07, 1.0949525e-06, 1.03080986e-07, 6.358373e-08, -7.778947e-07, 7.669124e-07, 4.4762893e-07, 2.7970378e-07, -2.284858e-06, -1.7921313e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2320886e-06, -1.4048112e-06, -1.8013607e-06, -4.7598255e-07, -3.3226004e-07, 8.013971e-07, -2.368198e-07, -7.560942e-08, -1.155443e-07, 1.0839929e-06, 7.044739e-07, 1.1711684e-06, -4.2191465e-07, 1.1178486e-08, 6.036345e-07, 3.1060767e-07, -5.0236565e-07, -8.5530735e-07, -7.1570116e-07, -1.0485302e-07, 1.0664617e-07, -6.1685955e-07, -1.7566089e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.1313365e-07, -1.6155195e-06, -1.0855654e-06, -1.2293085e-06, -6.65354e-07, -5.939085e-08, 3.2758973e-07, 1.2408184e-06, -8.5658485e-08, 2.1989595e-06, 8.8054156e-07, -1.6396321e-07, 5.583827e-07, -4.445222e-07, 3.3527544e-07, 4.5386406e-07, 6.69862e-07, -4.116181e-07, 3.7412153e-07, 3.272691e-07, -3.416934e-07, -2.5474044e-08, -5.3851e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8113701e-06, -5.0537784e-07, -2.2449901e-06, -4.6099927e-07, -1.9239735e-07, -7.3424826e-07, -1.0148519e-06, 1.925217e-07, 1.6128074e-06, 6.1275966e-07, 1.504397e-06, 8.825758e-07, 8.990057e-07, 1.2938015e-06, 2.8200782e-08, 1.4824121e-07, -2.1280982e-07, -4.467757e-07, 8.630903e-07, -1.2144178e-06, -6.9868713e-07, -1.1858579e-06, -2.4292575e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9045068e-06, -5.0411654e-07, -1.0885071e-06, -1.2202156e-06, -6.097399e-07, 4.1269556e-07, -3.928298e-07, -2.4087015e-07, 1.4090378e-06, -7.2476304e-08, 1.1471119e-06, 5.9442762e-08, 1.0010292e-06, -1.4567954e-07, 3.7426386e-07, 8.7330824e-07, 9.514561e-07, -1.2020806e-06, 9.0454245e-07, 1.9780817e-08, -3.2249102e-07, -1.6728565e-06, 3.788949e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1777337e-06, -4.7952517e-07, -1.58056e-06, -2.305144e-06, -1.3159629e-06, -1.2800314e-07, -2.0371108e-06, -1.0242632e-06, 6.608103e-07, -1.2952341e-06, 6.3096616e-07, -2.4338428e-07, 2.0728086e-07, 1.7397227e-07, 7.283839e-07, 5.9391164e-07, 8.2510337e-07, 9.901493e-07, 2.531487e-07, 4.2664962e-07, -2.0970643e-07, -1.8500633e-06, 2.4660335e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.3036576e-06, -2.9148755e-06, -1.2182528e-06, -3.2515927e-06, -1.052562e-06, 7.833647e-08, -2.1508535e-07, -3.75977e-07, 9.617635e-09, 2.5075292e-07, 1.074111e-06, 5.0917447e-07, 9.982068e-07, 1.6585767e-07, 3.1001298e-07, 1.0326439e-06, 6.1308333e-07, -4.3082004e-08, 2.443399e-07, -2.4929335e-07, 3.378933e-07, 1.9724641e-07, 8.278318e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.0269724e-06, -2.4383373e-06, -4.084854e-06, -1.8911729e-06, -1.2295645e-06, -5.436774e-07, -5.8585795e-07, 6.678791e-07, -2.5987805e-07, -4.925073e-07, 1.5272526e-06, -2.1872492e-07, 8.1914243e-07, 5.890567e-07, 1.8843887e-06, 5.093606e-07, 1.5027963e-06, 5.981269e-07, 8.888884e-07, 9.849734e-07, 4.9957544e-07, 1.4777508e-07, 1.5399729e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5018262e-06, -2.2063239e-06, -3.4477753e-06, -2.9905764e-06, -1.6240824e-06, -1.7758141e-06, -3.061686e-07, -6.281867e-07, -1.8170239e-07, -2.0255998e-06, -5.4440875e-08, 3.3939807e-07, 6.2897425e-07, 6.119604e-07, 1.0706599e-06, 3.9336177e-07, 1.3032395e-06, 5.526599e-07, -5.7613045e-07, 5.04903e-07, 1.4839361e-06, -8.4428257e-07, 2.6544535e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.851253e-07, -1.5508899e-06, -1.6601693e-06, -2.2679487e-06, -6.625504e-07, -5.993973e-07, 1.7362919e-07, -5.1104917e-07, -6.0888993e-07, -1.6459758e-06, 1.8330409e-06, 1.0850255e-06, 1.2561941e-06, 1.4655586e-06, 1.9144882e-06, 1.1756324e-06, 6.175554e-07, 9.957196e-07, 1.0430194e-06, 4.646497e-07, 1.2283169e-06, 8.328284e-07, 2.7615135e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 1.0 0.016558 0.500000 2077ed06-98a5-4d14-bfa3-6d54b63252fe 1046.416334 40.0 136207 56.014453 0.333333
2 probe00_2 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405] 11.121867 385 [12.666037501188397, 12.824101673336628, 15.051334106622248, 14.793994229951755, 16.056696718217186, 21.875012163446872, 34.51831149436141, 17.777454661471026, 22.426333631619762, 14.043853121355232, 15.863738914761383, 24.413901981895236, 54.54519898818794, 30.524853936394525, 39.701117454859336, 54.608381216648276, 18.33897153894153, 27.955537520435044, 27.667399447659946, 21.654273439789982, 17.575639988721644, 30.27568922878094, 17.249125202047818, 22.40125334345029, 51.02531243493367, 21.72792977649305, 18.148557354027115, 30.258535504975544, 33.25912872516818, 38.634794355690524, 61.626020654820294, 33.69638250959532, 38.02502199889561, 29.479667469899425, 26.077059526265685, 38.840979237250735, 20.8212671532896, 33.51421545825417, 12.978780896325091, 24.00951635475197, 19.37542805538097, 20.681918989174353, 81.03372545000535, 30.534298297830627, 22.455417763789583, 58.434234724490956, 33.09769007142619, 20.749301328497793, 46.15937016524469, 54.76654613911939, 26.725883754967228, 28.46586538320572, 94.404193507453, 20.505574521428468, 42.85447956724288, 15.533476739454553, 18.044729566734528, 63.81788710788196, 29.999308849531033, 28.763542025511054, 33.35941585825655, 18.230712045887774, 27.945394448967505, 25.45865142750925, 22.121970831523004, 15.626314890878223, 21.0376317427984, 13.981590730258374, 20.40960525932087, 17.44915908012907, 18.569230513888122, 12.24513274642933, 20.35390472366902, 17.77333959958178, 16.52568292901568, 20.47941999929681, 17.345221383393337, 14.448226972486733, 21.12218481572201, 14.679743363800757, 31.20433504905948, 26.541523748546147, 32.121526735227235, 15.564179419019286, 11.637536334919574, 16.481147360963487, 26.778593183630583, 12.49666443240782, 32.23432260970229, 32.23432260970229, 18.02935532915151, 17.652205000330845, 25.410422117099873, 18.09721132583708, 14.482378715053066, 20.634339976303593, 20.236224421202696, 22.877383668053316, 21.7616850599966, 14.175180513012274, ...] [0.12673378350168624, 0.19225456577921926, 0.19815643777063063, 0.23316754280442692, 0.26230979574815855, 0.2709402737814155, 0.2769716117119927, 0.2778046694372105, 0.2975981209883865, 0.29959745952890937, 0.3018633765415019, 0.31012730917566295, 0.3115268461540289, 0.3128930608233862, 0.31469246550985674, 0.31575877939813557, 0.3182246302647804, 0.32025729111431195, 0.32272314198095675, 0.32628862904488914, 0.330620529216022, 0.3326198677565448, 0.33335295855473646, 0.3347524955331025, 0.33855123876009585, 0.3420167588970021, 0.3437161966564465, 0.3473150060293876, 0.34801477451857055, 0.3491144107158582, 0.34978085689603244, 0.35134700541944197, 0.3525132862347469, 0.3545126247752698, 0.3567118971698449, 0.35994416114369016, 0.36091050810494285, 0.3626099458643872, 0.3630431358815005, 0.3637095820616748, 0.36540901982111923, 0.37070726695350475, 0.3721401262408794, 0.3729065393480798, 0.37370627476428897, 0.37710515028317776, 0.3786046541885699, 0.38170362892638027, 0.38266997588763296, 0.3841028351750077, 0.385002537518243, 0.39190025548304674, 0.39429946173167413, 0.3953990979289617, 0.39843142804875464, 0.4007311266358776, 0.4013645621515044, 0.403064836430292, 0.40376494936861623, 0.40463175586368444, 0.4138665789072954, 0.41846732107342643, 0.41996756308412136, 0.44693858056528113, 0.447405322524164, 0.45047248396825135, 0.45170601628815604, 0.4782436305217817, 0.48047732418214967, 0.4881118890810193, 0.5013806961978322, 0.5053146641369878, 0.509748712746375, 0.5322523429067987, 0.5365187707239222, 0.54681785130749, 0.5662827803068546, 0.6036127811275537, 0.6266107280617343, 0.6388429694020884, 0.7344577340395372, 0.8747469850288503, 1.1163871842570672, 1.1181525615723502, 1.4167366109137405, 1.641513137225043, 1.8229911819333102, 1.8946772147434616, 2.175071089419616, 2.2091946849831645, 2.2235239292139513, 2.2311884086862324, 2.5699372440000015, 2.6904630728007572, 2.838507858035307, 3.0752317780945866, 3.0804703695175877, 3.098922223383317, 3.1082507342101504, 3.525248785565007, ...] 0.627968 2.600801 16.426813 NaN 37.502293 10.884063 0.998179 -0.600000 [237.03944396972656, 300.99200439453125, 214.8876495361328, 234.83392333984375, 81.88595581054688, 291.9986572265625, nan, 214.19635009765625, 282.77423095703125, 168.98727416992188, 230.26644897460938, 282.9826354980469, 320.0, 274.0174255371094, 299.6703186035156, nan, 158.56411743164062, 301.1614990234375, 212.83126831054688, 257.8773498535156, 101.45594787597656, 299.5512390136719, 204.22975158691406, 208.04627990722656, nan, 303.1392517089844, 244.2354736328125, 319.37921142578125, 261.3663330078125, 262.57843017578125, nan, 300.0, 320.0, 300.0, 260.37255859375, 300.0, 222.868408203125, 280.64599609375, 237.90692138671875, 160.0, 295.59228515625, 226.88729858398438, nan, 47.42801284790039, 202.69808959960938, nan, nan, 196.84405517578125, 320.0, nan, 137.28280639648438, 257.8389892578125, nan, 52.059478759765625, 320.0, 260.3065185546875, 216.46661376953125, nan, 245.54129028320312, nan, 240.310546875, 198.4339599609375, 291.7747802734375, 180.0, 257.53857421875, 147.73069763183594, 257.7181701660156, 188.7036590576172, 215.87171936035156, 235.23159790039062, 235.78475952148438, 228.85720825195312, 316.12664794921875, 274.2130432128906, 309.26806640625, 270.88458251953125, 218.53330993652344, 122.34810638427734, 318.786376953125, 283.2757568359375, nan, 249.37489318847656, nan, 145.741455078125, 226.23057556152344, 119.57415771484375, 276.55560302734375, 154.2358856201172, 160.0, 160.0, 168.86256408691406, 254.8386993408203, 156.1259765625, 237.79779052734375, 294.5348205566406, nan, 259.1128845214844, 272.9500732421875, 254.9708251953125, 259.9810791015625, ...] mua [[8.01392e-09, 3.729827e-07, -2.8481008e-07, 3.6191148e-07, -7.652284e-07, -7.451809e-07, -1.2923192e-08, 1.7473039e-07, 2.6233832e-07, -2.7077634e-08, -6.311082e-07, -6.713833e-07, 5.140965e-07, 8.4266617e-07, -4.887689e-07, 1.9132848e-08, 2.1063543e-06, 8.530642e-07, 1.4134438e-06, 8.8652223e-07, 1.2369602e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.7433365e-07, -3.07769e-07, -1.2790325e-06, -1.251726e-06, 1.5691762e-06, 3.426461e-07, 7.816195e-07, -4.5130648e-08, 3.9023402e-07, -8.4318475e-07, -5.4480034e-07, 1.1025445e-06, 7.857275e-07, 1.759347e-07, 3.640618e-07, -1.01042644e-07, 6.0645283e-07, 1.4222275e-07, 7.454373e-07, -1.9617048e-07, 1.1659095e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.015223e-07, 1.4741643e-06, -9.59456e-07, -4.6191025e-07, 3.597373e-07, 2.7048463e-07, 2.4989922e-06, 2.9710455e-07, 4.243013e-07, -2.7070476e-07, -3.5292356e-07, 4.984274e-08, -2.7239821e-08, 9.370398e-07, -6.585768e-08, -2.3761115e-07, -8.499679e-07, 8.3545174e-08, -2.4468613e-07, -3.9774264e-08, 9.0086735e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.14165e-07, 3.1862777e-07, -1.3673989e-06, -5.591763e-08, 5.487744e-07, 4.9903673e-07, -1.9791248e-07, 1.0280462e-06, 3.2570284e-08, -6.2366024e-07, 3.5942276e-07, -6.013564e-07, 1.0294442e-06, -3.829233e-08, -1.4743489e-07, -1.6558613e-06, 1.0981698e-06, -6.4982e-07, 4.5469602e-07, -7.919956e-07, 7.530273e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.209486e-07, -4.5467254e-07, 1.5489178e-06, -4.797097e-07, 8.0879875e-07, 2.8425555e-07, -5.297384e-07, -1.4925701e-09, 1.2736821e-07, -4.5907734e-07, -1.983285e-06, -6.31885e-07, 3.6743643e-07, -5.047542e-07, 7.05818e-08, -3.805624e-07, 1.8229024e-07, -4.8561753e-07, -1.3409579e-06, -4.437169e-08, 3.0439742e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.0049077e-07, -7.4107885e-07, 1.3311997e-07, -4.6131782e-07, 5.567071e-07, -9.9016795e-09, -2.2280241e-07, 3.0769673e-08, 3.2815376e-07, -2.5262507e-08, -7.429416e-08, 1.2918401e-06, -3.634867e-08, 1.5277507e-07, -1.3129827e-06, 1.10307376e-07, -1.0751453e-06, -8.0401935e-07, -6.267019e-07, -6.546978e-08, 9.4916766e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1389395e-07, 6.073489e-07, 1.7262512e-06, 1.0869305e-06, 3.433078e-07, -1.0819111e-06, -2.4962324e-08, -3.7632515e-07, 2.9681098e-07, 2.8018382e-08, -1.395593e-06, -3.972839e-07, -7.181771e-08, -1.0225777e-06, -1.16443104e-07, -8.37372e-07, -7.1514796e-07, -1.5281307e-06, -1.7757618e-06, -1.1313741e-06, -1.2604424e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0632201e-06, -7.653722e-08, 1.5090473e-06, -3.209767e-08, -6.8221186e-07, 7.249796e-07, 3.2027066e-07, -3.1669063e-07, 5.755094e-07, 1.0806448e-06, -8.3059433e-07, -1.1231409e-06, -4.5968542e-07, -6.294093e-07, 9.369662e-07, -4.8424005e-07, -1.4275281e-06, -1.5102246e-06, -1.477199e-06, -1.8733942e-06, -5.079362e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.74938e-07, -5.382609e-07, -7.756785e-07, -2.93127e-07, -9.744487e-08, 5.9890283e-07, -9.3507435e-07, -4.64026e-07, 9.2031473e-07, 1.620457e-08, -1.5449956e-06, -3.0545002e-07, -6.946732e-07, 2.0162753e-07, -1.2876106e-06, 6.413562e-07, -1.9409767e-06, -7.297126e-07, -5.1993817e-07, -4.8504216e-07, -1.0427913e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1008598e-06, -1.5166411e-06, 5.837052e-07, -3.2058483e-07, 1.539172e-07, 1.3937911e-06, -3.6726604e-08, -1.000941e-06, -1.6154644e-06, -1.9412448e-06, -5.347279e-07, 9.671467e-08, -7.379912e-09, -3.5860415e-07, -9.145799e-08, -1.9905339e-07, -1.3961021e-06, -2.7968892e-07, -2.4448832e-07, -8.985426e-07, -7.380419e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.6713008e-09, -4.4741718e-08, -1.3706291e-06, 8.457712e-07, -1.2340953e-06, -3.8549624e-07, -4.413224e-07, -1.3726051e-06, -8.422544e-07, 1.9178994e-07, -1.8742203e-06, -2.165882e-06, -1.2929927e-06, -7.511929e-07, -6.7236806e-07, -1.124999e-06, -2.2699037e-06, -5.0837343e-07, -8.405917e-07, -7.235317e-07, -1.9525388e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2260146e-07, -3.5735988e-07, -2.9189982e-07, -7.109673e-07, -1.4807983e-06, -7.6459906e-07, 7.747941e-07, -4.1655676e-07, -1.3569143e-06, 1.5496449e-06, -1.0788494e-06, 3.0587165e-07, -8.387427e-07, -2.0960201e-06, -7.4687216e-07, -1.8668322e-06, -2.831542e-06, -2.0303746e-06, -1.289123e-06, -1.2829995e-06, -5.958317e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.474384e-07, -1.0624966e-08, -1.661067e-06, 1.1740103e-07, -6.8033887e-07, -1.1183491e-06, -3.6513524e-07, -1.4781176e-06, -7.464841e-07, -1.5265645e-07, -1.7987206e-06, -5.1823076e-07, -3.865796e-07, -5.535594e-07, -1.8127866e-06, -5.8388537e-07, -2.84393e-06, -9.805229e-07, -2.1670069e-06, -1.6678707e-06, -2.430622e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6068027e-06, -4.4597212e-07, -9.170285e-07, -3.8100313e-07, 1.2704459e-07, -3.4370757e-07, -1.3480133e-07, -9.302778e-07, -1.429187e-06, -1.096769e-06, -8.1219224e-07, -7.554992e-07, -6.195777e-07, -1.4210352e-06, 6.846398e-07, 6.011753e-08, -1.681183e-06, -3.610797e-07, -1.8131195e-06, -2.6979678e-06, -1.8592509e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.5078534e-07, -1.303576e-06, 4.6203075e-07, -6.767424e-07, -2.515676e-07, 5.131083e-07, -1.2364826e-06, -2.2796416e-06, -2.3175876e-07, -1.2057859e-06, -1.3583556e-06, -5.7362564e-07, -9.959514e-07, -1.185962e-06, -1.4324223e-06, -7.2183536e-07, -2.2449003e-06, 7.649384e-08, -2.2434283e-06, -9.796115e-07, 7.905387e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1283474e-06, -5.8140995e-07, -1.43856e-06, -1.4774208e-06, 1.598795e-07, -9.7822394e-08, -1.4948221e-06, -1.467346e-06, -1.4311902e-06, -1.9825347e-06, -2.0072846e-06, -4.3471343e-07, -1.5760781e-06, -8.3734415e-07, 1.5057006e-07, -1.9327996e-07, -1.4557428e-06, -4.9719688e-08, -1.9279287e-06, -2.9216417e-06, -1.4455449e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.019169e-07, 1.3429026e-07, -1.9854024e-06, -1.0448732e-06, -2.3482557e-06, -6.8316456e-07, -6.9996565e-07, -2.1054448e-06, -4.0986646e-07, -1.7347528e-06, -1.3969589e-06, -5.204041e-07, -2.9590185e-06, -1.5294282e-06, -2.5352358e-07, -2.1771748e-06, -1.7696382e-06, -3.087403e-06, -1.0805547e-06, -1.983343e-06, -2.421261e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7377786e-08, -1.8494543e-06, 6.314126e-07, -1.6450651e-06, -2.349797e-06, -2.230045e-06, -1.2073563e-06, -1.5873424e-06, -7.9880056e-07, -2.5716797e-06, -1.7739042e-06, -8.2898873e-07, -2.3125444e-06, -1.7377267e-06, -6.5834513e-07, -1.5720523e-06, -1.5397618e-06, -1.7194167e-06, -2.3428206e-06, -1.814137e-06, -2.4722508e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.9017074e-07, 2.3923724e-07, -2.041732e-06, -5.76616e-07, -2.1344858e-06, 5.630875e-07, -8.964842e-07, -1.2521364e-06, -9.779138e-07, -2.0801058e-06, -2.1482394e-06, -1.0557254e-06, -2.263794e-06, -2.3586367e-06, -1.4315665e-06, -2.0145137e-06, -1.0504546e-06, -2.8329612e-06, -6.354519e-07, -2.6756475e-06, -1.2089646e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.1857962e-07, -2.3645018e-07, -1.6397507e-06, -1.2182024e-06, -2.3649116e-06, -1.898128e-06, -5.9744445e-07, -2.9384398e-07, -7.7353707e-07, -2.0910845e-06, -1.937727e-06, -8.630751e-07, -1.8809951e-06, -1.1725785e-06, -5.215161e-07, -2.8100153e-06, -1.6068808e-06, -3.4026857e-06, 9.4621505e-08, -2.779655e-06, -1.4688578e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.5862805e-07, 4.7371884e-11, -2.947952e-07, -1.2643693e-06, -2.360774e-06, -1.7457654e-07, -2.7988594e-06, -1.855899e-06, -1.9996362e-06, -2.6494895e-06, -1.5522401e-06, -1.6013125e-06, -3.0640608e-06, -2.2231297e-06, -1.312275e-06, -1.8659409e-06, -2.8059846e-06, -2.7132303e-06, -1.246618e-07, -1.3905101e-06, -1.7769744e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.6398738e-07, -7.390212e-07, -2.696456e-07, -1.9381716e-06, -1.4087904e-06, -2.901461e-06, -3.3423748e-06, -2.0469307e-07, -2.5192478e-06, -2.0538707e-06, -1.3348346e-06, -1.8571247e-06, -9.023166e-07, -1.9594745e-06, -1.0119021e-06, -2.9458997e-06, -1.0493197e-06, -1.3528467e-06, -1.1604947e-06, -1.4951679e-06, -1.8073031e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4166792e-06, -5.626045e-07, -1.9035485e-06, -2.3786447e-06, -2.196628e-06, -1.1678801e-06, -7.756315e-07, -1.0533165e-06, -3.0409242e-06, -2.0549405e-06, -1.7739384e-06, -2.6845132e-06, -1.2182458e-06, -9.2952564e-07, -1.6788616e-06, -1.5316209e-06, -1.6041663e-06, -1.2944613e-06, 2.7453686e-07, -9.853474e-07, -1.2960159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1878063e-06, -2.1117426e-06, -1.771305e-06, -1.9615595e-06, -2.151069e-06, -2.1995652e-06, -3.6671355e-07, -2.0932553e-06, -1.9383142e-06, -1.4879802e-06, -2.729407e-06, -1.5387927e-06, -2.8145773e-06, -2.4273768e-06, -1.7815041e-06, -1.2559208e-06, -1.3877186e-06, -1.4606961e-06, -9.747812e-08, -1.0178494e-06, -1.1892486e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.521119e-07, -7.757975e-07, -2.5744496e-06, -1.1532177e-06, -1.6783458e-06, -1.6709212e-06, -1.3643496e-06, -1.3410511e-06, -2.5969384e-06, -1.9006582e-06, -1.3500373e-06, -2.197401e-06, -1.3675105e-06, -1.6423797e-06, -2.5699346e-06, -2.376139e-06, -1.8237738e-06, -1.0501768e-06, -7.483279e-07, -1.1999939e-06, -1.4552763e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.8245304e-07, -7.404998e-07, -2.7297579e-06, -1.1750897e-06, -1.983096e-07, -1.7682673e-06, -6.092616e-07, -1.5448961e-06, -3.322521e-06, -2.3609e-06, -8.057167e-07, -2.2230674e-06, -7.468236e-07, -1.7769845e-06, -1.1744123e-06, -1.2141174e-06, -2.9060488e-06, -4.4793362e-07, -6.39787e-08, -2.1702417e-06, -1.7938676e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4059088e-07, -1.1139384e-06, -3.3405372e-06, -2.392997e-06, -1.2725925e-06, -1.916668e-06, -5.7486113e-07, -1.5807939e-06, -3.3454403e-06, -9.601658e-07, -4.5139552e-07, -1.8682033e-06, 2.6651833e-08, -1.5843771e-06, 2.3538195e-07, -1.1361047e-06, -1.0942409e-06, -1.3433382e-07, -2.876095e-07, 2.1709596e-07, -5.0161367e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.758198e-07, -1.8451286e-06, -2.6897392e-06, -1.0607632e-06, -8.5359534e-07, -3.0896624e-06, -1.3144756e-06, -1.1794805e-06, -2.812565e-06, -7.957649e-07, -6.0214404e-07, -1.1828454e-06, -2.134946e-06, -1.7229917e-06, -9.3223787e-07, -1.6317103e-06, -1.1654643e-06, -1.3233957e-06, -1.1123283e-08, 1.5320536e-07, -1.5425794e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.168391e-07, -1.2935106e-06, -1.870264e-06, -2.563497e-06, -2.745499e-07, -1.2850267e-06, -1.499872e-06, -8.684914e-07, -2.7438698e-06, -1.5282701e-06, -9.884538e-07, -6.97478e-07, -2.788359e-07, -2.0318407e-06, 4.1646658e-07, 9.1597906e-07, -8.8614445e-07, -1.5706842e-06, -1.524218e-06, -3.8173354e-07, -2.0940022e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.99553e-06, -6.734657e-07, -2.9157072e-06, -2.2609497e-06, -1.1152506e-06, -1.0399217e-06, -2.3518396e-06, -2.4766614e-06, -2.6495059e-06, -5.499461e-07, -7.2346666e-07, -1.2076462e-06, -1.5097418e-06, -1.637846e-06, -9.90679e-07, -8.294397e-07, -4.6975703e-07, -1.391096e-06, -2.494678e-07, -9.999948e-08, -8.27971e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7922237e-06, -1.5455839e-06, -3.639035e-06, -2.8495424e-06, -4.1577053e-09, -1.9848137e-06, -1.790557e-06, -6.936003e-07, -1.2996641e-06, -5.2674955e-07, -8.3508826e-07, -1.6914273e-06, -8.1099915e-07, -1.4474706e-06, -6.289347e-07, -1.1945774e-06, 1.0668299e-07, -1.4122227e-06, -8.8795815e-07, 1.9374863e-07, -6.636918e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9350878e-06, -1.5747926e-06, -5.024285e-06, -1.6998358e-06, -9.2743835e-07, -1.8759181e-06, -1.8357234e-06, -2.046279e-06, -2.2153015e-06, -1.1373663e-06, -4.6167574e-07, -1.2628927e-06, -1.1879611e-06, 1.2456839e-07, -1.0822628e-06, 1.2621746e-07, 8.532995e-07, -1.7773706e-06, -1.5423744e-06, -1.3684115e-07, -2.0683258e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7700474e-06, -4.9947954e-07, -2.4346143e-06, -5.577215e-07, -2.509932e-07, -1.6200133e-06, -1.5078842e-06, -1.6996811e-06, -2.4782425e-06, -1.677987e-07, -1.1896566e-06, -1.3192745e-06, -8.181509e-08, -2.608224e-07, 3.501023e-07, -8.4777525e-07, 7.3366687e-07, -2.2853883e-06, -7.1120064e-07, -5.384512e-07, -1.3287665e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.5298202e-06, -1.1918178e-06, -2.440435e-06, -9.972063e-07, -1.4031464e-06, -1.7180841e-06, -8.9872464e-07, -6.6546147e-07, -1.3103427e-06, 6.929267e-08, 1.2858462e-06, -3.5739212e-08, 4.659119e-07, -1.917094e-07, -8.054984e-08, -2.5253718e-07, 5.206738e-07, -3.400815e-07, 5.6584474e-07, 5.155979e-07, 6.312808e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2975689e-06, -4.0433292e-07, -5.3837357e-07, 2.8633485e-07, -1.7185655e-06, -1.3080264e-06, -7.565029e-08, 8.5337626e-07, -4.0959186e-08, 1.17076524e-07, -8.740169e-07, 4.603794e-08, 2.198645e-07, -2.8480116e-07, 1.4987045e-06, 9.47615e-07, -1.2293374e-07, 1.967572e-06, 6.5279147e-07, 8.549564e-07, 4.1983287e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.129029e-07, 4.896485e-07, -1.0301484e-06, -1.224481e-06, -1.1255195e-06, -1.1749755e-06, -2.1203519e-07, 6.708476e-07, 8.9111445e-08, 2.5170064e-07, -2.3104855e-07, 4.514361e-07, 1.2927171e-06, 2.3470043e-06, 1.419512e-06, 1.8573916e-06, 1.6189761e-06, 3.3520691e-06, 1.0536774e-06, 1.218204e-06, 3.4709306e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.247185e-07, 1.8951377e-08, -1.1845543e-06, -1.5503654e-06, 4.2319094e-08, -1.2202831e-06, 9.309455e-08, 2.6147936e-06, 2.2548095e-06, 6.287139e-07, 7.54865e-07, 1.16618e-06, 2.0209984e-06, 6.3810097e-07, 2.046305e-06, 2.462641e-06, 3.6120982e-06, 2.8582635e-06, 1.9707136e-06, 2.523579e-06, 3.1828215e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8375808e-06, -4.8082946e-08, 1.456099e-06, 1.8714977e-06, 1.4335715e-06, 2.694342e-06, -9.695982e-08, 3.1726863e-06, 1.6731408e-06, 1.2776886e-06, 1.3838945e-06, 1.9741426e-06, 1.463038e-06, 1.9420443e-06, 2.4265212e-06, 3.9112165e-06, 3.5939806e-06, 3.2500684e-06, 2.3469097e-06, 2.9582225e-06, 2.3603084e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1610117e-06, 2.376837e-06, 3.1243685e-06, 2.0865314e-06, 8.7438013e-07, 3.8456474e-06, 2.4672108e-06, 3.1858206e-06, 2.6670032e-06, 1.496916e-06, 3.7608536e-06, 2.9969274e-06, 1.6830891e-06, 3.356623e-06, 2.850033e-06, 3.6914184e-06, 4.3236214e-06, 4.0005507e-06, 3.522023e-06, 3.389374e-06, 2.3848631e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0788801e-06, 7.1988825e-07, 4.468913e-06, 2.879734e-06, 1.8985521e-06, 2.2227177e-06, 2.6617618e-06, 2.8737372e-06, 3.4640489e-06, 3.3529975e-06, 2.9459502e-06, 3.867362e-06, 4.1481835e-06, 4.3320006e-06, 4.491485e-06, 4.6574683e-06, 5.790649e-06, 4.1202475e-06, 4.8569486e-06, 4.400477e-06, 3.3517786e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0492774e-06, 2.45121e-06, 4.4001667e-06, 4.1405074e-06, 3.34521e-06, 3.2272094e-06, 3.2411438e-06, 3.5112957e-06, 4.8987085e-06, 3.1155644e-06, 3.9923325e-06, 4.47596e-06, 4.1736844e-06, 4.5159604e-06, 3.7822042e-06, 5.0450417e-06, 4.340273e-06, 4.82607e-06, 4.220512e-06, 3.3796177e-06, 3.5758324e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6975857e-06, 4.1893327e-06, 4.58044e-06, 3.3670806e-06, 3.2884786e-06, 4.9074706e-06, 3.7099405e-06, 4.1044805e-06, 5.4045695e-06, 3.9855177e-06, 4.079614e-06, 4.791578e-06, 3.955779e-06, 6.3715597e-06, 4.8613233e-06, 3.9870984e-06, 4.3211026e-06, 4.488985e-06, 4.7961685e-06, 5.667541e-06, 4.6774057e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3202869e-06, 3.4140369e-06, 4.3984464e-06, 4.459127e-06, 4.456995e-06, 3.4292016e-06, 4.6911255e-06, 5.419238e-06, 5.21678e-06, 4.0527802e-06, 4.5833467e-06, 4.72792e-06, 4.257474e-06, 7.19292e-06, 5.7792195e-06, 4.670612e-06, 4.8122374e-06, 5.566092e-06, 5.8570895e-06, 6.379387e-06, 5.4206344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.436872e-06, 4.3044793e-06, 3.7382383e-06, 4.6005944e-06, 4.220621e-06, 3.95618e-06, 3.4978639e-06, 3.956524e-06, 5.2612395e-06, 3.5769626e-06, 4.4463713e-06, 3.85418e-06, 5.7262864e-06, 4.190003e-06, 4.538637e-06, 5.053294e-06, 4.282877e-06, 4.3216114e-06, 5.230231e-06, 5.698317e-06, 4.493244e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.6197306e-06, 3.1985164e-06, 3.7349496e-06, 5.071157e-06, 4.56769e-06, 3.489665e-06, 3.227483e-06, 4.655844e-06, 5.3788026e-06, 4.4625403e-06, 3.9186716e-06, 4.10176e-06, 5.9230933e-06, 3.0042584e-06, 4.576106e-06, 4.94318e-06, 4.165565e-06, 3.942042e-06, 3.8188095e-06, 5.7490706e-06, 5.2240352e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3180495e-06, 2.514346e-06, 3.968663e-06, 4.0999694e-06, 5.39995e-06, 5.6680005e-06, 2.8409327e-06, 3.6592878e-06, 4.901987e-06, 3.2219846e-06, 3.5133696e-06, 3.3441838e-06, 4.5044153e-06, 3.834514e-06, 4.410052e-06, 5.7249517e-06, 3.6992133e-06, 5.0131684e-06, 2.9994526e-06, 5.1012717e-06, 4.654168e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.5728114e-06, 2.4602355e-06, 3.6217652e-06, 2.5808026e-06, 4.428629e-06, 5.537545e-06, 4.4274793e-06, 3.0895649e-06, 3.5922533e-06, 4.302622e-06, 4.120272e-06, 4.6528858e-06, 4.5581164e-06, 4.6821115e-06, 4.695653e-06, 4.7121603e-06, 4.5587776e-06, 5.3048398e-06, 3.997785e-06, 3.9311117e-06, 3.6409815e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9171978e-06, 1.6254751e-06, 2.2789302e-06, 2.6617836e-06, 2.9978337e-06, 3.0878105e-06, 1.5130499e-06, 2.3061984e-06, 3.6600281e-06, 3.5474004e-06, 2.0233042e-06, 2.8807933e-06, 4.2577585e-06, 2.3877772e-06, 2.9528496e-06, 4.7329104e-06, 4.5880715e-06, 3.6133993e-06, 3.9009465e-06, 3.196435e-06, 1.7909633e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2137426e-06, 1.2656053e-06, 3.5784348e-07, 1.5237035e-06, 1.1071397e-06, 1.0108499e-06, 1.4089344e-06, 1.8496751e-06, 3.2800958e-06, 3.257761e-06, 9.3423677e-07, 3.385914e-06, 2.900355e-06, 3.056049e-06, 1.8858002e-06, 4.3874006e-06, 2.5554227e-06, 2.5814843e-06, 2.559339e-06, 1.9765205e-06, 5.009143e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1023573e-07, 1.5471918e-06, 3.5694842e-07, 3.725095e-08, 2.123314e-06, 1.2752809e-06, 2.291485e-06, 1.0919637e-06, 2.695354e-06, 1.9232125e-06, 1.1827775e-06, 2.1314597e-06, 2.308358e-06, 3.272718e-06, 1.4112815e-06, 2.3713405e-06, 2.2516092e-06, 1.6348965e-06, 3.3571596e-06, 7.9129245e-07, 6.70292e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.529776e-07, 1.4896993e-06, -9.534227e-07, 3.691443e-07, 9.455141e-07, 2.6574482e-06, 2.6624286e-07, -3.5096073e-07, 1.7339511e-06, 1.2624259e-06, 2.0524722e-06, 8.6785934e-07, 8.067176e-07, 6.747951e-07, 1.8499684e-06, 2.8446796e-06, -1.6017736e-08, 7.7420486e-07, 1.3641361e-06, 1.8472917e-06, 1.5247722e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.250192e-07, 3.7492714e-07, -1.9782951e-06, -6.9991916e-07, 1.7141431e-08, 1.0271558e-06, -3.3667163e-07, -9.914097e-07, 1.5829781e-07, 4.4533758e-07, 9.374264e-07, 1.5447337e-06, 4.2404096e-08, -6.615265e-07, 1.6054664e-06, 2.8122918e-07, 5.15838e-07, -1.3029205e-06, 2.2933017e-07, 1.6706178e-06, 6.091253e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.5402534e-07, 9.2007684e-07, -1.8669059e-06, 1.1754315e-07, -6.420453e-07, 3.49171e-07, -1.6307853e-06, -2.7719052e-08, -1.0426505e-07, 2.8861493e-07, 9.6068156e-08, 3.88739e-07, 1.1081806e-06, -1.3936722e-06, 1.6018782e-07, -1.6236313e-06, -1.1545684e-06, 1.2433193e-07, 5.611347e-07, 3.6774526e-07, -1.4960897e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2342624e-06, 1.7542965e-07, -1.3019112e-06, -6.8431956e-07, -2.7670076e-08, -2.3154296e-09, -8.064315e-07, 2.9865653e-08, -1.08056156e-07, -1.430026e-06, -3.6363167e-07, -6.202382e-07, -1.585439e-06, -8.1480323e-07, -1.2037394e-06, -1.7333607e-06, -1.4722641e-06, -1.4526347e-06, 9.299186e-07, -7.5553845e-07, -1.619643e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8186273e-06, -8.110342e-08, -7.5542755e-07, -2.4519017e-07, 1.4301936e-07, -6.2393906e-07, -6.728596e-07, -7.305587e-08, -1.0346096e-06, -4.5853074e-07, -3.2534956e-07, 1.2479375e-06, -2.0054665e-06, -7.6464966e-07, 5.150115e-07, -1.7807424e-06, -1.3122566e-06, -3.6713993e-07, -3.5320093e-07, -1.5999549e-06, -2.2442046e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2387093e-06, -4.1325976e-08, -1.4890976e-06, -4.939477e-08, -5.4197665e-07, -2.6020166e-06, -8.6284686e-08, -1.2966993e-06, -1.6116522e-06, -1.1079017e-06, 2.2829018e-07, -1.1708489e-06, -1.7757211e-06, -9.762546e-07, -5.509887e-07, -2.9818227e-06, -5.179965e-07, -1.0731121e-06, -1.454481e-06, -1.265085e-06, -1.99223e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.694415e-07, -3.6446306e-07, -2.4516235e-06, -1.4353267e-06, -1.4034533e-06, -2.5925995e-06, -9.359631e-07, -1.2873638e-06, 3.936692e-07, -9.547208e-07, -1.4161196e-06, -5.967027e-07, -1.4715671e-06, -1.905174e-06, -7.690778e-07, -2.0763196e-06, -1.0363891e-06, -1.6750002e-06, -7.444753e-07, -1.7217501e-06, -1.6311476e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5600743e-06, -6.7783947e-07, -3.327515e-06, -1.945375e-06, -8.940856e-07, -3.2764378e-06, -2.1929225e-06, -2.0209549e-07, -8.913083e-07, -2.6028479e-06, -9.872095e-07, -2.4527324e-06, -2.8273162e-06, -1.8283104e-06, -2.0410334e-06, -2.1238893e-06, -2.4931462e-06, -2.6988982e-06, -2.8829445e-06, -1.9171057e-06, -2.4784908e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.4372056e-06, -2.926033e-06, -2.7980964e-06, -1.6753631e-06, -1.7250597e-06, -2.202005e-06, -2.10486e-06, -1.9595213e-06, -1.796618e-06, -1.8246681e-06, -7.8055405e-07, -2.6806372e-06, -1.7339801e-06, -2.2298025e-06, -3.5911203e-06, -6.9143476e-07, -6.874584e-07, -2.0336133e-06, -1.1917942e-06, -3.5751027e-06, -1.4608945e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3808664e-06, -2.347845e-06, -4.2888346e-06, -2.3586713e-06, -2.050167e-06, -3.340004e-06, -2.7645656e-06, -1.9592037e-06, -3.5872422e-06, -2.6585599e-06, -1.4755094e-06, -3.4695686e-06, -3.2141443e-06, -8.332019e-07, -2.5967497e-06, -9.3779977e-07, -3.1112113e-06, -1.8415865e-06, -1.2652498e-06, -2.542571e-06, 5.0400608e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7654743e-06, -2.8576023e-06, -5.1754946e-06, -2.1288169e-07, -2.0857283e-06, -3.0119063e-06, -1.5743437e-06, -2.2348795e-06, -2.5394427e-06, -2.4696928e-06, -1.2742223e-06, -1.3203767e-06, -2.0358434e-06, -2.3655148e-06, -2.9318035e-06, -3.2698492e-06, -2.3367788e-06, -3.2738926e-06, -2.8198242e-06, -4.907711e-06, -1.4492769e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6494612e-06, -2.339765e-06, -4.7925223e-06, -1.8045475e-06, -1.2122599e-06, -8.195962e-07, -3.5329977e-06, -4.340976e-06, -2.1307806e-06, -2.8373584e-06, -2.764753e-06, -2.4702003e-06, -1.9155384e-06, -2.9513499e-06, -1.8477247e-06, -3.0222511e-06, -2.7935832e-06, -2.9989487e-06, -1.94634e-06, -3.914247e-06, -2.2999648e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.870098e-06, -1.1526317e-06, -5.5939804e-06, -2.4953583e-06, -4.6910163e-06, -2.4342723e-06, -2.8062345e-06, -3.676946e-06, -3.854502e-06, -2.7144702e-06, -3.714897e-06, -1.7481284e-06, -2.1883382e-06, -2.5318473e-06, -2.96223e-06, -3.8856606e-06, -4.686754e-06, -3.6217307e-06, -2.1322035e-06, -4.491388e-06, -1.8998469e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8505387e-06, -1.9459653e-06, -3.3900055e-06, -2.0906718e-06, -4.0147534e-06, -2.4071282e-06, -3.1744714e-06, -3.7259697e-06, -3.1173954e-06, -2.6767234e-06, -4.9172168e-06, -2.1742696e-06, -4.4429753e-06, -2.8228312e-06, -2.9941739e-06, -2.6596367e-06, -3.986058e-06, -4.368304e-06, -1.5175103e-06, -2.5488735e-06, -3.334569e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3197622e-06, -3.5262135e-06, -3.8079966e-06, -2.4604908e-06, -3.2723847e-06, -2.8848644e-06, -2.4137034e-06, -2.9095336e-06, -2.0962689e-06, -1.2306614e-06, -3.550345e-06, -3.0245465e-06, -4.0055365e-06, -3.7479213e-06, -2.3663647e-06, -2.588853e-06, -2.362734e-06, -2.6318671e-06, -3.6694041e-06, -2.7896021e-06, -3.864434e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1465225e-06, -2.6757539e-06, -4.257731e-06, -2.5032164e-06, -3.859411e-06, -1.8500331e-06, -2.7002377e-06, -3.3089857e-06, -3.047027e-06, -1.915953e-06, -2.6061962e-06, -3.0955116e-06, -2.930145e-06, -3.5824487e-06, -1.7396965e-06, -2.4287538e-06, -3.2143257e-06, -2.3777384e-06, -1.8119182e-06, -4.1868443e-06, -3.219942e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7563543e-06, -2.6305338e-06, -4.401833e-06, -2.0834404e-06, -9.719681e-07, -1.5180677e-06, -2.5942484e-06, -2.6955827e-06, -3.3160136e-06, -2.349812e-06, -3.3791378e-06, -1.6332795e-06, -1.9448876e-06, -4.407914e-06, -8.5821887e-07, -2.7651186e-06, -2.79105e-06, -3.058708e-06, -1.9439944e-06, -2.5613067e-06, -2.480495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5596287e-06, -1.8540975e-06, -2.2536883e-06, -2.165411e-06, -3.1803927e-06, -2.8695881e-06, -2.5686595e-06, -1.985702e-06, -3.4561574e-06, -3.749853e-06, -2.2811396e-06, -2.9159287e-06, -1.8572653e-06, -3.3353463e-06, -2.6876378e-06, -1.3606623e-06, -2.9936314e-06, -2.763532e-06, -1.6050215e-06, -2.4738588e-06, -1.8989265e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2372858e-06, -3.0724564e-06, -4.085461e-06, -2.4129158e-06, -2.69456e-06, -2.8471302e-06, -3.050045e-06, -3.0036704e-06, -2.4355054e-06, -4.870565e-06, -2.4364517e-06, -2.455131e-06, -2.4773503e-06, -2.6704874e-06, -3.0257659e-06, -2.261256e-06, -3.2928033e-06, -2.3187063e-06, -2.9094572e-06, -2.6477087e-06, -6.799817e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4616947e-06, -3.1634158e-06, -2.6639352e-06, -1.8313494e-06, -3.7065502e-06, -2.9932494e-06, -2.8449876e-06, -2.9281646e-06, -1.5976827e-06, -2.796308e-06, -1.6396124e-06, -2.847002e-06, -3.0702781e-06, -2.2363015e-06, -2.8742509e-06, -2.5066947e-06, -1.7578525e-06, -3.2247717e-06, -2.0548414e-06, -7.6348704e-07, -1.4730454e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7449541e-06, -1.5738447e-06, -1.3649151e-06, -2.7344481e-06, -1.953249e-06, -1.6082686e-06, -1.6536402e-06, -2.9099274e-06, -2.0166187e-06, -2.0590041e-06, -1.4612538e-06, -3.0968317e-06, -2.4558249e-06, -2.1351789e-06, -2.0613654e-06, -1.8906899e-06, -1.9466563e-06, -1.7590351e-06, -2.2427307e-06, -1.5114882e-06, -1.2228166e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5976826e-06, -2.6954124e-06, -2.2061101e-06, -3.438577e-07, -5.867486e-07, -8.8160635e-07, -1.379663e-06, -2.6467828e-06, -2.0470156e-06, -2.5838663e-06, -1.5078033e-06, -1.9600266e-06, -3.041111e-06, -1.9547142e-06, -2.1822075e-06, -2.5578063e-06, -1.5662077e-06, -2.535361e-06, -1.7232207e-06, -2.4705223e-06, -9.2168693e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.582573e-06, -2.2876666e-06, 5.5423943e-08, -1.7738344e-06, -1.4152483e-06, -1.5353348e-06, -1.5410108e-06, -2.6501527e-06, -1.5396668e-06, -4.2677794e-07, -2.046051e-06, -2.2817994e-06, -1.8084413e-06, -1.318951e-06, -7.574613e-07, -9.716605e-07, -1.0262428e-06, -1.3727972e-06, -2.042387e-06, -2.0976145e-06, -8.7706815e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.999547e-06, -2.1814471e-06, -1.210268e-06, -1.5029968e-06, -1.2456632e-06, -3.4210107e-06, -1.1503458e-06, -2.1065575e-06, -6.9679857e-07, -1.2689351e-06, -1.0334245e-06, -3.367275e-06, -2.562033e-06, -1.6863098e-06, -1.7611355e-06, -2.4053477e-06, -9.900003e-07, -1.6618262e-06, -1.8105594e-06, -1.4426009e-06, 5.247141e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8205443e-07, -2.4170165e-06, 1.1173108e-07, -1.2033497e-07, -8.420792e-07, -2.7799638e-06, -1.8243566e-07, -1.6958836e-06, -1.1738588e-06, -2.54133e-06, -1.9280742e-06, -2.2047764e-06, -3.02365e-06, -7.809696e-07, -1.19987e-06, -2.4916817e-06, -1.0596045e-06, -1.0526516e-06, -5.225843e-07, -3.3182516e-08, -3.5956145e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.299426e-08, -2.1103187e-06, -5.5223586e-07, 5.100987e-08, -1.4708638e-06, -1.8580022e-06, -4.5674255e-08, -9.884112e-07, -1.2863052e-06, -1.9537651e-06, -6.9381883e-07, -1.8311334e-06, -2.1503772e-06, -2.1988544e-07, -1.227942e-06, -2.5126506e-06, -6.773749e-07, -6.563698e-07, -1.3580326e-06, -1.1012398e-06, -3.6611507e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.9492756e-07, -9.4039126e-07, -9.937417e-07, -6.009551e-07, -1.4115474e-06, -1.909773e-06, -7.676335e-08, -2.0950264e-07, -2.5559502e-06, -2.7577855e-06, -1.3026972e-06, -1.0624062e-06, -1.1030857e-06, -9.830551e-08, -1.7737949e-07, -2.7133815e-06, -1.649719e-06, -2.3604866e-06, -9.43738e-07, 3.4199616e-07, -5.690546e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1417909e-06, -9.157487e-07, 1.4802104e-06, -1.6080766e-07, -1.2727514e-06, 7.46177e-08, -6.221269e-07, -4.6220404e-08, -1.0236618e-06, -1.1216673e-06, -1.1789073e-06, -1.1682165e-06, -7.5432683e-07, -5.633762e-07, -1.1500474e-06, -1.017253e-06, -9.518807e-07, -1.7183963e-06, -1.3549499e-07, -5.59938e-07, -5.04747e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.6290956e-07, -8.4954115e-07, 1.0218218e-06, -3.5093944e-07, -1.641136e-08, 1.7932825e-06, -3.9196152e-07, -6.379265e-07, -1.7366126e-06, -1.346014e-06, -2.3185828e-07, -2.1653636e-06, -1.6907823e-06, -2.9764894e-07, -2.8527333e-07, -9.285326e-07, -1.4547459e-06, -1.4991296e-06, -1.3249097e-06, -1.3023539e-07, 3.8802554e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.7623187e-07, -7.129546e-07, 2.4999918e-06, -1.0445245e-08, 2.2308623e-07, 8.6749947e-07, 5.8321586e-07, 9.342167e-07, 8.433818e-08, -9.3565166e-07, -5.8107355e-07, -7.808119e-07, 4.2188816e-08, 1.5032351e-06, 3.3829792e-07, -1.9197476e-07, -9.777316e-07, -1.0800919e-06, -8.082437e-07, -5.870386e-07, 2.3400901e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8841204e-07, 1.8963812e-08, 2.3180365e-07, -8.8113234e-07, -2.1457916e-07, 4.0809368e-07, 2.2825874e-07, 4.6698875e-07, -1.0216498e-06, -7.551431e-07, 1.8536653e-07, -1.1064321e-06, -1.217255e-06, -7.971976e-07, -7.1013164e-07, -1.8131911e-07, -8.198517e-07, -2.7321227e-07, -1.2167973e-06, -3.5364158e-07, 8.387076e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.8280735e-07, -1.0699746e-06, -6.30236e-07, -1.0211152e-06, -7.848057e-07, -4.67632e-07, -1.5011269e-06, -5.703471e-08, -1.2119804e-06, -5.5347306e-07, -9.581829e-07, -1.19341e-06, 3.27493e-07, -5.2997655e-07, -3.240644e-07, 6.987551e-07, -7.0995e-07, 1.9749646e-07, -4.6823698e-07, -1.2609105e-08, 3.873744e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.019918e-07, -4.8984487e-07, -6.0703064e-07, -4.527546e-07, -7.389681e-07, -6.784544e-07, 4.0890347e-07, -7.4822265e-07, 2.4411958e-07, -6.8376283e-07, 2.2658718e-08, -1.2098985e-07, -3.5657825e-07, 1.2662247e-06, 2.8182762e-07, 1.4530443e-06, -2.972086e-07, -4.6351065e-08, -1.0021655e-06, 6.6197015e-07, -6.622698e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.9347144e-07, 6.7208816e-07, -6.557341e-07, -1.1408321e-06, -1.8386359e-06, -2.0255634e-06, -5.04796e-07, -1.7543753e-06, -6.586148e-07, -1.219287e-06, -1.0127185e-06, -1.2781486e-06, -4.2375262e-07, 1.764108e-06, 4.3110282e-07, 1.0700717e-06, -8.1555385e-08, -4.4400554e-07, -9.686556e-07, 4.391498e-07, -1.0631265e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5852633e-07, -1.9471017e-07, 8.934464e-08, -8.9621653e-07, -1.2644671e-06, -1.0077554e-06, -7.511603e-07, -1.3760084e-06, 1.5076972e-07, 3.3671e-07, -1.2226412e-06, 6.9078067e-07, -1.2577075e-07, 1.7066787e-07, -8.6743245e-07, 1.2893518e-07, -7.753529e-07, -1.0102939e-08, -4.5408228e-07, -8.694806e-07, -3.1796662e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.4733243e-07, 1.4484684e-06, -1.2359448e-06, 1.2788444e-06, -9.3745217e-07, -1.5887558e-08, 2.1173435e-08, 4.501056e-08, -8.429822e-07, 6.952783e-09, 9.73504e-07, 2.679301e-07, -5.7711065e-07, -5.568828e-07, 1.1342485e-06, 7.566963e-08, 4.8162383e-07, 4.466596e-07, -2.8721007e-07, -6.51386e-08, -3.1537445e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.998449e-07, 3.8524496e-07, -4.5211186e-07, 4.758258e-07, -6.070558e-07, 6.253261e-08, -2.947539e-07, 6.5398103e-07, 8.855959e-08, 1.4777504e-06, 1.7051891e-06, 1.0072929e-06, 6.367991e-07, -4.6264796e-07, 5.938953e-07, 3.1408698e-07, 1.6213987e-07, 1.3896013e-06, 6.2596223e-07, 1.7649186e-06, 1.3905055e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.8663143e-07, 6.391641e-07, -1.1223142e-06, 1.15291e-06, 3.913524e-07, -4.0945355e-07, -1.0333997e-06, 1.4361719e-06, -8.897114e-07, -2.8241518e-08, -7.974045e-07, 3.722029e-07, 1.5166984e-07, -1.3923261e-07, -4.4608078e-07, 1.34539e-07, 3.446071e-08, 1.0594474e-06, 3.6703602e-07, 3.9679736e-07, 1.9913032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1033339e-07, 4.3930078e-07, -1.8812227e-06, 1.939739e-06, -5.5086016e-08, -9.169189e-08, 8.128426e-07, 1.1248665e-06, -1.6356562e-06, -3.8049603e-07, -2.9726266e-07, 5.130499e-07, -5.611613e-07, -1.2063488e-06, -2.570604e-07, -3.675919e-07, 5.091709e-07, -6.823222e-08, -6.483132e-07, -2.4315554e-08, 6.9352154e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8332494e-07, 1.1162765e-06, -2.6928672e-07, 1.6119377e-06, 2.4163745e-07, 6.5303306e-07, 3.8589303e-07, 2.546187e-07, 1.8669037e-06, -3.533408e-07, -9.508367e-07, 1.443673e-06, -7.445834e-07, 2.896002e-07, 6.7841654e-07, 4.4924042e-07, -1.18273114e-07, 7.679105e-07, -5.054435e-07, -6.834761e-08, -5.7765646e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.3445516e-07, 1.5821743e-06, 1.285306e-07, -3.6607958e-08, 2.8167403e-07, 1.1858957e-06, 2.8787954e-07, -4.0896126e-07, 7.0299376e-07, 5.4449833e-07, -1.0873848e-07, 4.0515823e-07, -5.094302e-07, -4.722684e-07, -2.3282969e-07, -4.6701928e-07, 5.475939e-07, 2.7438253e-07, -1.3968946e-07, 2.7022116e-07, 1.0256779e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.800317e-07, 4.0223927e-07, 2.8858318e-07, -3.0949397e-07, 1.0988899e-10, 6.1364045e-07, -1.5620981e-07, 3.6759081e-07, 8.208102e-07, 7.0657495e-07, 9.373099e-07, 1.8780277e-06, -8.159199e-08, -6.529445e-07, -1.4647657e-07, 4.6219674e-07, -5.7505993e-08, -7.1679295e-08, -2.983758e-07, 2.0213847e-08, -4.1398486e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5492986e-06, 1.9978334e-06, -1.5429398e-08, -3.055049e-08, 1.1253703e-06, 1.5957712e-06, 5.3394047e-07, 3.0766677e-07, 6.294156e-07, 7.4785623e-07, 1.8571556e-07, 1.8948433e-07, -3.1964228e-07, 7.655103e-07, 5.601044e-07, 6.999191e-07, 8.194017e-08, 1.1686059e-06, -1.9478382e-07, 4.9089897e-07, -1.2216153e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.3272943e-06, 7.5800426e-07, 7.397797e-07, 5.1914253e-07, 5.214682e-07, 1.3755401e-06, 1.4195024e-06, 7.2710986e-07, 5.48023e-07, 7.740301e-07, -7.8572737e-07, 5.53425e-07, 7.6948237e-07, 3.715254e-07, 8.0722634e-07, 1.0864968e-06, -1.2989669e-07, 6.5516394e-07, 4.633685e-07, 6.737117e-07, -1.7586517e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5356717e-07, 2.035069e-06, -1.1390559e-06, 1.3801292e-06, 5.7852776e-07, 1.3772831e-06, 6.986653e-07, 9.836546e-07, 8.9632685e-08, -7.684753e-08, -1.0409518e-06, 2.1941298e-07, 1.1914033e-06, -1.0690021e-06, 8.85605e-07, 1.2883338e-06, 2.8650834e-07, 1.168866e-06, 7.7520025e-07, 5.7449796e-07, 6.64136e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1908562e-06, 1.2364798e-06, -7.410209e-07, 8.7200306e-07, 2.09051e-07, 6.042857e-07, 6.1576316e-07, 2.0106836e-06, 1.8406017e-07, -1.3628951e-07, 5.4280855e-07, 1.108358e-06, 1.803315e-06, -3.74408e-07, 1.8650701e-07, 8.180859e-07, 4.116988e-07, 4.8923573e-07, 1.1191341e-06, 5.416975e-07, 5.054651e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1612403e-07, 5.649192e-07, 2.4333959e-08, 7.982445e-07, 1.041439e-06, 1.2252207e-07, 2.615634e-07, 1.6399867e-06, 2.8085088e-07, 2.123222e-06, 2.1148658e-06, 7.1452513e-07, -8.1537985e-07, 1.7579335e-07, 7.174938e-07, 3.3456323e-07, 6.175345e-07, 8.353072e-07, 1.1303987e-06, 6.4204255e-07, 9.594297e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.019138e-06, -6.666242e-08, 1.3234342e-06, -2.0568086e-06, 1.2197256e-06, 5.1784134e-08, 4.9837234e-07, 6.489406e-07, 9.623591e-07, -3.8996296e-07, 9.34421e-07, 8.2413715e-07, 5.237448e-07, 7.9217773e-07, -5.9611364e-07, 6.5130234e-07, 1.1226125e-07, -2.0070584e-07, 8.354673e-07, -1.2185454e-07, 1.3693234e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.9367927e-08, 7.732989e-07, 1.3068139e-07, 2.3563003e-07, 1.4726153e-06, 1.2569994e-06, -9.271868e-07, 6.8808953e-07, 1.1982672e-06, 3.986861e-07, 6.175809e-07, 1.1579853e-06, -3.5072804e-07, 9.111112e-07, 7.474051e-07, -3.183203e-08, 1.339971e-06, 1.1047595e-06, 1.3953163e-06, 1.0155842e-06, -1.2028613e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.1608233e-07, 1.4030174e-06, -5.297553e-07, -8.510447e-07, 6.312624e-07, 2.8289858e-06, 2.520911e-07, 8.533776e-07, 1.4601749e-06, 9.3666563e-07, 9.228303e-07, 9.2375e-09, 1.2312414e-06, 8.889326e-07, 6.697825e-07, 6.018854e-07, 2.1938524e-07, 1.4315108e-06, 1.0730853e-06, 4.125039e-07, -8.842849e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 0.0 0.415714 0.197652 21536526-ec98-464d-b310-4e7066115d53 102.753755 20.0 59631 94.404194 0.000000
3 probe00_3 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406] 31.205412 386 [31.845443443176965, 34.64403588128828, 36.39822690404859, 32.50967245367109, 32.58100661378993, 33.91387067109397, 33.135745313146444, 31.8741495620789, 31.623421194710843, 32.512582372097306, 31.50410424956673, 31.86742835021183, 32.19008562057368, 33.27456323920063, 45.53636680234785, 33.99289327197685, 32.115757166741865, 31.224542171399694, 32.10841034299249, 33.43233885163554, 33.22638495046215, 31.564288524230655, 34.78807478545231, 32.461691726579645, 37.9043381202715, 32.088117057560424, 32.88264620601389, 34.285315378606015, 33.533231115259184, 31.623945967835795, 32.74181767861428, 33.105026534965276, 32.48147876029117, 41.03856721736854, 32.3139505994674, 32.31028747726183, 32.890130911329415, 31.20563181749691, 33.22754562513852, 32.991599396423595, 35.43774391414622, 32.11297689814651, 32.00073718742091, 31.787831585792237, 33.462364106118244, 33.01324062850996, 31.363037001843615, 34.72906147513388, 32.45351143963182, 32.2181825910639, 33.11252564581757, 32.23064543829812, 32.17500096564851, 33.93763569088603, 33.853159565371264, 32.06628237969466, 34.17885640399021, 33.602511457422324, 31.674597893029947, 33.17960811465737, 34.175530782931666, 32.157471485341205, 36.65368646127653, 31.53597547068898, 32.51951143528053, 33.95146500617896, 31.96577700762981, 32.59046281970823, 32.0496913172108, 32.12783929621876, 36.840057064186915, 31.28256561554909, 31.53151181222613, 38.8023422392969, 32.17765981614828, 32.803028862256056, 42.38295364614952, 31.75682263894197, 36.61981287054416, 33.56083623956563, 35.82342540784821, 31.804430880011388, 48.455443034081114, 31.622663875063846, 35.654176814348126, 33.18105484213518, 32.15030164390064, 31.540801325504738, 32.268194498838994, 31.320921386148726, 31.478404771980717, 37.65267750888146, 31.238038101413235, 38.11647817051788, 45.51503426033498, 32.194693334404164, 36.74888647994479, 31.43311993819786, 32.77364774106006, 31.72208265806997, ...] [7.509102166024034, 20.12491334182722, 21.00548135655488, 23.588077226102502, 35.839867180795665, 36.76981749588345, 40.2689384567401, 58.869711267463316, 59.107833107681856, 71.63607159277426, 92.78191660476223, 106.55437422013486, 113.66305310602203, 158.17082318947564, 163.17519324646594, 173.4539439730131, 210.41761195760466, 222.67928065327365, 243.14985439876455, 266.9211062974987, 298.31154994729275, 306.50031704794617, 330.71274135422476, 340.33095609240127, 341.9530392278771, 344.0027902861064, 349.3651115825683, 355.35064391058864, 402.740046711372, 405.1842618454652, 405.43792248412024, 407.4302698680627, 424.908501029102, 425.0238043191146, 441.4685140000675, 448.56222225849814, 449.9928666973723, 451.00054580645644, 475.0410385229441, 487.21653350611325, 494.45341680481505, 517.3968216649223, 547.8848732440939, 555.4660459351204, 558.1710211992347, 566.0299772366611, 576.8067741453672, 585.690147778168, 588.716904546721, 591.0626450130534, 596.7104639758065, 598.6508781662337, 600.341706475282, 607.8316158686407, 613.6012060626533, 616.7093786386963, 628.1753430363127, 633.5834722596728, 656.4026667689881, 661.5272562437948, 662.626877290513, 664.6590717442377, 667.221456874691, 681.481954048348, 688.6688137022268, 695.4539752484038, 697.5060305256073, 710.9639958590841, 718.796052417768, 729.5663502976056, 744.4797223629025, 759.1672415681239, 799.2742807595238, 809.7820925525338, 819.5069991359426, 820.2080696810358, 848.4927836511564, 859.1546018081337, 867.2207062288096, 875.8329795676647, 879.1644509502926, 906.6646329057792, 913.1143523503364, 914.5588949737904, 928.4711445931194, 948.011019733344, 948.630447480615, 965.3235264718123, 977.1538546522399, 978.5673734665122, 1016.8916090089066, 1017.0172056766035, 1020.3331464587826, 1064.8597757329105, 1065.068469693131, 1078.521229144246, 1081.3071631989544, 1087.850925383044, 1091.3300634771338, 1093.4226793079717, ...] 0.000000 0.642773 32.722337 1.199066e+04 1.054319 0.090897 0.550091 0.166667 [172.04595947265625, 218.51046752929688, 215.8609619140625, 138.28070068359375, 191.37832641601562, 139.6981658935547, 136.12826538085938, 206.71047973632812, 166.01986694335938, 180.69583129882812, 197.1375732421875, 189.10781860351562, 137.4009246826172, 214.55062866210938, 219.88558959960938, 90.49961853027344, 149.7578125, 155.94515991210938, 175.73324584960938, 191.63140869140625, 225.6627197265625, 111.6369400024414, 152.96505737304688, 197.72842407226562, 214.92691040039062, 188.4022674560547, 137.43734741210938, 155.77755737304688, 164.6488494873047, 143.0633544921875, 178.2296905517578, 188.8980712890625, 205.09454345703125, 184.40606689453125, 202.57119750976562, 172.8087158203125, 174.171630859375, 152.26870727539062, 174.23046875, 134.1015625, 165.40252685546875, 166.8836212158203, 204.617431640625, 182.17745971679688, 157.91551208496094, 232.29830932617188, 174.54067993164062, 135.4385986328125, 125.48970031738281, 197.9787139892578, 152.55715942382812, 197.9102783203125, 240.5984649658203, 117.85294342041016, 201.37811279296875, 169.47764587402344, 213.89125061035156, 172.35073852539062, 144.58238220214844, 173.98703002929688, 202.5357208251953, 123.83631134033203, 172.97900390625, 209.14645385742188, 162.12403869628906, 139.39584350585938, 104.97158813476562, 161.51211547851562, 148.47447204589844, 185.8343505859375, 180.79299926757812, 211.67996215820312, 163.81338500976562, 196.6598663330078, 206.70526123046875, 249.62921142578125, 134.17254638671875, 234.35865783691406, 144.7981414794922, 167.5099334716797, 214.2908172607422, 154.05838012695312, 162.15823364257812, 184.54934692382812, 119.63664245605469, 155.7490692138672, 171.8406524658203, 190.5989532470703, 181.25677490234375, 228.80526733398438, 195.8942413330078, 182.71795654296875, 174.2191162109375, 195.50927734375, 201.5238494873047, 196.92079162597656, 272.2344055175781, 198.31314086914062, 170.11837768554688, 212.18045043945312, ...] mua [[-1.3306313e-06, 6.409854e-07, -1.5744581e-06, 2.5367348e-07, -1.5742773e-06, -1.6646775e-06, 1.8173628e-08, -7.7355855e-07, -9.2180073e-07, -7.533119e-07, -7.3628905e-07, -3.716091e-07, -9.0909e-07, -3.186709e-07, -4.963039e-07, -9.762629e-07, -5.738452e-07, -5.0224446e-07, -1.0128788e-06, -6.593482e-07, 1.4738097e-06, 4.5214324e-07, -1.4894891e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1818818e-08, -5.274904e-07, -3.9107118e-07, -4.1891423e-07, -1.8079595e-06, -2.7731046e-06, 3.2468654e-07, -3.5770466e-07, 3.246346e-08, -7.89823e-07, -7.402281e-07, -3.2122335e-07, 9.786023e-08, -4.8935175e-07, -1.1014232e-06, 1.6465228e-07, 6.3344686e-08, -6.6603064e-08, -1.2113271e-06, -8.503546e-07, 4.1417414e-07, -4.8226633e-07, 1.1681682e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5248428e-07, -4.819705e-07, -2.470033e-06, -1.2132436e-06, -1.5868476e-06, -2.6131588e-06, 8.447985e-08, 1.4541054e-08, -8.748555e-07, -1.3999357e-06, -1.0584392e-07, 1.7616658e-07, 5.979086e-08, -4.4308868e-07, -3.520778e-07, -3.2494816e-07, -1.333541e-06, -3.1266927e-07, -4.4621567e-07, -3.104942e-07, 2.7618944e-07, -3.7632168e-07, -3.5216402e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.2579423e-07, -1.2793835e-06, -3.8198364e-06, -2.9798198e-07, -2.0169373e-06, -1.4366321e-06, -1.8337087e-06, -2.7039277e-07, -1.5956918e-07, -1.4288576e-06, -6.503264e-07, 1.11855755e-07, 3.8940414e-07, -4.602812e-07, 2.025349e-07, -1.3292592e-06, 2.9980438e-08, 4.8760376e-07, -5.63281e-07, -4.620957e-08, 1.7365899e-07, 6.2876825e-07, -1.9167778e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1973288e-08, -9.317961e-07, -1.5416201e-06, 7.547127e-07, -1.2072815e-06, -7.570823e-07, -1.078178e-06, -1.0252335e-06, -5.3359895e-07, -4.9834875e-07, -2.6894558e-08, -1.2462773e-06, 4.295665e-07, -1.3120061e-06, -2.0240347e-07, -3.3093175e-07, -1.2474919e-06, 7.5097375e-07, -1.3725808e-06, 1.1721285e-07, 1.6412537e-07, -9.0587946e-07, 3.4739955e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.41476e-07, 4.3748614e-08, -2.9123921e-06, 5.1877315e-08, -2.0727084e-06, -7.9052427e-07, -3.575209e-07, -7.461654e-07, -8.908979e-07, -1.5379358e-06, -4.0101833e-07, -7.347593e-07, 3.4009093e-07, -4.996049e-07, 2.2317717e-07, -2.4950813e-07, -1.1129432e-06, -5.4608984e-07, -1.021309e-07, -1.3455121e-06, -1.1934358e-06, 7.881679e-07, -7.046651e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.8398955e-07, 6.9473197e-07, -2.2585496e-06, 2.9995196e-08, -2.1750543e-06, -8.606886e-07, -1.317414e-06, -1.1052323e-06, -7.079161e-07, -8.14694e-07, -9.824671e-07, 2.4926436e-07, 5.5766797e-08, -5.0611015e-07, -5.000615e-08, -5.3522876e-07, -4.5663427e-07, -4.8796796e-08, -5.9935786e-08, -1.1085999e-06, -9.803096e-07, -7.472572e-09, -4.9111e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.7099032e-07, 1.4140559e-06, -1.3968291e-06, 5.4855894e-07, -2.2773584e-06, -1.6958488e-06, -5.5046473e-07, -1.3913614e-06, -3.539767e-07, -1.4549561e-06, -9.1911284e-07, 5.212995e-07, 9.636581e-07, -8.256694e-07, 3.4894282e-07, -1.5286795e-06, 1.4143822e-07, -3.359242e-08, 2.3549542e-07, -7.9330715e-07, 6.3271216e-07, 4.906362e-07, 1.6247948e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.928666e-07, 9.891845e-07, 5.3976373e-07, 7.979578e-07, -6.166462e-08, -1.7979145e-06, 1.1296198e-08, -3.6413127e-07, 3.824374e-07, -9.763585e-07, -4.4504145e-07, -7.90598e-08, -1.7031073e-07, -8.56406e-07, 4.3345275e-07, 8.165566e-07, 1.1813131e-06, 6.0045954e-07, 9.798002e-07, -1.9856977e-08, 3.325568e-07, 9.2007315e-07, 1.8948703e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.010562e-07, -2.2966361e-07, -9.593238e-07, -3.3807233e-08, 4.0378848e-07, -6.01177e-07, -3.0602558e-07, -1.0623216e-06, -5.2828547e-08, -3.0019993e-07, -9.49413e-07, -2.1846586e-06, -1.777107e-07, -2.1210865e-06, -9.643691e-08, -1.1613888e-06, -9.115897e-09, -3.2263404e-07, -1.7452192e-07, 2.7169344e-07, 2.8671087e-07, 1.1193754e-06, 7.045741e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1440679e-06, -5.8166503e-08, -2.482377e-06, -3.79165e-07, 8.880905e-07, -1.3960481e-06, -2.3941757e-07, -7.25983e-07, -1.2182011e-06, -1.3680265e-06, 3.5184797e-08, -2.1388132e-06, -6.6016844e-07, -1.3250302e-06, -1.2208619e-07, -9.017558e-07, -6.377516e-08, 1.2597022e-06, 1.0133649e-06, 2.0503496e-08, -3.7724573e-07, -2.761065e-07, 1.6449097e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5465374e-06, 6.708923e-08, -4.66952e-06, 8.8286424e-07, -7.1783467e-07, -6.8466557e-07, -6.016162e-07, -9.326695e-10, -5.694935e-07, -1.1014396e-06, -9.929515e-07, -1.2850894e-06, -1.2873952e-06, -1.3257393e-06, 3.1687924e-07, -2.3216279e-07, 8.2810686e-07, 2.3645617e-07, -1.0156631e-06, 5.9461104e-07, 5.7692148e-08, -1.05139684e-07, -8.213368e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.038896e-07, 9.694345e-07, -3.8241596e-06, 7.961793e-07, 2.3449351e-07, 8.393691e-08, -1.5488391e-06, 2.9327487e-07, -6.3145865e-07, -3.436482e-07, -1.7603315e-06, 3.4274314e-07, -6.58208e-07, -1.2682061e-06, 5.2879784e-07, -6.071242e-08, 8.517245e-07, 3.349279e-08, -7.127969e-07, -3.4398693e-07, -4.777592e-07, -4.7729376e-08, 1.7129241e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4865138e-06, 1.954173e-06, -2.0115554e-06, 1.315882e-06, -4.3496624e-07, 1.2451903e-06, -1.808762e-07, -1.5256564e-06, -4.1075668e-07, 4.9778134e-07, -1.9884516e-07, 3.5178328e-08, 6.888855e-07, -1.897766e-06, -4.3388565e-07, 4.821804e-07, -1.7807048e-07, 2.340129e-07, -1.3567546e-07, -2.6535673e-07, 8.6348825e-07, 1.8858123e-06, -1.6507936e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.034722e-07, 1.0778806e-06, -3.4119075e-06, 1.1808474e-06, 4.617598e-07, 2.053176e-06, 4.958871e-08, -9.548455e-07, -4.413979e-08, -4.2582457e-07, 3.7787988e-08, -1.18174e-06, -1.6970179e-07, -4.616694e-07, -4.3422148e-07, 1.18344445e-07, -1.6188958e-08, 2.7570488e-08, -6.385895e-07, -7.7987454e-07, 1.9419376e-06, 7.6223847e-07, 1.1120836e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.843841e-07, 1.5260368e-06, -1.7890193e-06, -3.8091436e-08, -6.336163e-07, 6.68563e-07, -6.063376e-07, -6.621332e-07, 5.2815508e-09, -4.2731733e-07, -8.6888247e-07, -1.0345316e-06, 2.2659423e-08, -8.6152465e-07, -1.1565028e-06, 8.284661e-07, -7.683817e-07, -8.0200897e-07, 1.0496076e-06, 1.3525982e-07, 8.560372e-07, 1.193393e-06, 1.3552582e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1654365e-07, 6.2752235e-07, -2.0104644e-06, -1.2936123e-08, 6.587768e-07, 4.5595158e-07, -1.8704461e-06, 4.2249053e-07, -6.49331e-07, -4.445272e-07, 2.0259957e-08, -4.480495e-07, 6.22707e-07, -4.3817442e-07, -1.1136709e-07, 1.3460526e-06, 3.7215483e-07, -1.0367216e-06, 4.7903984e-07, -1.636075e-06, 1.1026416e-06, -7.341244e-08, 1.3883584e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.3416782e-08, 6.989239e-07, -2.1318524e-06, 5.0779434e-08, -1.3307929e-06, 7.355378e-08, 3.540941e-07, 6.511033e-07, 5.9187056e-07, 2.1708626e-09, 5.9625586e-07, 3.8429124e-07, -4.7412652e-07, 6.519158e-07, -5.547521e-08, 9.552741e-07, -1.9961857e-07, 4.0674854e-07, 6.859258e-07, 7.106382e-07, 7.989862e-07, 1.3313527e-06, 8.20423e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.7517757e-07, -5.9016138e-08, -2.1945689e-06, -3.316496e-07, -1.1124534e-06, 1.0675124e-06, 3.887937e-07, 2.7849285e-07, 4.7623405e-07, -9.475224e-07, -1.833713e-07, 2.2311104e-07, 5.395905e-07, -3.022145e-07, -3.1599404e-07, -8.526665e-08, 4.6642202e-07, 1.7567823e-09, 5.1784053e-07, -3.132856e-08, -2.5086032e-07, 3.1888442e-07, 4.757071e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.169781e-06, 6.1970184e-07, -2.6242724e-06, 4.2268405e-07, 9.859821e-07, 4.8824825e-07, -6.409405e-07, 3.002803e-07, -6.5087386e-07, -9.396587e-07, 5.2343887e-07, 2.3781732e-08, -4.7249887e-07, 1.2297273e-06, -8.860251e-07, 2.764583e-07, 6.300511e-07, 3.7583402e-07, 1.4572167e-06, -3.5034475e-07, 3.6669894e-07, 8.2138394e-07, 3.8320775e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.5909345e-08, 4.2517968e-07, -2.7057554e-06, 6.0497337e-07, 6.1388687e-07, 1.4177417e-06, -1.3210937e-06, 5.356002e-07, -3.360047e-07, -8.788336e-07, -6.5281e-08, -1.3775978e-06, -1.0001623e-07, 4.718482e-07, -1.5521762e-06, -8.121866e-07, 2.261493e-07, 6.782328e-07, 9.2450205e-07, 1.2753742e-07, 1.0357746e-06, -1.2674968e-06, -1.3702622e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0581381e-06, 3.212552e-07, -3.8821313e-06, -1.240204e-07, 2.264139e-07, 2.9942038e-07, -5.6828895e-07, -1.031653e-06, 5.508493e-07, -1.4806503e-06, 1.5281291e-06, 5.1383944e-07, 6.348219e-08, -5.219966e-07, -1.1508118e-06, -1.017868e-06, -1.3323953e-06, 1.8348508e-06, 9.610769e-07, 9.317914e-07, 4.0858419e-07, 6.471328e-07, -2.863281e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3233048e-07, 2.866538e-07, -2.253487e-06, -4.326439e-07, -9.4035386e-07, -5.3047336e-07, -1.4758191e-06, -5.2844956e-07, -1.2304624e-06, -3.6306362e-09, 5.679278e-07, 5.023206e-08, -8.3636394e-07, -1.2189373e-06, -1.8572982e-06, -5.197095e-07, -1.3764106e-06, -1.0662506e-07, 3.972729e-07, 9.707642e-07, 3.2467142e-07, 1.1624007e-07, 3.8876954e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.051924e-07, -4.905422e-07, -5.2741216e-06, 3.8073438e-07, -1.4015197e-06, -1.0050517e-06, -1.2335623e-06, 1.0728315e-06, -1.1525765e-06, -1.2826201e-06, -1.6449724e-06, -1.5239659e-06, -1.1698166e-06, 2.6819555e-09, -2.984369e-06, -1.0590772e-06, -1.400336e-06, 2.1111734e-07, -1.2514387e-06, 1.4968991e-06, -1.2360863e-07, 1.7331945e-06, 8.614617e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0043385e-08, -8.449309e-09, -4.229287e-06, 1.005494e-06, -8.777528e-07, -1.0432309e-06, -7.209103e-07, 1.6587525e-06, -3.8509967e-07, -1.8069479e-06, -1.9839804e-06, -1.2894538e-06, 1.0394417e-06, -7.895882e-07, -1.6239073e-06, -1.032437e-06, -1.4274999e-06, 1.3608606e-06, 7.73275e-07, 1.2859789e-06, -1.9266247e-07, 1.7014552e-06, 7.2941054e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.070134e-08, 1.7239998e-07, -4.438799e-06, 9.701861e-07, -1.1662403e-06, -8.750601e-07, -1.0218848e-06, 9.360406e-08, -2.3558225e-06, -1.0649272e-06, -1.5855136e-07, -3.250392e-07, -1.8069602e-07, -7.59097e-07, -7.8467264e-07, -3.9019844e-07, -7.1997033e-07, 8.4974374e-07, -1.7928869e-06, 1.9806596e-07, 2.6484418e-07, 1.4266573e-06, 7.992136e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.1735698e-07, 1.2550065e-06, -5.598496e-06, 5.870976e-07, -9.3785627e-07, -3.411797e-07, -1.210895e-06, 1.0100924e-06, -8.6559646e-07, -1.8063824e-06, -9.1636986e-07, -7.6908077e-07, 6.858534e-07, -5.349735e-07, -8.2568874e-07, -8.8632e-07, 7.3268586e-07, 1.5278778e-06, 6.859217e-07, 1.2827065e-06, 1.0255542e-06, 2.853263e-06, 1.2219425e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.205483e-07, 1.1974896e-08, -4.6751948e-06, 7.197131e-07, -1.663364e-06, -7.867876e-07, -3.246372e-08, 3.7539337e-07, 4.7433097e-08, -9.1392224e-07, -1.0414108e-06, -1.2076832e-06, 3.204225e-08, 2.7396075e-07, -8.721526e-07, 9.128047e-07, -9.95481e-07, 2.154543e-07, 6.5447887e-07, 1.4276525e-06, 1.235644e-06, 2.217326e-06, 1.9408444e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.250633e-08, -2.7802713e-07, -3.6666163e-06, 4.102032e-07, -2.0215996e-06, -1.2281727e-06, -2.409146e-07, -5.381931e-07, -1.5112423e-06, -4.509782e-07, -6.7405756e-07, -6.7777785e-07, -1.5364645e-08, 1.6649349e-06, 3.7732264e-07, 2.5525335e-07, -1.8766963e-07, 1.4503973e-06, 1.0009211e-06, 2.8820714e-06, 1.3525776e-06, 5.540335e-07, 2.171561e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.230093e-06, 5.634188e-07, -2.1849032e-06, 1.009966e-06, -9.3272774e-07, 4.2016137e-07, -8.847705e-07, -1.8659618e-06, -1.3594769e-06, 1.2968323e-07, -3.5355708e-07, 1.10576416e-07, -5.872812e-07, 1.1265925e-06, -5.734572e-07, 2.513251e-07, 1.1105269e-06, 1.2435104e-06, 1.2221274e-06, 9.3676215e-07, -1.8113886e-07, 1.401733e-06, 7.9887053e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8132251e-06, 9.861723e-07, -3.404945e-06, 1.3661966e-07, -1.9342638e-06, -4.1133103e-07, -1.3113531e-06, -1.7818215e-06, -3.1228587e-06, 3.6227846e-07, -1.752146e-06, 2.2731692e-07, -9.195534e-07, 2.3379278e-06, -1.6981602e-07, 2.6038805e-07, 7.65645e-08, 5.5629107e-07, 1.3537326e-06, 2.4444635e-06, 3.082465e-07, 1.7494581e-06, 2.3484258e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7816037e-06, 2.0480206e-08, -4.6070595e-06, -5.0578024e-07, -1.2260069e-06, 8.1731464e-08, -1.8375194e-06, -2.3094638e-06, -2.6195485e-06, -5.9644464e-07, -8.1946837e-07, -8.5534623e-07, -8.147582e-07, 1.7117904e-06, 8.141202e-07, -9.219366e-07, 1.8341123e-07, -3.3798804e-07, 1.3863092e-06, 9.797409e-07, 1.715513e-06, 1.7923261e-07, 1.650898e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7020428e-06, -2.4507863e-06, -5.9985523e-06, -5.645512e-07, -2.232733e-06, -4.8477966e-07, -1.0559239e-06, -9.826267e-07, -2.9239054e-06, 4.9869226e-07, -8.1628514e-07, 3.06777e-07, -1.8898102e-06, 9.352792e-07, -9.97494e-07, -1.1899403e-06, -3.1131574e-07, 2.605958e-07, -4.3834092e-07, 1.6284791e-06, 1.058145e-06, -3.5572242e-07, 1.9511508e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.9477577e-06, -1.0382957e-06, -5.8754576e-06, -2.5427301e-08, -5.684526e-07, -1.304456e-06, -1.0676918e-06, -2.100478e-06, -3.2106705e-06, 8.6492395e-07, -1.9214376e-06, 3.98722e-07, -1.4735529e-06, 4.522967e-07, -9.381897e-07, -4.3285898e-08, -3.7866977e-07, -3.0022562e-08, 1.3897292e-07, 1.6083739e-06, 2.6154797e-07, -1.2046748e-06, 1.566809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6148036e-06, -5.870239e-07, -5.4573707e-06, -2.35246e-06, -5.750956e-07, -1.7225696e-06, -1.0530955e-06, -2.9780592e-06, -3.7021437e-06, -3.799962e-07, -1.1751911e-06, -1.5849694e-06, -8.752031e-07, 1.6849797e-06, -6.3561424e-07, 5.2931546e-07, -7.5319304e-07, 4.691661e-07, 3.4210473e-07, 1.4257425e-06, 4.3694743e-07, -1.7391321e-06, 1.6828267e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2184641e-06, -1.4599138e-06, -4.687946e-06, -2.218609e-06, -1.0689209e-06, -9.542513e-07, -5.791678e-07, -2.1139367e-06, -4.1306503e-06, -1.9778934e-08, -1.4758523e-06, -1.1607935e-06, -3.2564546e-07, 1.0115373e-06, -8.544144e-07, 2.5188056e-09, -1.5854833e-07, -1.4307533e-06, 5.538586e-07, 1.340688e-06, -1.2873247e-06, -2.2837721e-06, 6.0626064e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1002397e-06, -1.5097223e-06, -5.5232363e-06, -1.14271316e-07, -1.7813963e-06, 3.6987626e-07, -3.978551e-07, -2.5934e-06, -3.6853326e-06, 4.5296417e-07, -2.2235104e-06, -5.7173384e-07, -1.5435826e-06, 1.0696986e-06, -4.4401278e-07, 1.2107563e-07, -3.5266345e-07, -1.7499916e-06, -9.155962e-08, 1.4305666e-06, 2.6814524e-07, -2.7822762e-06, -7.20635e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6101334e-06, -2.4037076e-06, -2.0448892e-06, -3.7530654e-07, -1.1581589e-06, -3.762908e-07, -6.288673e-07, -2.6230864e-06, -4.7068615e-06, 1.0427734e-06, -9.1457093e-07, -1.2589308e-06, -1.6277206e-06, 1.6003719e-06, 1.2939896e-06, -1.0271084e-06, 1.0231508e-06, -1.3482488e-06, -2.0156611e-07, 1.3856627e-06, 5.5790827e-07, -4.267478e-06, 1.0022014e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.85858e-07, -2.7631777e-06, -1.666066e-06, -6.3390524e-07, 1.3447697e-06, 9.785803e-07, -4.6290552e-07, -3.2772214e-06, -3.3295812e-06, 1.9279846e-06, 3.49262e-07, -1.06916104e-07, -2.6020707e-06, 1.5099968e-06, 4.6600383e-07, -1.4394175e-06, 1.5200235e-06, -2.6165021e-06, 4.5520062e-07, 1.1329182e-06, -1.9861272e-06, -6.5271524e-06, -1.1900256e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7318545e-08, -3.7186278e-06, 4.359772e-06, -1.5210849e-06, 2.494091e-06, -5.5930272e-08, 1.9859135e-06, -3.1635072e-06, -1.652056e-06, 1.3868575e-06, 7.097691e-07, -9.5449046e-08, -3.1019827e-06, 3.125107e-07, 1.6589893e-06, -1.653093e-06, 1.1651989e-06, -2.9370492e-06, -5.1696907e-07, 7.44e-07, -2.4543947e-06, -8.708467e-06, -2.8276336e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.7452146e-07, -3.0145732e-06, 1.4134053e-05, -1.1765126e-06, 4.1117064e-06, -1.9075005e-06, 4.503513e-06, -1.5908404e-06, -1.5424368e-07, 1.3390766e-06, 2.6752286e-06, -8.608963e-07, -1.2732274e-06, -2.9112363e-07, 4.8659507e-07, -1.5142937e-06, 7.973025e-07, -2.2361899e-06, -2.2390886e-06, -5.581679e-09, -3.1925488e-06, -8.515906e-06, -6.6316434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5566677e-06, -3.6843417e-06, 2.4414636e-05, -7.043611e-07, 4.8420743e-06, -7.0639453e-06, 6.9700745e-06, -1.0903174e-06, 2.8248492e-06, 1.8943133e-06, 2.5090187e-06, 5.558429e-10, 1.6300246e-06, 1.5901983e-07, 1.8361686e-07, -9.0234244e-07, 6.486144e-08, -1.5141666e-06, -3.4394184e-06, -1.5887863e-06, -5.389633e-06, -1.0166226e-05, -9.802766e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.284663e-06, -3.489045e-06, 2.572718e-05, 1.1727112e-06, 6.5014247e-06, -6.346403e-06, 8.526538e-06, 5.2296034e-08, 4.925845e-06, 9.256137e-07, 4.4178064e-06, -8.141754e-07, 1.7430348e-06, -1.2755052e-06, -1.5189404e-06, -9.443137e-08, -1.3566337e-06, 6.059999e-08, -3.1445843e-06, -2.5231666e-06, -6.2591657e-06, -7.700783e-06, -1.168185e-05, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.196003e-06, -3.0120505e-06, 2.48044e-05, 4.9491086e-07, 7.772839e-06, -1.3639149e-06, 6.8490017e-06, 1.9617152e-08, 4.729759e-06, 3.0088978e-07, 2.6417124e-06, 2.7031638e-07, 1.4700142e-06, -1.355624e-06, 9.0927034e-07, -9.2481935e-07, -7.538357e-07, -1.8280925e-06, -1.827498e-06, -5.124707e-06, -5.8729593e-06, -1.1118935e-05, -8.7500375e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.925395e-06, -3.4211864e-06, 2.0604693e-05, 4.0689702e-07, 7.2846324e-06, 9.1866553e-07, 4.2955803e-06, 1.5454094e-06, 5.4280417e-06, 3.2341966e-06, 3.0074614e-06, 1.0705204e-06, 1.5046714e-06, -1.3823419e-06, 2.0164453e-06, -3.6420943e-06, 4.3033634e-07, -4.4475164e-06, -1.0160477e-06, -4.549667e-06, -4.7110393e-06, -1.21053345e-05, -8.094454e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3767395e-06, -1.2506235e-06, 1.545886e-05, 9.124309e-07, 7.642509e-06, 2.1856017e-06, 3.9227184e-06, 1.6607349e-06, 5.7716807e-06, 2.8515756e-06, 3.0891224e-06, 1.1280736e-06, 9.667261e-07, -1.7792785e-06, 3.7524096e-06, -2.6398814e-06, 1.1128836e-06, -4.000624e-06, -1.1078694e-06, -6.74462e-06, -3.2694766e-06, -9.350448e-06, -6.752136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5022107e-06, -2.5764346e-06, 1.2845395e-05, 1.2701406e-07, 5.800104e-06, 4.1450585e-06, 4.3799746e-06, 2.868484e-06, 8.106244e-06, 1.099078e-06, 2.7806507e-06, 9.56328e-07, 1.6215774e-06, -3.297137e-06, 2.8254906e-06, -2.246563e-06, 1.5225507e-06, -4.5180514e-06, -1.0366649e-06, -6.790542e-06, -2.5791765e-06, -7.3717874e-06, -4.837936e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.132465e-06, -1.727498e-06, 1.254932e-05, 7.581837e-08, 5.5854966e-06, 4.578803e-06, 2.7990436e-06, 4.5972447e-06, 6.705267e-06, 1.2110322e-06, 2.887985e-06, 8.163344e-08, 3.036771e-06, -2.3784619e-06, 1.3691589e-06, -1.7094204e-06, 2.2140118e-07, -3.8557855e-06, -2.148983e-06, -7.430119e-06, -2.277808e-06, -4.3322907e-06, -4.1687827e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.2776443e-06, 2.5231037e-07, 9.47737e-06, 6.035332e-07, 3.3180793e-06, 5.44535e-06, 2.546069e-06, 5.3996155e-06, 7.726034e-06, 1.1770858e-06, 3.0723836e-06, 1.3322413e-06, 1.5647865e-06, -2.5527966e-06, 1.0179349e-06, -3.1549807e-06, -7.9179097e-07, -4.0338587e-06, -2.111014e-06, -7.1851546e-06, -1.0172441e-06, -7.5824653e-07, -1.6102495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.9755624e-06, 2.2965094e-07, 7.5012467e-06, -4.69695e-07, 2.448723e-06, 5.5119253e-06, 2.375104e-06, 5.780097e-06, 6.9276116e-06, 8.9868377e-07, 3.7723905e-06, 3.259695e-06, 2.437762e-06, -2.2128781e-06, 1.070425e-06, -8.5293857e-07, -8.6207956e-07, -2.17056e-06, -3.2639713e-07, -7.297018e-06, -1.2811145e-06, 1.7484496e-07, -1.8404056e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.956706e-06, 5.7924376e-07, 5.1372444e-06, -1.3539528e-07, 2.1968135e-06, 4.4465637e-06, 1.6387568e-06, 4.767644e-06, 7.1624127e-06, 3.1262406e-08, 1.7579421e-06, 3.5632122e-06, 2.488694e-06, -2.2647412e-06, -8.842856e-08, 3.2251302e-07, -1.614884e-06, -8.880297e-07, 8.3578215e-08, -5.2258265e-06, -5.827661e-07, 9.881293e-07, -1.7604428e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4332808e-06, 1.1757132e-06, 3.7770478e-06, 1.2934669e-06, 1.5542571e-06, 3.5618712e-06, -5.1527444e-08, 4.4612434e-06, 4.96573e-06, -9.478836e-07, 1.8591946e-06, 2.8461075e-06, 2.453024e-06, -1.432767e-06, 4.2984672e-07, 1.866932e-06, -9.779613e-07, 7.1162583e-07, -6.7811766e-07, -5.0505796e-06, -9.315165e-07, 1.5804128e-06, -9.294397e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2678115e-06, 5.8427156e-07, 2.1059195e-06, 2.1549163e-06, -2.7630068e-07, 2.6294442e-06, 1.0789697e-06, 3.490398e-06, 3.7863438e-06, 5.2859957e-07, 3.3017534e-07, 2.8081924e-06, 8.9419643e-07, -1.2707504e-06, 1.0567448e-06, 1.4583438e-06, -1.5138232e-06, 9.4483724e-08, -1.5706561e-07, -3.046328e-06, -3.472488e-07, 3.8348403e-06, -5.6848705e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3652027e-07, 2.2778618e-06, -5.9183475e-07, 4.550293e-07, -3.8733157e-07, 2.9373207e-06, 1.4286233e-07, 3.101746e-06, 3.8015787e-06, -3.330889e-07, 7.1084014e-07, 1.586802e-06, 6.003264e-08, -6.230514e-07, -3.1516043e-07, 1.1583786e-06, -9.990907e-07, 9.1087634e-07, 6.6870246e-07, -4.9940445e-07, 7.851965e-07, 3.9004026e-06, 1.9420136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.182927e-07, 2.0108682e-06, -2.3047348e-06, 1.7850567e-07, -1.4779342e-06, 1.5075702e-07, -1.4486562e-06, 9.198062e-07, 2.6197008e-06, -7.49921e-07, 6.2204026e-07, 9.668033e-07, 1.4652416e-06, -5.963859e-08, -1.9695412e-07, 7.1182353e-07, -1.3140439e-06, 2.8904577e-07, 5.461834e-08, -2.0632305e-07, 1.2379685e-06, 5.7378547e-06, 3.1485797e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5008866e-07, 2.1420205e-06, -2.8722052e-06, -2.4565907e-07, -2.839091e-06, 4.7913807e-07, -1.8773383e-06, 2.0279867e-07, 1.5489995e-06, -3.1767743e-07, -6.2430934e-07, 1.4920672e-06, 9.349602e-07, 2.0466129e-07, -1.2185346e-06, 8.463596e-07, -1.1453756e-06, 1.6699927e-06, 5.5134853e-07, -3.231486e-08, 4.4612932e-07, 5.1651077e-06, 3.4555678e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.873268e-07, 9.932887e-07, -4.5361685e-06, 2.5327353e-07, -4.6472105e-06, -6.210946e-07, -1.6375022e-06, 1.4831554e-07, 8.618295e-08, -1.001959e-06, -2.3751238e-07, 8.8818496e-07, 2.2161158e-08, 1.2103937e-06, 5.153309e-10, 1.2573167e-06, -1.9348545e-06, 3.0473238e-06, 3.4066076e-08, 3.922969e-07, 9.514239e-07, 6.314875e-06, 4.058767e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1195738e-06, 6.8200313e-07, -4.980242e-06, 1.9445888e-07, -4.5745073e-06, -1.301816e-06, -5.4760153e-07, -2.1160015e-07, 2.317278e-07, -1.3153674e-06, -6.7444444e-07, -1.8814794e-07, 8.1512286e-07, -1.091499e-06, -3.1825124e-07, 2.5618913e-06, -1.7967207e-06, 1.7635537e-06, 1.165965e-06, 1.50814e-06, 2.1364935e-06, 5.0707704e-06, 2.2269287e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.5865171e-06, 9.372368e-07, -4.9580494e-06, -3.3126258e-07, -5.285562e-06, -7.677339e-07, -2.2063673e-06, -1.3869216e-06, -1.1942698e-06, -1.4784047e-06, -4.4827004e-07, -1.3367203e-06, -1.3854333e-08, 2.1999544e-08, -1.535776e-07, 2.4416854e-06, -6.12931e-07, 1.7884599e-06, 5.951999e-07, 1.9667623e-06, 2.7559884e-06, 5.3802896e-06, 6.302456e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6973119e-06, 1.5650542e-06, -6.598778e-06, 1.2825271e-07, -4.7470503e-06, -2.6449625e-06, -2.3538805e-06, -9.2320613e-07, -2.3347136e-06, -6.9889455e-07, -1.8320022e-06, -1.3895531e-06, -4.725667e-08, -1.3690058e-07, -4.883278e-07, 3.0510541e-06, -5.557012e-07, 1.7924887e-06, -3.9323275e-08, 3.1013217e-06, 2.049952e-06, 5.343379e-06, 2.2900012e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.3153926e-07, 1.6775432e-06, -6.9231774e-06, 7.2461546e-07, -3.4292266e-06, -2.6838347e-06, -1.772349e-06, -3.3870873e-07, -2.8211193e-06, -1.223347e-06, -1.4434204e-06, -1.0694685e-06, -7.352703e-07, -1.6828615e-07, -1.7841301e-06, 1.6717327e-06, -8.793588e-07, 2.774309e-06, 7.043982e-07, 4.159662e-06, 3.2642383e-06, 6.459094e-06, 3.59825e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2023905e-06, 2.1987275e-06, -7.1272534e-06, 7.9553666e-07, -3.7134564e-06, -2.1208316e-06, -2.1402097e-06, -1.6195486e-06, -3.2689552e-06, -1.7220611e-06, -2.4663627e-06, -1.04050685e-07, -9.1342383e-07, 6.118978e-07, -5.556026e-07, 9.948806e-07, -5.694556e-07, 2.4216752e-06, -4.809303e-08, 3.6635793e-06, 2.7537262e-06, 6.3596335e-06, 2.1122412e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.6709736e-07, 3.2701837e-06, -8.4201065e-06, 1.1178527e-06, -3.8985304e-06, -1.6135007e-06, -1.5983451e-06, -2.7720606e-07, -3.6614792e-06, -9.774496e-07, -5.975297e-07, -7.2919096e-07, -8.3766474e-07, 9.657623e-07, -1.5188429e-06, 1.7059159e-06, -6.732718e-07, 1.6140356e-06, 6.1507865e-07, 4.4826706e-06, 2.1953138e-06, 4.5284905e-06, 2.0032976e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.925237e-07, 2.849973e-06, -7.352577e-06, -2.910645e-07, -4.3018413e-06, -1.8609294e-06, -2.914165e-06, -5.346457e-07, -3.704119e-06, -1.4465126e-06, -1.5237581e-06, -1.3957456e-06, -1.1684251e-06, 2.171264e-06, -5.0715437e-07, 1.8506087e-07, -9.4654945e-07, 2.075062e-06, 4.896108e-07, 3.820169e-06, 2.4266844e-06, 3.6940419e-06, 1.7180862e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.055104e-07, 2.0772222e-06, -8.200044e-06, -9.25357e-08, -3.6701058e-06, -2.009801e-06, -1.8215694e-06, -7.02463e-07, -2.8470768e-06, -3.19157e-07, -1.3719222e-06, -9.809817e-07, -1.9156246e-06, 1.8680616e-06, -5.7493867e-08, 7.02017e-07, 8.390256e-07, 2.2441254e-06, 6.1477056e-07, 2.2713264e-06, 2.774335e-06, 3.3476465e-06, 4.1546127e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.1879887e-07, 1.8685366e-06, -8.503512e-06, -3.2600002e-07, -3.268661e-06, -2.183065e-07, -2.2846916e-06, -1.1228359e-06, -3.6969107e-06, -7.841055e-07, -2.5692152e-06, -1.2459307e-06, -1.9244628e-06, 1.0804606e-06, -9.4228176e-07, 4.4297326e-07, -9.882474e-07, 3.0203495e-07, -2.0502856e-07, 2.7695457e-06, 3.2714743e-06, 2.928075e-06, 4.4363233e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2633399e-06, 4.851567e-07, -7.829657e-06, 2.3253276e-07, -3.941949e-06, -6.285724e-08, -2.083863e-06, -1.5835603e-06, -3.6276206e-06, -1.0850049e-06, -1.6761599e-06, -6.715695e-07, 3.4155525e-07, 1.4654164e-06, -9.255788e-08, 2.5826512e-07, 1.1332204e-06, -1.821591e-08, 7.987241e-07, 2.0931247e-06, 3.110832e-06, 2.7280178e-06, 2.3698717e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3247594e-06, 9.245116e-07, -7.3683195e-06, 1.4333811e-07, -3.0017525e-06, -1.2917419e-06, -1.9371423e-06, -2.4437602e-06, -2.597958e-06, -7.178024e-07, -1.9419397e-06, -1.0804187e-06, -1.2278406e-06, 4.5996876e-07, -9.401214e-07, 6.569153e-07, 4.178459e-07, -3.5989478e-07, 1.4927389e-06, 2.3258021e-06, 2.4059095e-06, 2.9699959e-06, 1.6983606e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3173916e-06, 8.7514275e-07, -6.538253e-06, -3.467834e-07, -2.9944617e-06, -2.2268114e-06, -1.5625023e-06, -1.9173372e-06, -2.8958057e-06, -2.1774308e-06, -1.6427065e-06, -2.2901568e-06, -5.591777e-07, 5.2164154e-07, 3.423736e-07, -8.778257e-08, -2.1630323e-07, 7.0153635e-07, -8.6281847e-07, 2.0213272e-06, 2.462999e-06, 2.611452e-06, 2.4506496e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2925345e-06, -6.1829326e-08, -7.1895247e-06, 1.7859668e-06, -2.847125e-06, -1.2649084e-06, -7.2994476e-07, -2.6353987e-06, -3.25387e-06, -1.3892738e-06, -1.5056793e-07, -9.062825e-07, -1.6528537e-07, 9.2624975e-07, -8.3187665e-08, -7.8433567e-07, 2.1941287e-07, 1.8657947e-06, -4.6407663e-07, 1.3771203e-06, 1.2844414e-06, 2.3382977e-06, 1.5468195e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7293445e-06, 8.935008e-07, -6.946645e-06, 1.4446614e-06, -1.0244632e-06, -6.177263e-07, -2.0323978e-06, -2.3325574e-06, -3.5409373e-06, -1.393084e-06, -1.2732587e-06, -1.9248466e-06, -9.841226e-07, 6.6053315e-07, -4.1083762e-08, -1.1314434e-06, -9.785427e-08, 6.752039e-07, -1.1774098e-07, 1.024805e-06, 7.299049e-07, 2.2763536e-06, 2.4211809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8861205e-06, 8.799125e-07, -4.6949935e-06, -2.6755703e-07, -1.7659966e-06, -7.481269e-07, -1.5743537e-06, -1.5703251e-06, -3.3789274e-06, -7.1887985e-07, -5.6645615e-07, -8.9232424e-07, -1.1271062e-06, -4.9863853e-08, 2.9835735e-07, -4.832091e-07, -8.206575e-07, 6.612877e-07, -8.54021e-07, 2.4579451e-06, 5.193325e-07, 2.6246769e-06, 9.266357e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1627643e-06, -3.0234395e-07, -3.5838132e-06, -6.872169e-07, -2.8227464e-06, -1.1598893e-06, -1.4807018e-06, -1.516744e-06, -2.8000595e-06, 2.457989e-07, -1.1257778e-06, -5.39183e-07, -1.0379865e-06, 6.372867e-07, -1.7675197e-06, -1.3505447e-06, -1.1280887e-06, 1.2810781e-06, -3.9713598e-08, 2.2607278e-06, 6.0786033e-07, 7.5265893e-07, 1.1312897e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8317212e-06, -1.0357364e-06, -5.5056316e-06, 3.2252217e-07, -8.880352e-07, -1.510349e-06, -3.1875118e-06, -6.8914414e-07, -3.5889666e-06, 6.5883125e-07, -1.8759448e-07, -9.056489e-07, -2.4993344e-06, 1.4836326e-06, -1.4563142e-07, -9.159735e-07, 2.5500748e-07, 9.74266e-07, 6.087043e-07, 1.6368804e-06, 2.5556915e-07, 1.0567979e-06, 1.5431322e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6910144e-06, -1.1254517e-06, -4.2340257e-06, -6.2965853e-07, -1.1229045e-06, -1.6287627e-06, -2.4787876e-06, -1.043514e-06, -2.9753173e-06, 8.1833514e-07, -7.873028e-08, -1.5752503e-06, -1.2158414e-06, 2.2937613e-07, -1.0644387e-06, -1.4304555e-06, 1.4259871e-06, 1.244024e-06, 5.439043e-07, -3.1230462e-07, 9.407903e-07, 6.550285e-07, 6.3485584e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.079038e-06, -2.6364658e-06, -5.0084486e-06, -7.0421675e-07, -7.685504e-07, -9.4741216e-07, -4.5892793e-07, -3.8009003e-07, -2.6293594e-06, -4.264942e-07, 5.065084e-07, -1.4496477e-06, -1.2388807e-06, 8.9039486e-07, -8.1249266e-07, 7.3478645e-07, -2.5646509e-07, 7.6242395e-07, -4.737773e-07, 4.4220388e-07, 1.1349795e-06, 2.3285173e-08, -9.5209415e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.594293e-07, -6.1472326e-07, -3.922571e-06, -7.8666926e-07, -3.7968954e-07, 1.1628572e-06, -3.8389385e-07, -1.9188313e-07, -1.846015e-06, -1.1938648e-06, -6.380538e-07, -3.0118198e-07, -4.3146161e-07, 3.271726e-07, 2.703611e-07, 1.048289e-06, 8.823662e-08, -3.9579663e-07, 5.916346e-07, 1.4657213e-06, 7.790735e-07, -1.5853861e-06, 1.255328e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3382705e-08, -7.2620503e-07, -3.8378203e-06, 3.4895015e-07, 2.081155e-07, 8.608516e-08, 6.350305e-07, -6.372635e-07, -1.2935993e-06, 1.8174866e-07, -3.4220943e-07, -1.5789317e-06, 5.453962e-07, 1.1928853e-06, 7.429217e-07, 1.1505251e-06, 1.1989038e-06, -1.8154722e-07, 1.1975146e-06, 8.0369887e-07, 4.8147683e-07, -5.328085e-07, 1.978772e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.4308783e-07, 1.525693e-07, -4.3861464e-06, -4.6826557e-07, 1.039627e-06, -1.2296626e-06, -1.0225679e-06, -9.170342e-07, -1.0898455e-06, 2.4825175e-07, 1.0784356e-07, 2.5340317e-08, -1.2762969e-07, 1.5845453e-06, 9.2669126e-07, 6.058981e-07, 2.5631684e-06, 4.7287185e-07, 1.009297e-06, 2.0598734e-06, 6.315678e-07, -9.397051e-07, 1.7322159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.9810667e-07, -6.2081585e-07, -4.4636026e-06, 2.1453363e-07, -6.563899e-07, -5.220927e-07, -8.424986e-07, -5.840497e-08, -7.569552e-07, -5.0743034e-07, -3.0880886e-07, -8.828816e-07, -6.3657995e-07, 1.1365255e-06, -6.808489e-08, -3.6645457e-07, 2.6771124e-06, 5.512986e-07, 1.9097133e-06, 1.7269251e-06, 1.262359e-06, 1.9987019e-07, 3.2529283e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.035496e-07, -1.9964937e-06, -1.4662226e-06, -9.7067996e-08, 4.209733e-07, 2.2628555e-07, 2.5137285e-07, 1.182008e-06, -2.941622e-07, -1.3519909e-06, -3.1553907e-07, -6.537532e-07, -1.3007915e-06, 5.873422e-07, -4.2731364e-07, 9.90471e-07, 5.277915e-07, 9.4328266e-07, 1.918844e-06, 5.291306e-07, 2.0173009e-06, -9.732254e-07, 3.0568344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.4896105e-07, -1.735724e-06, -1.1110187e-06, -3.0536137e-07, 7.704566e-07, 1.0803911e-06, 8.3676514e-07, -1.0113358e-06, 5.676926e-07, -1.0903502e-06, 4.7059068e-09, 1.4867143e-06, 1.003511e-06, 1.5279853e-07, 1.1146549e-06, -3.4778265e-07, 1.2876767e-06, 2.024781e-07, 1.4541731e-06, 9.783479e-07, 3.0840982e-07, 1.5228854e-06, 1.4088171e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.037544e-07, -1.1201355e-06, -5.3624774e-07, -1.3475673e-07, -5.3674137e-07, -5.0316794e-07, -5.350639e-07, -4.627349e-07, 1.5169736e-07, 3.0804995e-07, -4.4529873e-09, 1.1638425e-06, 2.7829154e-07, 1.733431e-07, 9.201218e-07, 8.5685423e-07, 1.9017434e-06, 2.125277e-06, 1.7350187e-06, -4.839675e-07, -3.0827655e-07, -6.492063e-07, -6.725964e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2052487e-07, -6.460351e-07, -1.4746377e-06, -4.0016175e-07, 2.777192e-07, 1.012773e-06, -2.6272176e-07, -6.657482e-07, 1.320627e-06, 1.7087327e-06, 1.0699766e-06, -4.925666e-07, 7.290654e-07, -2.4838192e-07, 9.4187635e-07, 1.2808121e-06, 1.149572e-06, 8.37823e-07, 1.2528275e-06, 5.241398e-08, -7.1614636e-07, -1.0307967e-06, -6.635237e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.5494424e-07, 4.654326e-07, -4.4558487e-07, -5.2455226e-07, 4.5171694e-07, -1.7903587e-07, -4.9962586e-07, -8.957062e-08, -1.1845025e-06, 5.253381e-07, 1.3990295e-06, -9.778134e-11, -2.3045347e-08, 1.0990423e-07, 1.2709934e-06, 2.7514412e-07, 7.354133e-07, -3.1043714e-07, 7.8915684e-07, 1.0147251e-06, -5.046648e-07, -3.8973738e-07, 2.5431183e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.671494e-07, -9.918963e-07, -1.5631115e-06, -3.895479e-07, 1.3116471e-07, -7.855486e-08, -1.13804674e-07, -5.113294e-07, -2.3531884e-07, 1.2017341e-07, 1.0653989e-06, 3.1811786e-07, 5.582234e-07, 3.4116036e-07, 8.788286e-07, 5.0696627e-08, 2.532893e-07, 3.2688177e-07, 3.8284432e-07, 4.525102e-07, 3.6475578e-07, -9.255491e-08, -7.5769026e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.727972e-07, -2.926347e-06, -6.08542e-07, -1.8715646e-06, 9.6072306e-08, -3.0130172e-07, 4.118151e-07, -5.2838544e-08, 5.1516076e-07, -2.6443064e-07, 9.627537e-07, 3.042502e-07, 5.0144473e-07, 8.350578e-08, -3.76483e-07, -2.8089698e-07, 5.567622e-07, -6.162112e-07, 8.616279e-07, 6.7831184e-07, 1.8736435e-07, 6.7346366e-07, 1.2462195e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8951962e-07, -1.1116522e-06, 1.5912776e-06, -1.595247e-06, 6.998829e-07, -2.3886518e-08, 1.2548853e-07, 1.2907566e-07, -1.019499e-06, -3.1446365e-07, -2.5391736e-07, -5.7569946e-07, 9.556398e-07, 1.1153338e-08, 7.4487184e-07, -1.7159059e-06, -8.784885e-09, -1.2795987e-06, 3.1601008e-08, -1.0925036e-06, -6.4225486e-07, 1.2232518e-07, -2.1578015e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0021778e-06, -2.9062295e-07, 7.059704e-10, -7.074301e-07, -3.831719e-08, -9.742411e-07, -3.5478098e-07, -8.7072794e-07, -6.489662e-07, -1.1365446e-06, 1.14101795e-07, -5.0044755e-09, -4.3549215e-07, -1.6741835e-06, 1.1674373e-06, 6.1745413e-07, -7.8635236e-07, -6.91439e-07, -2.7192485e-07, 6.3207995e-07, -7.5656453e-07, -7.518246e-07, -1.3610816e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.758912e-07, -1.0227163e-06, 6.131694e-07, -8.978644e-07, -6.859825e-07, -1.7455341e-06, -1.9905788e-06, -1.0607516e-06, 3.2188915e-08, -1.9846227e-06, -6.20926e-07, 7.7842896e-07, -1.0191613e-06, -1.9832514e-06, -2.195348e-07, -6.624497e-07, -1.0272321e-06, -1.253872e-07, 1.1053838e-07, -1.134129e-06, -1.7277071e-07, -4.987972e-07, -2.1567644e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.3348495e-08, -8.1803944e-07, -1.064036e-06, -1.212033e-06, -9.0592914e-07, -1.0394193e-06, 2.0631008e-07, -9.618618e-07, -1.5438213e-06, -8.826896e-07, -1.8735588e-07, 1.3497161e-06, 2.3370787e-07, -6.28087e-08, -8.5182955e-07, -4.772299e-07, 8.181147e-07, -4.774836e-07, 5.906153e-08, -7.872933e-07, -3.9788927e-07, -1.3041736e-06, -2.1921833e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.3652795e-07, -1.0143908e-06, -1.4795996e-06, -1.5883247e-06, 1.0523514e-07, -2.2496943e-06, 1.3543922e-07, -1.4974873e-06, 5.878871e-07, -1.5785965e-06, -3.9840046e-07, 6.302837e-08, 8.002014e-07, 1.0362247e-07, 1.6155836e-07, -1.2894315e-06, 5.321314e-07, -3.7917932e-08, 6.9951795e-07, -4.094137e-07, 3.3525856e-07, -1.0778433e-06, 7.3082606e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4304788e-06, 2.1037998e-07, 1.2459552e-07, -1.4764208e-06, 1.5204484e-06, -1.2959079e-06, -2.2049478e-06, -7.478746e-07, 9.109912e-08, -1.4398377e-06, -7.7856123e-07, 6.4897887e-07, 6.9879945e-07, 1.1468901e-07, -4.8680937e-07, -6.743908e-07, 8.43436e-07, -1.6012011e-06, 2.8583736e-07, -4.838148e-07, -9.560166e-07, 7.8119547e-07, 2.235137e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.649182e-08, -1.8616827e-06, -5.784774e-07, -1.176599e-06, 8.250859e-07, -7.949925e-07, 8.7120554e-08, -8.1925157e-07, 6.055662e-07, 1.9722611e-07, -1.6746437e-06, -1.3174271e-07, -7.248357e-07, 2.9282984e-07, -6.723267e-07, -2.3515788e-07, 6.7855296e-07, 6.824e-07, -7.2936544e-08, -8.2421457e-07, -4.8625683e-08, 3.0478992e-07, 4.252552e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.397625e-07, -1.6044439e-06, 1.6702194e-06, 3.9286454e-07, 7.7360596e-07, -1.1308281e-06, -2.985165e-07, 1.6950975e-07, 1.2456705e-06, -2.1714747e-08, -7.2416256e-08, -6.955205e-07, 2.2299085e-07, 1.2770395e-06, 5.345332e-07, -9.1717357e-07, -1.0553343e-06, -2.8449261e-07, 1.3098075e-07, -2.7029947e-07, -1.9678195e-07, 2.0020275e-07, -1.1998834e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.9275706e-07, -2.5262113e-06, 1.5720054e-06, 8.0210043e-07, -4.980602e-07, -1.8241814e-06, 5.721979e-07, 4.4968192e-07, 1.5636278e-06, -1.4574362e-06, 1.0155954e-07, 4.4567082e-07, 7.579556e-07, -5.748611e-07, 1.3661003e-07, -5.7207944e-07, -1.3474188e-07, -2.3892298e-07, 2.4700066e-07, -1.466828e-06, 1.0584861e-07, -1.494969e-07, -6.8376505e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6582288e-07, -2.3881994e-06, -3.6611533e-07, 2.965973e-07, 2.867197e-07, -1.3696599e-06, 1.2804913e-06, -3.3988567e-07, 4.265533e-07, -2.128235e-07, 1.4623909e-06, -4.237381e-07, -9.708999e-07, 2.9690693e-07, 5.7647605e-07, -1.534818e-07, -8.3038105e-07, -1.9151976e-06, 6.5895904e-07, -2.995933e-07, 1.4964539e-06, -5.4178585e-08, -5.3779627e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4671915e-06, -1.1924883e-06, 8.660768e-07, -5.2133807e-08, 1.1222795e-06, -1.3001488e-06, 1.1648692e-06, -8.6976945e-07, 4.3107855e-07, 8.882231e-07, 6.588816e-07, 1.1300108e-06, 5.3467323e-07, 4.322294e-07, 6.092226e-08, -1.7861339e-07, -2.5359208e-07, -1.6007235e-06, 1.7253822e-06, -2.5801512e-07, 1.0956326e-06, -3.6784844e-08, -5.0990593e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.423094e-07, -1.8055666e-06, -7.06909e-07, 9.314491e-09, 8.6919295e-07, -1.2642273e-06, -7.8617234e-08, 7.004818e-07, 8.677588e-09, -2.6215386e-07, 1.8908561e-06, -3.9216042e-07, -1.2885371e-06, 6.65706e-07, 7.768746e-07, -1.1668817e-06, -1.2950638e-06, 1.5632281e-07, 3.3563086e-07, -4.7832305e-07, 1.2846451e-06, 1.4532301e-07, -2.1249717e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3234993e-06, 1.7814592e-08, 9.1423806e-07, -8.307495e-07, 2.1799092e-06, -8.120552e-07, 9.2677067e-07, 8.287717e-09, 2.6577925e-07, 1.686149e-08, 4.8826223e-07, -4.965481e-07, 1.530315e-07, 1.1113295e-06, 7.960132e-07, -1.2981114e-06, -5.832005e-07, 1.5075423e-06, -1.0820419e-07, -1.7689011e-07, 1.2440199e-06, -2.726189e-07, 2.822904e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 0.0 0.000000 NaN b714cc17-e66c-4fa1-8630-01c4d553e11d 118.269184 40.0 498 48.455443 0.000000

... and 2241 more row(s).

session_id: 78b4fff5-c5ec-44d9-b5f9-d59493063f00
lab: cortexlab
institution: University College London
protocol: _iblrig_tasks_ephysChoiceWorld6.5.3
source_script: Created using NeuroConv v0.9.4
source_script_file_name: /ebs/IBL-to-nwb/.venv/lib/python3.10/site-packages/neuroconv/basedatainterface.py

We can get general information about the session as follows:

In [23]:
session_start_time = nwbfile_processed.session_start_time
eid = nwbfile_processed.session_id
number_of_trials = len(nwbfile_processed.trials)
number_of_units = len(nwbfile_processed.units)
lab = nwbfile_processed.lab

print(f"Session ID: {eid}")
print(f"Session Start Time: {session_start_time}")
print(f"Number of Trials: {number_of_trials}")
print(f"Number of Units: {number_of_units}")
print(f"Lab: {lab}")
Session ID: 78b4fff5-c5ec-44d9-b5f9-d59493063f00
Session Start Time: 2022-07-04 14:30:15.049000+01:00
Number of Trials: 892
Number of Units: 2245
Lab: cortexlab

And the subject information is contained in the subject attribute:

In [24]:
subject = nwbfile_processed.subject
subject
Out[24]:

subject (IblSubject)

age__reference: birth
sex: M
species: Mus musculus
subject_id: KS091
weight: 0.028399999999999998 kg
date_of_birth2021-12-14 00:00:00+00:00
uuid: e7a62e2c-9a39-41ce-98ce-35c7c1b4a845
expected_water_ml: 1.1900000000000002
remaining_water_ml: 1.1900000000000002

Epochs (Task vs Passive)¶

In [25]:
nwbfile.epochs
Out[25]:

epochs (TimeIntervals)

description: Session-level epochs defining the two main phases of an IBL recording session. The 'task' epoch covers the active behavioral task period where the mouse performs the decision-making task (responding to visual stimuli by turning a wheel). The 'passive' epoch covers the passive replay period where visual and auditory stimuli are presented without the mouse performing any task, used for receptive field mapping and stimulus response characterization. The passive protocol includes replay of task stimuli, sparse noise for receptive field mapping, and natural movie clips. See the 'protocol_type' column to distinguish between epochs.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_type
Type of protocol phase (task or passive)
epoch_description
Detailed description of what occurs during this epoch
table
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse performs a decision-making task where it must turn a wheel to move a visual stimulus (Gabor patch) to the center of the screen. Correct responses are rewarded with water; incorrect responses trigger white noise feedback. The trials table contains detailed timing and outcome data for each trial during this epoch.
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and auditory stimuli are presented while the mouse is head-fixed but not performing any task. This epoch includes: (1) replay of task-relevant stimuli (Gabor patches at various contrasts and positions), (2) sparse noise stimuli for receptive field mapping, and (3) natural movie clips. Used for characterizing sensory responses independent of task engagement.
In [26]:
epochs_df = nwbfile.epochs.to_dataframe()
epochs_df
Out[26]:
start_time stop_time protocol_type epoch_description
id
0 0.00000 4173.279130 task Active behavioral task period. The mouse perfo...
1 4173.27913 5478.753002 passive Passive stimulus replay period. Visual and aud...

Loading Spike Sorting Data¶

The spike sorting results are stored in the units table. This table contains all the relevant information about each of the detected units including their spike times, waveform properties, quality metrics, and electrode provenance. The later can be used to link each unit to the corresponding electrode in the electrodes table which in turn can be used to link the unit to its anatomical location.

In [27]:
units = nwbfile_processed.units
units
Out[27]:

units (Units)

description: Spike-sorted units from Neuropixels 1.0 probes. Spike sorting was performed using a Python implementation of Kilosort 2.5 (iblsorter, formerly pykilosort) with IBL-specific optimizations for drift correction and automated quality control. Unit quality is determined by three metrics: (1) refractory period violations using the slidingRP algorithm (Hill et al. 2011), (2) noise cutoff based on amplitude distribution, and (3) median spike amplitude threshold (>50 uV). The 'label' column indicates the proportion of metrics passed (1.0 = all passed, i.e. 'good' unit). Each unit includes brain region assignment from IBL's histology pipeline with Allen CCF coordinates. For methodology details, see the IBL spike sorting white paper: https://doi.org/10.6084/m9.figshare.19705522
waveform_rate: 30000.0
waveform_unit: volts
resolution: 3.3333333333333335e-05
columns
unit_name
Unique reference for each unit.
electrodes
the electrodes that each spike unit came from
min_spike_amplitude_uV
Minimum spike amplitude in microvolts.
max_electrode
Index into the electrodes table for the electrode with maximum spike amplitude for this unit.
spike_amplitudes_uV
Peak amplitude of each spike for each unit in microvolts.
spike_times
the spike times for each unit in seconds
isi_violations_ratio
Ratio of observed to expected ISI violations (Steinmetz/cortex-lab method). Can exceed 1.0. Equivalent to SpikeInterface's isi_violations_ratio.
spike_amplitude_std_dB
Standard deviation of log-transformed spike amplitudes in decibels. High values (>6 dB) may indicate drift or contamination.
median_spike_amplitude_uV
Median spike amplitude in microvolts. IBL uses 50 uV threshold for quality filtering.
cumulative_drift_um_per_hour
Sum of absolute depth changes between consecutive spikes, normalized to um/hour. Formula: sum(abs(diff(spike_depths)))/duration*3600. High values indicate either electrode drift or depth estimation noise. Scales with spike count (~0.79 correlation). NOT actual electrode displacement.
presence_ratio_std
Standard deviation of spike counts across 10-second time bins.
firing_rate
Average firing rate in Hz.
presence_ratio
Fraction of time bins (60s default) with at least one spike. Good units typically >0.9.
peak_to_trough_duration_ms
Duration from negative trough to positive peak of the mean waveform in milliseconds. Used to distinguish fast-spiking interneurons (~0.2-0.4 ms) from regular-spiking pyramidal cells (~0.4-0.8+ ms).
spike_distances_from_probe_tip_um
Distance from the probe tip for each spike in micrometers, computed from waveform center of mass. 0 = probe tip, values increase toward brain surface.
kilosort2_label
Original Kilosort2 classification: 'good', 'mua', or 'noise'.
waveform_mean
the spike waveform mean for each spike unit
probe_name
Name of probe this unit was recorded from in canonical format (e.g., 'Probe00', 'Probe01').
sliding_rp_violation
Binary pass/fail (0.0 or 1.0) using sliding refractory period algorithm. Primary metric for ibl_quality_score. Aligns with SpikeInterface's sliding_rp_violations.
rp_violation
Contamination estimate using Hill et al. (2011) quadratic formula. Aligns with SpikeInterface's rp_violations.
missed_spikes_estimate
Estimated fraction of spikes missed due to detection threshold (0.0-1.0).
cluster_uuid
Globally unique identifier for cross-referencing with IBL database via ONE API.
noise_cutoff
Standard deviations the lower amplitude quartile deviates from expected. Large values indicate missed spikes at detection threshold.
distance_from_probe_tip_um
Mean distance from the probe tip in micrometers, computed from waveform center of mass. 0 = probe tip, values increase toward brain surface.
spike_count
Total number of spikes assigned to this unit. Integer type; -1 indicates missing data.
max_spike_amplitude_uV
Maximum spike amplitude in microvolts.
ibl_quality_score
Proportion of IBL quality metrics passed (0.0, 0.33, 0.67, or 1.0). 1.0 = all three passed.
table
unit_name electrodes min_spike_amplitude_uV max_electrode spike_amplitudes_uV spike_times isi_violations_ratio spike_amplitude_std_dB median_spike_amplitude_uV cumulative_drift_um_per_hour presence_ratio_std firing_rate presence_ratio peak_to_trough_duration_ms spike_distances_from_probe_tip_um kilosort2_label waveform_mean probe_name sliding_rp_violation rp_violation missed_spikes_estimate cluster_uuid noise_cutoff distance_from_probe_tip_um spike_count max_spike_amplitude_uV ibl_quality_score
id
0 probe00_0 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404] 11.723447 384 [13.375040970279262, 17.110027360076785, 14.369677041876372, 21.28653835076992, 21.41173668083738, 14.201055019635287, 13.852686337998454, 13.75290510186562, 20.200342127875, 24.238034858133158, 13.71863759422389, 22.519567248349666, 20.6781560507026, 22.675742449897292, 18.005564886080624, 38.71674249183971, 27.12324770437444, 57.086792977158744, 38.994887219066676, 26.354118039567705, 12.873771630055051, 13.049368784545923, 24.710504144106338, 41.127886896104464, 36.213216336, 12.534803072001475, 36.042838460795494, 13.617544338679409, 18.73648251490474, 13.955933541486008, 18.45603391885939, 16.676335913163687, 13.475382080415388, 50.70255225865256, 25.88956999667893, 12.496893418801267, 18.243576557295512, 22.435850415161518, 20.140151860973443, 24.795977677268507, 28.564663230598516, 20.218735809955923, 14.698571255913073, 16.582151723042582, 75.5973625201875, 21.807209315683092, 12.202237914046066, 20.951479593622846, 15.266190324085647, 16.639858554879613, 22.62465585287074, 12.76976042301081, 15.03709259237249, 13.174568808634566, 18.56994837378032, 16.195266081608924, 19.30107944927437, 21.198854119954813, 23.676253386981294, 38.72527019451013, 29.70095504812384, 106.35701982729272, 37.66227528583332, 18.438839603780984, 28.217202544319516, 17.362433129343025, 51.02992185361827, 21.323174947045853, 32.70073793548658, 13.894269476149157, 45.461179547931245, 24.67079628741295, 18.685644938993114, 50.69717882343791, 15.442266886573286, 11.944786502665437, 12.648151723844945, 19.273541440809883, 16.718562779366586, 22.256992269879916, 12.395083592293421, 19.0197550442738, 29.669696969126132, 20.960510420586687, 18.536772662795542, 14.976297559906103, 19.81918227806352, 26.736463704212188, 16.007578697885094, 18.352912072939894, 23.920548182789855, 31.578286271083474, 14.593486039434376, 21.81342467942917, 34.191568059822686, 15.36246663037639, 13.311207710808624, 17.737574121866473, 14.663840433475881, 15.498977633950604, ...] [0.20745938853675364, 0.2643091342886814, 0.2654420927949777, 0.2730062569399557, 0.27513888471651343, 0.27667171093091425, 0.2857020566722757, 0.2910669484226786, 0.298831046421709, 0.31179342462609866, 0.3124598708062729, 0.31375944085761276, 0.32738826524217673, 0.33231996697546634, 0.33588545403939873, 0.33915104032225274, 0.3398841311204444, 0.3408504780816971, 0.34628201445011747, 0.34698178293930043, 0.34768155142848345, 0.34828135299064034, 0.34884783224378846, 0.3494476338059453, 0.3501474022951283, 0.3528465093248341, 0.35294647625186026, 0.3555456163545399, 0.35634535177074905, 0.35807811183920213, 0.35914442572748106, 0.3622434004652914, 0.36717510219858107, 0.36717510219858107, 0.3686746061039732, 0.3718069031507923, 0.37417278709041096, 0.37577225792282926, 0.38233675279754586, 0.38310316590474625, 0.38383625670293803, 0.3845027028831123, 0.3855356944623824, 0.3861021737155305, 0.38813483456506204, 0.38896789229027995, 0.3896010161614455, 0.39033410695963716, 0.39123380930287244, 0.39273331320826455, 0.3938662717145608, 0.3939329163325783, 0.3969652464523713, 0.3975317257055194, 0.39809820495866755, 0.39876465113884174, 0.3996643534820771, 0.4011645298834117, 0.40169794926499214, 0.4026981106054554, 0.40529853009065997, 0.4061986752970769, 0.40983259483409346, 0.4106660626178129, 0.4170004177740803, 0.419567498547936, 0.4216011599402114, 0.43036924102493945, 0.43140274107675153, 0.43373645087116586, 0.44177108030622086, 0.4424045158218476, 0.44787206448304684, 0.448738870978115, 0.4536396615463851, 0.46237440391976437, 0.46430804917799334, 0.46810866227175385, 0.4702090010867267, 0.47214264634495573, 0.4729761141286751, 0.48164417907935686, 0.4852447599050247, 0.48634493737953427, 0.49204585702017495, 0.49287932480389435, 0.49894697026937157, 0.507348325529263, 0.5113156321797674, 0.5163831163047814, 0.5182500841403128, 0.5268848103796459, 0.5385519225543353, 0.5435181458778032, 0.5446847084034501, 0.548684351348525, 0.5752486465753975, 0.5766818519640493, 0.5838145485494329, 0.5922804594498415, ...] 1.125169 1.673211 13.646273 9.185903e+05 31.536577 9.709524 0.998179 0.400000 [175.17576599121094, 131.333251953125, 77.48837280273438, 157.16310119628906, 122.05664825439453, 111.27754211425781, 105.9950180053711, 81.45589447021484, 127.05867004394531, 93.73214721679688, 80.39907836914062, 108.60465240478516, 154.3846893310547, 77.0789794921875, 159.84716796875, 82.90924072265625, 112.82776641845703, 96.88059997558594, 86.5158920288086, 95.55340576171875, 129.4549560546875, 92.68951416015625, 76.38343048095703, 75.7435302734375, 109.01295471191406, 127.37599182128906, 104.80730438232422, 147.20852661132812, 96.42877197265625, 128.1128387451172, 117.53744506835938, 78.77871704101562, 95.61511993408203, 89.39507293701172, 132.0340576171875, 59.54128646850586, 115.71365356445312, 100.1664810180664, 60.75063705444336, 119.16492462158203, 74.53923034667969, 126.25784301757812, 76.97262573242188, 84.77833557128906, 97.29998779296875, 142.58038330078125, 108.8682861328125, 122.23017883300781, 90.35913848876953, 87.03221893310547, 57.2049446105957, 45.07733917236328, 127.30696868896484, 135.13510131835938, 109.84564208984375, 89.62858581542969, 139.20950317382812, 109.34623718261719, 94.14205932617188, 77.86511993408203, 107.09302520751953, 83.9254150390625, 121.97879028320312, 116.28115844726562, 105.84847259521484, 92.00922393798828, 90.19691467285156, 98.87602996826172, 103.66456604003906, 125.35472869873047, 91.48787689208984, 118.24093627929688, 88.0013427734375, 93.86632537841797, 105.43978881835938, 143.35678100585938, 98.42024230957031, 91.38775634765625, 85.22183990478516, 93.03317260742188, 107.5857925415039, 114.27827453613281, 92.76493835449219, 91.92111206054688, 85.7473373413086, 119.5753173828125, 86.27880096435547, 116.63943481445312, 142.603515625, 56.60708236694336, 117.61515808105469, 116.07252502441406, 115.39674377441406, 80.19223022460938, 98.58860778808594, 99.8572998046875, 79.77159118652344, 98.68637084960938, 114.06785583496094, 145.15249633789062, ...] mua [[-3.1718957e-07, -8.3350506e-07, -1.5073474e-06, -3.6355712e-07, -8.6254227e-07, -2.3393818e-07, -6.2132676e-07, -2.3227815e-06, 1.9232131e-07, -9.21607e-07, -1.2261114e-06, -2.7238611e-06, -9.572035e-07, -6.948577e-07, -1.1360544e-06, -4.6193134e-07, -5.7368943e-08, 2.999841e-07, -4.008707e-07, 8.7672817e-07, -3.6822776e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7199545e-07, -2.4961992e-07, -1.1035991e-06, -1.7769273e-06, -7.1848046e-07, 6.406491e-07, -5.0340304e-07, -1.7220444e-06, -5.773795e-07, -8.6649425e-07, -1.1049844e-06, -7.080563e-07, -1.7706973e-06, 6.799148e-08, -1.3633132e-06, -5.61757e-07, -1.5421384e-07, -1.4004331e-06, 1.637494e-07, -8.695778e-08, -7.124985e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4682865e-07, 9.92177e-07, -6.8960446e-07, -1.700975e-06, -3.3349244e-07, -1.0424893e-06, -3.5004896e-07, -1.0983472e-06, -9.286839e-07, -9.876943e-07, -5.4352967e-08, -1.1423684e-06, -6.0746925e-07, -8.4268584e-07, -3.3239954e-07, -9.724546e-07, -4.123097e-07, -2.621948e-07, 2.457792e-07, 2.571598e-07, 5.101895e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.735575e-07, 7.4862896e-07, 5.3114906e-07, -9.85495e-07, 6.7556346e-07, 3.7306506e-07, -5.4009956e-07, -6.129633e-07, -4.2186443e-07, -1.1754462e-06, 6.739418e-07, -1.1663553e-06, -4.3509723e-07, 1.03326954e-07, -1.1944385e-06, -9.970986e-07, -7.210641e-07, -1.3879996e-06, -2.4247282e-07, 2.9590854e-08, -2.0811663e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.2294386e-07, -3.4482522e-07, 5.591041e-07, -5.175325e-07, -1.1746797e-06, 9.1877916e-07, -9.898151e-07, 3.5445913e-07, -2.8483646e-07, -1.7043601e-06, -1.6202853e-06, -1.1693928e-06, 7.671812e-07, -1.6278447e-06, -1.549062e-07, -1.1855046e-06, -4.3296995e-07, 1.0514264e-06, -5.006526e-07, -3.447588e-07, -7.31696e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.840557e-07, -6.77749e-07, -2.475768e-07, -9.711337e-07, -7.2914264e-07, 2.3178686e-07, -4.766292e-07, -9.594444e-07, -1.8804069e-07, -2.423598e-06, -4.5979726e-07, -1.6666755e-09, 5.85474e-07, -1.9728632e-06, -1.6911926e-07, -7.0220153e-07, -1.4404561e-06, 2.8266936e-07, -7.679174e-07, -1.2572963e-06, 7.963649e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.0514087e-07, 9.0299415e-07, 1.3701895e-06, -1.6890738e-06, -2.1414053e-06, -7.0217546e-08, 1.2812419e-07, -7.067715e-07, -1.2974253e-06, -4.960246e-07, -2.246248e-08, -1.6267849e-06, -9.2844374e-08, -8.0884445e-07, -2.92194e-07, -1.2133149e-06, 2.3774638e-07, -1.0603103e-06, -1.8273415e-06, -1.757042e-07, -1.0419591e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4965543e-07, 1.3424008e-07, -8.8290403e-07, -8.776085e-07, -6.9238615e-07, -1.8242929e-06, -5.353221e-07, 8.290846e-07, -2.3645143e-06, -8.982403e-07, -1.2589247e-06, -1.0725414e-06, -1.563595e-07, -1.1099125e-06, -4.8998425e-07, -4.4265978e-08, -3.168499e-08, -2.4897713e-07, -6.406775e-07, 9.82244e-07, -5.823588e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9621725e-06, -8.220202e-07, -1.110204e-06, -2.6088682e-07, -1.0103793e-06, -2.2662482e-07, -1.4170048e-06, -9.620834e-08, 1.3487308e-07, -3.8814449e-07, -7.75604e-07, -1.3979984e-07, -1.5616026e-06, -1.3990291e-06, -7.110395e-07, -1.0336894e-06, -2.0569664e-06, -9.2810217e-07, 2.3739119e-07, -1.5782646e-06, -4.3735406e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.561469e-07, -4.0111783e-07, -1.5066558e-06, 3.7958677e-07, -1.2126056e-06, -4.7041914e-07, -1.5658412e-06, -1.32245e-06, 4.2956975e-07, 6.479573e-07, -1.6656884e-07, -5.211016e-07, -2.5864693e-07, -8.538983e-07, -1.1442705e-06, -8.8873946e-07, -1.344062e-07, 6.2725e-08, -6.074439e-08, -1.5807832e-06, -1.1283512e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6310425e-08, -6.4716505e-07, -1.417114e-06, 8.3524094e-07, -2.4625734e-07, -1.5664662e-07, 8.4779494e-08, -6.6972615e-07, -4.2613254e-07, -5.596675e-07, 3.704377e-07, -1.7630841e-06, -5.999882e-07, -4.8738843e-07, -7.8275224e-07, 1.1153665e-07, -7.541229e-07, 2.974822e-07, 5.7855377e-08, -4.1483377e-09, -4.0548878e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.625354e-06, -1.1553172e-06, -2.2691313e-06, 5.8021067e-07, 4.79156e-07, -2.9772812e-07, -1.5695159e-06, -1.25754e-06, -1.0754748e-06, -8.142757e-07, 5.217857e-07, -8.360862e-07, -7.137725e-07, -1.018982e-06, 6.97244e-07, 8.8443596e-07, 2.7117682e-07, 7.832234e-07, 4.772025e-08, -3.3322172e-07, -1.08722965e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.8518725e-08, -1.2430535e-06, -1.6125193e-06, 1.6104866e-06, -8.333707e-07, 7.919354e-07, -7.403254e-07, -3.8267228e-07, 2.3660374e-07, -3.289161e-07, -3.694658e-07, -1.2394581e-06, 4.3466093e-07, -1.0404326e-06, -1.338565e-06, -1.5150103e-07, 3.7715086e-08, -7.8904117e-07, 4.3428676e-07, -5.513164e-07, 1.5729503e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4159984e-06, -2.0028794e-07, -1.8824408e-06, 1.2857952e-06, -1.8847305e-06, 7.5388954e-07, -4.2649397e-08, -2.8800065e-07, -1.3722096e-06, -1.6259773e-06, -7.38273e-07, -7.358745e-08, -3.3278906e-07, 1.01762794e-07, -5.689742e-07, -3.4551238e-07, -1.0009117e-07, 4.718307e-09, 4.0855684e-07, -4.2518718e-07, 1.6040956e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.7242225e-07, -1.4268401e-06, -1.6393847e-06, -7.1241004e-08, -9.249775e-07, -6.5890777e-07, -5.5734645e-08, -6.5431107e-07, -1.1004292e-06, 6.3103784e-07, -1.2883479e-06, -6.9798443e-07, -4.7396253e-07, -1.3565523e-07, -6.670135e-07, 3.490704e-07, 1.3764651e-07, -1.6765514e-06, 1.3718085e-07, -4.7447404e-07, 1.4235809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.289001e-07, 3.052003e-07, -1.1307347e-06, 3.9901387e-08, 1.4111502e-06, 1.6977216e-07, -9.647647e-08, -1.0245144e-06, -3.1231633e-07, -5.774143e-08, -1.4310895e-06, -6.1685296e-07, -1.4807744e-06, -9.284195e-07, -3.145499e-08, -9.769046e-07, -9.0810704e-07, -3.981721e-07, -6.203521e-07, -9.502638e-08, 7.0657956e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0071461e-07, -6.655879e-07, -1.8835933e-06, -5.585116e-07, -3.2109057e-07, -3.7988457e-07, -1.3831828e-06, -6.807985e-07, -4.6307204e-07, 1.0231947e-06, -7.896481e-07, -1.4695756e-06, -1.1582665e-08, -1.1040105e-06, -1.2557668e-06, 1.398949e-07, -7.163678e-07, -6.8535024e-07, -1.5745507e-06, 9.851805e-07, 2.4162446e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.282211e-07, -1.04228846e-07, -9.390449e-07, -8.366014e-08, -3.3914498e-07, 6.19591e-07, -9.0283635e-07, -1.7593134e-06, 7.2971125e-07, -7.508239e-07, -1.1508857e-06, -2.4664278e-06, -1.6784405e-08, 1.4946939e-07, 1.1399676e-06, 4.965402e-07, -1.2562123e-07, 3.718052e-07, -6.9332333e-07, 1.2412458e-07, 4.7459804e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.562401e-08, -6.8505904e-07, -1.186154e-06, -3.4719443e-07, -1.2774187e-06, -1.0311587e-06, 5.778476e-07, -2.1243368e-06, 1.044328e-06, -1.5247053e-06, -9.473978e-07, -5.8777925e-07, -2.0808598e-06, -8.3357364e-08, 3.6172878e-07, -5.031427e-07, -4.516419e-08, 6.8775745e-07, -7.066377e-08, 5.398225e-07, -6.010948e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.3138547e-07, 5.8645867e-08, -2.432336e-06, -1.8425704e-06, -8.8516504e-07, -1.1628229e-06, 4.451392e-07, -1.024107e-06, -5.9687125e-07, -9.013215e-07, 1.1077855e-06, -6.362877e-07, -5.772515e-07, -3.7757422e-07, -2.1168596e-08, -2.0032521e-06, -6.061749e-07, 8.796679e-09, -5.511888e-07, -5.722595e-07, -1.7619731e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.631243e-07, -1.5515268e-06, -9.610496e-07, -7.1557884e-07, 4.5695748e-07, -2.3123712e-06, -1.4995028e-06, -1.7389297e-07, -9.0744686e-07, 3.8331075e-07, 5.3539156e-07, -1.982969e-06, -1.0215523e-06, -1.0944148e-06, -1.3395093e-06, -3.6038227e-07, 4.715507e-08, -1.7343987e-06, -1.1403488e-06, -1.0912444e-06, -1.3948451e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2841906e-06, -2.145423e-07, -3.3624653e-07, 1.3273625e-06, 4.447478e-07, -4.658907e-07, 9.55451e-08, 8.453921e-07, -6.025855e-07, 7.8652766e-07, -7.904612e-07, -6.9251035e-07, -4.361646e-07, -3.326835e-07, -4.994905e-07, -1.6093464e-06, -1.9511995e-06, -1.0882807e-06, -2.1802948e-06, -1.9060492e-06, 3.0736823e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.1198629e-06, 1.6713636e-06, 1.6670508e-06, 2.921048e-07, 1.883439e-06, 8.407825e-07, 4.6917802e-07, 1.7018433e-06, 3.1296125e-07, 3.611822e-09, -5.550026e-09, -3.0757583e-08, 4.975944e-08, 9.719498e-07, 2.23569e-08, -4.696052e-08, -1.9501144e-06, -1.68577e-06, -3.9706669e-07, -2.4921715e-06, -2.1063292e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2476534e-06, 1.7313755e-06, 4.6789373e-06, 2.2809618e-06, 2.5401516e-06, 1.335806e-06, 1.3927574e-06, 1.3981949e-06, 1.3716494e-06, 4.910191e-07, -4.5678425e-07, 4.5302573e-07, -1.6896838e-06, 7.044703e-07, -5.6754686e-07, 3.9960952e-07, -1.6122788e-06, -2.8323127e-08, -1.5307858e-06, -1.5701962e-06, -4.0353353e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.824018e-06, 2.9469056e-06, 3.6448441e-06, 2.097355e-06, 2.7377278e-06, 3.7551433e-06, 1.6052234e-06, 2.484531e-06, 1.4357755e-06, 1.2700943e-06, 4.8266187e-09, 1.6739652e-07, 4.1781067e-07, 4.3959056e-07, -4.9984752e-08, 1.637047e-06, -1.561597e-06, -8.93075e-07, 4.500862e-07, -9.1280094e-07, 4.0515027e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.2575047e-06, 2.7381816e-06, 3.481664e-06, 2.814431e-06, 4.408872e-06, 3.013689e-06, 4.4065905e-06, 3.125218e-06, 2.917734e-06, 3.0584279e-06, 2.1404276e-06, 1.8313057e-06, 4.3411433e-07, 1.4021237e-08, 1.5287018e-06, 9.3902287e-07, -2.3174937e-07, 1.1959512e-06, 1.157221e-07, -1.4138307e-06, -2.5972136e-09, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.41995e-06, 4.8313113e-06, 5.7585194e-06, 5.475221e-06, 4.5386805e-06, 3.7790105e-06, 5.4516154e-06, 4.072355e-06, 3.137809e-06, 2.972311e-06, 2.9956516e-06, 3.5598468e-06, 8.751613e-07, 1.0431613e-06, 1.6248582e-06, 1.8492692e-06, 2.2143271e-07, 7.761515e-07, -2.8506355e-07, -4.1151536e-09, -1.2501623e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7987218e-06, 5.2948353e-06, 7.500297e-06, 3.953271e-06, 5.5741057e-06, 4.878847e-06, 7.1532436e-06, 3.851342e-06, 2.9753223e-06, 5.0686945e-06, 3.3351457e-06, 4.773221e-06, 2.705328e-06, 1.9729953e-06, 1.0680187e-06, 2.1923465e-06, -1.0050661e-06, 1.2105689e-06, 1.0608892e-08, -2.3543134e-07, -3.227625e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.125165e-06, 7.1724717e-06, 6.6751677e-06, 5.7187644e-06, 7.705761e-06, 5.0444023e-06, 6.8857294e-06, 5.3373274e-06, 4.3623622e-06, 4.273442e-06, 2.8506092e-06, 4.246015e-06, 2.9202974e-06, 2.0778787e-06, 1.8868227e-06, 5.626713e-07, 7.2609197e-07, 1.0094748e-06, -1.2277052e-08, -1.1049297e-06, -1.9390072e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.800715e-06, 7.245641e-06, 5.969564e-06, 7.693099e-06, 6.5508493e-06, 5.71463e-06, 5.5437467e-06, 5.9508548e-06, 4.3617947e-06, 5.3062595e-06, 3.1879715e-06, 2.810231e-06, 3.2034673e-06, 2.5290674e-06, 1.9801214e-06, -2.5208988e-07, 1.6601507e-06, 6.186161e-07, -6.3448745e-08, -1.2756003e-07, 2.2144026e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.0107686e-06, 6.1516494e-06, 6.0184525e-06, 5.522756e-06, 6.3115913e-06, 4.018506e-06, 5.3636663e-06, 6.799035e-06, 3.3002966e-06, 3.3651131e-06, 3.5258754e-06, 5.1550396e-06, 1.2858989e-06, 3.206273e-06, 8.2116685e-07, 1.1353538e-06, 9.0199285e-07, -1.290485e-06, 5.838383e-07, -3.677397e-07, 6.0240914e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.9990904e-06, 5.307754e-06, 4.4910685e-06, 3.4314248e-06, 4.982905e-06, 6.312473e-06, 3.113441e-06, 5.663198e-06, 3.144783e-06, 3.724204e-06, 1.5504684e-06, 4.427038e-06, 1.4377076e-06, 2.9333537e-06, 2.910641e-07, 1.1566871e-06, 3.6503246e-07, -1.9228494e-09, -1.7572816e-06, -1.3603642e-06, -2.430035e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.030801e-06, 4.186233e-06, 3.4443929e-06, 4.5791858e-06, 3.2109635e-06, 4.219051e-06, 3.361778e-06, 4.2264323e-06, 2.782463e-06, 2.8480808e-06, 1.7562102e-06, 3.2799012e-06, 1.1319894e-06, 1.4072032e-06, 6.77128e-07, 1.5586617e-06, 1.7205522e-08, -2.718188e-07, -2.0324017e-06, -1.5362327e-06, -3.0622095e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.8183695e-08, 3.0819176e-06, 3.5841138e-06, 2.3768976e-06, 6.817784e-07, 2.5119239e-06, 5.248329e-07, 2.4921226e-06, 1.6668979e-06, 2.2075915e-06, 1.0083114e-06, 8.929823e-07, 4.4242228e-08, 1.3519757e-06, -7.598415e-08, 8.857352e-07, -1.6617521e-06, -1.0366155e-06, -2.301474e-06, -1.2436433e-06, -2.012997e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.711145e-06, 7.5195646e-07, 7.122826e-07, 7.707603e-07, -6.3239565e-07, 1.3748341e-06, -2.3802386e-07, 6.6137324e-07, -1.8219171e-06, -8.719111e-07, -1.1072076e-06, 1.0373274e-06, -4.251434e-07, -4.1316076e-07, -5.7185787e-07, -6.861635e-07, -3.0142073e-06, -2.4712415e-06, -2.2398553e-06, -2.604314e-06, -1.7936126e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.520866e-06, -9.421867e-07, -2.5496072e-06, -1.5543211e-06, -2.4345613e-06, 5.64194e-07, -7.797869e-07, 2.8850076e-07, -2.9704054e-06, -1.5309023e-06, -2.91683e-06, -1.1925297e-06, -2.5141967e-06, -2.3484317e-06, -3.1816962e-06, -2.4741041e-06, -3.6740685e-06, -3.63971e-06, -2.2604377e-06, -3.8798134e-06, -2.4604024e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.4311495e-06, -4.0552263e-06, -6.118181e-06, -4.714683e-06, -4.5111724e-06, -2.3040927e-06, -4.313174e-06, -1.8831688e-06, -3.663652e-06, -3.7745738e-06, -4.796655e-06, -3.5468468e-06, -3.2212183e-06, -3.318578e-06, -4.0258237e-06, -5.990471e-06, -3.7615332e-06, -4.4545977e-06, -2.7690203e-06, -4.695574e-06, -3.979439e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.387991e-06, -6.1437095e-06, -7.203271e-06, -4.895731e-06, -5.315931e-06, -4.9516957e-06, -5.7293087e-06, -4.8192423e-06, -5.0221033e-06, -5.259044e-06, -5.986666e-06, -6.554321e-06, -4.7111034e-06, -5.219983e-06, -6.0335105e-06, -6.4755195e-06, -5.742964e-06, -6.545972e-06, -4.528403e-06, -4.677111e-06, -4.8883576e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0671383e-05, -8.571183e-06, -9.347408e-06, -7.830988e-06, -8.3880495e-06, -7.0166843e-06, -7.903785e-06, -7.3519213e-06, -7.611615e-06, -5.981051e-06, -6.8348427e-06, -5.8726932e-06, -6.803293e-06, -4.4525364e-06, -5.6158797e-06, -5.7172274e-06, -5.9723934e-06, -4.929476e-06, -4.759244e-06, -6.1272026e-06, -6.075942e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0434233e-05, -1.0024506e-05, -1.27116855e-05, -1.0127665e-05, -9.8111395e-06, -9.230173e-06, -9.104303e-06, -8.996703e-06, -8.869793e-06, -7.5807375e-06, -8.923475e-06, -7.5294947e-06, -8.0153e-06, -5.865075e-06, -6.1786222e-06, -6.2139306e-06, -7.660526e-06, -7.2345147e-06, -6.2605295e-06, -6.758875e-06, -6.187988e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.29268155e-05, -1.1329044e-05, -1.1766563e-05, -1.128278e-05, -1.1378499e-05, -9.988924e-06, -9.058767e-06, -7.202846e-06, -1.0354795e-05, -9.093732e-06, -8.828075e-06, -8.864214e-06, -7.803137e-06, -7.812591e-06, -8.363511e-06, -7.788117e-06, -7.827767e-06, -7.225822e-06, -7.664159e-06, -6.5158674e-06, -4.2803686e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.20802815e-05, -1.1763225e-05, -1.1685566e-05, -1.3278843e-05, -1.1615317e-05, -1.0261991e-05, -1.0524053e-05, -9.546655e-06, -9.797126e-06, -1.0612167e-05, -8.042734e-06, -8.40427e-06, -7.3532165e-06, -8.783434e-06, -8.327965e-06, -8.547635e-06, -6.0576676e-06, -6.380735e-06, -6.6250063e-06, -5.7943935e-06, -4.7533495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1429433e-05, -1.1949376e-05, -1.3129564e-05, -1.3379225e-05, -1.1955786e-05, -1.1437231e-05, -1.0275655e-05, -1.06789485e-05, -9.565515e-06, -1.0442311e-05, -9.463367e-06, -1.0375649e-05, -7.813083e-06, -8.878243e-06, -7.751954e-06, -7.2047383e-06, -6.8044374e-06, -6.0215734e-06, -5.936521e-06, -7.381451e-06, -5.2499136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.05498475e-05, -1.0400279e-05, -9.068477e-06, -1.0717787e-05, -1.0876195e-05, -1.1080226e-05, -8.852125e-06, -9.985288e-06, -1.112827e-05, -9.897174e-06, -7.356884e-06, -9.358151e-06, -8.07703e-06, -7.948522e-06, -7.946689e-06, -6.995506e-06, -7.8111425e-06, -7.452856e-06, -6.3189705e-06, -6.883336e-06, -4.897661e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.81439e-06, -1.0815849e-05, -9.739418e-06, -8.624484e-06, -9.551628e-06, -9.848163e-06, -7.2330026e-06, -8.329009e-06, -8.062208e-06, -7.889257e-06, -7.89632e-06, -7.4251157e-06, -5.7661787e-06, -6.723274e-06, -6.566149e-06, -7.0622846e-06, -4.33079e-06, -5.5458113e-06, -4.422929e-06, -3.5155008e-06, -4.701556e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.262004e-06, -8.836971e-06, -6.9375656e-06, -8.573057e-06, -7.6019846e-06, -7.813382e-06, -7.2020766e-06, -7.3514225e-06, -7.170378e-06, -7.598486e-06, -5.175813e-06, -6.822252e-06, -5.443138e-06, -5.766995e-06, -4.573205e-06, -4.074344e-06, -4.959998e-06, -4.528467e-06, -2.77369e-06, -4.4618982e-06, -3.1347354e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.499725e-06, -4.6812133e-06, -5.675224e-06, -5.4424154e-06, -5.846031e-06, -5.533192e-06, -4.878334e-06, -4.9604605e-06, -4.085732e-06, -4.643627e-06, -3.0923347e-06, -4.747213e-06, -3.536023e-06, -3.991846e-06, -3.0639544e-06, -3.9288207e-06, -3.3380202e-06, -2.3708549e-06, -3.3752203e-06, -1.5873468e-06, -2.040585e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.538564e-07, -1.6817157e-06, -1.5015305e-06, -1.9534218e-06, -2.5620236e-06, -2.2450558e-06, -1.8993378e-06, -2.2630961e-06, -1.3337067e-06, -3.7765305e-06, -6.9725166e-07, -1.4147968e-06, -9.3256716e-07, -1.3885915e-06, -1.7254839e-06, -1.5161279e-06, -1.5061992e-06, -1.0617425e-06, -9.105668e-07, -1.800332e-07, -8.9163575e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1010944e-06, 1.027654e-06, 7.2092064e-07, 1.2583014e-06, 8.674391e-07, 4.00845e-08, 1.7545358e-06, 8.8670936e-07, -2.9547678e-08, 1.0913557e-06, -3.1911313e-07, 1.0079975e-06, 4.2867595e-07, 1.1662115e-06, 1.7634571e-06, 7.896e-07, 5.8145093e-09, 2.641177e-07, -3.7241648e-07, 1.2421681e-06, 7.7569587e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.752179e-06, 3.4307852e-06, 2.982542e-06, 3.8628705e-06, 3.5292069e-06, 2.7810672e-06, 4.0148025e-06, 2.4267501e-06, 1.9878623e-06, 3.9040688e-06, 3.8721464e-06, 3.862112e-06, 2.790609e-06, 3.48306e-06, 4.0054965e-06, 2.9853436e-06, 3.38639e-06, 3.2125336e-06, 1.5199499e-06, 2.2572624e-06, 1.4993905e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.729659e-06, 6.7488963e-06, 7.653395e-06, 6.746105e-06, 6.175621e-06, 6.718088e-06, 5.484523e-06, 6.4954766e-06, 6.045282e-06, 5.0417652e-06, 5.2091245e-06, 5.2617183e-06, 4.6990226e-06, 5.166999e-06, 5.5246614e-06, 5.1287698e-06, 5.449908e-06, 5.80877e-06, 4.4084327e-06, 6.1091396e-06, 3.9578417e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.637127e-06, 9.776813e-06, 9.468138e-06, 8.8229335e-06, 8.573981e-06, 7.325335e-06, 7.87428e-06, 6.302601e-06, 7.695016e-06, 6.087347e-06, 8.627472e-06, 7.754035e-06, 6.7060478e-06, 7.05369e-06, 7.3922483e-06, 6.51708e-06, 7.110757e-06, 6.0050043e-06, 5.521474e-06, 8.282174e-06, 5.4773973e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.049647e-06, 1.1198614e-05, 8.0402115e-06, 9.661504e-06, 1.0031951e-05, 1.0092388e-05, 9.619756e-06, 8.168145e-06, 1.0302666e-05, 7.941982e-06, 8.138466e-06, 9.465235e-06, 6.457398e-06, 7.753613e-06, 7.9079455e-06, 6.410898e-06, 8.798413e-06, 7.548216e-06, 7.883829e-06, 9.397863e-06, 7.742718e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.322218e-06, 8.898554e-06, 1.0158364e-05, 1.03046605e-05, 1.0753391e-05, 1.0682679e-05, 9.463072e-06, 1.0543443e-05, 9.769474e-06, 9.447511e-06, 9.950882e-06, 9.883157e-06, 9.486048e-06, 8.98263e-06, 7.057225e-06, 8.116798e-06, 8.311912e-06, 8.720475e-06, 1.0655326e-05, 8.0504815e-06, 8.34531e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0036845e-05, 1.1084894e-05, 9.807478e-06, 1.0518144e-05, 1.0557165e-05, 8.769784e-06, 9.543865e-06, 1.0758406e-05, 1.0299725e-05, 9.910986e-06, 1.00806665e-05, 9.975635e-06, 1.0318847e-05, 1.0350499e-05, 9.117249e-06, 8.976011e-06, 9.154862e-06, 8.679171e-06, 8.78107e-06, 1.0919129e-05, 6.5715612e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.9415495e-06, 1.1136814e-05, 9.044543e-06, 9.307909e-06, 9.286114e-06, 8.178527e-06, 1.1341463e-05, 9.391293e-06, 9.536096e-06, 8.739318e-06, 9.874284e-06, 1.0507086e-05, 7.742851e-06, 8.607876e-06, 8.489494e-06, 8.236733e-06, 9.50566e-06, 9.0183985e-06, 7.0279602e-06, 8.0755135e-06, 7.951772e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.095843e-06, 9.216967e-06, 5.9693148e-06, 7.960098e-06, 9.018315e-06, 9.068988e-06, 1.0726861e-05, 7.597141e-06, 8.264606e-06, 9.341009e-06, 7.787583e-06, 8.09465e-06, 7.455343e-06, 8.927993e-06, 6.5468807e-06, 7.4472364e-06, 7.649189e-06, 5.6577906e-06, 6.6197717e-06, 7.937648e-06, 7.893466e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.5721765e-06, 9.06751e-06, 6.6910106e-06, 8.729467e-06, 7.480429e-06, 8.119972e-06, 7.69261e-06, 6.6275716e-06, 7.201635e-06, 8.932529e-06, 8.285594e-06, 6.965701e-06, 7.3215374e-06, 8.09791e-06, 6.805537e-06, 6.915967e-06, 6.3493503e-06, 6.071019e-06, 5.900393e-06, 6.225524e-06, 6.7851415e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.080047e-06, 5.7049383e-06, 4.1376397e-06, 6.954185e-06, 6.4754677e-06, 7.302454e-06, 6.6405555e-06, 6.1926366e-06, 7.892995e-06, 8.186669e-06, 5.7645448e-06, 6.2591153e-06, 6.3911175e-06, 7.595545e-06, 4.8497186e-06, 4.9318005e-06, 6.1833243e-06, 6.5755116e-06, 4.214663e-06, 5.894077e-06, 5.4552434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.837141e-06, 2.7013273e-06, 2.3652099e-06, 4.1627736e-06, 4.574799e-06, 2.6634534e-06, 3.663391e-06, 4.0979103e-06, 6.175912e-06, 6.2858026e-06, 4.0329705e-06, 5.7443513e-06, 4.722329e-06, 5.8856394e-06, 3.953868e-06, 5.4752327e-06, 5.2704336e-06, 3.3147787e-06, 3.5794915e-06, 5.8160513e-06, 5.1514453e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1229388e-06, 1.940699e-06, -5.1992635e-07, 3.0489828e-06, 2.8827862e-06, 2.8119466e-06, 1.6579816e-06, 2.9808916e-06, 4.777135e-06, 3.351197e-06, 2.7649553e-06, 4.3435543e-06, 3.9132647e-06, 4.7554786e-06, 2.382692e-06, 4.720428e-06, 4.2442916e-06, 3.875527e-06, 3.048832e-06, 4.2738916e-06, 2.812434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.225378e-07, 9.92953e-07, -8.3823494e-07, 1.5750655e-06, 8.6542593e-07, 1.05330756e-07, 1.5370453e-06, 2.525699e-06, 2.6984135e-06, 1.2151304e-06, 2.8133213e-06, 2.2513782e-06, 2.7411002e-06, 1.8028545e-06, 1.3423975e-06, 3.5973546e-06, 1.7956834e-06, 4.5996635e-06, 2.5910317e-06, 3.146702e-06, 3.0532601e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3067392e-07, -1.4742775e-06, -5.3240046e-07, -7.3647357e-07, -9.562199e-07, -4.792887e-07, -1.6540547e-08, 1.4596631e-07, 2.0065318e-06, 1.5021224e-06, 1.5071246e-06, 1.5480304e-06, 1.080858e-06, 1.819604e-06, 1.5281025e-06, 2.48011e-06, 1.0436354e-06, 2.4650572e-06, 1.3261924e-06, 2.520803e-06, 1.886172e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.66146e-07, -1.3477163e-06, -2.5885527e-06, -3.1715836e-06, -1.842999e-06, -1.605563e-06, -2.6552648e-06, -1.1714029e-07, 3.2206593e-09, 5.5200815e-07, 1.6069232e-06, 3.750509e-08, 6.9404285e-07, 8.634587e-07, 1.2583239e-06, 5.4832634e-07, 2.9229818e-07, -1.656625e-07, 6.8440437e-07, 9.407034e-07, 1.919724e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8692848e-06, -3.1114423e-06, -3.6432511e-06, -3.7514383e-06, -1.7105876e-06, -3.2384573e-06, -4.009349e-06, -2.0025147e-06, -1.1588384e-06, -3.6664062e-07, -1.3721403e-06, -6.9867946e-07, 5.0986245e-07, -4.6175379e-07, 1.5299598e-08, -1.774756e-08, -5.8093076e-07, -5.067987e-07, 1.8291658e-07, -5.7297314e-07, -4.7649195e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.0746305e-06, -5.01086e-06, -5.7207353e-06, -4.1956123e-06, -1.8459557e-06, -2.6614061e-06, -3.7440777e-06, -5.024878e-06, -2.3747407e-06, -8.575101e-07, -2.255289e-06, -1.5688854e-06, -1.5179635e-06, -9.022176e-07, -7.778618e-07, 6.103111e-07, -1.5552901e-07, -8.361894e-07, -4.9112632e-08, -4.8960567e-07, -4.3743555e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.9543519e-06, -3.6562697e-06, -3.4726704e-06, -4.2753622e-06, -3.7745278e-06, -3.6187375e-06, -2.9912026e-06, -3.5598705e-06, -2.9165544e-06, -3.3423294e-06, -1.5125637e-06, -2.4813457e-06, 1.08481714e-07, -1.1645357e-06, 8.607097e-08, -4.764243e-07, -2.6256305e-07, -8.7073226e-07, -4.2818434e-07, -1.4330839e-09, -1.1682773e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1519604e-06, -3.5559137e-06, -3.8470794e-06, -2.8075265e-06, -3.846783e-06, -3.5395283e-06, -3.6395377e-06, -1.9875981e-06, -2.7943647e-06, -2.443191e-06, -1.8721939e-06, -1.8163421e-06, -8.779287e-08, -1.1253655e-06, 1.0193352e-07, -1.495036e-06, -9.252954e-07, -1.4656937e-06, -7.634643e-07, -1.1593534e-06, -2.4077093e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.823055e-06, -4.475974e-06, -4.0345635e-06, -1.9959932e-06, -3.7025202e-06, -4.548703e-06, -2.9199173e-06, -3.523688e-06, -2.608198e-06, -2.2687627e-06, -1.4278899e-06, -2.7486735e-06, -2.2142299e-06, -8.953383e-07, -6.449028e-07, -1.1978946e-06, -1.9501056e-06, -1.2133315e-06, -9.5049455e-07, -7.7773177e-07, -1.2485824e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5974464e-06, -5.549543e-06, -3.871095e-06, -3.1341974e-06, -3.7546965e-06, -3.1678894e-06, -3.0192186e-06, -3.7085717e-06, -3.15721e-06, -3.6606743e-06, -2.42794e-06, -2.5859958e-06, -1.425096e-06, -2.1237756e-06, -1.6285213e-07, -1.9546917e-06, -1.0389554e-06, -1.7133241e-06, 1.0259461e-07, 2.0431452e-07, -7.830648e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3622802e-06, -4.1647495e-06, -2.4992496e-06, -2.84513e-06, -5.1394018e-06, -3.6172673e-06, -3.0773776e-06, -4.4737985e-06, -2.836305e-06, -2.0663724e-06, -2.7141991e-06, -3.3867238e-06, -2.637552e-06, -3.0565193e-06, -1.7835877e-06, -2.054784e-06, -1.1193665e-06, -4.448715e-07, -1.2259718e-06, -1.6079581e-06, -1.3385206e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2792054e-06, -2.5217093e-06, -2.875654e-06, -2.971976e-06, -3.4251466e-06, -4.2402007e-06, -3.3269257e-06, -4.237966e-06, -3.0457375e-06, -3.4750249e-06, -2.69752e-06, -3.700221e-06, -4.480744e-06, -2.060668e-06, -1.6533243e-06, -1.1369576e-06, -1.104502e-06, -1.9695785e-06, -1.2562864e-06, -1.3299662e-06, -1.0959116e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4498875e-06, -1.073724e-06, -3.4761686e-06, -3.4968955e-06, -3.5740914e-06, -4.6219443e-06, -3.616954e-06, -4.792187e-06, -3.39199e-06, -1.8813441e-06, -3.0218887e-06, -1.6630464e-06, -3.7196771e-06, -7.009716e-07, -1.7768789e-06, -1.7770496e-06, -1.0661997e-06, -5.142539e-07, -4.3898126e-07, -1.8513068e-06, -1.4577457e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.050503e-06, -3.4789664e-06, -2.6814791e-06, -2.3065732e-06, -3.1079862e-06, -4.2805714e-06, -2.7503804e-06, -3.597181e-06, -3.1420782e-06, -2.8445615e-06, -1.7307422e-06, -3.049378e-06, -2.5617028e-06, -4.419509e-06, -2.028003e-06, -3.0629762e-06, -1.0601993e-06, -1.97701e-06, -7.227843e-07, -1.7575792e-06, -2.6271414e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.5191802e-06, -2.1347614e-06, -3.3319e-06, -4.4608205e-06, -3.8978123e-06, -2.8259733e-06, -1.7871919e-06, -4.267651e-06, -2.0382504e-06, -1.5205292e-06, -3.250611e-06, -2.22125e-06, -2.9464416e-06, -3.1299533e-06, -1.9157283e-06, -1.4665363e-06, -1.2260066e-06, -2.3693894e-06, -3.6133855e-07, -1.4989675e-06, -1.0990767e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.613845e-06, -1.7436962e-06, -1.2716366e-06, -3.1487607e-06, -4.988572e-06, -2.759571e-06, -3.7768145e-06, -3.0439342e-06, -3.0592164e-06, -1.7929004e-06, -2.921306e-06, -4.029116e-06, -3.187441e-06, -2.2991926e-06, -1.2026352e-06, -1.9144682e-06, -1.7690336e-06, -3.738349e-07, -1.6570664e-06, -1.7357111e-06, -8.9953926e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.3489125e-07, -2.0648909e-06, -2.8070804e-06, -2.7897913e-06, -2.5085528e-06, -4.627642e-06, -3.8020833e-06, -1.6563802e-06, -3.2189218e-06, -2.525704e-06, -3.2522996e-06, -3.4544619e-06, -2.3969292e-06, -1.5098767e-06, -1.0599592e-06, -2.258371e-06, -1.6071178e-06, -9.058459e-07, -1.2887762e-07, -1.1991953e-06, -1.6362159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7327766e-06, -1.4911027e-06, -2.8663094e-06, -2.657341e-06, -2.9937955e-06, -1.8126045e-06, -3.7442223e-06, -2.0303723e-06, -2.6062248e-06, -2.6308708e-06, -2.8422446e-06, -2.371701e-06, -1.6453e-06, -2.7851268e-06, -9.313905e-07, -2.288149e-06, -2.0210919e-06, -1.7867555e-06, -1.0430083e-06, -2.3462576e-06, -1.4144098e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3753465e-06, -3.4943383e-07, -2.2329523e-06, -2.8863515e-06, -1.4042419e-06, 7.458175e-07, -3.3059564e-06, -2.2928375e-06, -1.6090062e-06, -2.8339573e-06, -1.1113086e-06, -2.1677351e-06, -1.1416718e-06, -2.2342942e-06, -4.6134616e-07, -1.7107579e-06, -1.8406449e-06, -2.18856e-06, -6.250842e-07, -2.519777e-06, -2.1109847e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.6320665e-07, -2.0723655e-06, -2.6626767e-06, -1.223426e-06, -1.3904523e-06, -1.920947e-06, -2.1664382e-06, -5.8756147e-08, -1.1268452e-06, -1.9055906e-06, -1.4934676e-06, -1.9804347e-06, -5.8424166e-07, -2.3641626e-06, -1.6759121e-06, -1.7634627e-06, -6.347406e-07, -2.1356987e-06, -5.6123383e-07, -2.1090736e-06, -1.8014005e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6292503e-06, -1.2635102e-06, -3.0783685e-06, -9.650016e-07, -5.8463013e-07, -6.9136104e-07, -1.6322545e-06, -7.0099077e-07, -7.115473e-07, -2.1922629e-06, -7.983797e-07, -1.4924119e-06, -7.2541695e-07, -3.0798892e-06, -1.059226e-06, -3.8918365e-06, -1.0063415e-07, -1.7455989e-06, -5.946158e-07, -1.2423791e-06, 2.1712674e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3411694e-06, -9.554867e-07, -3.3847737e-06, -1.0762892e-06, -5.37573e-07, -9.4052905e-07, -1.0221546e-06, -4.3134867e-07, -9.850693e-07, -1.5914327e-06, -1.260112e-06, -1.5820619e-06, -2.2976987e-07, -2.286868e-06, -1.1177319e-06, -1.8909625e-06, -8.853023e-08, -1.4358075e-06, 1.0006603e-06, -1.7998591e-06, -1.1181397e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1589937e-06, -2.4275508e-07, -8.477175e-07, -1.180876e-06, 1.732225e-07, 2.9330081e-07, 3.2632776e-09, -1.234509e-06, -2.9403742e-07, -1.0573974e-06, -3.350085e-07, -4.880571e-07, -1.0328524e-06, -1.2556232e-07, -3.312323e-07, -2.3530147e-06, 2.9314725e-07, -1.3970091e-06, -3.0448604e-07, -1.2367934e-06, -1.6135388e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.915901e-07, 7.118407e-07, -3.189126e-08, 1.0902111e-06, 6.904426e-07, 6.588112e-07, 8.202509e-07, 1.0301899e-06, -7.416288e-07, -2.0325774e-06, 3.955225e-07, -4.3135606e-07, 1.7419977e-09, 4.4789869e-07, 2.0538448e-07, 2.162301e-08, -3.509682e-08, -7.829732e-07, -8.449857e-07, -1.5634532e-06, 2.1549641e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.200546e-07, 6.386071e-07, 1.5105466e-07, -7.5817175e-09, 7.4987116e-07, 1.7969253e-06, -1.1687848e-06, 2.9940952e-06, -4.2149327e-07, -4.1512016e-07, -3.90055e-07, -4.1918256e-07, -1.317133e-08, 1.2650216e-06, -3.7112642e-07, -3.0339334e-07, -5.587443e-08, -1.0451693e-06, -7.0862836e-07, -1.2092581e-06, -5.3985787e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8387442e-06, 2.413534e-06, -1.0607208e-08, -7.102544e-07, 4.9427393e-07, 3.5834996e-06, 8.6565285e-07, 9.3399507e-07, -3.9532775e-08, 7.086751e-07, 7.640999e-08, 9.357308e-07, -4.770248e-08, 5.800718e-07, 7.7195847e-07, 1.0776515e-07, 2.9254747e-07, -1.2710564e-06, -4.5546258e-07, -2.0554981e-07, 6.4400353e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.6925294e-06, 1.1911311e-06, 8.981812e-07, 1.1982589e-06, 9.3487365e-08, 5.0388064e-07, 7.2025585e-09, 2.259963e-06, 5.920212e-07, 5.417121e-07, 1.066971e-06, 1.495255e-06, -9.0285994e-08, 4.9680136e-07, -6.487936e-07, 7.1009663e-07, 9.306684e-07, 6.371779e-07, 2.0968491e-07, 1.8483505e-06, -2.0293524e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.1831074e-08, 1.0518947e-06, 1.172845e-06, 5.6695353e-07, 1.2171686e-06, 1.4170685e-06, 8.7297246e-07, -1.3325044e-07, 1.2659959e-07, -1.3074039e-07, -8.918679e-09, 5.655369e-07, 5.2605935e-07, -1.0291808e-07, 6.2747756e-07, 1.4915017e-06, 1.7728053e-06, 2.7266637e-07, 6.877418e-07, 1.6103825e-06, 1.176742e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8870585e-06, 1.9837448e-06, 1.4908007e-06, 7.58099e-07, 2.1769415e-06, -2.1054667e-07, 4.778797e-07, 1.6014174e-06, 2.3043756e-07, 1.1117918e-06, -4.2689052e-08, 1.0115668e-06, -2.6255262e-07, 1.0745748e-06, 8.807607e-07, 7.819536e-07, 9.714308e-08, 2.7299717e-07, 1.0656646e-06, 5.294186e-07, 1.5710771e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.460904e-06, 1.7780065e-06, 1.3282106e-06, 7.921697e-07, 1.2414214e-06, 7.55795e-07, 2.6399266e-07, 1.5604837e-07, -5.191105e-07, 9.689655e-07, 3.0517376e-07, 1.168117e-06, 1.642414e-07, 8.999939e-07, 4.967092e-07, 3.8257664e-07, -5.004521e-07, -3.2031213e-07, -6.714978e-08, -6.7598116e-08, 9.2074595e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2089973e-06, 7.133471e-07, 1.4061258e-06, -1.1700299e-06, 8.5140437e-07, 6.837321e-07, 4.4675295e-07, 4.3606576e-07, 8.562827e-09, 6.780633e-08, 3.934249e-08, 1.3626129e-06, 1.0814574e-06, 5.332244e-07, 6.245883e-08, -6.198876e-07, 3.3563526e-07, 9.975061e-10, -4.0663747e-07, -1.0649178e-06, 2.3612606e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.4043013e-07, -1.3293101e-06, -6.752898e-07, -3.339589e-07, 1.9647339e-06, -4.936818e-07, 1.1544121e-06, -2.595869e-07, -6.8438754e-07, 1.8053359e-07, 2.3282986e-07, 7.206909e-07, 2.0204047e-09, 1.8868937e-07, 3.712975e-07, -4.058515e-07, -1.1509122e-07, -3.8838766e-07, -6.3307203e-07, -1.0492607e-06, 2.6338117e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.3810582e-07, -7.2066587e-07, -1.1852917e-06, -9.2818425e-07, 5.0719615e-07, 8.6932675e-07, 8.898834e-07, -1.852303e-07, -3.5261047e-07, 6.748575e-08, 5.1089415e-07, 2.62826e-07, -7.5754923e-07, 5.45525e-07, 5.377708e-07, -5.8555145e-08, 3.1304603e-07, -6.9874733e-07, 7.1567365e-07, 2.4707973e-07, -1.2118261e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6136345e-07, 2.2186791e-07, 8.299768e-07, -3.1226264e-08, -1.6070178e-06, -1.1274753e-07, -2.764092e-07, 8.553859e-08, -9.1677373e-07, -2.4790762e-07, -1.1489967e-06, 6.9884607e-07, -9.844755e-07, -4.5813792e-07, -6.615536e-07, -1.2962912e-06, -1.7322421e-07, -7.8761616e-08, 6.9480086e-07, -1.5933613e-06, -1.3834665e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2894037e-06, -5.175876e-07, -2.6154777e-07, 9.557498e-07, -1.2321242e-06, 4.0501504e-07, -5.1543953e-08, -1.1274318e-06, -2.0105178e-06, -1.722297e-06, 7.1851446e-07, -7.941056e-07, -1.923221e-06, 1.4303686e-07, -1.036034e-06, -7.294617e-07, -8.838735e-07, -1.1690873e-06, -8.394907e-08, -3.7298116e-07, -7.7077414e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.6464035e-07, -1.1349939e-06, 4.3367817e-07, -1.8434983e-07, -4.5715544e-07, 4.92485e-07, -8.009819e-08, -6.304949e-07, -4.8552164e-07, -1.0883587e-06, 2.414062e-07, -2.1270525e-07, -1.8482065e-06, -6.4773724e-07, -1.0616666e-06, -1.957749e-06, -1.8402188e-06, 4.5156474e-07, 7.549407e-07, -6.4701646e-07, -5.8494106e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1603806e-06, -9.4700215e-07, -1.4737357e-06, -2.0449512e-07, -9.398726e-08, -5.824983e-07, 7.958304e-07, -6.593212e-07, -1.4218228e-06, 2.2691601e-08, 6.5147407e-09, -1.7693856e-06, -1.4661533e-06, -1.6085519e-06, -5.371544e-07, -1.4443444e-06, -2.9036355e-06, -4.9538477e-07, -7.059991e-07, -1.8400119e-06, -1.9124136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.3873343e-07, -1.296895e-06, -2.1611445e-06, -2.490235e-07, 1.770232e-08, -1.2633991e-06, -4.1213346e-07, 1.2348053e-07, 2.854643e-07, 7.4612466e-08, -1.0886855e-06, -2.1052037e-06, 2.3109203e-07, -1.7774175e-07, -1.2426303e-06, -9.3796154e-07, -1.0738356e-06, -4.0388227e-07, -1.0091172e-06, -2.1254373e-06, -2.5711986e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1685986e-07, -2.238247e-06, -1.3173645e-06, -5.663552e-07, -1.2540958e-06, -1.2857874e-06, -1.048457e-07, -5.4285323e-09, -1.7012144e-06, -4.5902152e-07, -1.5940061e-06, -4.857941e-07, 1.940783e-07, -7.237679e-07, -1.795933e-06, -8.2834606e-07, -4.6863883e-07, 2.4354275e-08, -1.8539322e-06, -4.4662107e-07, -2.117352e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.023809e-06, 9.7317226e-08, -1.8162335e-06, -2.8381334e-07, -1.5630646e-06, -5.961359e-07, -4.210445e-07, -8.8919785e-07, -8.226556e-07, -2.817686e-06, -5.8068997e-07, 1.0707565e-06, -9.3394294e-07, -1.0157332e-06, -2.2706572e-06, 1.1539687e-07, -7.0587754e-07, 5.1647345e-07, -1.943872e-06, -1.144199e-06, -3.052082e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 1.0 0.641269 0.500000 4f33f112-d692-470d-b1b8-22cf5328f9eb 5533.689535 20.0 53196 106.357020 0.333333
1 probe00_1 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406] 12.659316 386 [13.709021810005417, 12.954418924990161, 18.83230155782138, 15.73757618831517, 23.878462011735554, 30.445286988807926, 13.979496565047798, 31.768310016291853, 17.88980340179851, 25.172268360997926, 14.312670810124615, 23.25380704324562, 15.911054797709488, 15.494471513526873, 16.29419088229187, 16.418592720406664, 13.763130377448139, 15.111534438368102, 12.867026555158168, 18.91505805550135, 13.0774161755415, 13.254667584640199, 13.313736723820833, 13.47914916705095, 14.405239519806432, 14.101596178356866, 14.647947223165536, 15.49685857919214, 16.324737781397534, 12.669753750626576, 17.99425821115976, 15.991517449927883, 14.017023457831977, 16.680444082898745, 14.578505503342896, 13.196396577990031, 14.545934992624552, 14.052469131012433, 13.158941957049164, 16.23657032223149, 12.80836171933286, 19.07978129767498, 13.05978708286397, 16.597280139609392, 14.32633228334623, 16.94102283249776, 14.86382217171429, 13.084223345246881, 13.645169112732079, 16.77862904799836, 18.020961086135756, 14.068166784862955, 18.569904490541408, 22.350050784908948, 17.723573972513584, 16.389629517345703, 14.871526978661942, 18.21156602755849, 13.96634308956539, 16.915825097215052, 13.391238325299557, 12.95858869612374, 14.922198967584375, 13.447548565418186, 15.40122826664083, 13.845073031327358, 17.47779523952282, 13.676978150550621, 13.592368770395067, 15.414974580721983, 19.974651261538586, 15.775523095724964, 14.51594217765093, 13.10013990946337, 14.439315170218057, 14.08584196393332, 13.019385027617679, 12.976385375684307, 15.328718659440588, 14.411153241941621, 17.88454955301528, 15.877411730939704, 14.153175231283742, 24.846823013483196, 19.91434721651357, 14.696907731044949, 15.034825732329747, 13.182403073256397, 12.970415092976094, 16.159075005260878, 19.062714668473642, 15.181690497279686, 13.269111479121996, 17.651469716086684, 13.381260621250712, 18.482763501033972, 14.687935548294329, 15.544806233847197, 15.248923212500285, 15.527119533178622, ...] [0.0378055767158437, 0.22426471895297584, 0.32532228208363645, 0.33198674388537924, 0.3463486590681349, 0.34884783224378846, 0.37207348162286197, 0.4059653043176355, 0.40973257870004715, 0.4191007565890532, 0.43650356391311423, 0.45223943566973646, 0.5009806316616469, 0.5443514048246939, 0.5617165212778941, 0.6563747376446667, 0.729056434044552, 0.7811121947124132, 0.8132788113098155, 0.8494443582935219, 0.8927995025269537, 0.9686849767536109, 0.9871256360328419, 1.0085674875998318, 1.0325436793209297, 1.035578218189664, 1.0465492433304722, 1.1750571492001314, 1.2280719546665992, 1.2699972322078508, 1.2771662834292035, 1.2792336377348963, 1.3309508398014938, 1.5668267298282996, 1.5838747789399927, 1.5935831591581975, 1.6121875943479114, 1.6610746073033118, 1.728556680401257, 1.780442896605455, 1.8106843909085992, 1.8829495260619835, 1.9457212677084945, 1.9488259190088646, 1.9727905523003189, 1.9749236952043587, 1.9988882225169324, 2.000854713631594, 2.034685026875353, 2.12854873172334, 2.138388165618561, 2.2347873816558255, 2.240685698467103, 2.259680278028844, 2.262412831579831, 2.3472269035084823, 2.3499609038840656, 2.35222812370772, 2.371632858080761, 2.393504861085426, 2.4438171362897547, 2.5202024394661073, 2.6404976116226977, 2.6895963390885083, 2.6980969966509516, 2.7573682482039867, 2.7610685344370505, 2.9863771688042444, 3.027265405172324, 3.0304644847903646, 3.144291933777522, 3.2049561703859877, 3.2551604971232986, 3.2845963673152276, 3.368132654405449, 3.3844645297645046, 3.3909972799081274, 3.466577916059364, 3.8325115046004083, 3.8378095478724807, 3.8520709473721473, 3.8634000965073967, 3.9378283080224272, 3.9996361425632636, 4.021821179611152, 4.053743901969164, 4.0608813066051, 4.098336004764703, 4.101571183501552, 4.1532453847429895, 4.15510745129224, 4.157501536855563, 4.162461743297324, 4.207191083566412, 4.210057494343716, 4.273385174307402, 4.295716514084071, 4.3655127686821205, 4.368513490574928, 4.420292613903044, ...] 0.017299 1.424293 15.134922 3.766966e+06 57.146816 24.860988 0.998179 1.000000 [109.68396759033203, 108.80651092529297, 196.3152618408203, 118.28694152832031, 56.026153564453125, 42.09296417236328, 190.71359252929688, 96.69256591796875, 122.73764038085938, 108.67363739013672, 88.90071105957031, 93.32963562011719, 188.11044311523438, 140.33627319335938, 134.6336669921875, 68.0504150390625, 160.7938232421875, 93.29022216796875, 56.77910614013672, 133.01068115234375, 135.6490478515625, 132.05447387695312, 106.03314971923828, 123.86151123046875, 243.443115234375, 71.79044342041016, 71.11961364746094, 101.49183654785156, 86.39129638671875, 126.03534698486328, 80.49200439453125, 92.05962371826172, 133.205810546875, 106.34309387207031, 97.11279296875, 64.51605224609375, 147.93670654296875, 90.95315551757812, 119.50899505615234, 129.87469482421875, 169.29293823242188, 159.28871154785156, 129.4086456298828, 175.12911987304688, 54.69630813598633, 96.24870300292969, 134.63357543945312, 115.20439147949219, 134.41317749023438, 105.1613998413086, 129.87705993652344, 108.36209106445312, 209.37005615234375, 143.2292022705078, 76.43730163574219, 155.2503204345703, 112.17405700683594, 156.68206787109375, 132.89010620117188, 86.24356079101562, 157.57650756835938, 145.7410888671875, 133.6832733154297, 95.37146759033203, 93.06957244873047, 145.73358154296875, 117.95323944091797, 184.26205444335938, 85.04801940917969, 93.12206268310547, 101.23828887939453, 137.7090301513672, 79.83845520019531, 114.48873901367188, 121.97014617919922, 95.46247863769531, 146.96286010742188, 111.71700286865234, 139.83612060546875, 141.67990112304688, 101.9470443725586, 123.38526153564453, 157.19952392578125, 127.09353637695312, 48.972557067871094, 227.9293212890625, 83.71383666992188, 209.85861206054688, 105.590576171875, 190.28543090820312, 79.05470275878906, 85.87229919433594, 113.09724426269531, 229.0543975830078, 145.96531677246094, 64.46220397949219, 110.25888061523438, 158.14663696289062, 130.73211669921875, 52.45402526855469, ...] good [[1.2178883e-07, 1.73362e-07, 7.424618e-08, 2.6611758e-07, 8.187839e-07, 4.851108e-07, 5.397047e-07, 7.65501e-07, -8.264007e-07, 1.1257098e-06, -9.838559e-07, -1.3428491e-06, -4.119167e-07, -2.8042878e-06, -2.2822865e-06, -2.1424962e-06, -1.360955e-06, -9.239801e-07, -2.2248332e-06, -2.9822972e-06, -4.4770482e-07, -2.6855598e-06, -1.625568e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.043309e-06, 5.8655525e-07, -4.6641395e-07, 1.0075889e-06, 1.4251714e-06, 2.3113705e-06, 1.0375301e-06, 1.3044059e-06, -3.159928e-07, 1.9899717e-09, -1.5951258e-06, -5.250182e-07, -6.692595e-07, -1.1554687e-06, -3.5207113e-06, -1.0740116e-06, -2.5304594e-06, -6.4928014e-07, -1.023937e-06, -2.2383701e-06, -8.704936e-07, -1.5319274e-06, -2.9527127e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.911447e-06, 1.0955164e-06, -9.054605e-08, 1.7173597e-06, 2.2167897e-06, 1.8936222e-06, 3.3328223e-07, 1.1926486e-09, -4.0193197e-07, 6.9763513e-07, -1.6781565e-06, -3.212008e-08, -7.16764e-07, -2.5510399e-06, -2.2996942e-06, -1.0408289e-06, -2.5906015e-06, -4.3726862e-07, -2.0964603e-06, -2.741641e-06, -1.6268343e-06, -9.926193e-07, -1.9930096e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5274701e-06, 2.376234e-06, 1.830713e-06, 1.5914959e-06, 1.6141785e-06, 1.1135285e-06, 1.3346424e-07, 2.4888743e-07, -4.4168905e-07, 2.949915e-07, 9.238147e-08, -5.3695453e-07, -9.403467e-07, -1.3919e-07, -1.7177076e-06, -1.2851629e-06, -1.33341e-06, -1.8464405e-06, -7.952701e-07, -1.6736094e-06, -2.3489242e-06, -1.1818138e-06, -1.826628e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.7943494e-06, 1.8929991e-06, 2.7575556e-06, 1.5491064e-06, 1.3098081e-06, 9.420805e-07, -1.1226425e-07, 2.0615123e-06, -3.7220715e-07, 1.2500331e-07, 3.1973926e-07, -1.16919935e-07, -1.1211505e-06, 2.4458814e-08, -2.2026616e-06, -3.8762747e-07, -8.408914e-07, -1.8227797e-06, 6.34142e-08, -1.8898684e-06, -1.0547251e-06, -1.3906534e-07, -2.4174612e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.844867e-07, 1.3347053e-06, 2.9786904e-06, 1.5733306e-06, 4.26697e-07, 1.7484435e-06, 1.95264e-06, 1.2380347e-06, 2.2551274e-07, 1.5391838e-06, -2.7709223e-08, -4.6451862e-07, -2.6551174e-07, 4.278118e-07, -1.3881282e-06, -2.8878472e-07, -1.5283204e-06, -1.4049212e-06, -4.3374675e-07, -2.3424252e-06, 2.1827044e-07, -1.2688797e-06, -2.1774003e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9764607e-06, 1.9677382e-06, 4.1033545e-06, 1.8152291e-06, 1.4664836e-06, 2.0779291e-06, 2.205646e-06, 1.1471384e-06, 9.007643e-07, 1.3238174e-06, 8.0462564e-07, -3.402975e-07, -1.1591478e-06, 2.3842577e-07, -1.2953569e-06, -7.1766334e-07, -8.643183e-07, -1.6451537e-06, -6.194683e-07, -2.1408448e-06, 3.291778e-07, -1.8839892e-06, -7.882171e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.085392e-06, 1.6239189e-06, 2.675064e-06, 3.3996682e-06, 2.568254e-07, 2.1287176e-06, 3.0008614e-06, 2.3849284e-06, 6.122644e-07, 1.8682329e-06, 2.6253878e-07, -1.8169143e-07, -1.3232839e-06, -9.15181e-09, -1.2294613e-07, -3.6076443e-07, -3.570612e-08, -1.6337538e-06, -7.2006e-08, -1.5658593e-06, -6.658187e-07, -4.60264e-07, -1.39466e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2265099e-06, 3.1637978e-06, 3.6367956e-06, 3.4184889e-06, 1.2058824e-06, 1.6135209e-06, 2.759099e-06, 1.1009954e-06, 1.0873748e-06, 1.287365e-06, 7.6462703e-07, -8.516891e-07, -5.981136e-07, -3.7144866e-07, -3.1382731e-07, -8.7501627e-07, -1.002873e-06, -1.6931599e-06, -1.4655918e-06, -1.3060135e-06, -5.254592e-07, -9.3594554e-07, -2.7598253e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.9812458e-06, 1.4094608e-06, 3.3600745e-06, 2.928536e-06, 1.6582513e-06, 1.637836e-06, 1.5572934e-06, 1.4994389e-06, 8.3441535e-07, 2.8546524e-06, 2.9904464e-07, -1.5688087e-08, -3.1668606e-08, -1.04218714e-07, -5.757173e-07, -8.679443e-07, -1.4384927e-06, -1.7438659e-06, -1.3243982e-06, -1.6155357e-06, 1.4247044e-07, 1.6946595e-07, -1.0685764e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7981034e-06, 1.6583951e-06, 1.8058641e-06, 2.2474958e-07, 2.2938145e-06, 1.7861096e-06, 4.397413e-07, 1.269924e-06, 9.722247e-07, 1.5726837e-06, -8.143881e-08, 8.790225e-09, 2.8177365e-07, -3.449514e-07, 5.5344806e-08, -1.1857809e-06, -1.9672723e-06, -8.635195e-07, -9.105647e-07, -2.7156375e-07, -4.142558e-07, -5.187122e-07, -1.8832359e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.077219e-06, 1.2659224e-06, 1.15921694e-07, 1.1113918e-06, 1.6809977e-06, 2.747652e-06, 1.9051465e-06, 1.798142e-06, 9.89284e-07, 1.8727117e-06, -1.8443995e-07, 8.166581e-07, 1.074003e-06, -1.3423295e-07, 2.1836394e-07, -2.3400357e-06, -2.493211e-06, -4.9325524e-07, -1.369208e-08, -5.1761424e-07, -7.2068775e-07, -6.113236e-07, -2.8377535e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.417682e-06, 1.3500471e-06, 1.2787677e-06, 1.7759331e-06, 2.4131697e-07, 2.1862052e-06, -3.0078343e-08, 9.584917e-07, 1.3596156e-07, 5.9992846e-07, -6.3109223e-07, 4.096107e-07, 7.212071e-08, 8.0560575e-08, -1.6004469e-06, -1.5878309e-06, -2.671817e-07, -9.0150235e-07, 1.8909193e-07, -8.014225e-07, -1.0567478e-06, -8.461771e-08, -1.751783e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8418648e-06, 6.469461e-07, 6.4956987e-07, 2.0748098e-06, 8.505715e-08, 1.4018631e-06, 1.3138852e-06, 7.872468e-07, -1.1265964e-08, 5.4222613e-07, -2.91517e-07, 1.446533e-06, 2.7966573e-07, -7.6122326e-08, -2.5424472e-07, -1.1841776e-06, -1.2193387e-07, -5.879835e-07, -8.0919517e-07, -9.49139e-07, -1.8763751e-06, -1.220236e-06, -8.515757e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.766128e-08, 1.1672773e-06, 2.3549886e-07, -2.1141965e-07, -5.4508786e-07, 6.2465216e-07, 2.7205448e-07, 1.0963743e-06, -1.8837947e-07, 6.5870944e-07, -1.2258217e-06, 1.47803e-07, -6.6786737e-07, 9.1990694e-07, -1.0373298e-06, -1.662175e-06, -1.6187139e-06, -3.000321e-07, -9.58353e-07, -1.124914e-06, -9.1910283e-07, -1.0986596e-06, -2.8919973e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1855441e-06, 2.4165732e-07, -2.562137e-07, 4.597343e-08, 5.4121455e-07, 5.4142384e-07, 9.05786e-07, 1.3696938e-06, -4.3467966e-07, 6.9740634e-07, -9.846943e-07, 5.833516e-07, -1.47769e-06, 8.453933e-07, -1.5057134e-06, -1.8252468e-06, -1.306144e-06, -7.6358083e-07, -5.394348e-08, -2.0949449e-06, -5.646268e-07, -1.475692e-06, -4.9668176e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.05002734e-07, 5.553834e-07, 1.0504608e-06, -3.5770628e-07, 7.2650425e-07, -2.9294462e-08, -1.826808e-09, 5.443968e-07, -9.4776095e-07, -3.4411522e-07, 3.5978573e-07, -2.26848e-08, -5.873713e-08, -7.682752e-07, -8.417506e-07, -3.169784e-07, -1.0103033e-06, -5.3514793e-09, 2.49702e-08, -1.3247281e-06, -3.1863658e-07, -9.377911e-08, -1.0077385e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.851669e-07, 1.9490827e-07, -1.4440344e-07, 2.2603689e-07, 5.545446e-07, 6.690782e-07, 1.0054379e-06, 2.7293591e-08, -1.1961568e-07, -2.2296472e-07, -1.4624172e-07, 5.601064e-07, -1.530055e-06, -1.2978872e-09, -2.1172335e-07, -1.0825008e-06, -7.4631595e-07, -6.867524e-07, -5.92857e-07, -4.841025e-07, -6.837878e-07, -8.685863e-07, -8.0497165e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.994085e-07, 2.5857983e-07, 1.0589466e-06, 1.2069477e-06, 5.728665e-07, 2.3044208e-07, 3.685323e-08, 3.446193e-08, -2.3497014e-07, 9.3819745e-07, 3.1942568e-07, 3.2912877e-07, -1.3863137e-06, 2.133954e-07, -7.974403e-07, -4.217295e-07, -8.9811334e-07, -1.2797245e-06, -7.890752e-07, -1.6712742e-07, -5.167848e-07, -8.62305e-07, -3.5103955e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7789214e-07, 1.9438435e-06, 1.9820247e-06, 8.404697e-07, 1.5030678e-06, 7.508112e-07, 8.5276747e-07, 9.004677e-07, 3.4097394e-07, 3.0051223e-07, 3.6462217e-07, -4.6886643e-07, -1.4460895e-06, 1.0255403e-06, -1.7028242e-07, -1.3622079e-07, -2.5694774e-07, -5.2348946e-07, -1.3150411e-06, -2.4616267e-07, 1.769133e-07, -6.58412e-07, 7.7293697e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3579988e-07, 1.8699202e-06, 1.7312047e-06, 1.1424515e-06, 8.8810555e-07, 1.3644799e-06, 2.2243412e-06, -2.7913043e-07, 1.2452886e-06, 1.4661777e-07, -5.19805e-09, -7.8396e-08, -7.282481e-07, 1.4595018e-06, 6.571943e-07, 6.285939e-07, 1.5504545e-06, -2.4289847e-07, -1.3326949e-06, 1.8720463e-07, 4.6942392e-07, -6.9283717e-09, 2.6871308e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.371607e-07, 2.7372048e-06, 1.8666583e-06, 1.6218466e-06, 1.4229619e-06, 1.1239833e-06, 1.8380374e-06, 6.0013804e-08, 2.0517132e-07, -2.560372e-07, 1.4421651e-06, 8.393096e-07, 3.2721372e-09, 1.0062881e-06, 1.1339743e-06, -1.7762011e-07, 5.997186e-07, -1.2890128e-07, -1.0779272e-06, -1.4292263e-07, 8.93783e-08, 1.2785285e-06, -1.7173985e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4757716e-06, 1.668886e-06, 2.9997186e-06, 3.4933507e-06, 1.7676889e-06, 2.9270832e-06, 2.0494363e-06, 1.1701799e-06, 1.2493858e-06, 1.8228006e-06, 3.8027127e-07, 1.3614178e-06, -7.9385507e-07, -1.3962078e-07, -6.3547327e-07, -4.2154926e-07, -6.0186153e-07, -1.1270989e-06, -1.3502932e-06, -2.479906e-06, -1.0053753e-06, -1.0190893e-06, -7.095558e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.680525e-07, 1.2612891e-06, 1.3332931e-06, 2.0592556e-06, 2.098967e-06, 8.1445035e-07, 1.9107733e-06, 1.2866553e-06, 5.4969735e-07, 1.6242907e-06, 3.784362e-07, 4.8014107e-07, -1.2672331e-07, -1.2989674e-06, 3.0535523e-07, -2.176118e-06, -1.6932531e-06, -9.612759e-07, -1.6635489e-06, -1.0730434e-06, -3.6796723e-07, 2.793425e-07, -6.699198e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7039775e-07, 1.4983436e-06, -4.6188692e-08, 1.0195096e-06, 1.698655e-06, 5.980463e-07, 3.69254e-07, 1.2996553e-06, -3.6016218e-07, 1.021759e-06, -3.3428444e-07, 4.2511246e-07, 5.553402e-07, 4.9355606e-07, 1.5792924e-07, -1.7993011e-06, -1.216755e-06, 8.532114e-08, -8.082427e-07, -3.7254517e-07, 3.826544e-08, 2.8059068e-07, -6.2587804e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3100971e-06, 8.295481e-07, -1.3382935e-06, 6.1212523e-07, 3.1062888e-07, 8.81341e-07, -7.016233e-07, 1.6376765e-06, 1.8691568e-07, 5.5312876e-07, 6.023297e-07, 8.000287e-07, 7.68585e-07, 9.653113e-07, 1.6118505e-06, 3.8378113e-07, -6.066688e-08, 8.5000136e-07, -2.0448942e-08, 8.3757286e-08, 1.1900675e-06, -6.1209164e-08, -1.0006177e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3983537e-06, -1.758103e-06, -3.2021048e-06, -3.8777e-07, -6.707487e-07, -5.2297087e-09, 9.611344e-07, 1.984097e-06, -1.1513464e-06, 5.0135423e-08, 9.150534e-08, -4.4124266e-07, 4.141778e-07, 1.3822676e-06, 1.668171e-07, 4.0201033e-07, 1.8232865e-06, 7.5912703e-07, -4.9138373e-07, 5.3106895e-08, -5.5491705e-07, 1.9148986e-06, -4.6992177e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6879384e-06, -1.9808156e-06, -3.4591499e-06, -2.9966575e-06, -1.263489e-06, -9.73288e-07, 5.13553e-07, -2.6466932e-08, -1.1320476e-06, 1.5711638e-07, 1.8315387e-07, 2.0032694e-06, 2.1087435e-06, 1.1089398e-06, 1.7678992e-06, 2.1057135e-06, 1.5211263e-06, 3.0906327e-07, 3.754161e-07, -9.037498e-09, -7.3082205e-08, 1.987497e-06, 2.2093825e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2845116e-06, -3.4248017e-06, -4.155582e-06, -2.7921642e-06, -1.963001e-06, -1.3775264e-06, -6.437174e-07, -4.2771518e-07, 2.86609e-07, -1.134289e-06, 1.3443935e-06, 1.1206171e-06, 2.727536e-06, -1.4772888e-07, 3.1316117e-06, 1.5208815e-06, 1.3953162e-06, 1.0660265e-06, -1.3710306e-07, 8.2378835e-07, 1.4571834e-06, 1.195505e-06, 2.0659836e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4309763e-06, -3.5182002e-06, -6.1834903e-06, -3.527786e-06, -1.7558596e-06, -2.8382055e-06, -1.491647e-06, -8.720217e-07, 2.5087652e-07, -8.5791623e-07, 1.1563939e-06, 3.216511e-07, 2.5208792e-06, 7.3408654e-07, 2.9953449e-06, 2.1310923e-06, 1.8525334e-06, 2.2459292e-06, 1.3399165e-06, 8.8633686e-07, 2.4598387e-06, 2.0446003e-06, 2.9690998e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.3218413e-06, -4.7576104e-06, -7.4269997e-06, -5.304775e-06, -3.900548e-06, -3.7765672e-06, -8.145381e-07, -9.81749e-07, 2.4520074e-07, -6.7063945e-07, 1.1269917e-06, -1.4517713e-07, 1.1017803e-06, -4.1693664e-07, 2.7074034e-06, 1.4855009e-06, 2.3658831e-06, 1.6481545e-06, 1.2449955e-06, 2.4423643e-06, 2.0224375e-06, 2.1777703e-06, 2.614812e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.6452867e-06, -5.806438e-06, -6.3085067e-06, -5.82773e-06, -5.5477976e-06, -4.405889e-06, -2.2344943e-06, -2.2272163e-06, 2.5151184e-08, -6.5183684e-07, 1.1761801e-06, 9.354726e-07, -4.5695614e-07, 2.040489e-06, 2.9494167e-06, 3.5419043e-06, 2.5933407e-06, 2.342912e-06, 2.5257423e-06, 1.7806244e-06, 2.0838684e-06, 3.3561312e-06, 2.6857597e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8654514e-06, -6.646278e-06, -6.615297e-06, -5.1959423e-06, -5.4791176e-06, -3.9937613e-06, -3.6008162e-06, -3.7911736e-06, -8.319591e-07, -2.1428182e-06, 2.9323262e-08, 4.3050647e-07, 1.0601194e-06, 2.3013363e-06, 1.559521e-06, 1.9681904e-06, 2.7274077e-06, 2.6429918e-06, 2.6771058e-06, 3.1567974e-06, 3.2277435e-06, 1.7896703e-06, 4.5013676e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.7815563e-06, -5.4377324e-06, -6.7630444e-06, -4.441064e-06, -4.0310374e-06, -6.1956016e-06, -3.0024348e-06, -3.4637058e-06, -1.1067016e-06, -2.9304167e-06, 2.1871197e-06, 2.9239771e-07, 8.3730305e-07, 2.8892762e-06, 2.4002084e-06, 1.8105825e-06, 2.6421594e-06, 2.3937987e-06, 4.4177496e-06, 1.6919236e-06, 3.3583885e-06, 2.366187e-06, 2.2165877e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.256794e-06, -6.397353e-06, -7.696184e-06, -6.361628e-06, -5.137974e-06, -5.8027326e-06, -3.21602e-06, -3.907404e-06, -2.283181e-06, -1.4805503e-06, 9.384743e-07, -2.2453435e-07, 1.6141819e-06, 8.904401e-07, 4.1140256e-06, 3.5805624e-06, 2.864126e-06, 2.7941871e-06, 3.7193845e-06, 3.4439547e-06, 3.5647374e-06, 3.1799614e-06, 2.9414655e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.0172983e-06, -7.585013e-06, -7.5046555e-06, -7.2113444e-06, -5.259214e-06, -5.186128e-06, -3.2805033e-06, -3.5713138e-06, -7.4948855e-07, -3.3632373e-06, 6.526385e-07, 7.351846e-07, 6.032627e-07, 1.7246687e-06, 3.3008905e-06, 3.4627187e-06, 2.7443878e-06, 4.3370255e-06, 4.0940126e-06, 3.1315749e-06, 1.8033031e-06, 4.7680655e-06, 5.793584e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.8022327e-06, -7.6549295e-06, -8.303005e-06, -5.7758143e-06, -5.3320928e-06, -4.829025e-06, -3.1134232e-06, -3.6017245e-06, -8.2609773e-07, -2.9542157e-06, 1.7154754e-06, -1.4316425e-08, 2.6135806e-06, 2.1164437e-06, 4.2370334e-06, 4.7618596e-06, 4.9153577e-06, 4.6522155e-06, 4.8567463e-06, 5.338867e-06, 3.1144073e-06, 4.537702e-06, 3.257032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.5444557e-06, -6.8634727e-06, -8.953328e-06, -6.4315436e-06, -4.8024103e-06, -5.106186e-06, -3.7261473e-06, -3.8788894e-06, -1.1782828e-06, -1.8878458e-06, 2.3965438e-07, 1.0518493e-06, 3.256272e-06, 2.1143553e-06, 3.977704e-06, 2.673462e-06, 3.6798947e-06, 3.7310263e-06, 5.1079105e-06, 3.4094587e-06, 3.4449615e-06, 3.3748915e-06, 3.4187829e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.57402e-06, -6.2128993e-06, -8.017347e-06, -7.225719e-06, -5.1230363e-06, -5.3062436e-06, -2.9057023e-06, -3.4182694e-06, -1.011033e-06, -2.228142e-06, 1.2678445e-06, 6.5902896e-07, 3.206842e-06, 2.0007824e-06, 3.2796427e-06, 3.7198074e-06, 3.4106756e-06, 3.0034248e-06, 4.7243475e-06, 4.2442607e-06, 3.299822e-06, 2.8187505e-06, 5.640287e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.7552276e-06, -5.7822185e-06, -6.3356138e-06, -7.1822415e-06, -5.835953e-06, -6.2780455e-06, -2.8947486e-06, -3.5656622e-06, -8.1250636e-07, -2.3570383e-06, 2.302133e-06, 3.649978e-07, 2.7236542e-06, 1.2515692e-06, 3.897326e-06, 3.3371891e-06, 3.7996024e-06, 3.2122655e-06, 4.807394e-06, 4.0237883e-06, 3.321408e-06, 4.3953714e-06, 2.8607938e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.690316e-06, -5.4835323e-06, -7.0981628e-06, -5.161525e-06, -4.166218e-06, -5.5098208e-06, -2.1112908e-06, -3.78838e-06, -1.543754e-06, -2.2847712e-06, 2.0181137e-06, 7.0969173e-07, 2.5110203e-06, 1.1727592e-06, 3.384177e-06, 4.494862e-06, 4.3521222e-06, 3.790668e-06, 5.0892095e-06, 4.10514e-06, 4.290623e-06, 3.918104e-06, 4.226692e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.2370725e-06, -6.9024554e-06, -7.694996e-06, -5.388756e-06, -3.6236688e-06, -5.7892303e-06, -2.7846193e-06, -3.953044e-06, -5.785421e-07, -1.746005e-06, 2.8665595e-06, 8.353974e-07, 2.6621067e-06, 8.873627e-07, 3.7541051e-06, 3.3232325e-06, 4.464588e-06, 4.411057e-06, 5.292827e-06, 5.2521273e-06, 4.9862438e-06, 4.316521e-06, 5.3346575e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8792216e-06, -6.2414724e-06, -7.329855e-06, -5.758712e-06, -2.4035453e-06, -4.8690326e-06, -2.3183457e-06, -3.8540056e-06, 1.8863045e-07, -1.1691061e-06, 3.2305497e-06, 1.614339e-06, 1.3292702e-06, 1.7769021e-06, 3.1931463e-06, 3.2034832e-06, 5.286213e-06, 3.6634256e-06, 4.4126964e-06, 4.248699e-06, 5.8080186e-06, 3.8745893e-06, 4.5465495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.4065523e-06, -3.8805856e-06, -5.973423e-06, -5.063254e-06, -4.279592e-06, -5.3126173e-06, -3.384871e-06, -2.9951134e-06, -7.864975e-07, -9.672474e-07, 1.7046139e-06, 6.235901e-07, 2.1175374e-06, 2.132952e-06, 3.6904632e-06, 2.5086358e-06, 4.315518e-06, 3.7000532e-06, 3.7297673e-06, 4.9880523e-06, 5.664054e-06, 3.953938e-06, 5.439863e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.453958e-06, -3.153536e-06, -4.962938e-06, -4.721769e-06, -2.8152817e-06, -4.3228174e-06, -1.6791553e-06, -2.690475e-06, 7.887931e-08, -3.1695095e-07, 2.0141324e-06, -5.970875e-10, 2.3723705e-06, 1.7603923e-06, 2.6823934e-06, 3.2719608e-06, 3.4266395e-06, 2.8823893e-06, 4.3351974e-06, 4.9440055e-06, 4.02058e-06, 3.614431e-06, 3.3006404e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.184888e-06, -3.3050064e-06, -4.5083216e-06, -3.8226663e-06, -2.5750878e-06, -4.3253303e-06, -1.0331528e-06, -1.8321992e-06, 4.211061e-07, -2.084987e-06, 2.776035e-06, 1.0166831e-06, 2.549368e-06, 1.1687274e-06, 3.5912124e-06, 3.4210989e-06, 4.2716774e-06, 3.919874e-06, 2.300043e-06, 5.201873e-06, 3.467527e-06, 3.2037335e-06, 3.2951575e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.6345805e-06, -2.4511412e-06, -5.070043e-06, -3.815973e-06, -2.0402026e-06, -3.5901824e-06, 5.445559e-07, -1.4494437e-06, 4.4329974e-07, -1.1357083e-06, 2.7872134e-06, 6.814197e-07, 2.7059632e-06, 7.507226e-07, 3.212463e-06, 3.6133697e-06, 3.884085e-06, 2.9056805e-06, 3.7796117e-06, 3.5581568e-06, 3.4657764e-06, 2.6132634e-06, 2.9169698e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.1083013e-06, -1.9184447e-06, -6.413262e-06, -3.015728e-06, -2.550751e-06, -3.0428903e-06, -4.490429e-07, -6.699386e-07, -4.2258068e-07, -7.1822205e-07, 1.7822e-06, 8.497965e-07, 1.5237329e-06, 5.4227564e-07, 2.493939e-06, 3.2255914e-06, 2.7792955e-06, 1.069347e-06, 2.304428e-06, 2.9938965e-06, 4.6385644e-06, 1.729681e-06, 1.5334053e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8878444e-06, -2.2182157e-06, -4.6094174e-06, -1.7034513e-06, -2.287959e-06, -2.4916985e-06, -6.144325e-07, -2.2257423e-06, -1.0577228e-06, 1.2678046e-07, 6.762962e-07, 5.387613e-08, 1.671837e-06, 8.607882e-07, 3.6196338e-06, 1.3628952e-06, 2.4999042e-06, 2.763896e-06, 2.7861402e-06, 2.6700595e-06, 3.166744e-06, 1.9923377e-06, 1.3807903e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6426407e-06, -1.6520006e-06, -3.2859257e-06, -2.4871438e-06, -1.5881849e-06, -1.3188235e-06, -7.130883e-07, -8.8925674e-07, 1.3535372e-08, -6.4973597e-07, 1.5338434e-06, -6.774984e-07, 9.735302e-07, 1.6938673e-06, 2.6880748e-06, 6.77991e-07, 2.5264173e-06, 1.186025e-06, 3.7452724e-06, 3.494093e-06, 2.0703837e-06, 2.3136372e-06, 1.3180131e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.1104946e-06, -2.971048e-07, -5.1696807e-06, -2.0694833e-06, -1.6380528e-06, -1.7709085e-06, -1.1530868e-06, -1.9121835e-06, -3.860156e-07, -2.1928722e-06, 4.0308205e-07, -1.4580618e-06, 7.392058e-07, 5.458885e-07, 1.3069468e-06, 1.2722162e-06, 1.4665534e-06, 2.7938152e-06, 2.8632144e-06, 1.0617963e-06, 2.4739745e-06, 2.2659e-06, 5.700441e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6025646e-06, -1.0069543e-06, -4.1761186e-06, -2.4550732e-06, -2.214153e-06, -2.3961634e-06, -2.1734718e-07, -1.9142458e-06, 4.9356606e-07, -1.0508875e-06, 7.9426525e-07, -3.4789696e-07, 1.7777782e-06, 1.6731661e-06, 1.2666792e-06, 1.2870262e-06, 1.144862e-06, 1.824493e-06, 3.1332424e-06, 2.561795e-06, 2.3515188e-06, 3.7231957e-06, 1.5735756e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.553766e-06, -1.4521363e-06, -3.865438e-06, -2.766486e-06, -1.7789605e-06, -1.94937e-06, -6.3777424e-07, -6.592645e-07, 6.573705e-07, -7.896001e-07, 7.2326156e-07, -5.165453e-07, 9.125441e-07, 1.0882552e-06, 7.5427437e-07, 1.7854254e-06, 1.3939713e-06, 3.0514648e-06, 2.2077415e-06, 1.554615e-06, 1.3539759e-06, 2.3386438e-06, 2.361763e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0976169e-06, -4.136973e-07, -2.525469e-06, -1.9427814e-06, -2.3048926e-06, -1.6306028e-06, -1.7335201e-06, -6.4400535e-07, 4.0316172e-07, -1.3891835e-06, 1.147622e-06, -4.837227e-07, -1.888865e-07, 3.397413e-07, 6.728693e-07, 1.9885892e-06, 1.2630483e-06, 2.7314736e-06, 1.5846856e-06, 4.0247238e-07, 2.556324e-06, 1.1926254e-06, -1.690137e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0186645e-06, -2.2777922e-06, -2.7411656e-06, -1.2103815e-06, -1.232833e-06, -1.04028395e-07, -3.614939e-07, -1.3441056e-06, -1.2956322e-06, -1.0564469e-06, -4.927463e-08, -5.36177e-07, -3.5819068e-07, -1.6377504e-06, 1.9041104e-07, 2.0658416e-07, 5.42306e-07, 1.0214562e-06, 2.4007184e-06, 6.8704986e-07, 1.2680657e-06, 8.7850265e-07, 1.2474715e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.0821786e-07, -1.3361289e-06, -8.825011e-07, -1.5558569e-06, -1.4678194e-06, -1.6089359e-06, -7.5554203e-07, -5.899405e-07, -2.4243727e-06, -1.934726e-07, -9.955492e-07, -1.863575e-06, -5.283057e-07, -4.2536846e-07, -3.004919e-07, -7.109322e-07, -1.8323712e-07, 1.1533959e-06, 1.9627475e-06, 4.180488e-07, 8.2639595e-08, 7.5287045e-07, 6.766473e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.6687785e-07, -8.307147e-07, -1.0347924e-06, -1.2874198e-06, -8.931154e-07, -6.5337133e-07, -5.762562e-07, -2.9798505e-07, -2.1763205e-06, -3.683466e-07, -2.3601801e-06, -1.5422102e-06, 1.5556225e-07, -2.1235337e-06, -6.190937e-07, -4.0359424e-07, 9.059338e-07, -1.8109422e-08, 4.5011387e-07, -4.0342318e-08, 2.4343552e-07, 5.3476526e-07, -3.1703016e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.465369e-06, -6.0457205e-07, 1.0465703e-06, -5.7432965e-07, 3.1987675e-08, 1.3223553e-06, -1.9628266e-07, 6.862376e-07, -9.821999e-07, -1.2554495e-06, -1.5103404e-06, -1.7613293e-06, -1.1440712e-06, -5.1449626e-07, -8.769629e-07, -1.6228757e-06, 1.8965108e-07, -1.0370792e-06, -2.1861038e-07, -6.59232e-07, 2.9645042e-07, 1.5238172e-06, -7.312133e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0001567e-06, 9.725516e-07, 1.1414442e-06, 6.27914e-07, 1.6568637e-07, -2.1135297e-06, -7.248032e-07, -5.8345614e-07, -8.1340306e-07, -8.647941e-07, -1.4519769e-06, -4.505003e-07, -1.5540775e-06, -1.58125e-06, -1.9107508e-06, -1.0430111e-06, -6.5140216e-07, -1.3639899e-06, -4.973891e-07, -1.2939095e-06, -1.3159558e-06, 3.352387e-07, -1.2464693e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0245297e-07, 1.6278095e-06, 6.0074944e-07, 2.3395146e-06, -2.8581655e-07, -4.3973245e-08, 9.46245e-07, -7.0916997e-07, -8.500193e-07, -1.911075e-06, -2.2203478e-06, -1.0398064e-06, -2.8378468e-06, -2.9233888e-06, -2.189669e-06, -1.3077856e-06, -3.5516232e-06, -1.2128045e-06, -2.3161783e-06, -2.3840112e-06, -2.1647718e-06, -1.0452457e-06, -1.6474922e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1614255e-06, 1.4794582e-06, 2.1232433e-06, 2.1031817e-06, -4.85917e-07, 8.4562214e-07, -3.5338033e-07, -1.0417282e-06, -1.4033321e-06, -7.4641866e-07, -2.5820032e-06, -1.7908001e-06, -2.1485052e-06, -1.1686438e-06, -2.9298674e-06, -2.016754e-06, -1.66159e-06, -1.3232489e-06, -2.9191654e-06, -1.7664968e-06, -2.6156943e-06, -1.441075e-07, -1.0587976e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.8983204e-06, 1.6621345e-06, 2.3950124e-06, 2.438201e-06, 1.1223481e-06, 2.7972637e-06, -5.7842647e-07, -2.2106573e-07, -1.1875047e-06, -1.2825124e-06, -2.3673188e-06, -1.904697e-06, -2.5089892e-06, -1.2435255e-06, -3.9979486e-06, -2.844864e-06, -2.7518163e-06, -2.583588e-06, -2.696838e-06, -2.0520397e-06, -1.2639999e-06, -3.8091284e-06, -4.6652673e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.5082821e-06, 3.3203996e-06, 3.5768303e-06, 3.068226e-06, 2.4936458e-06, 1.1491322e-06, 1.10667855e-07, 6.8968217e-07, -9.317993e-07, -1.2139502e-06, -2.8438901e-06, -2.3787084e-06, -2.8657796e-06, -2.5558406e-06, -3.0813362e-06, -3.7847014e-06, -3.627232e-06, -2.6440825e-06, -3.568935e-06, -2.396876e-06, -1.5905192e-06, -3.707023e-06, -1.4699282e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.890188e-06, 3.1156437e-06, 4.7275375e-06, 3.7592058e-06, 1.8432645e-06, 2.5316738e-06, -2.9779304e-07, 1.892152e-07, -1.7776699e-06, -9.294596e-07, -1.8810329e-06, -1.7713977e-06, -3.6212316e-06, -2.6694477e-06, -3.595651e-06, -3.4002508e-06, -2.9009416e-06, -3.1462116e-06, -4.4833487e-06, -4.0915456e-06, -3.888576e-06, -4.2315814e-06, -1.9922613e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1374236e-06, 3.182643e-06, 5.5886694e-06, 4.9666837e-06, 3.1232494e-06, 3.4136006e-06, 6.0906376e-07, 8.5449165e-07, -7.791339e-07, -5.784075e-07, -3.1938853e-06, -2.6327552e-06, -3.0194462e-06, -1.5222648e-06, -3.9607867e-06, -4.659413e-06, -4.110296e-06, -4.2637434e-06, -4.5191173e-06, -4.1585704e-06, -5.0784915e-06, -3.634548e-06, -1.3337344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.6769917e-06, 3.794846e-06, 7.2223056e-06, 3.407236e-06, 2.9065714e-06, 3.4010227e-06, 1.020242e-06, -1.7379803e-07, -1.8116953e-06, -1.3614721e-06, -2.7806668e-06, -3.169535e-06, -3.6105007e-06, -3.6273811e-06, -4.2796355e-06, -3.0745414e-06, -5.0117446e-06, -2.9268988e-06, -3.389845e-06, -3.0242331e-06, -3.1220738e-06, -2.906011e-06, -3.7712512e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.4877282e-06, 4.918024e-06, 7.140141e-06, 4.5666693e-06, 3.4431775e-06, 3.0982567e-06, 1.6776712e-06, -1.5444482e-07, -1.1493677e-06, -1.1769646e-06, -2.9145776e-06, -2.1168667e-06, -4.364513e-06, -1.7806148e-06, -2.8978202e-06, -3.181634e-06, -4.358558e-06, -2.951482e-06, -5.1535826e-06, -3.5590524e-06, -3.425307e-06, -3.0909387e-06, -3.2273547e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.910802e-06, 4.435181e-06, 6.961566e-06, 5.080401e-06, 3.8599546e-06, 3.449812e-06, 1.924925e-07, 1.6817072e-06, -2.6093207e-07, -8.3971815e-07, -2.8848622e-06, -3.5710634e-06, -2.7217648e-06, -2.3687558e-06, -4.028042e-06, -3.959987e-06, -4.8627253e-06, -4.6212594e-06, -5.982407e-06, -4.5038455e-06, -4.8774746e-06, -3.8796734e-06, -4.0254686e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.769832e-06, 5.262964e-06, 7.534356e-06, 4.8185257e-06, 3.1489476e-06, 4.2342513e-06, 1.1759607e-06, 3.282495e-06, 2.5457075e-07, 9.378974e-07, -2.7355873e-06, -3.1841714e-06, -2.716905e-06, -3.6918248e-06, -4.275813e-06, -4.9667383e-06, -4.4395906e-06, -3.8554913e-06, -4.3142877e-06, -3.9709576e-06, -5.0237563e-06, -5.537135e-06, -3.9222837e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.5767445e-06, 6.952253e-06, 7.7711575e-06, 5.4798325e-06, 3.9824135e-06, 4.9637856e-06, 2.0676791e-06, 3.1038676e-06, 1.6990568e-06, 2.0009286e-06, -3.5073435e-06, -1.2175453e-06, -3.6725974e-06, -1.3477536e-06, -3.1784225e-06, -5.1927864e-06, -4.2466577e-06, -5.1887964e-06, -4.175827e-06, -4.45208e-06, -4.3490563e-06, -4.071105e-06, -4.2898423e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.2579284e-06, 6.9314465e-06, 5.2405503e-06, 6.4532396e-06, 4.2278753e-06, 4.4368435e-06, 3.0807241e-06, 3.5436606e-06, 1.4420457e-06, -2.644655e-08, -1.6528938e-06, -2.250107e-06, -2.6203857e-06, -1.960729e-06, -3.3329902e-06, -4.6197574e-06, -4.068307e-06, -4.9487135e-06, -4.4295557e-06, -3.5197968e-06, -4.754239e-06, -4.5663155e-06, -3.0676533e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.064909e-06, 5.5850987e-06, 3.1848256e-06, 6.643936e-06, 3.7631048e-06, 4.56043e-06, 2.7273227e-06, 3.4106415e-06, 1.3400233e-06, 2.2185632e-06, -2.0506195e-06, -1.0344615e-06, -2.5255674e-06, -2.2665506e-06, -3.0149226e-06, -3.1381917e-06, -4.860479e-06, -4.0289924e-06, -4.014662e-06, -4.9847195e-06, -4.186454e-06, -5.6521267e-06, -4.5756087e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.4174874e-06, 5.5372675e-06, 4.542053e-06, 6.5115655e-06, 4.7962685e-06, 4.1847384e-06, 2.1574915e-06, 4.743353e-06, 3.569762e-08, 1.5748105e-06, -1.0004762e-06, -3.620395e-07, -2.3475786e-06, -1.8675184e-06, -3.1088325e-06, -3.5645458e-06, -4.42211e-06, -4.5500037e-06, -3.8333637e-06, -3.7481045e-06, -3.893598e-06, -4.427644e-06, -3.70837e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.5334044e-06, 6.0588727e-06, 7.183253e-06, 5.8359e-06, 2.8203117e-06, 4.7539925e-06, 2.8207935e-06, 4.222573e-06, 1.0259578e-06, 1.4810887e-06, -2.5300174e-06, -5.048321e-07, -2.541463e-06, -9.19085e-07, -3.7863515e-06, -4.138277e-06, -4.6611967e-06, -3.9552156e-06, -3.4475354e-06, -4.208582e-06, -4.8978854e-06, -4.6493724e-06, -4.5464835e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.8433646e-06, 6.7050723e-06, 5.197985e-06, 5.116108e-06, 4.4546905e-06, 4.994158e-06, 2.989807e-06, 4.1100384e-06, 7.2495885e-07, 2.7265091e-06, -2.7341127e-06, 6.191041e-07, -2.8173208e-06, -2.2492195e-07, -2.36613e-06, -3.6978008e-06, -3.906133e-06, -4.31277e-06, -4.177758e-06, -3.5448165e-06, -3.8193593e-06, -4.520756e-06, -4.2165975e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.52951e-06, 5.838644e-06, 5.343405e-06, 5.929559e-06, 4.788543e-06, 4.6993828e-06, 2.2561608e-06, 3.4359414e-06, 3.0563825e-07, 2.6287905e-06, -2.8168479e-06, -1.1299051e-06, -3.5040155e-06, -4.3576495e-07, -3.6544575e-06, -3.066637e-06, -2.7400429e-06, -3.2619687e-06, -3.9629795e-06, -3.5682012e-06, -2.137178e-06, -4.042605e-06, -2.663292e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.443627e-06, 5.830586e-06, 4.5157367e-06, 5.6102936e-06, 3.9443485e-06, 5.1182246e-06, 2.2844388e-06, 2.6826128e-06, 1.6997556e-06, 3.1309253e-06, -1.7897767e-06, -3.1199654e-08, -2.7739225e-06, 1.8435344e-08, -3.31922e-06, -3.298014e-06, -4.582639e-06, -3.2984435e-06, -3.1915706e-06, -4.2308666e-06, -2.3001098e-06, -3.6084402e-06, -3.4440704e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.791198e-06, 5.6716353e-06, 4.9229175e-06, 4.8612524e-06, 3.8431544e-06, 4.437098e-06, 1.6168881e-06, 2.532041e-06, 5.8073715e-07, 1.896929e-06, -1.3525957e-06, 1.3472971e-06, -2.051017e-06, -6.016354e-07, -2.8896065e-06, -1.5185891e-06, -2.7344172e-06, -1.3438728e-06, -2.2150462e-06, -2.8871405e-06, -2.0800435e-06, -2.9409566e-06, -2.9809394e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.516548e-06, 2.7258845e-06, 3.4012344e-06, 4.7559747e-06, 4.1675667e-06, 3.8354883e-06, 2.695253e-06, 3.0535948e-06, 1.6579883e-06, 2.4428637e-06, -1.863263e-07, 6.714687e-07, -1.3717622e-06, -1.1089136e-06, -1.8815224e-06, -1.7523118e-06, -2.501952e-06, -8.1976225e-07, -1.8964745e-06, -1.5998671e-06, -7.11824e-07, -2.547852e-06, -1.557441e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.579628e-06, 2.4339035e-06, 3.8594058e-06, 3.6611937e-06, 2.3923512e-06, 4.0295354e-06, 2.1307314e-06, 1.0925653e-06, 1.4641492e-07, 1.6664369e-06, 6.6826004e-08, 1.5896594e-06, -1.43631755e-08, 3.525069e-07, -2.4397316e-06, -1.7817881e-06, -1.0358285e-06, -8.9591026e-07, -1.0678951e-06, -2.1021008e-06, -3.1876772e-07, -2.5313295e-06, -1.796193e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.2047816e-06, 2.3773528e-06, 2.548583e-06, 2.1886035e-06, 2.6104124e-06, 3.9631113e-06, 3.1930394e-06, 1.8283197e-06, 1.069328e-06, 2.0435211e-06, 7.564921e-09, -2.0599953e-07, -7.6225706e-07, -7.6767896e-07, -1.4201322e-06, -1.6806109e-06, -1.2083805e-06, -2.1411752e-06, -3.2053532e-07, -2.07903e-06, -2.3479952e-06, 7.089786e-09, -1.9161434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.7210613e-06, 3.6785136e-06, 4.071155e-06, 2.6791108e-06, 2.8729842e-06, 2.9066848e-06, 1.6414372e-06, 2.3022167e-06, 3.5839224e-07, 3.2683062e-07, -4.2637237e-07, -7.072797e-07, -6.588128e-07, 7.2174936e-07, 9.722147e-08, -1.7378129e-06, -1.3337619e-06, -1.224481e-06, -1.7542077e-06, -1.6858289e-06, -9.284981e-07, -1.0832055e-06, -1.0491026e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3584447e-07, 2.4097455e-06, 1.88607e-07, 2.3525931e-06, 2.458472e-06, 2.7210574e-06, 1.153482e-06, 1.3136114e-06, 5.4451135e-07, 4.607137e-07, -1.6436346e-07, -2.972248e-07, -6.7639314e-07, 6.573597e-07, 1.0744109e-07, -2.8181722e-07, -1.2975917e-07, -9.378388e-07, -1.7700379e-06, -1.8129825e-06, -2.3034545e-06, -2.967136e-06, -1.5547358e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.731303e-07, 8.6432856e-08, -1.9871577e-06, 4.7186603e-07, -5.3017242e-08, -7.9173697e-07, 6.180666e-08, -3.433192e-07, -6.422895e-07, 2.5014387e-07, 8.467292e-08, 3.403215e-07, -1.098063e-06, -5.2099364e-07, -3.9058565e-07, -6.539801e-07, -8.618844e-07, 5.0475908e-08, 6.245593e-07, -1.1650206e-06, -6.0082783e-09, 1.5325014e-07, -1.0852032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2864887e-07, -1.1824996e-07, -2.3744753e-06, -4.3210366e-07, -1.6575828e-07, -2.7343458e-07, -1.8426861e-06, 5.017421e-07, -1.5368523e-06, -6.1584876e-07, -4.614513e-07, -9.304823e-07, 6.6330486e-08, -7.323888e-07, -7.5281594e-07, -7.2697975e-07, -2.591533e-07, 2.4401197e-07, -1.2944611e-06, -7.2455856e-07, 2.1679998e-07, 1.0943189e-06, -1.5428952e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.0879133e-07, -9.4317943e-07, -4.58032e-07, 9.943858e-07, 1.045169e-06, -6.041123e-07, 1.2031317e-07, 8.4373486e-10, -1.8969179e-07, 1.1665147e-06, 5.081355e-07, -9.82943e-07, -4.2930418e-07, -1.3188314e-06, -1.0484908e-07, 2.4647184e-07, 3.7325026e-07, -2.7986113e-07, -2.0072166e-06, -3.054389e-07, -1.5577246e-08, 1.0100002e-06, -5.2434314e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.690412e-08, -1.5249814e-06, -2.8253207e-06, 6.712599e-07, -1.4398738e-06, -1.300978e-06, -4.9535295e-08, -1.8542478e-07, -1.033375e-07, 2.0527412e-07, -5.1245763e-07, 1.081359e-06, -7.7317713e-07, -6.0760726e-07, -4.9549504e-07, 1.7549585e-06, 4.9824246e-07, 1.0773982e-07, -6.7379966e-07, 6.0690434e-07, 8.34581e-07, 8.2135944e-07, 5.3493585e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9629576e-07, 3.3311417e-07, -1.8646756e-06, 7.8692057e-07, -1.0665194e-06, -3.7214767e-07, -7.6386084e-07, -1.7536022e-06, -1.1950672e-06, 1.6554205e-07, -8.0704507e-07, 8.719754e-07, -4.6410003e-07, -1.433582e-07, -4.4550814e-07, 8.180121e-08, 6.5984443e-07, -5.007067e-07, 8.1549445e-07, 2.4729192e-07, 1.840539e-06, 2.853151e-07, 1.3950537e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.07282e-08, -7.5997214e-08, -2.3874898e-06, 2.004544e-07, -1.208886e-06, 2.6172114e-07, 2.8278182e-08, 3.387906e-07, -1.4111062e-07, -2.3353675e-07, 2.9718632e-07, 1.9195966e-07, -4.4260725e-07, 1.9862778e-06, 8.26765e-07, -2.7726317e-08, 6.576982e-07, -5.461071e-07, 5.6091807e-07, 1.6355132e-06, 3.5303236e-07, -1.4295031e-06, 6.4173037e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1946989e-07, -7.786683e-07, -8.3626196e-07, -8.24213e-07, -7.286679e-07, 3.8986832e-07, 6.79606e-08, -5.304264e-07, -6.968303e-07, -5.925622e-07, 7.0698286e-07, 1.4298173e-06, -5.7871944e-08, -9.1402e-08, 2.1824104e-07, -6.960067e-08, -1.6533108e-06, -4.4189466e-08, 6.9718124e-07, 8.152148e-07, -8.7338805e-07, -7.3692524e-07, -5.244667e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0585822e-07, -1.0050549e-06, -1.3995661e-06, -9.885583e-07, 8.540101e-08, -4.7064756e-07, -2.1196367e-08, 7.443801e-09, -7.246787e-07, 2.8888587e-07, 9.382386e-07, 5.002496e-07, 2.200301e-07, -4.631592e-07, 1.0949525e-06, 1.03080986e-07, 6.358373e-08, -7.778947e-07, 7.669124e-07, 4.4762893e-07, 2.7970378e-07, -2.284858e-06, -1.7921313e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2320886e-06, -1.4048112e-06, -1.8013607e-06, -4.7598255e-07, -3.3226004e-07, 8.013971e-07, -2.368198e-07, -7.560942e-08, -1.155443e-07, 1.0839929e-06, 7.044739e-07, 1.1711684e-06, -4.2191465e-07, 1.1178486e-08, 6.036345e-07, 3.1060767e-07, -5.0236565e-07, -8.5530735e-07, -7.1570116e-07, -1.0485302e-07, 1.0664617e-07, -6.1685955e-07, -1.7566089e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.1313365e-07, -1.6155195e-06, -1.0855654e-06, -1.2293085e-06, -6.65354e-07, -5.939085e-08, 3.2758973e-07, 1.2408184e-06, -8.5658485e-08, 2.1989595e-06, 8.8054156e-07, -1.6396321e-07, 5.583827e-07, -4.445222e-07, 3.3527544e-07, 4.5386406e-07, 6.69862e-07, -4.116181e-07, 3.7412153e-07, 3.272691e-07, -3.416934e-07, -2.5474044e-08, -5.3851e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8113701e-06, -5.0537784e-07, -2.2449901e-06, -4.6099927e-07, -1.9239735e-07, -7.3424826e-07, -1.0148519e-06, 1.925217e-07, 1.6128074e-06, 6.1275966e-07, 1.504397e-06, 8.825758e-07, 8.990057e-07, 1.2938015e-06, 2.8200782e-08, 1.4824121e-07, -2.1280982e-07, -4.467757e-07, 8.630903e-07, -1.2144178e-06, -6.9868713e-07, -1.1858579e-06, -2.4292575e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9045068e-06, -5.0411654e-07, -1.0885071e-06, -1.2202156e-06, -6.097399e-07, 4.1269556e-07, -3.928298e-07, -2.4087015e-07, 1.4090378e-06, -7.2476304e-08, 1.1471119e-06, 5.9442762e-08, 1.0010292e-06, -1.4567954e-07, 3.7426386e-07, 8.7330824e-07, 9.514561e-07, -1.2020806e-06, 9.0454245e-07, 1.9780817e-08, -3.2249102e-07, -1.6728565e-06, 3.788949e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1777337e-06, -4.7952517e-07, -1.58056e-06, -2.305144e-06, -1.3159629e-06, -1.2800314e-07, -2.0371108e-06, -1.0242632e-06, 6.608103e-07, -1.2952341e-06, 6.3096616e-07, -2.4338428e-07, 2.0728086e-07, 1.7397227e-07, 7.283839e-07, 5.9391164e-07, 8.2510337e-07, 9.901493e-07, 2.531487e-07, 4.2664962e-07, -2.0970643e-07, -1.8500633e-06, 2.4660335e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.3036576e-06, -2.9148755e-06, -1.2182528e-06, -3.2515927e-06, -1.052562e-06, 7.833647e-08, -2.1508535e-07, -3.75977e-07, 9.617635e-09, 2.5075292e-07, 1.074111e-06, 5.0917447e-07, 9.982068e-07, 1.6585767e-07, 3.1001298e-07, 1.0326439e-06, 6.1308333e-07, -4.3082004e-08, 2.443399e-07, -2.4929335e-07, 3.378933e-07, 1.9724641e-07, 8.278318e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.0269724e-06, -2.4383373e-06, -4.084854e-06, -1.8911729e-06, -1.2295645e-06, -5.436774e-07, -5.8585795e-07, 6.678791e-07, -2.5987805e-07, -4.925073e-07, 1.5272526e-06, -2.1872492e-07, 8.1914243e-07, 5.890567e-07, 1.8843887e-06, 5.093606e-07, 1.5027963e-06, 5.981269e-07, 8.888884e-07, 9.849734e-07, 4.9957544e-07, 1.4777508e-07, 1.5399729e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5018262e-06, -2.2063239e-06, -3.4477753e-06, -2.9905764e-06, -1.6240824e-06, -1.7758141e-06, -3.061686e-07, -6.281867e-07, -1.8170239e-07, -2.0255998e-06, -5.4440875e-08, 3.3939807e-07, 6.2897425e-07, 6.119604e-07, 1.0706599e-06, 3.9336177e-07, 1.3032395e-06, 5.526599e-07, -5.7613045e-07, 5.04903e-07, 1.4839361e-06, -8.4428257e-07, 2.6544535e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.851253e-07, -1.5508899e-06, -1.6601693e-06, -2.2679487e-06, -6.625504e-07, -5.993973e-07, 1.7362919e-07, -5.1104917e-07, -6.0888993e-07, -1.6459758e-06, 1.8330409e-06, 1.0850255e-06, 1.2561941e-06, 1.4655586e-06, 1.9144882e-06, 1.1756324e-06, 6.175554e-07, 9.957196e-07, 1.0430194e-06, 4.646497e-07, 1.2283169e-06, 8.328284e-07, 2.7615135e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 1.0 0.016558 0.500000 2077ed06-98a5-4d14-bfa3-6d54b63252fe 1046.416334 40.0 136207 56.014453 0.333333
2 probe00_2 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405] 11.121867 385 [12.666037501188397, 12.824101673336628, 15.051334106622248, 14.793994229951755, 16.056696718217186, 21.875012163446872, 34.51831149436141, 17.777454661471026, 22.426333631619762, 14.043853121355232, 15.863738914761383, 24.413901981895236, 54.54519898818794, 30.524853936394525, 39.701117454859336, 54.608381216648276, 18.33897153894153, 27.955537520435044, 27.667399447659946, 21.654273439789982, 17.575639988721644, 30.27568922878094, 17.249125202047818, 22.40125334345029, 51.02531243493367, 21.72792977649305, 18.148557354027115, 30.258535504975544, 33.25912872516818, 38.634794355690524, 61.626020654820294, 33.69638250959532, 38.02502199889561, 29.479667469899425, 26.077059526265685, 38.840979237250735, 20.8212671532896, 33.51421545825417, 12.978780896325091, 24.00951635475197, 19.37542805538097, 20.681918989174353, 81.03372545000535, 30.534298297830627, 22.455417763789583, 58.434234724490956, 33.09769007142619, 20.749301328497793, 46.15937016524469, 54.76654613911939, 26.725883754967228, 28.46586538320572, 94.404193507453, 20.505574521428468, 42.85447956724288, 15.533476739454553, 18.044729566734528, 63.81788710788196, 29.999308849531033, 28.763542025511054, 33.35941585825655, 18.230712045887774, 27.945394448967505, 25.45865142750925, 22.121970831523004, 15.626314890878223, 21.0376317427984, 13.981590730258374, 20.40960525932087, 17.44915908012907, 18.569230513888122, 12.24513274642933, 20.35390472366902, 17.77333959958178, 16.52568292901568, 20.47941999929681, 17.345221383393337, 14.448226972486733, 21.12218481572201, 14.679743363800757, 31.20433504905948, 26.541523748546147, 32.121526735227235, 15.564179419019286, 11.637536334919574, 16.481147360963487, 26.778593183630583, 12.49666443240782, 32.23432260970229, 32.23432260970229, 18.02935532915151, 17.652205000330845, 25.410422117099873, 18.09721132583708, 14.482378715053066, 20.634339976303593, 20.236224421202696, 22.877383668053316, 21.7616850599966, 14.175180513012274, ...] [0.12673378350168624, 0.19225456577921926, 0.19815643777063063, 0.23316754280442692, 0.26230979574815855, 0.2709402737814155, 0.2769716117119927, 0.2778046694372105, 0.2975981209883865, 0.29959745952890937, 0.3018633765415019, 0.31012730917566295, 0.3115268461540289, 0.3128930608233862, 0.31469246550985674, 0.31575877939813557, 0.3182246302647804, 0.32025729111431195, 0.32272314198095675, 0.32628862904488914, 0.330620529216022, 0.3326198677565448, 0.33335295855473646, 0.3347524955331025, 0.33855123876009585, 0.3420167588970021, 0.3437161966564465, 0.3473150060293876, 0.34801477451857055, 0.3491144107158582, 0.34978085689603244, 0.35134700541944197, 0.3525132862347469, 0.3545126247752698, 0.3567118971698449, 0.35994416114369016, 0.36091050810494285, 0.3626099458643872, 0.3630431358815005, 0.3637095820616748, 0.36540901982111923, 0.37070726695350475, 0.3721401262408794, 0.3729065393480798, 0.37370627476428897, 0.37710515028317776, 0.3786046541885699, 0.38170362892638027, 0.38266997588763296, 0.3841028351750077, 0.385002537518243, 0.39190025548304674, 0.39429946173167413, 0.3953990979289617, 0.39843142804875464, 0.4007311266358776, 0.4013645621515044, 0.403064836430292, 0.40376494936861623, 0.40463175586368444, 0.4138665789072954, 0.41846732107342643, 0.41996756308412136, 0.44693858056528113, 0.447405322524164, 0.45047248396825135, 0.45170601628815604, 0.4782436305217817, 0.48047732418214967, 0.4881118890810193, 0.5013806961978322, 0.5053146641369878, 0.509748712746375, 0.5322523429067987, 0.5365187707239222, 0.54681785130749, 0.5662827803068546, 0.6036127811275537, 0.6266107280617343, 0.6388429694020884, 0.7344577340395372, 0.8747469850288503, 1.1163871842570672, 1.1181525615723502, 1.4167366109137405, 1.641513137225043, 1.8229911819333102, 1.8946772147434616, 2.175071089419616, 2.2091946849831645, 2.2235239292139513, 2.2311884086862324, 2.5699372440000015, 2.6904630728007572, 2.838507858035307, 3.0752317780945866, 3.0804703695175877, 3.098922223383317, 3.1082507342101504, 3.525248785565007, ...] 0.627968 2.600801 16.426813 NaN 37.502293 10.884063 0.998179 -0.600000 [237.03944396972656, 300.99200439453125, 214.8876495361328, 234.83392333984375, 81.88595581054688, 291.9986572265625, nan, 214.19635009765625, 282.77423095703125, 168.98727416992188, 230.26644897460938, 282.9826354980469, 320.0, 274.0174255371094, 299.6703186035156, nan, 158.56411743164062, 301.1614990234375, 212.83126831054688, 257.8773498535156, 101.45594787597656, 299.5512390136719, 204.22975158691406, 208.04627990722656, nan, 303.1392517089844, 244.2354736328125, 319.37921142578125, 261.3663330078125, 262.57843017578125, nan, 300.0, 320.0, 300.0, 260.37255859375, 300.0, 222.868408203125, 280.64599609375, 237.90692138671875, 160.0, 295.59228515625, 226.88729858398438, nan, 47.42801284790039, 202.69808959960938, nan, nan, 196.84405517578125, 320.0, nan, 137.28280639648438, 257.8389892578125, nan, 52.059478759765625, 320.0, 260.3065185546875, 216.46661376953125, nan, 245.54129028320312, nan, 240.310546875, 198.4339599609375, 291.7747802734375, 180.0, 257.53857421875, 147.73069763183594, 257.7181701660156, 188.7036590576172, 215.87171936035156, 235.23159790039062, 235.78475952148438, 228.85720825195312, 316.12664794921875, 274.2130432128906, 309.26806640625, 270.88458251953125, 218.53330993652344, 122.34810638427734, 318.786376953125, 283.2757568359375, nan, 249.37489318847656, nan, 145.741455078125, 226.23057556152344, 119.57415771484375, 276.55560302734375, 154.2358856201172, 160.0, 160.0, 168.86256408691406, 254.8386993408203, 156.1259765625, 237.79779052734375, 294.5348205566406, nan, 259.1128845214844, 272.9500732421875, 254.9708251953125, 259.9810791015625, ...] mua [[8.01392e-09, 3.729827e-07, -2.8481008e-07, 3.6191148e-07, -7.652284e-07, -7.451809e-07, -1.2923192e-08, 1.7473039e-07, 2.6233832e-07, -2.7077634e-08, -6.311082e-07, -6.713833e-07, 5.140965e-07, 8.4266617e-07, -4.887689e-07, 1.9132848e-08, 2.1063543e-06, 8.530642e-07, 1.4134438e-06, 8.8652223e-07, 1.2369602e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.7433365e-07, -3.07769e-07, -1.2790325e-06, -1.251726e-06, 1.5691762e-06, 3.426461e-07, 7.816195e-07, -4.5130648e-08, 3.9023402e-07, -8.4318475e-07, -5.4480034e-07, 1.1025445e-06, 7.857275e-07, 1.759347e-07, 3.640618e-07, -1.01042644e-07, 6.0645283e-07, 1.4222275e-07, 7.454373e-07, -1.9617048e-07, 1.1659095e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.015223e-07, 1.4741643e-06, -9.59456e-07, -4.6191025e-07, 3.597373e-07, 2.7048463e-07, 2.4989922e-06, 2.9710455e-07, 4.243013e-07, -2.7070476e-07, -3.5292356e-07, 4.984274e-08, -2.7239821e-08, 9.370398e-07, -6.585768e-08, -2.3761115e-07, -8.499679e-07, 8.3545174e-08, -2.4468613e-07, -3.9774264e-08, 9.0086735e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.14165e-07, 3.1862777e-07, -1.3673989e-06, -5.591763e-08, 5.487744e-07, 4.9903673e-07, -1.9791248e-07, 1.0280462e-06, 3.2570284e-08, -6.2366024e-07, 3.5942276e-07, -6.013564e-07, 1.0294442e-06, -3.829233e-08, -1.4743489e-07, -1.6558613e-06, 1.0981698e-06, -6.4982e-07, 4.5469602e-07, -7.919956e-07, 7.530273e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.209486e-07, -4.5467254e-07, 1.5489178e-06, -4.797097e-07, 8.0879875e-07, 2.8425555e-07, -5.297384e-07, -1.4925701e-09, 1.2736821e-07, -4.5907734e-07, -1.983285e-06, -6.31885e-07, 3.6743643e-07, -5.047542e-07, 7.05818e-08, -3.805624e-07, 1.8229024e-07, -4.8561753e-07, -1.3409579e-06, -4.437169e-08, 3.0439742e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.0049077e-07, -7.4107885e-07, 1.3311997e-07, -4.6131782e-07, 5.567071e-07, -9.9016795e-09, -2.2280241e-07, 3.0769673e-08, 3.2815376e-07, -2.5262507e-08, -7.429416e-08, 1.2918401e-06, -3.634867e-08, 1.5277507e-07, -1.3129827e-06, 1.10307376e-07, -1.0751453e-06, -8.0401935e-07, -6.267019e-07, -6.546978e-08, 9.4916766e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1389395e-07, 6.073489e-07, 1.7262512e-06, 1.0869305e-06, 3.433078e-07, -1.0819111e-06, -2.4962324e-08, -3.7632515e-07, 2.9681098e-07, 2.8018382e-08, -1.395593e-06, -3.972839e-07, -7.181771e-08, -1.0225777e-06, -1.16443104e-07, -8.37372e-07, -7.1514796e-07, -1.5281307e-06, -1.7757618e-06, -1.1313741e-06, -1.2604424e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0632201e-06, -7.653722e-08, 1.5090473e-06, -3.209767e-08, -6.8221186e-07, 7.249796e-07, 3.2027066e-07, -3.1669063e-07, 5.755094e-07, 1.0806448e-06, -8.3059433e-07, -1.1231409e-06, -4.5968542e-07, -6.294093e-07, 9.369662e-07, -4.8424005e-07, -1.4275281e-06, -1.5102246e-06, -1.477199e-06, -1.8733942e-06, -5.079362e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.74938e-07, -5.382609e-07, -7.756785e-07, -2.93127e-07, -9.744487e-08, 5.9890283e-07, -9.3507435e-07, -4.64026e-07, 9.2031473e-07, 1.620457e-08, -1.5449956e-06, -3.0545002e-07, -6.946732e-07, 2.0162753e-07, -1.2876106e-06, 6.413562e-07, -1.9409767e-06, -7.297126e-07, -5.1993817e-07, -4.8504216e-07, -1.0427913e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1008598e-06, -1.5166411e-06, 5.837052e-07, -3.2058483e-07, 1.539172e-07, 1.3937911e-06, -3.6726604e-08, -1.000941e-06, -1.6154644e-06, -1.9412448e-06, -5.347279e-07, 9.671467e-08, -7.379912e-09, -3.5860415e-07, -9.145799e-08, -1.9905339e-07, -1.3961021e-06, -2.7968892e-07, -2.4448832e-07, -8.985426e-07, -7.380419e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.6713008e-09, -4.4741718e-08, -1.3706291e-06, 8.457712e-07, -1.2340953e-06, -3.8549624e-07, -4.413224e-07, -1.3726051e-06, -8.422544e-07, 1.9178994e-07, -1.8742203e-06, -2.165882e-06, -1.2929927e-06, -7.511929e-07, -6.7236806e-07, -1.124999e-06, -2.2699037e-06, -5.0837343e-07, -8.405917e-07, -7.235317e-07, -1.9525388e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2260146e-07, -3.5735988e-07, -2.9189982e-07, -7.109673e-07, -1.4807983e-06, -7.6459906e-07, 7.747941e-07, -4.1655676e-07, -1.3569143e-06, 1.5496449e-06, -1.0788494e-06, 3.0587165e-07, -8.387427e-07, -2.0960201e-06, -7.4687216e-07, -1.8668322e-06, -2.831542e-06, -2.0303746e-06, -1.289123e-06, -1.2829995e-06, -5.958317e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.474384e-07, -1.0624966e-08, -1.661067e-06, 1.1740103e-07, -6.8033887e-07, -1.1183491e-06, -3.6513524e-07, -1.4781176e-06, -7.464841e-07, -1.5265645e-07, -1.7987206e-06, -5.1823076e-07, -3.865796e-07, -5.535594e-07, -1.8127866e-06, -5.8388537e-07, -2.84393e-06, -9.805229e-07, -2.1670069e-06, -1.6678707e-06, -2.430622e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6068027e-06, -4.4597212e-07, -9.170285e-07, -3.8100313e-07, 1.2704459e-07, -3.4370757e-07, -1.3480133e-07, -9.302778e-07, -1.429187e-06, -1.096769e-06, -8.1219224e-07, -7.554992e-07, -6.195777e-07, -1.4210352e-06, 6.846398e-07, 6.011753e-08, -1.681183e-06, -3.610797e-07, -1.8131195e-06, -2.6979678e-06, -1.8592509e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.5078534e-07, -1.303576e-06, 4.6203075e-07, -6.767424e-07, -2.515676e-07, 5.131083e-07, -1.2364826e-06, -2.2796416e-06, -2.3175876e-07, -1.2057859e-06, -1.3583556e-06, -5.7362564e-07, -9.959514e-07, -1.185962e-06, -1.4324223e-06, -7.2183536e-07, -2.2449003e-06, 7.649384e-08, -2.2434283e-06, -9.796115e-07, 7.905387e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1283474e-06, -5.8140995e-07, -1.43856e-06, -1.4774208e-06, 1.598795e-07, -9.7822394e-08, -1.4948221e-06, -1.467346e-06, -1.4311902e-06, -1.9825347e-06, -2.0072846e-06, -4.3471343e-07, -1.5760781e-06, -8.3734415e-07, 1.5057006e-07, -1.9327996e-07, -1.4557428e-06, -4.9719688e-08, -1.9279287e-06, -2.9216417e-06, -1.4455449e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.019169e-07, 1.3429026e-07, -1.9854024e-06, -1.0448732e-06, -2.3482557e-06, -6.8316456e-07, -6.9996565e-07, -2.1054448e-06, -4.0986646e-07, -1.7347528e-06, -1.3969589e-06, -5.204041e-07, -2.9590185e-06, -1.5294282e-06, -2.5352358e-07, -2.1771748e-06, -1.7696382e-06, -3.087403e-06, -1.0805547e-06, -1.983343e-06, -2.421261e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.7377786e-08, -1.8494543e-06, 6.314126e-07, -1.6450651e-06, -2.349797e-06, -2.230045e-06, -1.2073563e-06, -1.5873424e-06, -7.9880056e-07, -2.5716797e-06, -1.7739042e-06, -8.2898873e-07, -2.3125444e-06, -1.7377267e-06, -6.5834513e-07, -1.5720523e-06, -1.5397618e-06, -1.7194167e-06, -2.3428206e-06, -1.814137e-06, -2.4722508e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.9017074e-07, 2.3923724e-07, -2.041732e-06, -5.76616e-07, -2.1344858e-06, 5.630875e-07, -8.964842e-07, -1.2521364e-06, -9.779138e-07, -2.0801058e-06, -2.1482394e-06, -1.0557254e-06, -2.263794e-06, -2.3586367e-06, -1.4315665e-06, -2.0145137e-06, -1.0504546e-06, -2.8329612e-06, -6.354519e-07, -2.6756475e-06, -1.2089646e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.1857962e-07, -2.3645018e-07, -1.6397507e-06, -1.2182024e-06, -2.3649116e-06, -1.898128e-06, -5.9744445e-07, -2.9384398e-07, -7.7353707e-07, -2.0910845e-06, -1.937727e-06, -8.630751e-07, -1.8809951e-06, -1.1725785e-06, -5.215161e-07, -2.8100153e-06, -1.6068808e-06, -3.4026857e-06, 9.4621505e-08, -2.779655e-06, -1.4688578e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.5862805e-07, 4.7371884e-11, -2.947952e-07, -1.2643693e-06, -2.360774e-06, -1.7457654e-07, -2.7988594e-06, -1.855899e-06, -1.9996362e-06, -2.6494895e-06, -1.5522401e-06, -1.6013125e-06, -3.0640608e-06, -2.2231297e-06, -1.312275e-06, -1.8659409e-06, -2.8059846e-06, -2.7132303e-06, -1.246618e-07, -1.3905101e-06, -1.7769744e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.6398738e-07, -7.390212e-07, -2.696456e-07, -1.9381716e-06, -1.4087904e-06, -2.901461e-06, -3.3423748e-06, -2.0469307e-07, -2.5192478e-06, -2.0538707e-06, -1.3348346e-06, -1.8571247e-06, -9.023166e-07, -1.9594745e-06, -1.0119021e-06, -2.9458997e-06, -1.0493197e-06, -1.3528467e-06, -1.1604947e-06, -1.4951679e-06, -1.8073031e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4166792e-06, -5.626045e-07, -1.9035485e-06, -2.3786447e-06, -2.196628e-06, -1.1678801e-06, -7.756315e-07, -1.0533165e-06, -3.0409242e-06, -2.0549405e-06, -1.7739384e-06, -2.6845132e-06, -1.2182458e-06, -9.2952564e-07, -1.6788616e-06, -1.5316209e-06, -1.6041663e-06, -1.2944613e-06, 2.7453686e-07, -9.853474e-07, -1.2960159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1878063e-06, -2.1117426e-06, -1.771305e-06, -1.9615595e-06, -2.151069e-06, -2.1995652e-06, -3.6671355e-07, -2.0932553e-06, -1.9383142e-06, -1.4879802e-06, -2.729407e-06, -1.5387927e-06, -2.8145773e-06, -2.4273768e-06, -1.7815041e-06, -1.2559208e-06, -1.3877186e-06, -1.4606961e-06, -9.747812e-08, -1.0178494e-06, -1.1892486e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.521119e-07, -7.757975e-07, -2.5744496e-06, -1.1532177e-06, -1.6783458e-06, -1.6709212e-06, -1.3643496e-06, -1.3410511e-06, -2.5969384e-06, -1.9006582e-06, -1.3500373e-06, -2.197401e-06, -1.3675105e-06, -1.6423797e-06, -2.5699346e-06, -2.376139e-06, -1.8237738e-06, -1.0501768e-06, -7.483279e-07, -1.1999939e-06, -1.4552763e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.8245304e-07, -7.404998e-07, -2.7297579e-06, -1.1750897e-06, -1.983096e-07, -1.7682673e-06, -6.092616e-07, -1.5448961e-06, -3.322521e-06, -2.3609e-06, -8.057167e-07, -2.2230674e-06, -7.468236e-07, -1.7769845e-06, -1.1744123e-06, -1.2141174e-06, -2.9060488e-06, -4.4793362e-07, -6.39787e-08, -2.1702417e-06, -1.7938676e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4059088e-07, -1.1139384e-06, -3.3405372e-06, -2.392997e-06, -1.2725925e-06, -1.916668e-06, -5.7486113e-07, -1.5807939e-06, -3.3454403e-06, -9.601658e-07, -4.5139552e-07, -1.8682033e-06, 2.6651833e-08, -1.5843771e-06, 2.3538195e-07, -1.1361047e-06, -1.0942409e-06, -1.3433382e-07, -2.876095e-07, 2.1709596e-07, -5.0161367e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.758198e-07, -1.8451286e-06, -2.6897392e-06, -1.0607632e-06, -8.5359534e-07, -3.0896624e-06, -1.3144756e-06, -1.1794805e-06, -2.812565e-06, -7.957649e-07, -6.0214404e-07, -1.1828454e-06, -2.134946e-06, -1.7229917e-06, -9.3223787e-07, -1.6317103e-06, -1.1654643e-06, -1.3233957e-06, -1.1123283e-08, 1.5320536e-07, -1.5425794e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.168391e-07, -1.2935106e-06, -1.870264e-06, -2.563497e-06, -2.745499e-07, -1.2850267e-06, -1.499872e-06, -8.684914e-07, -2.7438698e-06, -1.5282701e-06, -9.884538e-07, -6.97478e-07, -2.788359e-07, -2.0318407e-06, 4.1646658e-07, 9.1597906e-07, -8.8614445e-07, -1.5706842e-06, -1.524218e-06, -3.8173354e-07, -2.0940022e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.99553e-06, -6.734657e-07, -2.9157072e-06, -2.2609497e-06, -1.1152506e-06, -1.0399217e-06, -2.3518396e-06, -2.4766614e-06, -2.6495059e-06, -5.499461e-07, -7.2346666e-07, -1.2076462e-06, -1.5097418e-06, -1.637846e-06, -9.90679e-07, -8.294397e-07, -4.6975703e-07, -1.391096e-06, -2.494678e-07, -9.999948e-08, -8.27971e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7922237e-06, -1.5455839e-06, -3.639035e-06, -2.8495424e-06, -4.1577053e-09, -1.9848137e-06, -1.790557e-06, -6.936003e-07, -1.2996641e-06, -5.2674955e-07, -8.3508826e-07, -1.6914273e-06, -8.1099915e-07, -1.4474706e-06, -6.289347e-07, -1.1945774e-06, 1.0668299e-07, -1.4122227e-06, -8.8795815e-07, 1.9374863e-07, -6.636918e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.9350878e-06, -1.5747926e-06, -5.024285e-06, -1.6998358e-06, -9.2743835e-07, -1.8759181e-06, -1.8357234e-06, -2.046279e-06, -2.2153015e-06, -1.1373663e-06, -4.6167574e-07, -1.2628927e-06, -1.1879611e-06, 1.2456839e-07, -1.0822628e-06, 1.2621746e-07, 8.532995e-07, -1.7773706e-06, -1.5423744e-06, -1.3684115e-07, -2.0683258e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7700474e-06, -4.9947954e-07, -2.4346143e-06, -5.577215e-07, -2.509932e-07, -1.6200133e-06, -1.5078842e-06, -1.6996811e-06, -2.4782425e-06, -1.677987e-07, -1.1896566e-06, -1.3192745e-06, -8.181509e-08, -2.608224e-07, 3.501023e-07, -8.4777525e-07, 7.3366687e-07, -2.2853883e-06, -7.1120064e-07, -5.384512e-07, -1.3287665e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.5298202e-06, -1.1918178e-06, -2.440435e-06, -9.972063e-07, -1.4031464e-06, -1.7180841e-06, -8.9872464e-07, -6.6546147e-07, -1.3103427e-06, 6.929267e-08, 1.2858462e-06, -3.5739212e-08, 4.659119e-07, -1.917094e-07, -8.054984e-08, -2.5253718e-07, 5.206738e-07, -3.400815e-07, 5.6584474e-07, 5.155979e-07, 6.312808e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2975689e-06, -4.0433292e-07, -5.3837357e-07, 2.8633485e-07, -1.7185655e-06, -1.3080264e-06, -7.565029e-08, 8.5337626e-07, -4.0959186e-08, 1.17076524e-07, -8.740169e-07, 4.603794e-08, 2.198645e-07, -2.8480116e-07, 1.4987045e-06, 9.47615e-07, -1.2293374e-07, 1.967572e-06, 6.5279147e-07, 8.549564e-07, 4.1983287e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.129029e-07, 4.896485e-07, -1.0301484e-06, -1.224481e-06, -1.1255195e-06, -1.1749755e-06, -2.1203519e-07, 6.708476e-07, 8.9111445e-08, 2.5170064e-07, -2.3104855e-07, 4.514361e-07, 1.2927171e-06, 2.3470043e-06, 1.419512e-06, 1.8573916e-06, 1.6189761e-06, 3.3520691e-06, 1.0536774e-06, 1.218204e-06, 3.4709306e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.247185e-07, 1.8951377e-08, -1.1845543e-06, -1.5503654e-06, 4.2319094e-08, -1.2202831e-06, 9.309455e-08, 2.6147936e-06, 2.2548095e-06, 6.287139e-07, 7.54865e-07, 1.16618e-06, 2.0209984e-06, 6.3810097e-07, 2.046305e-06, 2.462641e-06, 3.6120982e-06, 2.8582635e-06, 1.9707136e-06, 2.523579e-06, 3.1828215e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8375808e-06, -4.8082946e-08, 1.456099e-06, 1.8714977e-06, 1.4335715e-06, 2.694342e-06, -9.695982e-08, 3.1726863e-06, 1.6731408e-06, 1.2776886e-06, 1.3838945e-06, 1.9741426e-06, 1.463038e-06, 1.9420443e-06, 2.4265212e-06, 3.9112165e-06, 3.5939806e-06, 3.2500684e-06, 2.3469097e-06, 2.9582225e-06, 2.3603084e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.1610117e-06, 2.376837e-06, 3.1243685e-06, 2.0865314e-06, 8.7438013e-07, 3.8456474e-06, 2.4672108e-06, 3.1858206e-06, 2.6670032e-06, 1.496916e-06, 3.7608536e-06, 2.9969274e-06, 1.6830891e-06, 3.356623e-06, 2.850033e-06, 3.6914184e-06, 4.3236214e-06, 4.0005507e-06, 3.522023e-06, 3.389374e-06, 2.3848631e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0788801e-06, 7.1988825e-07, 4.468913e-06, 2.879734e-06, 1.8985521e-06, 2.2227177e-06, 2.6617618e-06, 2.8737372e-06, 3.4640489e-06, 3.3529975e-06, 2.9459502e-06, 3.867362e-06, 4.1481835e-06, 4.3320006e-06, 4.491485e-06, 4.6574683e-06, 5.790649e-06, 4.1202475e-06, 4.8569486e-06, 4.400477e-06, 3.3517786e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.0492774e-06, 2.45121e-06, 4.4001667e-06, 4.1405074e-06, 3.34521e-06, 3.2272094e-06, 3.2411438e-06, 3.5112957e-06, 4.8987085e-06, 3.1155644e-06, 3.9923325e-06, 4.47596e-06, 4.1736844e-06, 4.5159604e-06, 3.7822042e-06, 5.0450417e-06, 4.340273e-06, 4.82607e-06, 4.220512e-06, 3.3796177e-06, 3.5758324e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.6975857e-06, 4.1893327e-06, 4.58044e-06, 3.3670806e-06, 3.2884786e-06, 4.9074706e-06, 3.7099405e-06, 4.1044805e-06, 5.4045695e-06, 3.9855177e-06, 4.079614e-06, 4.791578e-06, 3.955779e-06, 6.3715597e-06, 4.8613233e-06, 3.9870984e-06, 4.3211026e-06, 4.488985e-06, 4.7961685e-06, 5.667541e-06, 4.6774057e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3202869e-06, 3.4140369e-06, 4.3984464e-06, 4.459127e-06, 4.456995e-06, 3.4292016e-06, 4.6911255e-06, 5.419238e-06, 5.21678e-06, 4.0527802e-06, 4.5833467e-06, 4.72792e-06, 4.257474e-06, 7.19292e-06, 5.7792195e-06, 4.670612e-06, 4.8122374e-06, 5.566092e-06, 5.8570895e-06, 6.379387e-06, 5.4206344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.436872e-06, 4.3044793e-06, 3.7382383e-06, 4.6005944e-06, 4.220621e-06, 3.95618e-06, 3.4978639e-06, 3.956524e-06, 5.2612395e-06, 3.5769626e-06, 4.4463713e-06, 3.85418e-06, 5.7262864e-06, 4.190003e-06, 4.538637e-06, 5.053294e-06, 4.282877e-06, 4.3216114e-06, 5.230231e-06, 5.698317e-06, 4.493244e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.6197306e-06, 3.1985164e-06, 3.7349496e-06, 5.071157e-06, 4.56769e-06, 3.489665e-06, 3.227483e-06, 4.655844e-06, 5.3788026e-06, 4.4625403e-06, 3.9186716e-06, 4.10176e-06, 5.9230933e-06, 3.0042584e-06, 4.576106e-06, 4.94318e-06, 4.165565e-06, 3.942042e-06, 3.8188095e-06, 5.7490706e-06, 5.2240352e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3180495e-06, 2.514346e-06, 3.968663e-06, 4.0999694e-06, 5.39995e-06, 5.6680005e-06, 2.8409327e-06, 3.6592878e-06, 4.901987e-06, 3.2219846e-06, 3.5133696e-06, 3.3441838e-06, 4.5044153e-06, 3.834514e-06, 4.410052e-06, 5.7249517e-06, 3.6992133e-06, 5.0131684e-06, 2.9994526e-06, 5.1012717e-06, 4.654168e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.5728114e-06, 2.4602355e-06, 3.6217652e-06, 2.5808026e-06, 4.428629e-06, 5.537545e-06, 4.4274793e-06, 3.0895649e-06, 3.5922533e-06, 4.302622e-06, 4.120272e-06, 4.6528858e-06, 4.5581164e-06, 4.6821115e-06, 4.695653e-06, 4.7121603e-06, 4.5587776e-06, 5.3048398e-06, 3.997785e-06, 3.9311117e-06, 3.6409815e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.9171978e-06, 1.6254751e-06, 2.2789302e-06, 2.6617836e-06, 2.9978337e-06, 3.0878105e-06, 1.5130499e-06, 2.3061984e-06, 3.6600281e-06, 3.5474004e-06, 2.0233042e-06, 2.8807933e-06, 4.2577585e-06, 2.3877772e-06, 2.9528496e-06, 4.7329104e-06, 4.5880715e-06, 3.6133993e-06, 3.9009465e-06, 3.196435e-06, 1.7909633e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2137426e-06, 1.2656053e-06, 3.5784348e-07, 1.5237035e-06, 1.1071397e-06, 1.0108499e-06, 1.4089344e-06, 1.8496751e-06, 3.2800958e-06, 3.257761e-06, 9.3423677e-07, 3.385914e-06, 2.900355e-06, 3.056049e-06, 1.8858002e-06, 4.3874006e-06, 2.5554227e-06, 2.5814843e-06, 2.559339e-06, 1.9765205e-06, 5.009143e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1023573e-07, 1.5471918e-06, 3.5694842e-07, 3.725095e-08, 2.123314e-06, 1.2752809e-06, 2.291485e-06, 1.0919637e-06, 2.695354e-06, 1.9232125e-06, 1.1827775e-06, 2.1314597e-06, 2.308358e-06, 3.272718e-06, 1.4112815e-06, 2.3713405e-06, 2.2516092e-06, 1.6348965e-06, 3.3571596e-06, 7.9129245e-07, 6.70292e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.529776e-07, 1.4896993e-06, -9.534227e-07, 3.691443e-07, 9.455141e-07, 2.6574482e-06, 2.6624286e-07, -3.5096073e-07, 1.7339511e-06, 1.2624259e-06, 2.0524722e-06, 8.6785934e-07, 8.067176e-07, 6.747951e-07, 1.8499684e-06, 2.8446796e-06, -1.6017736e-08, 7.7420486e-07, 1.3641361e-06, 1.8472917e-06, 1.5247722e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.250192e-07, 3.7492714e-07, -1.9782951e-06, -6.9991916e-07, 1.7141431e-08, 1.0271558e-06, -3.3667163e-07, -9.914097e-07, 1.5829781e-07, 4.4533758e-07, 9.374264e-07, 1.5447337e-06, 4.2404096e-08, -6.615265e-07, 1.6054664e-06, 2.8122918e-07, 5.15838e-07, -1.3029205e-06, 2.2933017e-07, 1.6706178e-06, 6.091253e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.5402534e-07, 9.2007684e-07, -1.8669059e-06, 1.1754315e-07, -6.420453e-07, 3.49171e-07, -1.6307853e-06, -2.7719052e-08, -1.0426505e-07, 2.8861493e-07, 9.6068156e-08, 3.88739e-07, 1.1081806e-06, -1.3936722e-06, 1.6018782e-07, -1.6236313e-06, -1.1545684e-06, 1.2433193e-07, 5.611347e-07, 3.6774526e-07, -1.4960897e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2342624e-06, 1.7542965e-07, -1.3019112e-06, -6.8431956e-07, -2.7670076e-08, -2.3154296e-09, -8.064315e-07, 2.9865653e-08, -1.08056156e-07, -1.430026e-06, -3.6363167e-07, -6.202382e-07, -1.585439e-06, -8.1480323e-07, -1.2037394e-06, -1.7333607e-06, -1.4722641e-06, -1.4526347e-06, 9.299186e-07, -7.5553845e-07, -1.619643e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8186273e-06, -8.110342e-08, -7.5542755e-07, -2.4519017e-07, 1.4301936e-07, -6.2393906e-07, -6.728596e-07, -7.305587e-08, -1.0346096e-06, -4.5853074e-07, -3.2534956e-07, 1.2479375e-06, -2.0054665e-06, -7.6464966e-07, 5.150115e-07, -1.7807424e-06, -1.3122566e-06, -3.6713993e-07, -3.5320093e-07, -1.5999549e-06, -2.2442046e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2387093e-06, -4.1325976e-08, -1.4890976e-06, -4.939477e-08, -5.4197665e-07, -2.6020166e-06, -8.6284686e-08, -1.2966993e-06, -1.6116522e-06, -1.1079017e-06, 2.2829018e-07, -1.1708489e-06, -1.7757211e-06, -9.762546e-07, -5.509887e-07, -2.9818227e-06, -5.179965e-07, -1.0731121e-06, -1.454481e-06, -1.265085e-06, -1.99223e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.694415e-07, -3.6446306e-07, -2.4516235e-06, -1.4353267e-06, -1.4034533e-06, -2.5925995e-06, -9.359631e-07, -1.2873638e-06, 3.936692e-07, -9.547208e-07, -1.4161196e-06, -5.967027e-07, -1.4715671e-06, -1.905174e-06, -7.690778e-07, -2.0763196e-06, -1.0363891e-06, -1.6750002e-06, -7.444753e-07, -1.7217501e-06, -1.6311476e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5600743e-06, -6.7783947e-07, -3.327515e-06, -1.945375e-06, -8.940856e-07, -3.2764378e-06, -2.1929225e-06, -2.0209549e-07, -8.913083e-07, -2.6028479e-06, -9.872095e-07, -2.4527324e-06, -2.8273162e-06, -1.8283104e-06, -2.0410334e-06, -2.1238893e-06, -2.4931462e-06, -2.6988982e-06, -2.8829445e-06, -1.9171057e-06, -2.4784908e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.4372056e-06, -2.926033e-06, -2.7980964e-06, -1.6753631e-06, -1.7250597e-06, -2.202005e-06, -2.10486e-06, -1.9595213e-06, -1.796618e-06, -1.8246681e-06, -7.8055405e-07, -2.6806372e-06, -1.7339801e-06, -2.2298025e-06, -3.5911203e-06, -6.9143476e-07, -6.874584e-07, -2.0336133e-06, -1.1917942e-06, -3.5751027e-06, -1.4608945e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3808664e-06, -2.347845e-06, -4.2888346e-06, -2.3586713e-06, -2.050167e-06, -3.340004e-06, -2.7645656e-06, -1.9592037e-06, -3.5872422e-06, -2.6585599e-06, -1.4755094e-06, -3.4695686e-06, -3.2141443e-06, -8.332019e-07, -2.5967497e-06, -9.3779977e-07, -3.1112113e-06, -1.8415865e-06, -1.2652498e-06, -2.542571e-06, 5.0400608e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7654743e-06, -2.8576023e-06, -5.1754946e-06, -2.1288169e-07, -2.0857283e-06, -3.0119063e-06, -1.5743437e-06, -2.2348795e-06, -2.5394427e-06, -2.4696928e-06, -1.2742223e-06, -1.3203767e-06, -2.0358434e-06, -2.3655148e-06, -2.9318035e-06, -3.2698492e-06, -2.3367788e-06, -3.2738926e-06, -2.8198242e-06, -4.907711e-06, -1.4492769e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6494612e-06, -2.339765e-06, -4.7925223e-06, -1.8045475e-06, -1.2122599e-06, -8.195962e-07, -3.5329977e-06, -4.340976e-06, -2.1307806e-06, -2.8373584e-06, -2.764753e-06, -2.4702003e-06, -1.9155384e-06, -2.9513499e-06, -1.8477247e-06, -3.0222511e-06, -2.7935832e-06, -2.9989487e-06, -1.94634e-06, -3.914247e-06, -2.2999648e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.870098e-06, -1.1526317e-06, -5.5939804e-06, -2.4953583e-06, -4.6910163e-06, -2.4342723e-06, -2.8062345e-06, -3.676946e-06, -3.854502e-06, -2.7144702e-06, -3.714897e-06, -1.7481284e-06, -2.1883382e-06, -2.5318473e-06, -2.96223e-06, -3.8856606e-06, -4.686754e-06, -3.6217307e-06, -2.1322035e-06, -4.491388e-06, -1.8998469e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8505387e-06, -1.9459653e-06, -3.3900055e-06, -2.0906718e-06, -4.0147534e-06, -2.4071282e-06, -3.1744714e-06, -3.7259697e-06, -3.1173954e-06, -2.6767234e-06, -4.9172168e-06, -2.1742696e-06, -4.4429753e-06, -2.8228312e-06, -2.9941739e-06, -2.6596367e-06, -3.986058e-06, -4.368304e-06, -1.5175103e-06, -2.5488735e-06, -3.334569e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3197622e-06, -3.5262135e-06, -3.8079966e-06, -2.4604908e-06, -3.2723847e-06, -2.8848644e-06, -2.4137034e-06, -2.9095336e-06, -2.0962689e-06, -1.2306614e-06, -3.550345e-06, -3.0245465e-06, -4.0055365e-06, -3.7479213e-06, -2.3663647e-06, -2.588853e-06, -2.362734e-06, -2.6318671e-06, -3.6694041e-06, -2.7896021e-06, -3.864434e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1465225e-06, -2.6757539e-06, -4.257731e-06, -2.5032164e-06, -3.859411e-06, -1.8500331e-06, -2.7002377e-06, -3.3089857e-06, -3.047027e-06, -1.915953e-06, -2.6061962e-06, -3.0955116e-06, -2.930145e-06, -3.5824487e-06, -1.7396965e-06, -2.4287538e-06, -3.2143257e-06, -2.3777384e-06, -1.8119182e-06, -4.1868443e-06, -3.219942e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7563543e-06, -2.6305338e-06, -4.401833e-06, -2.0834404e-06, -9.719681e-07, -1.5180677e-06, -2.5942484e-06, -2.6955827e-06, -3.3160136e-06, -2.349812e-06, -3.3791378e-06, -1.6332795e-06, -1.9448876e-06, -4.407914e-06, -8.5821887e-07, -2.7651186e-06, -2.79105e-06, -3.058708e-06, -1.9439944e-06, -2.5613067e-06, -2.480495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5596287e-06, -1.8540975e-06, -2.2536883e-06, -2.165411e-06, -3.1803927e-06, -2.8695881e-06, -2.5686595e-06, -1.985702e-06, -3.4561574e-06, -3.749853e-06, -2.2811396e-06, -2.9159287e-06, -1.8572653e-06, -3.3353463e-06, -2.6876378e-06, -1.3606623e-06, -2.9936314e-06, -2.763532e-06, -1.6050215e-06, -2.4738588e-06, -1.8989265e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2372858e-06, -3.0724564e-06, -4.085461e-06, -2.4129158e-06, -2.69456e-06, -2.8471302e-06, -3.050045e-06, -3.0036704e-06, -2.4355054e-06, -4.870565e-06, -2.4364517e-06, -2.455131e-06, -2.4773503e-06, -2.6704874e-06, -3.0257659e-06, -2.261256e-06, -3.2928033e-06, -2.3187063e-06, -2.9094572e-06, -2.6477087e-06, -6.799817e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.4616947e-06, -3.1634158e-06, -2.6639352e-06, -1.8313494e-06, -3.7065502e-06, -2.9932494e-06, -2.8449876e-06, -2.9281646e-06, -1.5976827e-06, -2.796308e-06, -1.6396124e-06, -2.847002e-06, -3.0702781e-06, -2.2363015e-06, -2.8742509e-06, -2.5066947e-06, -1.7578525e-06, -3.2247717e-06, -2.0548414e-06, -7.6348704e-07, -1.4730454e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7449541e-06, -1.5738447e-06, -1.3649151e-06, -2.7344481e-06, -1.953249e-06, -1.6082686e-06, -1.6536402e-06, -2.9099274e-06, -2.0166187e-06, -2.0590041e-06, -1.4612538e-06, -3.0968317e-06, -2.4558249e-06, -2.1351789e-06, -2.0613654e-06, -1.8906899e-06, -1.9466563e-06, -1.7590351e-06, -2.2427307e-06, -1.5114882e-06, -1.2228166e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5976826e-06, -2.6954124e-06, -2.2061101e-06, -3.438577e-07, -5.867486e-07, -8.8160635e-07, -1.379663e-06, -2.6467828e-06, -2.0470156e-06, -2.5838663e-06, -1.5078033e-06, -1.9600266e-06, -3.041111e-06, -1.9547142e-06, -2.1822075e-06, -2.5578063e-06, -1.5662077e-06, -2.535361e-06, -1.7232207e-06, -2.4705223e-06, -9.2168693e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.582573e-06, -2.2876666e-06, 5.5423943e-08, -1.7738344e-06, -1.4152483e-06, -1.5353348e-06, -1.5410108e-06, -2.6501527e-06, -1.5396668e-06, -4.2677794e-07, -2.046051e-06, -2.2817994e-06, -1.8084413e-06, -1.318951e-06, -7.574613e-07, -9.716605e-07, -1.0262428e-06, -1.3727972e-06, -2.042387e-06, -2.0976145e-06, -8.7706815e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.999547e-06, -2.1814471e-06, -1.210268e-06, -1.5029968e-06, -1.2456632e-06, -3.4210107e-06, -1.1503458e-06, -2.1065575e-06, -6.9679857e-07, -1.2689351e-06, -1.0334245e-06, -3.367275e-06, -2.562033e-06, -1.6863098e-06, -1.7611355e-06, -2.4053477e-06, -9.900003e-07, -1.6618262e-06, -1.8105594e-06, -1.4426009e-06, 5.247141e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8205443e-07, -2.4170165e-06, 1.1173108e-07, -1.2033497e-07, -8.420792e-07, -2.7799638e-06, -1.8243566e-07, -1.6958836e-06, -1.1738588e-06, -2.54133e-06, -1.9280742e-06, -2.2047764e-06, -3.02365e-06, -7.809696e-07, -1.19987e-06, -2.4916817e-06, -1.0596045e-06, -1.0526516e-06, -5.225843e-07, -3.3182516e-08, -3.5956145e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.299426e-08, -2.1103187e-06, -5.5223586e-07, 5.100987e-08, -1.4708638e-06, -1.8580022e-06, -4.5674255e-08, -9.884112e-07, -1.2863052e-06, -1.9537651e-06, -6.9381883e-07, -1.8311334e-06, -2.1503772e-06, -2.1988544e-07, -1.227942e-06, -2.5126506e-06, -6.773749e-07, -6.563698e-07, -1.3580326e-06, -1.1012398e-06, -3.6611507e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.9492756e-07, -9.4039126e-07, -9.937417e-07, -6.009551e-07, -1.4115474e-06, -1.909773e-06, -7.676335e-08, -2.0950264e-07, -2.5559502e-06, -2.7577855e-06, -1.3026972e-06, -1.0624062e-06, -1.1030857e-06, -9.830551e-08, -1.7737949e-07, -2.7133815e-06, -1.649719e-06, -2.3604866e-06, -9.43738e-07, 3.4199616e-07, -5.690546e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1417909e-06, -9.157487e-07, 1.4802104e-06, -1.6080766e-07, -1.2727514e-06, 7.46177e-08, -6.221269e-07, -4.6220404e-08, -1.0236618e-06, -1.1216673e-06, -1.1789073e-06, -1.1682165e-06, -7.5432683e-07, -5.633762e-07, -1.1500474e-06, -1.017253e-06, -9.518807e-07, -1.7183963e-06, -1.3549499e-07, -5.59938e-07, -5.04747e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.6290956e-07, -8.4954115e-07, 1.0218218e-06, -3.5093944e-07, -1.641136e-08, 1.7932825e-06, -3.9196152e-07, -6.379265e-07, -1.7366126e-06, -1.346014e-06, -2.3185828e-07, -2.1653636e-06, -1.6907823e-06, -2.9764894e-07, -2.8527333e-07, -9.285326e-07, -1.4547459e-06, -1.4991296e-06, -1.3249097e-06, -1.3023539e-07, 3.8802554e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.7623187e-07, -7.129546e-07, 2.4999918e-06, -1.0445245e-08, 2.2308623e-07, 8.6749947e-07, 5.8321586e-07, 9.342167e-07, 8.433818e-08, -9.3565166e-07, -5.8107355e-07, -7.808119e-07, 4.2188816e-08, 1.5032351e-06, 3.3829792e-07, -1.9197476e-07, -9.777316e-07, -1.0800919e-06, -8.082437e-07, -5.870386e-07, 2.3400901e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.8841204e-07, 1.8963812e-08, 2.3180365e-07, -8.8113234e-07, -2.1457916e-07, 4.0809368e-07, 2.2825874e-07, 4.6698875e-07, -1.0216498e-06, -7.551431e-07, 1.8536653e-07, -1.1064321e-06, -1.217255e-06, -7.971976e-07, -7.1013164e-07, -1.8131911e-07, -8.198517e-07, -2.7321227e-07, -1.2167973e-06, -3.5364158e-07, 8.387076e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.8280735e-07, -1.0699746e-06, -6.30236e-07, -1.0211152e-06, -7.848057e-07, -4.67632e-07, -1.5011269e-06, -5.703471e-08, -1.2119804e-06, -5.5347306e-07, -9.581829e-07, -1.19341e-06, 3.27493e-07, -5.2997655e-07, -3.240644e-07, 6.987551e-07, -7.0995e-07, 1.9749646e-07, -4.6823698e-07, -1.2609105e-08, 3.873744e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.019918e-07, -4.8984487e-07, -6.0703064e-07, -4.527546e-07, -7.389681e-07, -6.784544e-07, 4.0890347e-07, -7.4822265e-07, 2.4411958e-07, -6.8376283e-07, 2.2658718e-08, -1.2098985e-07, -3.5657825e-07, 1.2662247e-06, 2.8182762e-07, 1.4530443e-06, -2.972086e-07, -4.6351065e-08, -1.0021655e-06, 6.6197015e-07, -6.622698e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.9347144e-07, 6.7208816e-07, -6.557341e-07, -1.1408321e-06, -1.8386359e-06, -2.0255634e-06, -5.04796e-07, -1.7543753e-06, -6.586148e-07, -1.219287e-06, -1.0127185e-06, -1.2781486e-06, -4.2375262e-07, 1.764108e-06, 4.3110282e-07, 1.0700717e-06, -8.1555385e-08, -4.4400554e-07, -9.686556e-07, 4.391498e-07, -1.0631265e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5852633e-07, -1.9471017e-07, 8.934464e-08, -8.9621653e-07, -1.2644671e-06, -1.0077554e-06, -7.511603e-07, -1.3760084e-06, 1.5076972e-07, 3.3671e-07, -1.2226412e-06, 6.9078067e-07, -1.2577075e-07, 1.7066787e-07, -8.6743245e-07, 1.2893518e-07, -7.753529e-07, -1.0102939e-08, -4.5408228e-07, -8.694806e-07, -3.1796662e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.4733243e-07, 1.4484684e-06, -1.2359448e-06, 1.2788444e-06, -9.3745217e-07, -1.5887558e-08, 2.1173435e-08, 4.501056e-08, -8.429822e-07, 6.952783e-09, 9.73504e-07, 2.679301e-07, -5.7711065e-07, -5.568828e-07, 1.1342485e-06, 7.566963e-08, 4.8162383e-07, 4.466596e-07, -2.8721007e-07, -6.51386e-08, -3.1537445e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.998449e-07, 3.8524496e-07, -4.5211186e-07, 4.758258e-07, -6.070558e-07, 6.253261e-08, -2.947539e-07, 6.5398103e-07, 8.855959e-08, 1.4777504e-06, 1.7051891e-06, 1.0072929e-06, 6.367991e-07, -4.6264796e-07, 5.938953e-07, 3.1408698e-07, 1.6213987e-07, 1.3896013e-06, 6.2596223e-07, 1.7649186e-06, 1.3905055e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.8663143e-07, 6.391641e-07, -1.1223142e-06, 1.15291e-06, 3.913524e-07, -4.0945355e-07, -1.0333997e-06, 1.4361719e-06, -8.897114e-07, -2.8241518e-08, -7.974045e-07, 3.722029e-07, 1.5166984e-07, -1.3923261e-07, -4.4608078e-07, 1.34539e-07, 3.446071e-08, 1.0594474e-06, 3.6703602e-07, 3.9679736e-07, 1.9913032e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1033339e-07, 4.3930078e-07, -1.8812227e-06, 1.939739e-06, -5.5086016e-08, -9.169189e-08, 8.128426e-07, 1.1248665e-06, -1.6356562e-06, -3.8049603e-07, -2.9726266e-07, 5.130499e-07, -5.611613e-07, -1.2063488e-06, -2.570604e-07, -3.675919e-07, 5.091709e-07, -6.823222e-08, -6.483132e-07, -2.4315554e-08, 6.9352154e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8332494e-07, 1.1162765e-06, -2.6928672e-07, 1.6119377e-06, 2.4163745e-07, 6.5303306e-07, 3.8589303e-07, 2.546187e-07, 1.8669037e-06, -3.533408e-07, -9.508367e-07, 1.443673e-06, -7.445834e-07, 2.896002e-07, 6.7841654e-07, 4.4924042e-07, -1.18273114e-07, 7.679105e-07, -5.054435e-07, -6.834761e-08, -5.7765646e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.3445516e-07, 1.5821743e-06, 1.285306e-07, -3.6607958e-08, 2.8167403e-07, 1.1858957e-06, 2.8787954e-07, -4.0896126e-07, 7.0299376e-07, 5.4449833e-07, -1.0873848e-07, 4.0515823e-07, -5.094302e-07, -4.722684e-07, -2.3282969e-07, -4.6701928e-07, 5.475939e-07, 2.7438253e-07, -1.3968946e-07, 2.7022116e-07, 1.0256779e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.800317e-07, 4.0223927e-07, 2.8858318e-07, -3.0949397e-07, 1.0988899e-10, 6.1364045e-07, -1.5620981e-07, 3.6759081e-07, 8.208102e-07, 7.0657495e-07, 9.373099e-07, 1.8780277e-06, -8.159199e-08, -6.529445e-07, -1.4647657e-07, 4.6219674e-07, -5.7505993e-08, -7.1679295e-08, -2.983758e-07, 2.0213847e-08, -4.1398486e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5492986e-06, 1.9978334e-06, -1.5429398e-08, -3.055049e-08, 1.1253703e-06, 1.5957712e-06, 5.3394047e-07, 3.0766677e-07, 6.294156e-07, 7.4785623e-07, 1.8571556e-07, 1.8948433e-07, -3.1964228e-07, 7.655103e-07, 5.601044e-07, 6.999191e-07, 8.194017e-08, 1.1686059e-06, -1.9478382e-07, 4.9089897e-07, -1.2216153e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.3272943e-06, 7.5800426e-07, 7.397797e-07, 5.1914253e-07, 5.214682e-07, 1.3755401e-06, 1.4195024e-06, 7.2710986e-07, 5.48023e-07, 7.740301e-07, -7.8572737e-07, 5.53425e-07, 7.6948237e-07, 3.715254e-07, 8.0722634e-07, 1.0864968e-06, -1.2989669e-07, 6.5516394e-07, 4.633685e-07, 6.737117e-07, -1.7586517e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5356717e-07, 2.035069e-06, -1.1390559e-06, 1.3801292e-06, 5.7852776e-07, 1.3772831e-06, 6.986653e-07, 9.836546e-07, 8.9632685e-08, -7.684753e-08, -1.0409518e-06, 2.1941298e-07, 1.1914033e-06, -1.0690021e-06, 8.85605e-07, 1.2883338e-06, 2.8650834e-07, 1.168866e-06, 7.7520025e-07, 5.7449796e-07, 6.64136e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1908562e-06, 1.2364798e-06, -7.410209e-07, 8.7200306e-07, 2.09051e-07, 6.042857e-07, 6.1576316e-07, 2.0106836e-06, 1.8406017e-07, -1.3628951e-07, 5.4280855e-07, 1.108358e-06, 1.803315e-06, -3.74408e-07, 1.8650701e-07, 8.180859e-07, 4.116988e-07, 4.8923573e-07, 1.1191341e-06, 5.416975e-07, 5.054651e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.1612403e-07, 5.649192e-07, 2.4333959e-08, 7.982445e-07, 1.041439e-06, 1.2252207e-07, 2.615634e-07, 1.6399867e-06, 2.8085088e-07, 2.123222e-06, 2.1148658e-06, 7.1452513e-07, -8.1537985e-07, 1.7579335e-07, 7.174938e-07, 3.3456323e-07, 6.175345e-07, 8.353072e-07, 1.1303987e-06, 6.4204255e-07, 9.594297e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.019138e-06, -6.666242e-08, 1.3234342e-06, -2.0568086e-06, 1.2197256e-06, 5.1784134e-08, 4.9837234e-07, 6.489406e-07, 9.623591e-07, -3.8996296e-07, 9.34421e-07, 8.2413715e-07, 5.237448e-07, 7.9217773e-07, -5.9611364e-07, 6.5130234e-07, 1.1226125e-07, -2.0070584e-07, 8.354673e-07, -1.2185454e-07, 1.3693234e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.9367927e-08, 7.732989e-07, 1.3068139e-07, 2.3563003e-07, 1.4726153e-06, 1.2569994e-06, -9.271868e-07, 6.8808953e-07, 1.1982672e-06, 3.986861e-07, 6.175809e-07, 1.1579853e-06, -3.5072804e-07, 9.111112e-07, 7.474051e-07, -3.183203e-08, 1.339971e-06, 1.1047595e-06, 1.3953163e-06, 1.0155842e-06, -1.2028613e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.1608233e-07, 1.4030174e-06, -5.297553e-07, -8.510447e-07, 6.312624e-07, 2.8289858e-06, 2.520911e-07, 8.533776e-07, 1.4601749e-06, 9.3666563e-07, 9.228303e-07, 9.2375e-09, 1.2312414e-06, 8.889326e-07, 6.697825e-07, 6.018854e-07, 2.1938524e-07, 1.4315108e-06, 1.0730853e-06, 4.125039e-07, -8.842849e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 0.0 0.415714 0.197652 21536526-ec98-464d-b310-4e7066115d53 102.753755 20.0 59631 94.404194 0.000000
3 probe00_3 [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406] 31.205412 386 [31.845443443176965, 34.64403588128828, 36.39822690404859, 32.50967245367109, 32.58100661378993, 33.91387067109397, 33.135745313146444, 31.8741495620789, 31.623421194710843, 32.512582372097306, 31.50410424956673, 31.86742835021183, 32.19008562057368, 33.27456323920063, 45.53636680234785, 33.99289327197685, 32.115757166741865, 31.224542171399694, 32.10841034299249, 33.43233885163554, 33.22638495046215, 31.564288524230655, 34.78807478545231, 32.461691726579645, 37.9043381202715, 32.088117057560424, 32.88264620601389, 34.285315378606015, 33.533231115259184, 31.623945967835795, 32.74181767861428, 33.105026534965276, 32.48147876029117, 41.03856721736854, 32.3139505994674, 32.31028747726183, 32.890130911329415, 31.20563181749691, 33.22754562513852, 32.991599396423595, 35.43774391414622, 32.11297689814651, 32.00073718742091, 31.787831585792237, 33.462364106118244, 33.01324062850996, 31.363037001843615, 34.72906147513388, 32.45351143963182, 32.2181825910639, 33.11252564581757, 32.23064543829812, 32.17500096564851, 33.93763569088603, 33.853159565371264, 32.06628237969466, 34.17885640399021, 33.602511457422324, 31.674597893029947, 33.17960811465737, 34.175530782931666, 32.157471485341205, 36.65368646127653, 31.53597547068898, 32.51951143528053, 33.95146500617896, 31.96577700762981, 32.59046281970823, 32.0496913172108, 32.12783929621876, 36.840057064186915, 31.28256561554909, 31.53151181222613, 38.8023422392969, 32.17765981614828, 32.803028862256056, 42.38295364614952, 31.75682263894197, 36.61981287054416, 33.56083623956563, 35.82342540784821, 31.804430880011388, 48.455443034081114, 31.622663875063846, 35.654176814348126, 33.18105484213518, 32.15030164390064, 31.540801325504738, 32.268194498838994, 31.320921386148726, 31.478404771980717, 37.65267750888146, 31.238038101413235, 38.11647817051788, 45.51503426033498, 32.194693334404164, 36.74888647994479, 31.43311993819786, 32.77364774106006, 31.72208265806997, ...] [7.509102166024034, 20.12491334182722, 21.00548135655488, 23.588077226102502, 35.839867180795665, 36.76981749588345, 40.2689384567401, 58.869711267463316, 59.107833107681856, 71.63607159277426, 92.78191660476223, 106.55437422013486, 113.66305310602203, 158.17082318947564, 163.17519324646594, 173.4539439730131, 210.41761195760466, 222.67928065327365, 243.14985439876455, 266.9211062974987, 298.31154994729275, 306.50031704794617, 330.71274135422476, 340.33095609240127, 341.9530392278771, 344.0027902861064, 349.3651115825683, 355.35064391058864, 402.740046711372, 405.1842618454652, 405.43792248412024, 407.4302698680627, 424.908501029102, 425.0238043191146, 441.4685140000675, 448.56222225849814, 449.9928666973723, 451.00054580645644, 475.0410385229441, 487.21653350611325, 494.45341680481505, 517.3968216649223, 547.8848732440939, 555.4660459351204, 558.1710211992347, 566.0299772366611, 576.8067741453672, 585.690147778168, 588.716904546721, 591.0626450130534, 596.7104639758065, 598.6508781662337, 600.341706475282, 607.8316158686407, 613.6012060626533, 616.7093786386963, 628.1753430363127, 633.5834722596728, 656.4026667689881, 661.5272562437948, 662.626877290513, 664.6590717442377, 667.221456874691, 681.481954048348, 688.6688137022268, 695.4539752484038, 697.5060305256073, 710.9639958590841, 718.796052417768, 729.5663502976056, 744.4797223629025, 759.1672415681239, 799.2742807595238, 809.7820925525338, 819.5069991359426, 820.2080696810358, 848.4927836511564, 859.1546018081337, 867.2207062288096, 875.8329795676647, 879.1644509502926, 906.6646329057792, 913.1143523503364, 914.5588949737904, 928.4711445931194, 948.011019733344, 948.630447480615, 965.3235264718123, 977.1538546522399, 978.5673734665122, 1016.8916090089066, 1017.0172056766035, 1020.3331464587826, 1064.8597757329105, 1065.068469693131, 1078.521229144246, 1081.3071631989544, 1087.850925383044, 1091.3300634771338, 1093.4226793079717, ...] 0.000000 0.642773 32.722337 1.199066e+04 1.054319 0.090897 0.550091 0.166667 [172.04595947265625, 218.51046752929688, 215.8609619140625, 138.28070068359375, 191.37832641601562, 139.6981658935547, 136.12826538085938, 206.71047973632812, 166.01986694335938, 180.69583129882812, 197.1375732421875, 189.10781860351562, 137.4009246826172, 214.55062866210938, 219.88558959960938, 90.49961853027344, 149.7578125, 155.94515991210938, 175.73324584960938, 191.63140869140625, 225.6627197265625, 111.6369400024414, 152.96505737304688, 197.72842407226562, 214.92691040039062, 188.4022674560547, 137.43734741210938, 155.77755737304688, 164.6488494873047, 143.0633544921875, 178.2296905517578, 188.8980712890625, 205.09454345703125, 184.40606689453125, 202.57119750976562, 172.8087158203125, 174.171630859375, 152.26870727539062, 174.23046875, 134.1015625, 165.40252685546875, 166.8836212158203, 204.617431640625, 182.17745971679688, 157.91551208496094, 232.29830932617188, 174.54067993164062, 135.4385986328125, 125.48970031738281, 197.9787139892578, 152.55715942382812, 197.9102783203125, 240.5984649658203, 117.85294342041016, 201.37811279296875, 169.47764587402344, 213.89125061035156, 172.35073852539062, 144.58238220214844, 173.98703002929688, 202.5357208251953, 123.83631134033203, 172.97900390625, 209.14645385742188, 162.12403869628906, 139.39584350585938, 104.97158813476562, 161.51211547851562, 148.47447204589844, 185.8343505859375, 180.79299926757812, 211.67996215820312, 163.81338500976562, 196.6598663330078, 206.70526123046875, 249.62921142578125, 134.17254638671875, 234.35865783691406, 144.7981414794922, 167.5099334716797, 214.2908172607422, 154.05838012695312, 162.15823364257812, 184.54934692382812, 119.63664245605469, 155.7490692138672, 171.8406524658203, 190.5989532470703, 181.25677490234375, 228.80526733398438, 195.8942413330078, 182.71795654296875, 174.2191162109375, 195.50927734375, 201.5238494873047, 196.92079162597656, 272.2344055175781, 198.31314086914062, 170.11837768554688, 212.18045043945312, ...] mua [[-1.3306313e-06, 6.409854e-07, -1.5744581e-06, 2.5367348e-07, -1.5742773e-06, -1.6646775e-06, 1.8173628e-08, -7.7355855e-07, -9.2180073e-07, -7.533119e-07, -7.3628905e-07, -3.716091e-07, -9.0909e-07, -3.186709e-07, -4.963039e-07, -9.762629e-07, -5.738452e-07, -5.0224446e-07, -1.0128788e-06, -6.593482e-07, 1.4738097e-06, 4.5214324e-07, -1.4894891e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1818818e-08, -5.274904e-07, -3.9107118e-07, -4.1891423e-07, -1.8079595e-06, -2.7731046e-06, 3.2468654e-07, -3.5770466e-07, 3.246346e-08, -7.89823e-07, -7.402281e-07, -3.2122335e-07, 9.786023e-08, -4.8935175e-07, -1.1014232e-06, 1.6465228e-07, 6.3344686e-08, -6.6603064e-08, -1.2113271e-06, -8.503546e-07, 4.1417414e-07, -4.8226633e-07, 1.1681682e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.5248428e-07, -4.819705e-07, -2.470033e-06, -1.2132436e-06, -1.5868476e-06, -2.6131588e-06, 8.447985e-08, 1.4541054e-08, -8.748555e-07, -1.3999357e-06, -1.0584392e-07, 1.7616658e-07, 5.979086e-08, -4.4308868e-07, -3.520778e-07, -3.2494816e-07, -1.333541e-06, -3.1266927e-07, -4.4621567e-07, -3.104942e-07, 2.7618944e-07, -3.7632168e-07, -3.5216402e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.2579423e-07, -1.2793835e-06, -3.8198364e-06, -2.9798198e-07, -2.0169373e-06, -1.4366321e-06, -1.8337087e-06, -2.7039277e-07, -1.5956918e-07, -1.4288576e-06, -6.503264e-07, 1.11855755e-07, 3.8940414e-07, -4.602812e-07, 2.025349e-07, -1.3292592e-06, 2.9980438e-08, 4.8760376e-07, -5.63281e-07, -4.620957e-08, 1.7365899e-07, 6.2876825e-07, -1.9167778e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1973288e-08, -9.317961e-07, -1.5416201e-06, 7.547127e-07, -1.2072815e-06, -7.570823e-07, -1.078178e-06, -1.0252335e-06, -5.3359895e-07, -4.9834875e-07, -2.6894558e-08, -1.2462773e-06, 4.295665e-07, -1.3120061e-06, -2.0240347e-07, -3.3093175e-07, -1.2474919e-06, 7.5097375e-07, -1.3725808e-06, 1.1721285e-07, 1.6412537e-07, -9.0587946e-07, 3.4739955e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.41476e-07, 4.3748614e-08, -2.9123921e-06, 5.1877315e-08, -2.0727084e-06, -7.9052427e-07, -3.575209e-07, -7.461654e-07, -8.908979e-07, -1.5379358e-06, -4.0101833e-07, -7.347593e-07, 3.4009093e-07, -4.996049e-07, 2.2317717e-07, -2.4950813e-07, -1.1129432e-06, -5.4608984e-07, -1.021309e-07, -1.3455121e-06, -1.1934358e-06, 7.881679e-07, -7.046651e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.8398955e-07, 6.9473197e-07, -2.2585496e-06, 2.9995196e-08, -2.1750543e-06, -8.606886e-07, -1.317414e-06, -1.1052323e-06, -7.079161e-07, -8.14694e-07, -9.824671e-07, 2.4926436e-07, 5.5766797e-08, -5.0611015e-07, -5.000615e-08, -5.3522876e-07, -4.5663427e-07, -4.8796796e-08, -5.9935786e-08, -1.1085999e-06, -9.803096e-07, -7.472572e-09, -4.9111e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.7099032e-07, 1.4140559e-06, -1.3968291e-06, 5.4855894e-07, -2.2773584e-06, -1.6958488e-06, -5.5046473e-07, -1.3913614e-06, -3.539767e-07, -1.4549561e-06, -9.1911284e-07, 5.212995e-07, 9.636581e-07, -8.256694e-07, 3.4894282e-07, -1.5286795e-06, 1.4143822e-07, -3.359242e-08, 2.3549542e-07, -7.9330715e-07, 6.3271216e-07, 4.906362e-07, 1.6247948e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.928666e-07, 9.891845e-07, 5.3976373e-07, 7.979578e-07, -6.166462e-08, -1.7979145e-06, 1.1296198e-08, -3.6413127e-07, 3.824374e-07, -9.763585e-07, -4.4504145e-07, -7.90598e-08, -1.7031073e-07, -8.56406e-07, 4.3345275e-07, 8.165566e-07, 1.1813131e-06, 6.0045954e-07, 9.798002e-07, -1.9856977e-08, 3.325568e-07, 9.2007315e-07, 1.8948703e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.010562e-07, -2.2966361e-07, -9.593238e-07, -3.3807233e-08, 4.0378848e-07, -6.01177e-07, -3.0602558e-07, -1.0623216e-06, -5.2828547e-08, -3.0019993e-07, -9.49413e-07, -2.1846586e-06, -1.777107e-07, -2.1210865e-06, -9.643691e-08, -1.1613888e-06, -9.115897e-09, -3.2263404e-07, -1.7452192e-07, 2.7169344e-07, 2.8671087e-07, 1.1193754e-06, 7.045741e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.1440679e-06, -5.8166503e-08, -2.482377e-06, -3.79165e-07, 8.880905e-07, -1.3960481e-06, -2.3941757e-07, -7.25983e-07, -1.2182011e-06, -1.3680265e-06, 3.5184797e-08, -2.1388132e-06, -6.6016844e-07, -1.3250302e-06, -1.2208619e-07, -9.017558e-07, -6.377516e-08, 1.2597022e-06, 1.0133649e-06, 2.0503496e-08, -3.7724573e-07, -2.761065e-07, 1.6449097e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5465374e-06, 6.708923e-08, -4.66952e-06, 8.8286424e-07, -7.1783467e-07, -6.8466557e-07, -6.016162e-07, -9.326695e-10, -5.694935e-07, -1.1014396e-06, -9.929515e-07, -1.2850894e-06, -1.2873952e-06, -1.3257393e-06, 3.1687924e-07, -2.3216279e-07, 8.2810686e-07, 2.3645617e-07, -1.0156631e-06, 5.9461104e-07, 5.7692148e-08, -1.05139684e-07, -8.213368e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.038896e-07, 9.694345e-07, -3.8241596e-06, 7.961793e-07, 2.3449351e-07, 8.393691e-08, -1.5488391e-06, 2.9327487e-07, -6.3145865e-07, -3.436482e-07, -1.7603315e-06, 3.4274314e-07, -6.58208e-07, -1.2682061e-06, 5.2879784e-07, -6.071242e-08, 8.517245e-07, 3.349279e-08, -7.127969e-07, -3.4398693e-07, -4.777592e-07, -4.7729376e-08, 1.7129241e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4865138e-06, 1.954173e-06, -2.0115554e-06, 1.315882e-06, -4.3496624e-07, 1.2451903e-06, -1.808762e-07, -1.5256564e-06, -4.1075668e-07, 4.9778134e-07, -1.9884516e-07, 3.5178328e-08, 6.888855e-07, -1.897766e-06, -4.3388565e-07, 4.821804e-07, -1.7807048e-07, 2.340129e-07, -1.3567546e-07, -2.6535673e-07, 8.6348825e-07, 1.8858123e-06, -1.6507936e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.034722e-07, 1.0778806e-06, -3.4119075e-06, 1.1808474e-06, 4.617598e-07, 2.053176e-06, 4.958871e-08, -9.548455e-07, -4.413979e-08, -4.2582457e-07, 3.7787988e-08, -1.18174e-06, -1.6970179e-07, -4.616694e-07, -4.3422148e-07, 1.18344445e-07, -1.6188958e-08, 2.7570488e-08, -6.385895e-07, -7.7987454e-07, 1.9419376e-06, 7.6223847e-07, 1.1120836e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.843841e-07, 1.5260368e-06, -1.7890193e-06, -3.8091436e-08, -6.336163e-07, 6.68563e-07, -6.063376e-07, -6.621332e-07, 5.2815508e-09, -4.2731733e-07, -8.6888247e-07, -1.0345316e-06, 2.2659423e-08, -8.6152465e-07, -1.1565028e-06, 8.284661e-07, -7.683817e-07, -8.0200897e-07, 1.0496076e-06, 1.3525982e-07, 8.560372e-07, 1.193393e-06, 1.3552582e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.1654365e-07, 6.2752235e-07, -2.0104644e-06, -1.2936123e-08, 6.587768e-07, 4.5595158e-07, -1.8704461e-06, 4.2249053e-07, -6.49331e-07, -4.445272e-07, 2.0259957e-08, -4.480495e-07, 6.22707e-07, -4.3817442e-07, -1.1136709e-07, 1.3460526e-06, 3.7215483e-07, -1.0367216e-06, 4.7903984e-07, -1.636075e-06, 1.1026416e-06, -7.341244e-08, 1.3883584e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.3416782e-08, 6.989239e-07, -2.1318524e-06, 5.0779434e-08, -1.3307929e-06, 7.355378e-08, 3.540941e-07, 6.511033e-07, 5.9187056e-07, 2.1708626e-09, 5.9625586e-07, 3.8429124e-07, -4.7412652e-07, 6.519158e-07, -5.547521e-08, 9.552741e-07, -1.9961857e-07, 4.0674854e-07, 6.859258e-07, 7.106382e-07, 7.989862e-07, 1.3313527e-06, 8.20423e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.7517757e-07, -5.9016138e-08, -2.1945689e-06, -3.316496e-07, -1.1124534e-06, 1.0675124e-06, 3.887937e-07, 2.7849285e-07, 4.7623405e-07, -9.475224e-07, -1.833713e-07, 2.2311104e-07, 5.395905e-07, -3.022145e-07, -3.1599404e-07, -8.526665e-08, 4.6642202e-07, 1.7567823e-09, 5.1784053e-07, -3.132856e-08, -2.5086032e-07, 3.1888442e-07, 4.757071e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.169781e-06, 6.1970184e-07, -2.6242724e-06, 4.2268405e-07, 9.859821e-07, 4.8824825e-07, -6.409405e-07, 3.002803e-07, -6.5087386e-07, -9.396587e-07, 5.2343887e-07, 2.3781732e-08, -4.7249887e-07, 1.2297273e-06, -8.860251e-07, 2.764583e-07, 6.300511e-07, 3.7583402e-07, 1.4572167e-06, -3.5034475e-07, 3.6669894e-07, 8.2138394e-07, 3.8320775e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.5909345e-08, 4.2517968e-07, -2.7057554e-06, 6.0497337e-07, 6.1388687e-07, 1.4177417e-06, -1.3210937e-06, 5.356002e-07, -3.360047e-07, -8.788336e-07, -6.5281e-08, -1.3775978e-06, -1.0001623e-07, 4.718482e-07, -1.5521762e-06, -8.121866e-07, 2.261493e-07, 6.782328e-07, 9.2450205e-07, 1.2753742e-07, 1.0357746e-06, -1.2674968e-06, -1.3702622e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0581381e-06, 3.212552e-07, -3.8821313e-06, -1.240204e-07, 2.264139e-07, 2.9942038e-07, -5.6828895e-07, -1.031653e-06, 5.508493e-07, -1.4806503e-06, 1.5281291e-06, 5.1383944e-07, 6.348219e-08, -5.219966e-07, -1.1508118e-06, -1.017868e-06, -1.3323953e-06, 1.8348508e-06, 9.610769e-07, 9.317914e-07, 4.0858419e-07, 6.471328e-07, -2.863281e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3233048e-07, 2.866538e-07, -2.253487e-06, -4.326439e-07, -9.4035386e-07, -5.3047336e-07, -1.4758191e-06, -5.2844956e-07, -1.2304624e-06, -3.6306362e-09, 5.679278e-07, 5.023206e-08, -8.3636394e-07, -1.2189373e-06, -1.8572982e-06, -5.197095e-07, -1.3764106e-06, -1.0662506e-07, 3.972729e-07, 9.707642e-07, 3.2467142e-07, 1.1624007e-07, 3.8876954e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.051924e-07, -4.905422e-07, -5.2741216e-06, 3.8073438e-07, -1.4015197e-06, -1.0050517e-06, -1.2335623e-06, 1.0728315e-06, -1.1525765e-06, -1.2826201e-06, -1.6449724e-06, -1.5239659e-06, -1.1698166e-06, 2.6819555e-09, -2.984369e-06, -1.0590772e-06, -1.400336e-06, 2.1111734e-07, -1.2514387e-06, 1.4968991e-06, -1.2360863e-07, 1.7331945e-06, 8.614617e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.0043385e-08, -8.449309e-09, -4.229287e-06, 1.005494e-06, -8.777528e-07, -1.0432309e-06, -7.209103e-07, 1.6587525e-06, -3.8509967e-07, -1.8069479e-06, -1.9839804e-06, -1.2894538e-06, 1.0394417e-06, -7.895882e-07, -1.6239073e-06, -1.032437e-06, -1.4274999e-06, 1.3608606e-06, 7.73275e-07, 1.2859789e-06, -1.9266247e-07, 1.7014552e-06, 7.2941054e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [8.070134e-08, 1.7239998e-07, -4.438799e-06, 9.701861e-07, -1.1662403e-06, -8.750601e-07, -1.0218848e-06, 9.360406e-08, -2.3558225e-06, -1.0649272e-06, -1.5855136e-07, -3.250392e-07, -1.8069602e-07, -7.59097e-07, -7.8467264e-07, -3.9019844e-07, -7.1997033e-07, 8.4974374e-07, -1.7928869e-06, 1.9806596e-07, 2.6484418e-07, 1.4266573e-06, 7.992136e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.1735698e-07, 1.2550065e-06, -5.598496e-06, 5.870976e-07, -9.3785627e-07, -3.411797e-07, -1.210895e-06, 1.0100924e-06, -8.6559646e-07, -1.8063824e-06, -9.1636986e-07, -7.6908077e-07, 6.858534e-07, -5.349735e-07, -8.2568874e-07, -8.8632e-07, 7.3268586e-07, 1.5278778e-06, 6.859217e-07, 1.2827065e-06, 1.0255542e-06, 2.853263e-06, 1.2219425e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.205483e-07, 1.1974896e-08, -4.6751948e-06, 7.197131e-07, -1.663364e-06, -7.867876e-07, -3.246372e-08, 3.7539337e-07, 4.7433097e-08, -9.1392224e-07, -1.0414108e-06, -1.2076832e-06, 3.204225e-08, 2.7396075e-07, -8.721526e-07, 9.128047e-07, -9.95481e-07, 2.154543e-07, 6.5447887e-07, 1.4276525e-06, 1.235644e-06, 2.217326e-06, 1.9408444e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.250633e-08, -2.7802713e-07, -3.6666163e-06, 4.102032e-07, -2.0215996e-06, -1.2281727e-06, -2.409146e-07, -5.381931e-07, -1.5112423e-06, -4.509782e-07, -6.7405756e-07, -6.7777785e-07, -1.5364645e-08, 1.6649349e-06, 3.7732264e-07, 2.5525335e-07, -1.8766963e-07, 1.4503973e-06, 1.0009211e-06, 2.8820714e-06, 1.3525776e-06, 5.540335e-07, 2.171561e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.230093e-06, 5.634188e-07, -2.1849032e-06, 1.009966e-06, -9.3272774e-07, 4.2016137e-07, -8.847705e-07, -1.8659618e-06, -1.3594769e-06, 1.2968323e-07, -3.5355708e-07, 1.10576416e-07, -5.872812e-07, 1.1265925e-06, -5.734572e-07, 2.513251e-07, 1.1105269e-06, 1.2435104e-06, 1.2221274e-06, 9.3676215e-07, -1.8113886e-07, 1.401733e-06, 7.9887053e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8132251e-06, 9.861723e-07, -3.404945e-06, 1.3661966e-07, -1.9342638e-06, -4.1133103e-07, -1.3113531e-06, -1.7818215e-06, -3.1228587e-06, 3.6227846e-07, -1.752146e-06, 2.2731692e-07, -9.195534e-07, 2.3379278e-06, -1.6981602e-07, 2.6038805e-07, 7.65645e-08, 5.5629107e-07, 1.3537326e-06, 2.4444635e-06, 3.082465e-07, 1.7494581e-06, 2.3484258e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7816037e-06, 2.0480206e-08, -4.6070595e-06, -5.0578024e-07, -1.2260069e-06, 8.1731464e-08, -1.8375194e-06, -2.3094638e-06, -2.6195485e-06, -5.9644464e-07, -8.1946837e-07, -8.5534623e-07, -8.147582e-07, 1.7117904e-06, 8.141202e-07, -9.219366e-07, 1.8341123e-07, -3.3798804e-07, 1.3863092e-06, 9.797409e-07, 1.715513e-06, 1.7923261e-07, 1.650898e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7020428e-06, -2.4507863e-06, -5.9985523e-06, -5.645512e-07, -2.232733e-06, -4.8477966e-07, -1.0559239e-06, -9.826267e-07, -2.9239054e-06, 4.9869226e-07, -8.1628514e-07, 3.06777e-07, -1.8898102e-06, 9.352792e-07, -9.97494e-07, -1.1899403e-06, -3.1131574e-07, 2.605958e-07, -4.3834092e-07, 1.6284791e-06, 1.058145e-06, -3.5572242e-07, 1.9511508e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.9477577e-06, -1.0382957e-06, -5.8754576e-06, -2.5427301e-08, -5.684526e-07, -1.304456e-06, -1.0676918e-06, -2.100478e-06, -3.2106705e-06, 8.6492395e-07, -1.9214376e-06, 3.98722e-07, -1.4735529e-06, 4.522967e-07, -9.381897e-07, -4.3285898e-08, -3.7866977e-07, -3.0022562e-08, 1.3897292e-07, 1.6083739e-06, 2.6154797e-07, -1.2046748e-06, 1.566809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6148036e-06, -5.870239e-07, -5.4573707e-06, -2.35246e-06, -5.750956e-07, -1.7225696e-06, -1.0530955e-06, -2.9780592e-06, -3.7021437e-06, -3.799962e-07, -1.1751911e-06, -1.5849694e-06, -8.752031e-07, 1.6849797e-06, -6.3561424e-07, 5.2931546e-07, -7.5319304e-07, 4.691661e-07, 3.4210473e-07, 1.4257425e-06, 4.3694743e-07, -1.7391321e-06, 1.6828267e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.2184641e-06, -1.4599138e-06, -4.687946e-06, -2.218609e-06, -1.0689209e-06, -9.542513e-07, -5.791678e-07, -2.1139367e-06, -4.1306503e-06, -1.9778934e-08, -1.4758523e-06, -1.1607935e-06, -3.2564546e-07, 1.0115373e-06, -8.544144e-07, 2.5188056e-09, -1.5854833e-07, -1.4307533e-06, 5.538586e-07, 1.340688e-06, -1.2873247e-06, -2.2837721e-06, 6.0626064e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1002397e-06, -1.5097223e-06, -5.5232363e-06, -1.14271316e-07, -1.7813963e-06, 3.6987626e-07, -3.978551e-07, -2.5934e-06, -3.6853326e-06, 4.5296417e-07, -2.2235104e-06, -5.7173384e-07, -1.5435826e-06, 1.0696986e-06, -4.4401278e-07, 1.2107563e-07, -3.5266345e-07, -1.7499916e-06, -9.155962e-08, 1.4305666e-06, 2.6814524e-07, -2.7822762e-06, -7.20635e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6101334e-06, -2.4037076e-06, -2.0448892e-06, -3.7530654e-07, -1.1581589e-06, -3.762908e-07, -6.288673e-07, -2.6230864e-06, -4.7068615e-06, 1.0427734e-06, -9.1457093e-07, -1.2589308e-06, -1.6277206e-06, 1.6003719e-06, 1.2939896e-06, -1.0271084e-06, 1.0231508e-06, -1.3482488e-06, -2.0156611e-07, 1.3856627e-06, 5.5790827e-07, -4.267478e-06, 1.0022014e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.85858e-07, -2.7631777e-06, -1.666066e-06, -6.3390524e-07, 1.3447697e-06, 9.785803e-07, -4.6290552e-07, -3.2772214e-06, -3.3295812e-06, 1.9279846e-06, 3.49262e-07, -1.06916104e-07, -2.6020707e-06, 1.5099968e-06, 4.6600383e-07, -1.4394175e-06, 1.5200235e-06, -2.6165021e-06, 4.5520062e-07, 1.1329182e-06, -1.9861272e-06, -6.5271524e-06, -1.1900256e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.7318545e-08, -3.7186278e-06, 4.359772e-06, -1.5210849e-06, 2.494091e-06, -5.5930272e-08, 1.9859135e-06, -3.1635072e-06, -1.652056e-06, 1.3868575e-06, 7.097691e-07, -9.5449046e-08, -3.1019827e-06, 3.125107e-07, 1.6589893e-06, -1.653093e-06, 1.1651989e-06, -2.9370492e-06, -5.1696907e-07, 7.44e-07, -2.4543947e-06, -8.708467e-06, -2.8276336e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.7452146e-07, -3.0145732e-06, 1.4134053e-05, -1.1765126e-06, 4.1117064e-06, -1.9075005e-06, 4.503513e-06, -1.5908404e-06, -1.5424368e-07, 1.3390766e-06, 2.6752286e-06, -8.608963e-07, -1.2732274e-06, -2.9112363e-07, 4.8659507e-07, -1.5142937e-06, 7.973025e-07, -2.2361899e-06, -2.2390886e-06, -5.581679e-09, -3.1925488e-06, -8.515906e-06, -6.6316434e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.5566677e-06, -3.6843417e-06, 2.4414636e-05, -7.043611e-07, 4.8420743e-06, -7.0639453e-06, 6.9700745e-06, -1.0903174e-06, 2.8248492e-06, 1.8943133e-06, 2.5090187e-06, 5.558429e-10, 1.6300246e-06, 1.5901983e-07, 1.8361686e-07, -9.0234244e-07, 6.486144e-08, -1.5141666e-06, -3.4394184e-06, -1.5887863e-06, -5.389633e-06, -1.0166226e-05, -9.802766e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.284663e-06, -3.489045e-06, 2.572718e-05, 1.1727112e-06, 6.5014247e-06, -6.346403e-06, 8.526538e-06, 5.2296034e-08, 4.925845e-06, 9.256137e-07, 4.4178064e-06, -8.141754e-07, 1.7430348e-06, -1.2755052e-06, -1.5189404e-06, -9.443137e-08, -1.3566337e-06, 6.059999e-08, -3.1445843e-06, -2.5231666e-06, -6.2591657e-06, -7.700783e-06, -1.168185e-05, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.196003e-06, -3.0120505e-06, 2.48044e-05, 4.9491086e-07, 7.772839e-06, -1.3639149e-06, 6.8490017e-06, 1.9617152e-08, 4.729759e-06, 3.0088978e-07, 2.6417124e-06, 2.7031638e-07, 1.4700142e-06, -1.355624e-06, 9.0927034e-07, -9.2481935e-07, -7.538357e-07, -1.8280925e-06, -1.827498e-06, -5.124707e-06, -5.8729593e-06, -1.1118935e-05, -8.7500375e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.925395e-06, -3.4211864e-06, 2.0604693e-05, 4.0689702e-07, 7.2846324e-06, 9.1866553e-07, 4.2955803e-06, 1.5454094e-06, 5.4280417e-06, 3.2341966e-06, 3.0074614e-06, 1.0705204e-06, 1.5046714e-06, -1.3823419e-06, 2.0164453e-06, -3.6420943e-06, 4.3033634e-07, -4.4475164e-06, -1.0160477e-06, -4.549667e-06, -4.7110393e-06, -1.21053345e-05, -8.094454e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.3767395e-06, -1.2506235e-06, 1.545886e-05, 9.124309e-07, 7.642509e-06, 2.1856017e-06, 3.9227184e-06, 1.6607349e-06, 5.7716807e-06, 2.8515756e-06, 3.0891224e-06, 1.1280736e-06, 9.667261e-07, -1.7792785e-06, 3.7524096e-06, -2.6398814e-06, 1.1128836e-06, -4.000624e-06, -1.1078694e-06, -6.74462e-06, -3.2694766e-06, -9.350448e-06, -6.752136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5022107e-06, -2.5764346e-06, 1.2845395e-05, 1.2701406e-07, 5.800104e-06, 4.1450585e-06, 4.3799746e-06, 2.868484e-06, 8.106244e-06, 1.099078e-06, 2.7806507e-06, 9.56328e-07, 1.6215774e-06, -3.297137e-06, 2.8254906e-06, -2.246563e-06, 1.5225507e-06, -4.5180514e-06, -1.0366649e-06, -6.790542e-06, -2.5791765e-06, -7.3717874e-06, -4.837936e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [5.132465e-06, -1.727498e-06, 1.254932e-05, 7.581837e-08, 5.5854966e-06, 4.578803e-06, 2.7990436e-06, 4.5972447e-06, 6.705267e-06, 1.2110322e-06, 2.887985e-06, 8.163344e-08, 3.036771e-06, -2.3784619e-06, 1.3691589e-06, -1.7094204e-06, 2.2140118e-07, -3.8557855e-06, -2.148983e-06, -7.430119e-06, -2.277808e-06, -4.3322907e-06, -4.1687827e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.2776443e-06, 2.5231037e-07, 9.47737e-06, 6.035332e-07, 3.3180793e-06, 5.44535e-06, 2.546069e-06, 5.3996155e-06, 7.726034e-06, 1.1770858e-06, 3.0723836e-06, 1.3322413e-06, 1.5647865e-06, -2.5527966e-06, 1.0179349e-06, -3.1549807e-06, -7.9179097e-07, -4.0338587e-06, -2.111014e-06, -7.1851546e-06, -1.0172441e-06, -7.5824653e-07, -1.6102495e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [2.9755624e-06, 2.2965094e-07, 7.5012467e-06, -4.69695e-07, 2.448723e-06, 5.5119253e-06, 2.375104e-06, 5.780097e-06, 6.9276116e-06, 8.9868377e-07, 3.7723905e-06, 3.259695e-06, 2.437762e-06, -2.2128781e-06, 1.070425e-06, -8.5293857e-07, -8.6207956e-07, -2.17056e-06, -3.2639713e-07, -7.297018e-06, -1.2811145e-06, 1.7484496e-07, -1.8404056e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.956706e-06, 5.7924376e-07, 5.1372444e-06, -1.3539528e-07, 2.1968135e-06, 4.4465637e-06, 1.6387568e-06, 4.767644e-06, 7.1624127e-06, 3.1262406e-08, 1.7579421e-06, 3.5632122e-06, 2.488694e-06, -2.2647412e-06, -8.842856e-08, 3.2251302e-07, -1.614884e-06, -8.880297e-07, 8.3578215e-08, -5.2258265e-06, -5.827661e-07, 9.881293e-07, -1.7604428e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4332808e-06, 1.1757132e-06, 3.7770478e-06, 1.2934669e-06, 1.5542571e-06, 3.5618712e-06, -5.1527444e-08, 4.4612434e-06, 4.96573e-06, -9.478836e-07, 1.8591946e-06, 2.8461075e-06, 2.453024e-06, -1.432767e-06, 4.2984672e-07, 1.866932e-06, -9.779613e-07, 7.1162583e-07, -6.7811766e-07, -5.0505796e-06, -9.315165e-07, 1.5804128e-06, -9.294397e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.2678115e-06, 5.8427156e-07, 2.1059195e-06, 2.1549163e-06, -2.7630068e-07, 2.6294442e-06, 1.0789697e-06, 3.490398e-06, 3.7863438e-06, 5.2859957e-07, 3.3017534e-07, 2.8081924e-06, 8.9419643e-07, -1.2707504e-06, 1.0567448e-06, 1.4583438e-06, -1.5138232e-06, 9.4483724e-08, -1.5706561e-07, -3.046328e-06, -3.472488e-07, 3.8348403e-06, -5.6848705e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3652027e-07, 2.2778618e-06, -5.9183475e-07, 4.550293e-07, -3.8733157e-07, 2.9373207e-06, 1.4286233e-07, 3.101746e-06, 3.8015787e-06, -3.330889e-07, 7.1084014e-07, 1.586802e-06, 6.003264e-08, -6.230514e-07, -3.1516043e-07, 1.1583786e-06, -9.990907e-07, 9.1087634e-07, 6.6870246e-07, -4.9940445e-07, 7.851965e-07, 3.9004026e-06, 1.9420136e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.182927e-07, 2.0108682e-06, -2.3047348e-06, 1.7850567e-07, -1.4779342e-06, 1.5075702e-07, -1.4486562e-06, 9.198062e-07, 2.6197008e-06, -7.49921e-07, 6.2204026e-07, 9.668033e-07, 1.4652416e-06, -5.963859e-08, -1.9695412e-07, 7.1182353e-07, -1.3140439e-06, 2.8904577e-07, 5.461834e-08, -2.0632305e-07, 1.2379685e-06, 5.7378547e-06, 3.1485797e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [4.5008866e-07, 2.1420205e-06, -2.8722052e-06, -2.4565907e-07, -2.839091e-06, 4.7913807e-07, -1.8773383e-06, 2.0279867e-07, 1.5489995e-06, -3.1767743e-07, -6.2430934e-07, 1.4920672e-06, 9.349602e-07, 2.0466129e-07, -1.2185346e-06, 8.463596e-07, -1.1453756e-06, 1.6699927e-06, 5.5134853e-07, -3.231486e-08, 4.4612932e-07, 5.1651077e-06, 3.4555678e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.873268e-07, 9.932887e-07, -4.5361685e-06, 2.5327353e-07, -4.6472105e-06, -6.210946e-07, -1.6375022e-06, 1.4831554e-07, 8.618295e-08, -1.001959e-06, -2.3751238e-07, 8.8818496e-07, 2.2161158e-08, 1.2103937e-06, 5.153309e-10, 1.2573167e-06, -1.9348545e-06, 3.0473238e-06, 3.4066076e-08, 3.922969e-07, 9.514239e-07, 6.314875e-06, 4.058767e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1195738e-06, 6.8200313e-07, -4.980242e-06, 1.9445888e-07, -4.5745073e-06, -1.301816e-06, -5.4760153e-07, -2.1160015e-07, 2.317278e-07, -1.3153674e-06, -6.7444444e-07, -1.8814794e-07, 8.1512286e-07, -1.091499e-06, -3.1825124e-07, 2.5618913e-06, -1.7967207e-06, 1.7635537e-06, 1.165965e-06, 1.50814e-06, 2.1364935e-06, 5.0707704e-06, 2.2269287e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.5865171e-06, 9.372368e-07, -4.9580494e-06, -3.3126258e-07, -5.285562e-06, -7.677339e-07, -2.2063673e-06, -1.3869216e-06, -1.1942698e-06, -1.4784047e-06, -4.4827004e-07, -1.3367203e-06, -1.3854333e-08, 2.1999544e-08, -1.535776e-07, 2.4416854e-06, -6.12931e-07, 1.7884599e-06, 5.951999e-07, 1.9667623e-06, 2.7559884e-06, 5.3802896e-06, 6.302456e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6973119e-06, 1.5650542e-06, -6.598778e-06, 1.2825271e-07, -4.7470503e-06, -2.6449625e-06, -2.3538805e-06, -9.2320613e-07, -2.3347136e-06, -6.9889455e-07, -1.8320022e-06, -1.3895531e-06, -4.725667e-08, -1.3690058e-07, -4.883278e-07, 3.0510541e-06, -5.557012e-07, 1.7924887e-06, -3.9323275e-08, 3.1013217e-06, 2.049952e-06, 5.343379e-06, 2.2900012e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.3153926e-07, 1.6775432e-06, -6.9231774e-06, 7.2461546e-07, -3.4292266e-06, -2.6838347e-06, -1.772349e-06, -3.3870873e-07, -2.8211193e-06, -1.223347e-06, -1.4434204e-06, -1.0694685e-06, -7.352703e-07, -1.6828615e-07, -1.7841301e-06, 1.6717327e-06, -8.793588e-07, 2.774309e-06, 7.043982e-07, 4.159662e-06, 3.2642383e-06, 6.459094e-06, 3.59825e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2023905e-06, 2.1987275e-06, -7.1272534e-06, 7.9553666e-07, -3.7134564e-06, -2.1208316e-06, -2.1402097e-06, -1.6195486e-06, -3.2689552e-06, -1.7220611e-06, -2.4663627e-06, -1.04050685e-07, -9.1342383e-07, 6.118978e-07, -5.556026e-07, 9.948806e-07, -5.694556e-07, 2.4216752e-06, -4.809303e-08, 3.6635793e-06, 2.7537262e-06, 6.3596335e-06, 2.1122412e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.6709736e-07, 3.2701837e-06, -8.4201065e-06, 1.1178527e-06, -3.8985304e-06, -1.6135007e-06, -1.5983451e-06, -2.7720606e-07, -3.6614792e-06, -9.774496e-07, -5.975297e-07, -7.2919096e-07, -8.3766474e-07, 9.657623e-07, -1.5188429e-06, 1.7059159e-06, -6.732718e-07, 1.6140356e-06, 6.1507865e-07, 4.4826706e-06, 2.1953138e-06, 4.5284905e-06, 2.0032976e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.925237e-07, 2.849973e-06, -7.352577e-06, -2.910645e-07, -4.3018413e-06, -1.8609294e-06, -2.914165e-06, -5.346457e-07, -3.704119e-06, -1.4465126e-06, -1.5237581e-06, -1.3957456e-06, -1.1684251e-06, 2.171264e-06, -5.0715437e-07, 1.8506087e-07, -9.4654945e-07, 2.075062e-06, 4.896108e-07, 3.820169e-06, 2.4266844e-06, 3.6940419e-06, 1.7180862e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.055104e-07, 2.0772222e-06, -8.200044e-06, -9.25357e-08, -3.6701058e-06, -2.009801e-06, -1.8215694e-06, -7.02463e-07, -2.8470768e-06, -3.19157e-07, -1.3719222e-06, -9.809817e-07, -1.9156246e-06, 1.8680616e-06, -5.7493867e-08, 7.02017e-07, 8.390256e-07, 2.2441254e-06, 6.1477056e-07, 2.2713264e-06, 2.774335e-06, 3.3476465e-06, 4.1546127e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.1879887e-07, 1.8685366e-06, -8.503512e-06, -3.2600002e-07, -3.268661e-06, -2.183065e-07, -2.2846916e-06, -1.1228359e-06, -3.6969107e-06, -7.841055e-07, -2.5692152e-06, -1.2459307e-06, -1.9244628e-06, 1.0804606e-06, -9.4228176e-07, 4.4297326e-07, -9.882474e-07, 3.0203495e-07, -2.0502856e-07, 2.7695457e-06, 3.2714743e-06, 2.928075e-06, 4.4363233e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.2633399e-06, 4.851567e-07, -7.829657e-06, 2.3253276e-07, -3.941949e-06, -6.285724e-08, -2.083863e-06, -1.5835603e-06, -3.6276206e-06, -1.0850049e-06, -1.6761599e-06, -6.715695e-07, 3.4155525e-07, 1.4654164e-06, -9.255788e-08, 2.5826512e-07, 1.1332204e-06, -1.821591e-08, 7.987241e-07, 2.0931247e-06, 3.110832e-06, 2.7280178e-06, 2.3698717e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.3247594e-06, 9.245116e-07, -7.3683195e-06, 1.4333811e-07, -3.0017525e-06, -1.2917419e-06, -1.9371423e-06, -2.4437602e-06, -2.597958e-06, -7.178024e-07, -1.9419397e-06, -1.0804187e-06, -1.2278406e-06, 4.5996876e-07, -9.401214e-07, 6.569153e-07, 4.178459e-07, -3.5989478e-07, 1.4927389e-06, 2.3258021e-06, 2.4059095e-06, 2.9699959e-06, 1.6983606e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3173916e-06, 8.7514275e-07, -6.538253e-06, -3.467834e-07, -2.9944617e-06, -2.2268114e-06, -1.5625023e-06, -1.9173372e-06, -2.8958057e-06, -2.1774308e-06, -1.6427065e-06, -2.2901568e-06, -5.591777e-07, 5.2164154e-07, 3.423736e-07, -8.778257e-08, -2.1630323e-07, 7.0153635e-07, -8.6281847e-07, 2.0213272e-06, 2.462999e-06, 2.611452e-06, 2.4506496e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2925345e-06, -6.1829326e-08, -7.1895247e-06, 1.7859668e-06, -2.847125e-06, -1.2649084e-06, -7.2994476e-07, -2.6353987e-06, -3.25387e-06, -1.3892738e-06, -1.5056793e-07, -9.062825e-07, -1.6528537e-07, 9.2624975e-07, -8.3187665e-08, -7.8433567e-07, 2.1941287e-07, 1.8657947e-06, -4.6407663e-07, 1.3771203e-06, 1.2844414e-06, 2.3382977e-06, 1.5468195e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.7293445e-06, 8.935008e-07, -6.946645e-06, 1.4446614e-06, -1.0244632e-06, -6.177263e-07, -2.0323978e-06, -2.3325574e-06, -3.5409373e-06, -1.393084e-06, -1.2732587e-06, -1.9248466e-06, -9.841226e-07, 6.6053315e-07, -4.1083762e-08, -1.1314434e-06, -9.785427e-08, 6.752039e-07, -1.1774098e-07, 1.024805e-06, 7.299049e-07, 2.2763536e-06, 2.4211809e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.8861205e-06, 8.799125e-07, -4.6949935e-06, -2.6755703e-07, -1.7659966e-06, -7.481269e-07, -1.5743537e-06, -1.5703251e-06, -3.3789274e-06, -7.1887985e-07, -5.6645615e-07, -8.9232424e-07, -1.1271062e-06, -4.9863853e-08, 2.9835735e-07, -4.832091e-07, -8.206575e-07, 6.612877e-07, -8.54021e-07, 2.4579451e-06, 5.193325e-07, 2.6246769e-06, 9.266357e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.1627643e-06, -3.0234395e-07, -3.5838132e-06, -6.872169e-07, -2.8227464e-06, -1.1598893e-06, -1.4807018e-06, -1.516744e-06, -2.8000595e-06, 2.457989e-07, -1.1257778e-06, -5.39183e-07, -1.0379865e-06, 6.372867e-07, -1.7675197e-06, -1.3505447e-06, -1.1280887e-06, 1.2810781e-06, -3.9713598e-08, 2.2607278e-06, 6.0786033e-07, 7.5265893e-07, 1.1312897e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.8317212e-06, -1.0357364e-06, -5.5056316e-06, 3.2252217e-07, -8.880352e-07, -1.510349e-06, -3.1875118e-06, -6.8914414e-07, -3.5889666e-06, 6.5883125e-07, -1.8759448e-07, -9.056489e-07, -2.4993344e-06, 1.4836326e-06, -1.4563142e-07, -9.159735e-07, 2.5500748e-07, 9.74266e-07, 6.087043e-07, 1.6368804e-06, 2.5556915e-07, 1.0567979e-06, 1.5431322e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.6910144e-06, -1.1254517e-06, -4.2340257e-06, -6.2965853e-07, -1.1229045e-06, -1.6287627e-06, -2.4787876e-06, -1.043514e-06, -2.9753173e-06, 8.1833514e-07, -7.873028e-08, -1.5752503e-06, -1.2158414e-06, 2.2937613e-07, -1.0644387e-06, -1.4304555e-06, 1.4259871e-06, 1.244024e-06, 5.439043e-07, -3.1230462e-07, 9.407903e-07, 6.550285e-07, 6.3485584e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.079038e-06, -2.6364658e-06, -5.0084486e-06, -7.0421675e-07, -7.685504e-07, -9.4741216e-07, -4.5892793e-07, -3.8009003e-07, -2.6293594e-06, -4.264942e-07, 5.065084e-07, -1.4496477e-06, -1.2388807e-06, 8.9039486e-07, -8.1249266e-07, 7.3478645e-07, -2.5646509e-07, 7.6242395e-07, -4.737773e-07, 4.4220388e-07, 1.1349795e-06, 2.3285173e-08, -9.5209415e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-7.594293e-07, -6.1472326e-07, -3.922571e-06, -7.8666926e-07, -3.7968954e-07, 1.1628572e-06, -3.8389385e-07, -1.9188313e-07, -1.846015e-06, -1.1938648e-06, -6.380538e-07, -3.0118198e-07, -4.3146161e-07, 3.271726e-07, 2.703611e-07, 1.048289e-06, 8.823662e-08, -3.9579663e-07, 5.916346e-07, 1.4657213e-06, 7.790735e-07, -1.5853861e-06, 1.255328e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.3382705e-08, -7.2620503e-07, -3.8378203e-06, 3.4895015e-07, 2.081155e-07, 8.608516e-08, 6.350305e-07, -6.372635e-07, -1.2935993e-06, 1.8174866e-07, -3.4220943e-07, -1.5789317e-06, 5.453962e-07, 1.1928853e-06, 7.429217e-07, 1.1505251e-06, 1.1989038e-06, -1.8154722e-07, 1.1975146e-06, 8.0369887e-07, 4.8147683e-07, -5.328085e-07, 1.978772e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-3.4308783e-07, 1.525693e-07, -4.3861464e-06, -4.6826557e-07, 1.039627e-06, -1.2296626e-06, -1.0225679e-06, -9.170342e-07, -1.0898455e-06, 2.4825175e-07, 1.0784356e-07, 2.5340317e-08, -1.2762969e-07, 1.5845453e-06, 9.2669126e-07, 6.058981e-07, 2.5631684e-06, 4.7287185e-07, 1.009297e-06, 2.0598734e-06, 6.315678e-07, -9.397051e-07, 1.7322159e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.9810667e-07, -6.2081585e-07, -4.4636026e-06, 2.1453363e-07, -6.563899e-07, -5.220927e-07, -8.424986e-07, -5.840497e-08, -7.569552e-07, -5.0743034e-07, -3.0880886e-07, -8.828816e-07, -6.3657995e-07, 1.1365255e-06, -6.808489e-08, -3.6645457e-07, 2.6771124e-06, 5.512986e-07, 1.9097133e-06, 1.7269251e-06, 1.262359e-06, 1.9987019e-07, 3.2529283e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.035496e-07, -1.9964937e-06, -1.4662226e-06, -9.7067996e-08, 4.209733e-07, 2.2628555e-07, 2.5137285e-07, 1.182008e-06, -2.941622e-07, -1.3519909e-06, -3.1553907e-07, -6.537532e-07, -1.3007915e-06, 5.873422e-07, -4.2731364e-07, 9.90471e-07, 5.277915e-07, 9.4328266e-07, 1.918844e-06, 5.291306e-07, 2.0173009e-06, -9.732254e-07, 3.0568344e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-5.4896105e-07, -1.735724e-06, -1.1110187e-06, -3.0536137e-07, 7.704566e-07, 1.0803911e-06, 8.3676514e-07, -1.0113358e-06, 5.676926e-07, -1.0903502e-06, 4.7059068e-09, 1.4867143e-06, 1.003511e-06, 1.5279853e-07, 1.1146549e-06, -3.4778265e-07, 1.2876767e-06, 2.024781e-07, 1.4541731e-06, 9.783479e-07, 3.0840982e-07, 1.5228854e-06, 1.4088171e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.037544e-07, -1.1201355e-06, -5.3624774e-07, -1.3475673e-07, -5.3674137e-07, -5.0316794e-07, -5.350639e-07, -4.627349e-07, 1.5169736e-07, 3.0804995e-07, -4.4529873e-09, 1.1638425e-06, 2.7829154e-07, 1.733431e-07, 9.201218e-07, 8.5685423e-07, 1.9017434e-06, 2.125277e-06, 1.7350187e-06, -4.839675e-07, -3.0827655e-07, -6.492063e-07, -6.725964e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.2052487e-07, -6.460351e-07, -1.4746377e-06, -4.0016175e-07, 2.777192e-07, 1.012773e-06, -2.6272176e-07, -6.657482e-07, 1.320627e-06, 1.7087327e-06, 1.0699766e-06, -4.925666e-07, 7.290654e-07, -2.4838192e-07, 9.4187635e-07, 1.2808121e-06, 1.149572e-06, 8.37823e-07, 1.2528275e-06, 5.241398e-08, -7.1614636e-07, -1.0307967e-06, -6.635237e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.5494424e-07, 4.654326e-07, -4.4558487e-07, -5.2455226e-07, 4.5171694e-07, -1.7903587e-07, -4.9962586e-07, -8.957062e-08, -1.1845025e-06, 5.253381e-07, 1.3990295e-06, -9.778134e-11, -2.3045347e-08, 1.0990423e-07, 1.2709934e-06, 2.7514412e-07, 7.354133e-07, -3.1043714e-07, 7.8915684e-07, 1.0147251e-06, -5.046648e-07, -3.8973738e-07, 2.5431183e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-6.671494e-07, -9.918963e-07, -1.5631115e-06, -3.895479e-07, 1.3116471e-07, -7.855486e-08, -1.13804674e-07, -5.113294e-07, -2.3531884e-07, 1.2017341e-07, 1.0653989e-06, 3.1811786e-07, 5.582234e-07, 3.4116036e-07, 8.788286e-07, 5.0696627e-08, 2.532893e-07, 3.2688177e-07, 3.8284432e-07, 4.525102e-07, 3.6475578e-07, -9.255491e-08, -7.5769026e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-9.727972e-07, -2.926347e-06, -6.08542e-07, -1.8715646e-06, 9.6072306e-08, -3.0130172e-07, 4.118151e-07, -5.2838544e-08, 5.1516076e-07, -2.6443064e-07, 9.627537e-07, 3.042502e-07, 5.0144473e-07, 8.350578e-08, -3.76483e-07, -2.8089698e-07, 5.567622e-07, -6.162112e-07, 8.616279e-07, 6.7831184e-07, 1.8736435e-07, 6.7346366e-07, 1.2462195e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.8951962e-07, -1.1116522e-06, 1.5912776e-06, -1.595247e-06, 6.998829e-07, -2.3886518e-08, 1.2548853e-07, 1.2907566e-07, -1.019499e-06, -3.1446365e-07, -2.5391736e-07, -5.7569946e-07, 9.556398e-07, 1.1153338e-08, 7.4487184e-07, -1.7159059e-06, -8.784885e-09, -1.2795987e-06, 3.1601008e-08, -1.0925036e-06, -6.4225486e-07, 1.2232518e-07, -2.1578015e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.0021778e-06, -2.9062295e-07, 7.059704e-10, -7.074301e-07, -3.831719e-08, -9.742411e-07, -3.5478098e-07, -8.7072794e-07, -6.489662e-07, -1.1365446e-06, 1.14101795e-07, -5.0044755e-09, -4.3549215e-07, -1.6741835e-06, 1.1674373e-06, 6.1745413e-07, -7.8635236e-07, -6.91439e-07, -2.7192485e-07, 6.3207995e-07, -7.5656453e-07, -7.518246e-07, -1.3610816e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [3.758912e-07, -1.0227163e-06, 6.131694e-07, -8.978644e-07, -6.859825e-07, -1.7455341e-06, -1.9905788e-06, -1.0607516e-06, 3.2188915e-08, -1.9846227e-06, -6.20926e-07, 7.7842896e-07, -1.0191613e-06, -1.9832514e-06, -2.195348e-07, -6.624497e-07, -1.0272321e-06, -1.253872e-07, 1.1053838e-07, -1.134129e-06, -1.7277071e-07, -4.987972e-07, -2.1567644e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.3348495e-08, -8.1803944e-07, -1.064036e-06, -1.212033e-06, -9.0592914e-07, -1.0394193e-06, 2.0631008e-07, -9.618618e-07, -1.5438213e-06, -8.826896e-07, -1.8735588e-07, 1.3497161e-06, 2.3370787e-07, -6.28087e-08, -8.5182955e-07, -4.772299e-07, 8.181147e-07, -4.774836e-07, 5.906153e-08, -7.872933e-07, -3.9788927e-07, -1.3041736e-06, -2.1921833e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [9.3652795e-07, -1.0143908e-06, -1.4795996e-06, -1.5883247e-06, 1.0523514e-07, -2.2496943e-06, 1.3543922e-07, -1.4974873e-06, 5.878871e-07, -1.5785965e-06, -3.9840046e-07, 6.302837e-08, 8.002014e-07, 1.0362247e-07, 1.6155836e-07, -1.2894315e-06, 5.321314e-07, -3.7917932e-08, 6.9951795e-07, -4.094137e-07, 3.3525856e-07, -1.0778433e-06, 7.3082606e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [1.4304788e-06, 2.1037998e-07, 1.2459552e-07, -1.4764208e-06, 1.5204484e-06, -1.2959079e-06, -2.2049478e-06, -7.478746e-07, 9.109912e-08, -1.4398377e-06, -7.7856123e-07, 6.4897887e-07, 6.9879945e-07, 1.1468901e-07, -4.8680937e-07, -6.743908e-07, 8.43436e-07, -1.6012011e-06, 2.8583736e-07, -4.838148e-07, -9.560166e-07, 7.8119547e-07, 2.235137e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [7.649182e-08, -1.8616827e-06, -5.784774e-07, -1.176599e-06, 8.250859e-07, -7.949925e-07, 8.7120554e-08, -8.1925157e-07, 6.055662e-07, 1.9722611e-07, -1.6746437e-06, -1.3174271e-07, -7.248357e-07, 2.9282984e-07, -6.723267e-07, -2.3515788e-07, 6.7855296e-07, 6.824e-07, -7.2936544e-08, -8.2421457e-07, -4.8625683e-08, 3.0478992e-07, 4.252552e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-4.397625e-07, -1.6044439e-06, 1.6702194e-06, 3.9286454e-07, 7.7360596e-07, -1.1308281e-06, -2.985165e-07, 1.6950975e-07, 1.2456705e-06, -2.1714747e-08, -7.2416256e-08, -6.955205e-07, 2.2299085e-07, 1.2770395e-06, 5.345332e-07, -9.1717357e-07, -1.0553343e-06, -2.8449261e-07, 1.3098075e-07, -2.7029947e-07, -1.9678195e-07, 2.0020275e-07, -1.1998834e-06, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [6.9275706e-07, -2.5262113e-06, 1.5720054e-06, 8.0210043e-07, -4.980602e-07, -1.8241814e-06, 5.721979e-07, 4.4968192e-07, 1.5636278e-06, -1.4574362e-06, 1.0155954e-07, 4.4567082e-07, 7.579556e-07, -5.748611e-07, 1.3661003e-07, -5.7207944e-07, -1.3474188e-07, -2.3892298e-07, 2.4700066e-07, -1.466828e-06, 1.0584861e-07, -1.494969e-07, -6.8376505e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.6582288e-07, -2.3881994e-06, -3.6611533e-07, 2.965973e-07, 2.867197e-07, -1.3696599e-06, 1.2804913e-06, -3.3988567e-07, 4.265533e-07, -2.128235e-07, 1.4623909e-06, -4.237381e-07, -9.708999e-07, 2.9690693e-07, 5.7647605e-07, -1.534818e-07, -8.3038105e-07, -1.9151976e-06, 6.5895904e-07, -2.995933e-07, 1.4964539e-06, -5.4178585e-08, -5.3779627e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-1.4671915e-06, -1.1924883e-06, 8.660768e-07, -5.2133807e-08, 1.1222795e-06, -1.3001488e-06, 1.1648692e-06, -8.6976945e-07, 4.3107855e-07, 8.882231e-07, 6.588816e-07, 1.1300108e-06, 5.3467323e-07, 4.322294e-07, 6.092226e-08, -1.7861339e-07, -2.5359208e-07, -1.6007235e-06, 1.7253822e-06, -2.5801512e-07, 1.0956326e-06, -3.6784844e-08, -5.0990593e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-8.423094e-07, -1.8055666e-06, -7.06909e-07, 9.314491e-09, 8.6919295e-07, -1.2642273e-06, -7.8617234e-08, 7.004818e-07, 8.677588e-09, -2.6215386e-07, 1.8908561e-06, -3.9216042e-07, -1.2885371e-06, 6.65706e-07, 7.768746e-07, -1.1668817e-06, -1.2950638e-06, 1.5632281e-07, 3.3563086e-07, -4.7832305e-07, 1.2846451e-06, 1.4532301e-07, -2.1249717e-08, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], [-2.3234993e-06, 1.7814592e-08, 9.1423806e-07, -8.307495e-07, 2.1799092e-06, -8.120552e-07, 9.2677067e-07, 8.287717e-09, 2.6577925e-07, 1.686149e-08, 4.8826223e-07, -4.965481e-07, 1.530315e-07, 1.1113295e-06, 7.960132e-07, -1.2981114e-06, -5.832005e-07, 1.5075423e-06, -1.0820419e-07, -1.7689011e-07, 1.2440199e-06, -2.726189e-07, 2.822904e-07, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan], ...] Probe00 0.0 0.000000 NaN b714cc17-e66c-4fa1-8630-01c4d553e11d 118.269184 40.0 498 48.455443 0.000000

... and 2241 more row(s).

As usual we can convert the units table to a pandas dataframe for easier access and manipulation:

In [28]:
units_df = units.to_dataframe()
units_df.columns
Out[28]:
Index(['unit_name', 'electrodes', 'min_spike_amplitude_uV', 'max_electrode',
       'spike_amplitudes_uV', 'spike_times', 'isi_violations_ratio',
       'spike_amplitude_std_dB', 'median_spike_amplitude_uV',
       'cumulative_drift_um_per_hour', 'presence_ratio_std', 'firing_rate',
       'presence_ratio', 'peak_to_trough_duration_ms',
       'spike_distances_from_probe_tip_um', 'kilosort2_label', 'waveform_mean',
       'probe_name', 'sliding_rp_violation', 'rp_violation',
       'missed_spikes_estimate', 'cluster_uuid', 'noise_cutoff',
       'distance_from_probe_tip_um', 'spike_count', 'max_spike_amplitude_uV',
       'ibl_quality_score'],
      dtype='object')

The following are particularly useful columns in the units table:

  • spike_times: the spike times (in seconds) for each units referenced to the common clock of the NWB file (session start time)
  • waveform_mean: the average waveform of the unit across all spikes as calculated by the IBL spike sorting pipeline
  • probe_name: the name of the probe where the unit was detected.
  • max_electrodes: the electrode where the unit has the maximum amplitude. This is a dynamic table region that can be used to link the unit to its anatomical location via the electrodes table.
  • electrodes: all the electrodes assigned to the unit by the IBL team. This is a dynamic table region that links back to the electrodes table in the NWB file.
  • ibl_quality_score: Proportion of IBL quality metrics passed (0.0, 0.33, 0.67, or 1.0). 1.0 = all three passed.

In the following we analyze and visualize the spike sorting results for one of the probes in the session.

In [29]:
probe_names = sorted(units_df["probe_name"].unique())
print(f"Available probes: {probe_names}")

# Select the first probe for detailed analysis
selected_probe = probe_names[0]
units_probe_df = units_df[units_df["probe_name"] == selected_probe]
print(f"Analyzing {selected_probe}: {len(units_probe_df)} units")

columns = ["unit_name", "cluster_uuid", "spike_count", "firing_rate", "kilosort2_label", "ibl_quality_score"]
units_probe_df[columns].sample(n=5)
Available probes: ['Probe00', 'Probe01']
Analyzing Probe00: 684 units
Out[29]:
unit_name cluster_uuid spike_count firing_rate kilosort2_label ibl_quality_score
id
678 probe00_678 5c4ebfea-548d-4985-9d67-0300ba002de2 749 0.136710 good 0.333333
84 probe00_84 5db3fbd7-563c-4356-abed-a4914bac42d4 18373 3.353506 mua 0.000000
386 probe00_386 05f2c1e2-e99d-41bf-ac62-91b483964a0e 78710 14.366430 good 0.666667
137 probe00_137 06b20157-ccde-4d76-a49b-72746303ae7f 1077 0.196578 good 0.666667
82 probe00_82 7b748b2f-0256-40c8-805f-23d2928f0a02 40009 7.302586 mua 0.000000
In [30]:
columns = ["unit_name", "median_spike_amplitude_uV", "distance_from_probe_tip_um"]
units_probe_df[columns].sample(n=5)
Out[30]:
unit_name median_spike_amplitude_uV distance_from_probe_tip_um
id
513 probe00_513 57.913134 3240.0
308 probe00_308 36.973923 2100.0
518 probe00_518 107.732564 3280.0
195 probe00_195 53.754077 1020.0
630 probe00_630 31.791270 900.0
In [31]:
task_epoch = epochs_df[epochs_df['protocol_type'] == 'task'].iloc[0]
passive_epoch = epochs_df[epochs_df['protocol_type'] == 'passive'].iloc[0]

# Calculate durations for labels
task_duration = task_epoch['stop_time'] - task_epoch['start_time']
passive_duration = passive_epoch['stop_time'] - passive_epoch['start_time']

# Filter to good units only (IBL quality score == 1)
df = units_probe_df[units_probe_df['ibl_quality_score'] == 1].copy()
print(f"Number of good units on {probe_name}: {len(units_probe_df[units_probe_df['ibl_quality_score'] == 1])}")

# Sort units by depth
units_probe = df.sort_values('distance_from_probe_tip_um')

# Create figure
fig, ax = plt.subplots(figsize=(14, 8))

# Add epoch background colors with duration in labels
ax.axvspan(task_epoch['start_time'], task_epoch['stop_time'],
           color='lightblue', alpha=0.3, label=f'Task ({task_duration/60:.1f} min)')
ax.axvspan(passive_epoch['start_time'], passive_epoch['stop_time'],
           color='lightyellow', alpha=0.3, label=f'Passive ({passive_duration/60:.1f} min)')

# Plot spikes for each unit at its depth
for idx, (unit_id, unit) in enumerate(units_probe.iterrows()):
    spike_times = unit['spike_times']
    depth = unit['distance_from_probe_tip_um']

    # Plot all spikes
    ax.scatter(spike_times, np.full(len(spike_times), depth),
               c='black', s=1.0, marker='|', linewidths=0.5, alpha=0.5)

# Add epoch boundary line
ax.axvline(task_epoch['stop_time'], color='red', linestyle='--', linewidth=1.5, label='Task/Passive boundary')

# Labels and styling
ax.set_xlabel('Time (s)')
ax.set_ylabel('Distance From Probe Tip (um)')
ax.set_title(f'Spike Raster by Depth - {probe_name} (good units only)',
             fontsize=12, fontweight='bold')
ax.set_xlim(0, passive_epoch['stop_time'])
ax.set_ylim(0, units_probe['distance_from_probe_tip_um'].max() + 100)

# Keep y-axis normal (depth increases upward, deeper units at top)

# Add legend outside the plot
ax.legend(loc='upper left', bbox_to_anchor=(1.01, 1), fontsize=9)

plt.tight_layout()
plt.show()
Number of good units on Probe01: 58
No description has been provided for this image
In [32]:
import matplotlib.pyplot as plt

fig, axes = plt.subplots(1, 2, figsize=(12, 9), sharey=True)

# Left plot - colored by kilosort2_label
df = units_probe_df
value_to_color = {"mua": "red", "good": "green"}

for label, color in value_to_color.items():
    subset = df[df["kilosort2_label"] == label]
    axes[0].scatter(
        subset["median_spike_amplitude_uV"],
        subset["distance_from_probe_tip_um"],
        c=color,
        label=label,
        s=100,
    )
axes[0].set_xlim([0, 800])
axes[0].set_xlabel("median_spike_amplitude_uV")
axes[0].set_ylabel("mean_relative_depth_um")
axes[0].set_title("By Kilosort2 Label")
axes[0].legend()

# Right plot - colored by firing_rate
df = units_probe_df[units_probe_df["ibl_quality_score"] == 1]

df.plot.scatter(
    x="median_spike_amplitude_uV", 
    y="distance_from_probe_tip_um",
    c="firing_rate",
    colormap="inferno",
    s=100,
    ax=axes[1]
)
axes[1].set_xlim([0, 800])
axes[1].set_xlabel("median_spike_amplitude_uV")
axes[1].set_title("By Firing Rate (Quality=1)")

plt.tight_layout()
plt.show()
No description has been provided for this image

Accessing Waveform Data¶

The units table contains mean waveform data stored as waveform_mean - a 2D array with shape (num_samples, num_channels) for each unit. These are the average spike shapes computed by IBL's spike sorting pipeline:

  • Sampling rate: 30 kHz
  • 82 time samples: ~2.7 ms window centered on spike time
  • 32 channels per unit: Subset of probe channels around the max amplitude channel, ordered by proximity to max channel (not by depth)
  • Values in microvolts (uV)

The electrodes associated with each unit are stored in the electrodes column, which provides the channel positions (rel_y) needed to reorder waveforms by depth for visualization.

In [33]:
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.patches import Patch

# COSMOS_FULL_NAMES and get_cosmos_color defined above


def get_cosmos_region_data(probe_table):
    """Extract COSMOS region blocks from probe table for visualization."""
    probe_table = probe_table.sort_values("rel_y").reset_index(drop=True)
    cosmos_values = probe_table["cosmos_location"].values
    rel_y_values = probe_table["rel_y"].values

    blocks = []
    current_region = cosmos_values[0]
    block_start = rel_y_values[0]

    for i in range(1, len(cosmos_values)):
        if cosmos_values[i] != current_region:
            block_end = (rel_y_values[i - 1] + rel_y_values[i]) / 2
            blocks.append((current_region, block_start, block_end))
            current_region = cosmos_values[i]
            block_start = block_end

    blocks.append((current_region, block_start, rel_y_values[-1] + 5))

    unique_regions = []
    for region, _, _ in blocks:
        if region not in unique_regions:
            unique_regions.append(region)

    return blocks, unique_regions


def plot_probe_regions(probe_table, ax, unit_depths=None, unit_ids=None):
    """Plot probe with COSMOS region strip and electrode contacts."""
    probe_table = probe_table.sort_values("rel_y").reset_index(drop=True)
    rel_x_values = probe_table["rel_x"].values
    rel_y_values = probe_table["rel_y"].values

    x_min, x_max = rel_x_values.min(), rel_x_values.max()
    y_min, y_max = rel_y_values.min(), rel_y_values.max()

    blocks, unique_regions = get_cosmos_region_data(probe_table)
    strip_width = x_max - x_min + 30
    strip_x = x_min - 15

    for region, y_start, y_end in blocks:
        color = get_cosmos_color(region)
        rect = plt.Rectangle(
            (strip_x, y_start), strip_width, y_end - y_start, facecolor=color, edgecolor="none", alpha=0.5
        )
        ax.add_patch(rect)

    for i in range(len(rel_x_values)):
        rect = plt.Rectangle(
            (rel_x_values[i] - 6, rel_y_values[i] - 5), 12, 10, facecolor="white", edgecolor="black", linewidth=0.3
        )
        ax.add_patch(rect)

    if unit_depths is not None and unit_ids is not None:
        for i, depth in enumerate(unit_depths):
            if i < len(unit_ids):
                ax.text(x_max + 25, depth, str(unit_ids[i]), va="center", ha="left", fontsize=7, color="black", fontweight="bold")

    ax.set_xlim(x_min - 50, x_max + 50)
    ax.set_ylim(y_min - 100, y_max + 100)
    ax.set_xticks([])
    ax.set_ylabel("Depth (um)")
    ax.set_aspect("equal", adjustable="box")
    for spine in ax.spines.values():
        spine.set_visible(False)

    legend_handles = [
        Patch(facecolor=get_cosmos_color(r), edgecolor="black", linewidth=0.5, label=COSMOS_FULL_NAMES.get(r, r), alpha=0.5)
        for r in unique_regions
    ]
    return ax, legend_handles


def plot_waveform_wiggle(waveform_uV, electrode_depths, ax, fs=30000.0, gain=0.4, channel_spacing=0.8):
    """Plot waveform as IBL-style double wiggle plot.

    Parameters
    ----------
    waveform_uV : array
        Waveform data in microvolts (num_samples, num_channels).
    electrode_depths : array
        Depth of each electrode channel.
    ax : matplotlib axis
    fs : float
        Sampling rate in Hz.
    gain : float
        Scaling factor for waveform amplitude.
    channel_spacing : float
        Vertical spacing between channels.
    """
    num_samples, num_channels = waveform_uV.shape

    # Handle mismatch between waveform channels and electrode depths
    n_electrodes = len(electrode_depths)
    if num_channels != n_electrodes:
        # Use only channels that have electrode depths
        num_channels = min(num_channels, n_electrodes)
        waveform_uV = waveform_uV[:, :num_channels]
        electrode_depths = electrode_depths[:num_channels]

    center_sample = num_samples // 2
    time_ms = (np.arange(num_samples) - center_sample) / fs * 1000

    sort_order = np.argsort(electrode_depths)
    wf_sorted = waveform_uV[:, sort_order]
    depths_sorted = electrode_depths[sort_order]

    wf_max = np.abs(wf_sorted).max()
    wf_norm = wf_sorted / wf_max * gain if wf_max > 0 else wf_sorted

    for ch in range(num_channels):
        offset = ch * channel_spacing
        trace = wf_norm[:, ch]
        ax.plot(time_ms, trace + offset, color="black", linewidth=0.5)
        ax.fill_between(time_ms, offset, trace + offset, where=(trace > 0), color="orange", alpha=0.8, linewidth=0)
        ax.fill_between(time_ms, offset, trace + offset, where=(trace < 0), color="slateblue", alpha=0.8, linewidth=0)

    ax.set_xlabel("Time (ms)")
    depth_ticks = np.linspace(depths_sorted.min(), depths_sorted.max(), 5)
    channel_positions = np.linspace(0, (num_channels - 1) * channel_spacing, 5)
    ax.set_yticks(channel_positions)
    ax.set_yticklabels([f"{d:.0f}" for d in depth_ticks])
    ax.set_ylabel("Distance from tip (um)")


def get_max_channel_index(unit):
    """Get the index (0-31) of the max electrode within the unit's electrodes list."""
    max_electrode_idx = unit["max_electrode"].index[0]
    electrodes_indices = unit["electrodes"].index.tolist()
    if max_electrode_idx in electrodes_indices:
        return electrodes_indices.index(max_electrode_idx)
    waveform = unit["waveform_mean"]
    peak_to_peak = waveform.max(axis=0) - waveform.min(axis=0)
    return np.argmax(peak_to_peak)


def plot_max_channel_waveform(waveform_uV, ax, max_ch_idx=None, fs=30000.0):
    """Plot waveform on the max amplitude channel.

    Parameters
    ----------
    waveform_uV : array
        Waveform data in microvolts (num_samples, num_channels).
    ax : matplotlib axis
    max_ch_idx : int, optional
        Index of max channel in the waveform array. If None, computed from waveform.
    fs : float
        Sampling rate in Hz.
    """
    num_samples = waveform_uV.shape[0]
    center_sample = num_samples // 2
    time_ms = (np.arange(num_samples) - center_sample) / fs * 1000

    if max_ch_idx is None:
        peak_to_peak = waveform_uV.max(axis=0) - waveform_uV.min(axis=0)
        max_ch_idx = np.argmax(peak_to_peak)

    trace = waveform_uV[:, max_ch_idx]

    ax.plot(time_ms, trace, color="black", linewidth=1.0)
    ax.fill_between(time_ms, 0, trace, where=(trace > 0), color="orange", alpha=0.8, linewidth=0)
    ax.fill_between(time_ms, 0, trace, where=(trace < 0), color="slateblue", alpha=0.8, linewidth=0)
    ax.axhline(0, color="gray", linestyle="--", linewidth=0.5)
    ax.set_xlabel("Time (ms)")
    ax.set_ylabel("Amplitude (uV)")


def plot_waveform_heatmap(waveform_uV, electrode_depths, ax, fs=30000.0, vmax=None, add_colorbar=False):
    """Plot waveform as a heatmap (time x channel).

    Parameters
    ----------
    waveform_uV : array
        Waveform data in microvolts (num_samples, num_channels).
    electrode_depths : array
        Depth of each electrode channel.
    ax : matplotlib axis
    fs : float
        Sampling rate in Hz.
    vmax : float, optional
        Max value for colormap.
    add_colorbar : bool
        Whether to add a colorbar.
    """
    num_samples, num_channels = waveform_uV.shape

    # Handle mismatch between waveform channels and electrode depths
    n_electrodes = len(electrode_depths)
    if num_channels != n_electrodes:
        num_channels = min(num_channels, n_electrodes)
        waveform_uV = waveform_uV[:, :num_channels]
        electrode_depths = electrode_depths[:num_channels]

    center_sample = num_samples // 2
    time_ms = (np.arange(num_samples) - center_sample) / fs * 1000

    sort_order = np.argsort(electrode_depths)
    wf_sorted = waveform_uV[:, sort_order]
    depths_sorted = electrode_depths[sort_order]

    if vmax is None:
        vmax = np.abs(wf_sorted).max()

    im = ax.imshow(
        wf_sorted.T,
        aspect="auto",
        origin="lower",
        extent=[time_ms[0], time_ms[-1], 0, num_channels],
        cmap="RdBu_r",
        vmin=-vmax,
        vmax=vmax,
    )
    ax.set_xlabel("Time (ms)")

    depth_ticks = np.linspace(depths_sorted.min(), depths_sorted.max(), 5)
    channel_positions = np.linspace(0, num_channels, 5)
    ax.set_yticks(channel_positions)
    ax.set_yticklabels([f"{d:.0f}" for d in depth_ticks])
    ax.set_ylabel("Distance from tip (um)")

    if add_colorbar:
        plt.colorbar(im, ax=ax, label="Amplitude (uV)")
    return im
In [34]:
# %% Select good units and create combined waveform visualization
# Get localization data for probe visualization
localization = nwbfile_processed.lab_meta_data.get("localization")
anatomical_tables = localization.anatomical_coordinates_tables
ibl_bregma_table_df = anatomical_tables["ElectrodesIBLBregma"].to_dataframe()

# Extract electrode positions from localized_entity
ibl_bregma_table_df["rel_x"] = [electrode["rel_x"].iloc[0] for electrode in ibl_bregma_table_df["localized_entity"]]
ibl_bregma_table_df["rel_y"] = [electrode["rel_y"].iloc[0] for electrode in ibl_bregma_table_df["localized_entity"]]

# Select good units from the first probe that has them
probe_names = sorted(units_df["probe_name"].unique())
probe_name = None
good_units = None
for candidate in probe_names:
    candidate_units = units_df[(units_df["probe_name"] == candidate) & (units_df["ibl_quality_score"] == 1.0)].copy()
    if len(candidate_units) > 0:
        probe_name = candidate
        good_units = candidate_units
        break

if good_units is None or len(good_units) == 0:
    raise ValueError(f"No good units found in any probe: {probe_names}")

good_units = good_units.sort_values("distance_from_probe_tip_um")
probe_table = ibl_bregma_table_df[ibl_bregma_table_df["probe_name"] == probe_name].copy()

# Filter out units with any NaN waveforms (some units have partial NaN data)
valid_waveform_mask = [not np.isnan(unit["waveform_mean"]).any() for _, unit in good_units.iterrows()]
good_units = good_units[valid_waveform_mask]

print(f"Selected {len(good_units)} good units with valid waveforms from {probe_name}")

# Select 3 units evenly spaced across depth
depths = good_units["distance_from_probe_tip_um"].values
target_depths = np.linspace(depths.min(), depths.max(), 3)
selected_indices = []
available_mask = np.ones(len(good_units), dtype=bool)

for target in target_depths:
    available_depths = depths.copy()
    available_depths[~available_mask] = np.inf
    closest_idx = np.argmin(np.abs(available_depths - target))
    selected_indices.append(closest_idx)
    available_mask[closest_idx] = False

selected_indices = sorted(selected_indices, key=lambda i: depths[i])
example_units = good_units.iloc[selected_indices]
example_depths = example_units["distance_from_probe_tip_um"].values.tolist()
example_unit_ids = example_units.index.tolist()

# Convert waveforms from volts to microvolts for visualization
# NWB schema has waveform_mean unit fixed to 'volts', so we always convert to uV for display
conversion_factor = 1e6
print("Converting waveforms from volts to microvolts for display (factor: 1e6)")

# Compute shared vmax for heatmaps (in microvolts)
shared_vmax = max(np.abs(unit["waveform_mean"] * conversion_factor).max() for _, unit in example_units.iterrows())

# Create combined figure: Probe | 3x3 waveforms | colorbar
fig = plt.figure(figsize=(16, 12))
gs = fig.add_gridspec(3, 5, width_ratios=[1.0, 1.2, 1.2, 1.2, 0.08], wspace=0.35, hspace=0.4)

# Probe visualization (spans all 3 rows)
ax_probe = fig.add_subplot(gs[:, 0])
_, legend_handles = plot_probe_regions(probe_table, ax_probe, unit_depths=example_depths, unit_ids=example_unit_ids)
ax_probe.set_title(f"{probe_name}\nElectrode Contacts", fontsize=10)

if legend_handles:
    ax_probe.legend(handles=legend_handles, loc="upper center", bbox_to_anchor=(0.5, -0.02),
                    ncol=2, fontsize=6, frameon=False, title="COSMOS Regions", title_fontsize=7)

# Store last heatmap image for shared colorbar
last_heatmap_im = None

# Plot waveforms for each unit (columns 1-3)
for col_idx, (unit_id, unit) in enumerate(example_units.iterrows()):
    # Convert waveform to microvolts for visualization
    waveform_uV = unit["waveform_mean"] * conversion_factor
    depth = unit["distance_from_probe_tip_um"]
    region = unit["max_electrode"]["location"].values[0]
    electrode_depths = unit["electrodes"]["rel_y"].values
    
    # Get max channel index from the unit's electrode mapping
    max_ch_idx = get_max_channel_index(unit)
    max_electrode_depth = unit["max_electrode"]["rel_y"].values[0]

    # Row 0: Wiggle plot
    ax_wiggle = fig.add_subplot(gs[0, col_idx + 1])
    plot_waveform_wiggle(waveform_uV, electrode_depths, ax_wiggle, gain=0.4, channel_spacing=0.8)
    ax_wiggle.set_title(f"Unit {unit_id}\n{region}", fontsize=8)

    # Row 1: Max channel waveform (use max_electrode depth in title)
    ax_max = fig.add_subplot(gs[1, col_idx + 1])
    plot_max_channel_waveform(waveform_uV, ax_max, max_ch_idx=max_ch_idx)
    ax_max.set_title(f"Max electrode depth: {max_electrode_depth:.0f} um", fontsize=8)

    # Row 2: Heatmap
    ax_heatmap = fig.add_subplot(gs[2, col_idx + 1])
    last_heatmap_im = plot_waveform_heatmap(waveform_uV, electrode_depths, ax_heatmap, vmax=shared_vmax)

# Add shared colorbar for heatmaps
cbar_ax = fig.add_subplot(gs[2, 4])
cbar = fig.colorbar(last_heatmap_im, cax=cbar_ax)
cbar.set_label("Amplitude (uV)", fontsize=9)

fig.suptitle(f"Waveform Visualization - {probe_name}\nSession: {nwbfile_processed.session_id}",
             fontsize=12, fontweight="bold", y=1.02)
plt.tight_layout()
plt.show()
Selected 51 good units with valid waveforms from Probe00
Converting waveforms from volts to microvolts for display (factor: 1e6)
/tmp/ipykernel_2421/3968331865.py:109: UserWarning: This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.
  plt.tight_layout()
No description has been provided for this image

Loading Trials Data¶

In [35]:
trials = nwbfile_processed.trials
trials
Out[35]:

trials (TimeIntervals)

description: Trial data from the IBL decision-making task. On each trial, a visual stimulus (Gabor patch) appears on the left or right of a screen, and the mouse must move it to the center by turning a wheel with its front paws within 60 seconds. Correct responses are rewarded with water; incorrect responses trigger a white noise auditory cue and 2-second timeout. If no response is recorded during 60 seconds, a white noise auditory cue is presented. Trial timeline: (1) start_time begins a quiescence period where the mouse must hold the wheel still; (2) after quiescence_period elapses, the stimulus and auditory go cue are presented (gabor_stimulus_onset_time); (3) the mouse responds by turning the wheel to move the stimulus; correct choices are defined by moving the visual stimulus into the center; (4) feedback_time marks reward punishment or presentation of the white noise auditory cue; (5) stop_time marks trial end. Stimulus contrast is uniformly sampled from 5 values (0%, 6.25%, 12.5%, 25%, 100%). On 0% contrast trials, no stimulus is visible but a correct side is still assigned based on block probability, allowing mice to perform above chance using prior information. After an initial 90 unbiased trials, stimulus probability alternates between left-biased (80:20) and right-biased (20:80) blocks of 20-100 trials (mean 51). Block changes are not cued. See IBL et al. (2021) eLife 10:e63711 for full task details.
columns
start_time
The beginning of the trial.
stop_time
The end of the trial.
quiescence_period
Required duration (seconds) the mouse must hold the wheel still before stimulus presentation. Sampled from exponential distribution (400-700ms, mean ~550ms).
gabor_stimulus_onset_time
Time when the visual stimulus (Gabor patch) appears on the screen, detected by the photodiode. Presented together with the auditory go cue.
auditory_cue_time
Time of the auditory go cue (100ms, 5kHz tone) signaling the mouse may respond. Presented together with the visual stimulus.
wheel_movement_onset_time
Time of first detected wheel movement (>= 0.1 radians threshold) after the go cue.
choice_registration_time
Time when the mouse's choice was registered: either the wheel movement reached the +/-35 degree threshold, or 60-second timeout elapsed.
feedback_time
Time of feedback delivery: water reward for correct responses, or white noise pulse + 2-second timeout for incorrect responses.
gabor_stimulus_offset_time
Time when the Gabor patch disappears from the screen, detected by the photodiode.
gabor_stimulus_contrast
Contrast of the Gabor patch as a percentage (0, 6.25, 12.5, 25, or 100). Uniformly sampled across trials. At 0% contrast (no visible stimulus), mice can still perform above chance using block probability prior.
gabor_stimulus_side
Side on the screen where stimulus was presented: 'left' or 'right'. Even at 0% contrast (no visible stimulus), a side is assigned to the stimulus for the trial, enabling the mice to perform a correct response using prior knowledge of the block distribution.
mouse_wheel_choice
Mouse's response: 'counter_clockwise' (counter_clockwise wheel turn moving stimulus leftward), 'clockwise' (clockwise wheel turn moving stimulus rightward), or 'none' (no response within 60s timeout). clockwise and counter_clockwise are wheel movements as seen from the perspective of the mouse
is_mouse_rewarded
Whether the mouse received a water reward (True) or not (False). If False, an additional negative feedback consisting of an auditory white noise stimulus.
reward_volume_uL
Volume of water reward in microliters (0 for incorrect/timeout trials).
probability_left
Block prior probability for the visual stimulus to be presented on the left side of the screen. After an initial block of 90 unbiased trials (0.5), blocks alternate between a probability of 0.2 (right-biased) and 0.8 (left-biased). Block lengths: 20-100 trials from truncated geometric distribution (mean 51). Block changes are not cued.
block_type
Block type based on stimulus probability bias: 'unbiased' (probability_left=0.5), 'left_block' (probability_left=0.8, stimulus 80% likely on the left side of the screen), or 'right_block' (probability_left=0.2, stimulus 80% likely on the right side of the screen).
block_index
Zero-indexed block number. Increments each time probability_left changes. Block 0 is the initial unbiased block (90 trials at 0.5 probability).
table
start_time stop_time quiescence_period gabor_stimulus_onset_time auditory_cue_time wheel_movement_onset_time choice_registration_time feedback_time gabor_stimulus_offset_time gabor_stimulus_contrast gabor_stimulus_side mouse_wheel_choice is_mouse_rewarded reward_volume_uL probability_left block_type block_index
id
0 103.884959 115.226015 0.541949 NaN 113.439040 113.477967 113.677692 113.677785 114.725958 100.0 right counter_clockwise True 1.5 0.5 unbiased 0
1 115.866423 119.975890 0.457997 116.381644 116.382710 117.707967 118.402564 118.402663 119.475868 25.0 left clockwise True 1.5 0.5 unbiased 0
2 120.616099 123.259428 0.426862 121.098089 121.099023 121.328967 121.695111 121.695203 122.759341 25.0 right counter_clockwise True 1.5 0.5 unbiased 0
3 123.949635 131.142860 0.423191 124.431558 124.432692 128.465967 128.570015 128.571022 130.642804 12.5 right clockwise False 0.0 0.5 unbiased 0

... and 888 more row(s).

In [36]:
trials_df = trials.to_dataframe()
trials_df
Out[36]:
start_time stop_time quiescence_period gabor_stimulus_onset_time auditory_cue_time wheel_movement_onset_time choice_registration_time feedback_time gabor_stimulus_offset_time gabor_stimulus_contrast gabor_stimulus_side mouse_wheel_choice is_mouse_rewarded reward_volume_uL probability_left block_type block_index
id
0 103.884959 115.226015 0.541949 NaN 113.439040 113.477967 113.677692 113.677785 114.725958 100.00 right counter_clockwise True 1.5 0.5 unbiased 0
1 115.866423 119.975890 0.457997 116.381644 116.382710 117.707967 118.402564 118.402663 119.475868 25.00 left clockwise True 1.5 0.5 unbiased 0
2 120.616099 123.259428 0.426862 121.098089 121.099023 121.328967 121.695111 121.695203 122.759341 25.00 right counter_clockwise True 1.5 0.5 unbiased 0
3 123.949635 131.142860 0.423191 124.431558 124.432692 128.465967 128.570015 128.571022 130.642804 12.50 right clockwise False 0.0 0.5 unbiased 0
4 131.780569 134.242488 0.501897 132.348152 132.349018 132.234967 132.667375 132.667490 133.742494 25.00 right counter_clockwise True 1.5 0.5 unbiased 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
887 4126.191615 4129.673361 0.520284 4126.762697 4126.763797 4126.945967 4127.106626 4127.107466 4129.173315 12.50 right clockwise False 0.0 0.8 left_block 17
888 4130.436269 4133.523842 0.597641 4131.079445 4131.080445 4131.272967 4131.967004 4131.967099 4133.023805 6.25 left clockwise True 1.5 0.8 left_block 17
889 4134.293658 4136.623874 0.406433 4134.746018 4134.747084 4134.891967 4135.059662 4135.059756 4136.123828 12.50 left clockwise True 1.5 0.8 left_block 17
890 4137.435277 4139.756922 0.552693 4138.046090 4138.047090 4137.946967 4138.188392 4138.188510 4139.256848 6.25 left clockwise True 1.5 0.8 left_block 17
891 4140.520935 4145.340227 0.681441 4142.495992 4142.497092 4142.510967 4142.772978 4142.773734 4144.840116 12.50 right clockwise False 0.0 0.8 left_block 17

892 rows × 17 columns

Overview of Trials¶

In [37]:
from pathlib import Path

import matplotlib.pyplot as plt
import numpy as np

# %% Compute signed contrast for y-position
contrast = trials_df["gabor_stimulus_contrast"].values
side = trials_df["gabor_stimulus_side"].values
signed_contrast = np.where(side == "left", contrast, -contrast)
trials_df["signed_contrast"] = signed_contrast

# Add jitter for overlapping points
np.random.seed(42)
trials_df["y_jitter"] = signed_contrast + np.random.uniform(-3, 3, len(trials_df))

# %% Define block background colors
block_bg_colors = {
    "unbiased": "#E0E0E0",
    "left_block": "#B3D9FF",
    "right_block": "#FFD9B3",
}
block_labels = {
    "unbiased": "Unbiased (p_left=0.5)",
    "left_block": "Left block (p_left=0.8)",
    "right_block": "Right block (p_left=0.2)",
}

# %% Create figure
fig, ax = plt.subplots(figsize=(14, 6))

# Plot block backgrounds
block_changes = trials_df["block_index"].diff().fillna(1) != 0
block_starts = trials_df.index[block_changes].tolist()
block_starts.append(len(trials_df))

added_labels = set()
for i in range(len(block_starts) - 1):
    start_index = block_starts[i]
    end_index = block_starts[i + 1]
    block_type = trials_df.loc[start_index, "block_type"]
    label = block_labels.get(block_type) if block_type not in added_labels else None
    ax.axvspan(
        start_index,
        end_index,
        color=block_bg_colors.get(block_type, "white"),
        alpha=0.5,
        zorder=0,
        label=label,
    )
    added_labels.add(block_type)

# Plot correct trials (blue circles)
correct = trials_df[trials_df["is_mouse_rewarded"]]
ax.scatter(
    correct.index,
    correct["y_jitter"],
    marker="o",
    s=20,
    facecolors="none",
    edgecolors="blue",
    linewidths=1,
    label="Correct",
    zorder=2,
)

# Plot incorrect trials (red X)
incorrect = trials_df[~trials_df["is_mouse_rewarded"]]
ax.scatter(
    incorrect.index,
    incorrect["y_jitter"],
    color="red",
    marker="x",
    s=20,
    linewidths=1,
    label="Incorrect",
    zorder=2,
)

# Formatting
ax.set_xlabel("Trial number")
ax.set_ylabel("Signed contrast (%)")
ax.set_xlim(-5, len(trials_df) + 5)
ax.axhline(0, color="gray", linestyle="--", linewidth=0.5, alpha=0.5)

# Session info
subject = nwbfile.subject.subject_id if nwbfile.subject else "Unknown"
session_date = nwbfile.session_start_time.strftime("%Y-%m-%d")
n_correct = len(correct)
performance = n_correct / len(trials_df) * 100

ax.set_title(f"{subject} - {session_date} ({len(trials_df)} trials, {performance:.1f}% correct)")
ax.legend(loc="upper left", bbox_to_anchor=(1.01, 1), fontsize=9)

plt.tight_layout(rect=[0, 0, 0.85, 1])
plt.show()
No description has been provided for this image

Psychometric Curves¶

In [38]:
from pathlib import Path

import matplotlib.pyplot as plt
import numpy as np
import psychofit as psy

# %% Compute signed contrast
# Convention: positive = left stimulus, negative = right stimulus
# This ensures P(choose right) increases with signed contrast
contrast = trials_df["gabor_stimulus_contrast"].values
side = trials_df["gabor_stimulus_side"].values
signed_contrast = np.where(side == "left", contrast, -contrast)

trials_df["signed_contrast"] = signed_contrast
trials_df["chose_right"] = (trials_df["mouse_wheel_choice"] == "right").astype(int)

# %% Define block types and colors (matching IBL style)
blocks = {
    0.5: {"color": "black", "label": "p_left=0.5"},
    0.2: {"color": "tab:red", "label": "p_left=0.2"},
    0.8: {"color": "tab:blue", "label": "p_left=0.8"},
}

# %% Fit and collect data for each block
x_fit = np.linspace(-100, 100, 200)
block_results = {}

for p_left, style in blocks.items():
    block_trials = trials_df[trials_df["probability_left"] == p_left]

    if len(block_trials) == 0:
        print(f"No trials for p_left={p_left}")
        continue

    # Aggregate by contrast
    grouped = (
        block_trials.groupby("signed_contrast")
        .agg(
            n_total=("chose_right", "count"),
            p_right=("chose_right", "mean"),
        )
        .reset_index()
    )

    # Fit psychometric curve
    data = np.vstack(
        [grouped["signed_contrast"].values, grouped["n_total"].values, grouped["p_right"].values]
    )

    pars, _ = psy.mle_fit_psycho(
        data,
        P_model="erf_psycho_2gammas",
        parstart=np.array([0.0, 40.0, 0.1, 0.1]),
        parmin=np.array([-50.0, 10.0, 0.0, 0.0]),
        parmax=np.array([50.0, 50.0, 0.2, 0.2]),
        nfits=10,
    )

    y_fit = psy.erf_psycho_2gammas(pars, x_fit)

    block_results[p_left] = {
        "grouped": grouped,
        "pars": pars,
        "y_fit": y_fit,
        "n_trials": len(block_trials),
    }

# %% Plot psychometric curves for all blocks
fig, ax = plt.subplots(figsize=(8, 6))

for p_left, style in blocks.items():
    if p_left not in block_results:
        continue

    result = block_results[p_left]
    grouped = result["grouped"]
    color = style["color"]
    label = style["label"]

    # Fitted curve
    ax.plot(x_fit, result["y_fit"], color=color, linewidth=2, label=f"{label} fit")

    # Data points
    ax.scatter(
        grouped["signed_contrast"],
        grouped["p_right"],
        color=color,
        s=50,
        alpha=0.8,
        label=f"{label} data",
    )

# Formatting
ax.set_xlabel("Contrasts")
ax.set_ylabel("Probability choosing right")
ax.set_ylim(-0.05, 1.05)
ax.legend(loc="upper left", fontsize=9)

plt.tight_layout()
plt.show()
No description has been provided for this image
In [ ]:
 

Reaction Time by Contrast¶

In [39]:
from pathlib import Path

import matplotlib.pyplot as plt
import numpy as np

# %% Calculate reaction time and signed contrast
trials_df["reaction_time"] = (
    trials_df["wheel_movement_onset_time"] - trials_df["gabor_stimulus_onset_time"]
)

# Signed contrast: positive = left stimulus, negative = right stimulus
contrast = trials_df["gabor_stimulus_contrast"].values
side = trials_df["gabor_stimulus_side"].values
trials_df["signed_contrast"] = np.where(side == "left", contrast, -contrast)

# Get unique contrasts sorted
contrasts = sorted(trials_df["signed_contrast"].unique())

# %% Define block styles (matching IBL and psychometric_curve.py)
blocks = {
    0.5: {"color": "black", "label": "p_left=0.5"},
    0.2: {"color": "tab:red", "label": "p_left=0.2"},
    0.8: {"color": "tab:blue", "label": "p_left=0.8"},
}

# %% Plot reaction time by contrast for each block
fig, ax = plt.subplots(figsize=(8, 6))

for p_left, style in blocks.items():
    block_trials = trials_df[trials_df["probability_left"] == p_left]

    if len(block_trials) == 0:
        continue

    # Calculate median reaction time for each contrast (robust to outliers)
    median_rt = []
    contrast_vals = []

    for c in contrasts:
        contrast_trials = block_trials[block_trials["signed_contrast"] == c]
        if len(contrast_trials) > 0:
            median_rt.append(contrast_trials["reaction_time"].median())
            contrast_vals.append(c)

    ax.plot(
        contrast_vals,
        median_rt,
        "o-",
        color=style["color"],
        label=f"{style['label']} ({len(block_trials)} trials)",
        linewidth=1.5,
        markersize=6,
    )

# Formatting
ax.set_xlabel("Contrasts")
ax.set_ylabel("Reaction time (s)")
ax.set_xlim(-110, 110)
ax.set_ylim(0, None)
ax.axvline(0, color="gray", linestyle="--", linewidth=0.5, alpha=0.5)
ax.legend(loc="upper right", fontsize=9)

plt.tight_layout()
plt.show()
No description has been provided for this image

Loading Wheel Data¶

In [40]:
wheel_module = nwbfile_processed.processing["wheel"]
wheel_module
Out[40]:

wheel (ProcessingModule)

description: Rotary encoder wheel used for behavioral responses. The wheel (6.2 cm diameter) is positioned under the mouse's forepaws, and rotation is measured via a quadrature encoder (1024 ticks, X4 encoding = 4096 effective ticks per revolution). Mice turn the wheel to move visual stimuli and report perceptual decisions. Contains raw position, detected movements, and derived kinematics.
WheelAccelerationSmoothed (TimeSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel angular acceleration derived from velocity (WheelVelocitySmoothed). Computed as the second derivative of the smoothed position signal.
conversion: 1.0
offset: 0.0
unit: rad/s^2
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)31645646
Compression ratio1.3849877483935704
starting_time_unit: seconds
WheelPosition (SpatialSeries)
resolution: -1.0
comments: no comments
description: Absolute unwrapped wheel angle recorded from a quadrature rotary encoder. The wheel (diameter 6.2 cm) is positioned under the mouse's forepaws and serves as the primary behavioral input device for reporting perceptual decisions. Sampling is event-driven: timestamps are recorded only when the wheel moves (i.e., when the encoder generates TTL edges), resulting in irregular inter-sample intervals. The encoder uses X4 decoding of two 90-degree phase-shifted channels, providing 4096 effective counts per revolution (angular resolution ~0.088 degrees or 2*pi/4096 radians). Position is NOT periodic: values grow unboundedly as the wheel rotates, accumulating across multiple full revolutions (e.g., 3 full turns clockwise = -6*pi radians). The position is never wrapped back to [0, 2*pi]. Sign convention follows mathematical standard: counter-clockwise rotation (from the subject's perspective) is positive.
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)7366260
Compression ratio2.395870903280634
timestamps
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)12053219
Compression ratio1.4642236235813852
timestamps_unit: seconds
interval: 1
reference_frame: Initial angle at session start is defined as zero. Counter-clockwise is positive.
WheelPositionSmoothed (SpatialSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel position resampled to a uniform 1000 Hz grid and smoothed. The raw wheel position has irregular timestamps (event-driven from encoder edges). This series provides uniformly sampled position by: (1) linear interpolation to 1000 Hz, then (2) 8th order Butterworth lowpass filter (20 Hz corner, zero-phase) to remove high-frequency noise. This smoothed signal is used to derive velocity and acceleration via differentiation.
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)29951966
Compression ratio1.4633040114962736
starting_time_unit: seconds
reference_frame: Uniformly sampled at 1000 Hz via linear interpolation, then lowpass filtered.
WheelVelocitySmoothed (TimeSeries)
starting_time: 0.03959646515624151
rate: 999.9999999999991
resolution: -1.0
comments: no comments
description: Wheel angular velocity derived from smoothed position (WheelPositionSmoothed). Computed as the first derivative of position after interpolation to 1000 Hz and lowpass filtering.
conversion: 1.0
offset: 0.0
unit: rad/s
data
HDF5 dataset
Data typefloat64
Shape(5478604,)
Array size41.80 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)43828832
Compressed size (bytes)29727607
Compression ratio1.4743478006823758
starting_time_unit: seconds
WheelMovementIntervals (TimeIntervals)
description: The onset and offset times of all detected movements. Movements are defined as a wheel movement of at least 0.012 rad over 200ms. For a rotary encoder of resolution 1024 in X4 encoding, this is equivalent to around 8 ticks. Movements below 50ms are discarded and two detected movements within 100ms of one another are considered as a single movement. For the onsets a lower threshold is used to find a more precise onset time. The wheel diameter is 6.2 cm and the number of ticks is 4096 per revolution.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
peak_amplitude
The absolute maximum amplitude of each detected wheel movement, relative to onset position.
table
start_time stop_time peak_amplitude
id
0 0.343596 0.723596 0.132027
1 3.532596 4.394596 0.700072
2 6.731596 11.317596 11.646018
3 22.972596 24.000596 0.591526

... and 1548 more row(s).

In [41]:
wheel_position = wheel_module["WheelPosition"]
wheel_position
Out[41]:

WheelPosition (SpatialSeries)

resolution: -1.0
comments: no comments
description: Absolute unwrapped wheel angle recorded from a quadrature rotary encoder. The wheel (diameter 6.2 cm) is positioned under the mouse's forepaws and serves as the primary behavioral input device for reporting perceptual decisions. Sampling is event-driven: timestamps are recorded only when the wheel moves (i.e., when the encoder generates TTL edges), resulting in irregular inter-sample intervals. The encoder uses X4 decoding of two 90-degree phase-shifted channels, providing 4096 effective counts per revolution (angular resolution ~0.088 degrees or 2*pi/4096 radians). Position is NOT periodic: values grow unboundedly as the wheel rotates, accumulating across multiple full revolutions (e.g., 3 full turns clockwise = -6*pi radians). The position is never wrapped back to [0, 2*pi]. Sign convention follows mathematical standard: counter-clockwise rotation (from the subject's perspective) is positive.
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)7366260
Compression ratio2.395870903280634
timestamps
HDF5 dataset
Data typefloat64
Shape(2206076,)
Array size16.83 MiB
Chunk shape(1250000,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)17648608
Compressed size (bytes)12053219
Compression ratio1.4642236235813852
timestamps_unit: seconds
interval: 1
reference_frame: Initial angle at session start is defined as zero. Counter-clockwise is positive.

Loading Pose Estimation Data¶

In [42]:
pose_estimation_module = nwbfile_processed.processing["pose_estimation"]
pose_estimation_module
Out[42]:

pose_estimation (ProcessingModule)

description: Pose estimation from video using Lightning Pose.
LeftCamera (PoseEstimation)
PoseEstimationSeriesLeftPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2260409
Compression ratio2.278886697053498
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesLeftTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)223870
Compression ratio23.009853933086166
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesNoseTip (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesNoseTip'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2528216
Compression ratio2.0374904675866303
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
timestamp_link
0 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2260409
Compression ratio2.278886697053498
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
1 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)223870
Compression ratio23.009853933086166
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
2 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2161629
Compression ratio2.3830250241831505
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
3 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4381698
Compression ratio1.1756209579026213
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
4 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4380152
Compression ratio1.176035900124014
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
5 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4378088
Compression ratio1.1765903289289754
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
6 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4433984
Compression ratio1.161757913425037
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
7 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)226410
Compression ratio22.751715913608056
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
8 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2199970
Compression ratio2.3414937476420135
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
9 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2239492
Compression ratio2.3001716460697335
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2161629
Compression ratio2.3830250241831505
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4381698
Compression ratio1.1756209579026213
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilLeft (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4380152
Compression ratio1.176035900124014
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilRight (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4378088
Compression ratio1.1765903289289754
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4433984
Compression ratio1.161757913425037
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)226410
Compression ratio22.751715913608056
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2199970
Compression ratio2.3414937476420135
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2239492
Compression ratio2.3001716460697335
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
description: Estimated positions of body parts using Lightning Pose.
source_software: Lightning Pose
skeleton (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
RightCamera (PoseEstimation)
PoseEstimationSeriesLeftPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)2327239
Compression ratio5.54210031715694
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesLeftTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)426927
Compression ratio30.210766711873458
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesNoseTip (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesNoseTip'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5888418
Compression ratio2.1903662409835714
timestamps
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
timestamp_link
0 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)2327239
Compression ratio5.54210031715694
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
1 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)426927
Compression ratio30.210766711873458
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
2 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5444531
Compression ratio2.3689445426979843
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
3 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10758534
Compression ratio1.198842890676369
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
4 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10762599
Compression ratio1.198390091463967
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
5 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10784081
Compression ratio1.1960028861059184
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
6 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10782972
Compression ratio1.196125891822774
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
7 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)454491
Compression ratio28.378542149349492
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
8 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5267188
Compression ratio2.448705457257269
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
9 (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)1453269
Compression ratio8.87502038507668
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5444531
Compression ratio2.3689445426979843
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10758534
Compression ratio1.198842890676369
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilLeft (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10762599
Compression ratio1.198390091463967
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilRight (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10784081
Compression ratio1.1960028861059184
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightPupilTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)10782972
Compression ratio1.196125891822774
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesRightTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)454491
Compression ratio28.378542149349492
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesTubeBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)5267188
Compression ratio2.448705457257269
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
PoseEstimationSeriesTubeTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(806112, 2)
Array size12.30 MiB
Chunk shape(403056, 1)
Compressiongzip
Compression opts4
Uncompressed size (bytes)12897792
Compressed size (bytes)1453269
Compression ratio8.87502038507668
timestamps (link to processing/pose_estimation/RightCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(806112,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)6448896
Compressed size (bytes)4691942
Compression ratio1.3744620031534918
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(806112,)
Array size6.15 MiB
Chunk shape(3149,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)6448896
Compressed size (bytes)6449152
Compression ratio0.9999603048586853
description: Estimated positions of body parts using Lightning Pose.
source_software: Lightning Pose
skeleton (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
Skeletons (Skeletons)
LeftCamera (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
RightCamera (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]
In [43]:
left_camera = pose_estimation_module["LeftCamera"]
left_camera
Out[43]:

LeftCamera (PoseEstimation)

pose_estimation_series
PoseEstimationSeriesLeftPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2260409
Compression ratio2.278886697053498
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesLeftTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesLeftTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)223870
Compression ratio23.009853933086166
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesNoseTip (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesNoseTip'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2528216
Compression ratio2.0374904675866303
timestamps
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
timestamp_link
0: processing/pose_estimation/LeftCamera/PoseEstimationSeriesLeftPaw/timestamps
1: processing/pose_estimation/LeftCamera/PoseEstimationSeriesLeftTongueEnd/timestamps
2: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightPaw/timestamps
3: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightPupilBottom/timestamps
4: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightPupilLeft/timestamps
5: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightPupilRight/timestamps
6: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightPupilTop/timestamps
7: processing/pose_estimation/LeftCamera/PoseEstimationSeriesRightTongueEnd/timestamps
8: processing/pose_estimation/LeftCamera/PoseEstimationSeriesTubeBottom/timestamps
9: processing/pose_estimation/LeftCamera/PoseEstimationSeriesTubeTop/timestamps
PoseEstimationSeriesRightPaw (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPaw'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2161629
Compression ratio2.3830250241831505
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4381698
Compression ratio1.1756209579026213
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilLeft (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilLeft'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4380152
Compression ratio1.176035900124014
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilRight (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilRight'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4378088
Compression ratio1.1765903289289754
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightPupilTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightPupilTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)4433984
Compression ratio1.161757913425037
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesRightTongueEnd (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesRightTongueEnd'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)226410
Compression ratio22.751715913608056
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeBottom (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeBottom'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2199970
Compression ratio2.3414937476420135
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
PoseEstimationSeriesTubeTop (PoseEstimationSeries)
resolution: -1.0
comments: no comments
description: Marker placed on or around, labeled 'PoseEstimationSeriesTubeTop'.
conversion: 1.0
offset: 0.0
unit: px
data
HDF5 dataset
Data typefloat64
Shape(321951, 2)
Array size4.91 MiB
Chunk shape(321950, 2)
Compressiongzip
Compression opts4
Uncompressed size (bytes)5151216
Compressed size (bytes)2239492
Compression ratio2.3001716460697335
timestamps (link to processing/pose_estimation/LeftCamera/PoseEstimationSeriesNoseTip/timestamps)
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(321951,)
Compressiongzip
Compression opts4
Uncompressed size (bytes)2575608
Compressed size (bytes)1898451
Compression ratio1.3566892166297682
timestamps_unit: seconds
interval: 1
reference_frame: (0,0) corresponds to the upper left corner when using width by height convention.
confidence
HDF5 dataset
Data typefloat64
Shape(321951,)
Array size2.46 MiB
Chunk shape(2516,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)2575608
Compressed size (bytes)2576384
Compression ratio0.9996988026629571
description: Estimated positions of body parts using Lightning Pose.
source_software: Lightning Pose
skeleton (Skeleton)
nodes
HDF5 dataset
Data typeobject
Shape(11,)
Array size88.00 bytes
Chunk shape(11,)
CompressionNone
Compression optsNone
Uncompressed size (bytes)88
Compressed size (bytes)176
Compression ratio0.5

['PoseEstimationSeriesNoseTip' 'PoseEstimationSeriesLeftPaw' 'PoseEstimationSeriesRightPaw' 'PoseEstimationSeriesRightPupilBottom' 'PoseEstimationSeriesRightPupilLeft' 'PoseEstimationSeriesRightPupilRight' 'PoseEstimationSeriesRightPupilTop' 'PoseEstimationSeriesLeftTongueEnd' 'PoseEstimationSeriesRightTongueEnd' 'PoseEstimationSeriesTubeBottom' 'PoseEstimationSeriesTubeTop']
edges
HDF5 dataset
Data typeuint8
Shape(0, 2)
Array size0.00 bytes
Chunk shape(1024, 2)
CompressionNone
Compression optsNone
Uncompressed size (bytes)0
Compressed size (bytes)0
Compression ratioundefined

[]

Overlay Pose on Video¶

This widget overlays DeepLabCut pose estimation keypoints on the streaming video using anywidget.

In [44]:
from nwb_video_widgets import NWBDANDIPoseEstimationWidget

NWBDANDIPoseEstimationWidget(
    asset=processed_asset,
    nwbfile=nwbfile_processed,
    video_asset=raw_asset,
    video_nwbfile=nwbfile_raw,

)

Loading Passive Data¶

In [45]:
passive_module = nwbfile_processed.processing["passive_protocol"]
passive_module
Out[45]:

passive_protocol (ProcessingModule)

description: Data from the IBL passive stimulus protocol, presented at the end of each recording session while the mouse is disengaged from the task. The protocol consists of three phases: (1) spontaneous activity with no stimuli, (2) receptive field mapping (RFM) using sparse noise visual stimuli, and (3) task replay presenting the same Gabor patches and auditory stimuli (valve, tone, noise) used during the active behavioral task. Data revision: 2025-12-04.
gabor_table (TimeIntervals)
description: Gabor patch presentations table. Data revision: 2025-12-04.
columns
start_time
The beginning of the stimulus.
stop_time
The end of the stimulus.
position
gabor patch position
contrast
gabor patch contrast
phase
gabor patch phase
table
start_time stop_time position contrast phase
id
0 5126.874515 5127.185221 -35.0 0.0625 3.124994
1 5129.124614 5129.435687 -35.0 1.0000 2.162905
2 5131.441141 5131.768878 35.0 1.0000 2.200607
3 5134.424608 5134.735413 35.0 0.0625 1.741850

... and 175 more row(s).

passive_intervals (TimeIntervals)
description: Detailed timing of passive protocol phases (spontaneous activity, RFM, task replay). Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_name
Name of the specific passive protocol phase
table
start_time stop_time protocol_name
id
0 4185.545797 4785.626265 spontaneousActivity
1 5111.224793 5478.753002 taskReplay
passive_task_replay (TimeIntervals)
description: Passive stimulation events including valve, tone, and noise stimuli. Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stim_type
Type of stimulation (valve, tone, or noise)
table
start_time stop_time stim_type
id
0 5125.087475 5125.587463 noise
1 5127.316809 5127.416800 tone
2 5130.037133 5130.137124 tone
3 5130.516457 5130.583451 valve

... and 116 more row(s).

In [46]:
gabor_table = passive_module["gabor_table"]
gabor_table
Out[46]:

gabor_table (TimeIntervals)

description: Gabor patch presentations table. Data revision: 2025-12-04.
columns
start_time
The beginning of the stimulus.
stop_time
The end of the stimulus.
position
gabor patch position
contrast
gabor patch contrast
phase
gabor patch phase
table
start_time stop_time position contrast phase
id
0 5126.874515 5127.185221 -35.0 0.0625 3.124994
1 5129.124614 5129.435687 -35.0 1.0000 2.162905
2 5131.441141 5131.768878 35.0 1.0000 2.200607
3 5134.424608 5134.735413 35.0 0.0625 1.741850

... and 175 more row(s).

In [47]:
passive_intervals = passive_module["passive_intervals"]
passive_intervals
Out[47]:

passive_intervals (TimeIntervals)

description: Detailed timing of passive protocol phases (spontaneous activity, RFM, task replay). Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
protocol_name
Name of the specific passive protocol phase
table
start_time stop_time protocol_name
id
0 4185.545797 4785.626265 spontaneousActivity
1 5111.224793 5478.753002 taskReplay
In [48]:
passive_task_replay = passive_module["passive_task_replay"]
passive_task_replay
Out[48]:

passive_task_replay (TimeIntervals)

description: Passive stimulation events including valve, tone, and noise stimuli. Data revision: 2025-12-04.
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stim_type
Type of stimulation (valve, tone, or noise)
table
start_time stop_time stim_type
id
0 5125.087475 5125.587463 noise
1 5127.316809 5127.416800 tone
2 5130.037133 5130.137124 tone
3 5130.516457 5130.583451 valve

... and 116 more row(s).

Trial-Aligned Behavioral Data¶

In [49]:
# Trial-aligned left paw speed with correct/incorrect trial separation
import pynapple as nap

# Load with pynapple from memory
data = nap.NWBFile(nwbfile_processed)

# Get trials dataframe for metadata
trials_df = nwbfile_processed.trials.to_dataframe()

# Masks for correct/incorrect
correct_mask = trials_df['is_mouse_rewarded'].values

# Get left paw position and compute speed using pynapple's derivative
left_paw = data['LeftCamera/PoseEstimationSeriesLeftPaw']
velocity = left_paw.derivative()
speed_values = np.sqrt(velocity.values[:, 0]**2 + velocity.values[:, 1]**2)
speed = nap.Tsd(t=velocity.t, d=speed_values)

# Interpolate to regular grid (required by pynapple's compute_perievent)
rate = 1.0 / np.median(np.diff(speed.t))
n_points = int(((speed.t[-1] - speed.t[0]) * rate)) + 1
regular_t = nap.Ts(t=np.linspace(speed.t[0], speed.t[-1], n_points))
speed = speed.interpolate(regular_t)

# Create Ts objects for stimulus onset times
stim_times = nap.Ts(t=trials_df['gabor_stimulus_onset_time'].values)
correct_stim_times = nap.Ts(t=trials_df.loc[correct_mask, 'gabor_stimulus_onset_time'].values)
incorrect_stim_times = nap.Ts(t=trials_df.loc[~correct_mask, 'gabor_stimulus_onset_time'].values)

# Use pynapple's compute_perievent to align speed around stimulus onset
minmax = (-0.5, 1.0)  # 0.5s before to 1s after stimulus

perievent_all = nap.compute_perievent(speed, stim_times, window=minmax)
perievent_correct = nap.compute_perievent(speed, correct_stim_times, window=minmax)
perievent_incorrect = nap.compute_perievent(speed, incorrect_stim_times, window=minmax)

# Compute mean and SEM
correct_mean = np.nanmean(perievent_correct.values, axis=1)
correct_sem = np.nanstd(perievent_correct.values, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_correct.values), axis=1))
incorrect_mean = np.nanmean(perievent_incorrect.values, axis=1)
incorrect_sem = np.nanstd(perievent_incorrect.values, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_incorrect.values), axis=1))

time = perievent_correct.t

# Sort trials by outcome for raster
sorted_indices = np.argsort(correct_mask)
perievent_sorted = perievent_all.values[:, sorted_indices]

# Create figure
fig, axes = plt.subplots(2, 1, figsize=(4, 8), gridspec_kw={'height_ratios': [1, 3]}, sharex=True)

ax_avg = axes[0]
ax_avg.plot(time, correct_mean, color='blue', linewidth=1.5, label='Correct')
ax_avg.fill_between(time, correct_mean - correct_sem, correct_mean + correct_sem, color='blue', alpha=0.3)
ax_avg.plot(time, incorrect_mean, color='red', linewidth=1.5, label='Incorrect')
ax_avg.fill_between(time, incorrect_mean - incorrect_sem, incorrect_mean + incorrect_sem, color='red', alpha=0.3)
ax_avg.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_avg.set_ylabel('Speed (px/s)')
ax_avg.set_title('Left paw speed', fontsize=12, fontweight='bold', loc='center')
ax_avg.legend(loc='upper left', fontsize=8, framealpha=0.9)

ax_raster = axes[1]
n_trials = perievent_sorted.shape[1]
n_incorrect = (~correct_mask).sum()
n_correct = correct_mask.sum()

im = ax_raster.imshow(perievent_sorted.T, aspect='auto', cmap='gray_r',
                       extent=[time[0], time[-1], 0, n_trials],
                       vmin=0, vmax=np.nanpercentile(perievent_sorted, 95),
                       origin='lower')

# Side color bar
bar_width = 0.05
ax_bar = ax_raster.inset_axes([1.02, 0, bar_width, 1])
ax_bar.axhspan(0, n_incorrect / n_trials, color='red', alpha=0.8)
ax_bar.axhspan(n_incorrect / n_trials, 1, color='blue', alpha=0.8)
ax_bar.set_xlim(0, 1)
ax_bar.set_ylim(0, 1)
ax_bar.axis('off')
ax_bar.text(1.5, (n_incorrect / n_trials) / 2, 'incorrect', rotation=90, va='center', ha='left', fontsize=9, color='red', fontweight='bold')
ax_bar.text(1.5, n_incorrect / n_trials + (n_correct / n_trials) / 2, 'correct', rotation=90, va='center', ha='left', fontsize=9, color='blue', fontweight='bold')

ax_raster.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_raster.set_ylabel('Sorted Trial Number')
ax_raster.set_xlabel('T from Stim On (s)')

plt.tight_layout()
plt.show()
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/time_index.py:151: UserWarning: timestamps are not sorted
  warn("timestamps are not sorted", UserWarning)
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/base_class.py:56: UserWarning: 1 row(s) with NaN start/end time(s) were dropped.
  self.time_support = IntervalSet(start=self.index[0], end=self.index[-1])
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/base_class.py:58: RuntimeWarning: divide by zero encountered in scalar divide
  self.rate = self.index.shape[0] / np.sum(
No description has been provided for this image
In [50]:
# Trial-aligned pupil diameter (z-scored) with correct/incorrect trial separation

# Get smoothed pupil diameter
pupil = data['LeftPupilDiameterSmoothed']

# Interpolate to regular grid (required by pynapple's compute_perievent)
rate = 1.0 / np.median(np.diff(pupil.t))
n_points = int(((pupil.t[-1] - pupil.t[0]) * rate)) + 1
regular_t = nap.Ts(t=np.linspace(pupil.t[0], pupil.t[-1], n_points))
pupil = pupil.interpolate(regular_t)

# Create Ts objects for stimulus onset times
stim_times = nap.Ts(t=trials_df['gabor_stimulus_onset_time'].values)
correct_stim_times = nap.Ts(t=trials_df.loc[correct_mask, 'gabor_stimulus_onset_time'].values)
incorrect_stim_times = nap.Ts(t=trials_df.loc[~correct_mask, 'gabor_stimulus_onset_time'].values)

minmax = (-0.5, 1.0)

perievent_all = nap.compute_perievent(pupil, stim_times, window=minmax)
perievent_correct = nap.compute_perievent(pupil, correct_stim_times, window=minmax)
perievent_incorrect = nap.compute_perievent(pupil, incorrect_stim_times, window=minmax)

# Z-score the data for visualization
all_values = perievent_all.values.flatten()
all_values = all_values[~np.isnan(all_values)]
mean_val = np.mean(all_values)
std_val = np.std(all_values)

perievent_all_z = (perievent_all.values - mean_val) / std_val
perievent_correct_z = (perievent_correct.values - mean_val) / std_val
perievent_incorrect_z = (perievent_incorrect.values - mean_val) / std_val

# Compute mean and SEM
correct_mean = np.nanmean(perievent_correct_z, axis=1)
correct_sem = np.nanstd(perievent_correct_z, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_correct_z), axis=1))
incorrect_mean = np.nanmean(perievent_incorrect_z, axis=1)
incorrect_sem = np.nanstd(perievent_incorrect_z, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_incorrect_z), axis=1))

time = perievent_correct.t

# Sort trials by outcome for raster
sorted_indices = np.argsort(correct_mask)
perievent_sorted = perievent_all_z[:, sorted_indices]

# Create figure
fig, axes = plt.subplots(2, 1, figsize=(4, 8), gridspec_kw={'height_ratios': [1, 3]}, sharex=True)

ax_avg = axes[0]
ax_avg.plot(time, correct_mean, color='blue', linewidth=1.5, label='Correct')
ax_avg.fill_between(time, correct_mean - correct_sem, correct_mean + correct_sem, color='blue', alpha=0.3)
ax_avg.plot(time, incorrect_mean, color='red', linewidth=1.5, label='Incorrect')
ax_avg.fill_between(time, incorrect_mean - incorrect_sem, incorrect_mean + incorrect_sem, color='red', alpha=0.3)
ax_avg.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_avg.set_ylabel('Pupil (z-score)')
ax_avg.set_title('Pupil diameter', fontsize=12, fontweight='bold', loc='center')
ax_avg.legend(loc='upper left', fontsize=8, framealpha=0.9)

ax_raster = axes[1]
n_trials = perievent_sorted.shape[1]
n_incorrect = (~correct_mask).sum()
n_correct = correct_mask.sum()

im = ax_raster.imshow(perievent_sorted.T, aspect='auto', cmap='gray_r',
                       extent=[time[0], time[-1], 0, n_trials],
                       vmin=np.nanpercentile(perievent_sorted, 5),
                       vmax=np.nanpercentile(perievent_sorted, 95),
                       origin='lower')

# Side color bar
bar_width = 0.05
ax_bar = ax_raster.inset_axes([1.02, 0, bar_width, 1])
ax_bar.axhspan(0, n_incorrect / n_trials, color='red', alpha=0.8)
ax_bar.axhspan(n_incorrect / n_trials, 1, color='blue', alpha=0.8)
ax_bar.set_xlim(0, 1)
ax_bar.set_ylim(0, 1)
ax_bar.axis('off')
ax_bar.text(1.5, (n_incorrect / n_trials) / 2, 'incorrect', rotation=90, va='center', ha='left', fontsize=9, color='red', fontweight='bold')
ax_bar.text(1.5, n_incorrect / n_trials + (n_correct / n_trials) / 2, 'correct', rotation=90, va='center', ha='left', fontsize=9, color='blue', fontweight='bold')

ax_raster.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_raster.set_ylabel('Sorted Trial Number')
ax_raster.set_xlabel('T from Stim On (s)')

plt.tight_layout()
plt.show()
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/time_index.py:151: UserWarning: timestamps are not sorted
  warn("timestamps are not sorted", UserWarning)
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/base_class.py:56: UserWarning: 1 row(s) with NaN start/end time(s) were dropped.
  self.time_support = IntervalSet(start=self.index[0], end=self.index[-1])
/opt/hostedtoolcache/Python/3.13.15/x64/lib/python3.13/site-packages/pynapple/core/base_class.py:58: RuntimeWarning: divide by zero encountered in scalar divide
  self.rate = self.index.shape[0] / np.sum(
No description has been provided for this image
In [51]:
# Trial-aligned wheel velocity sorted by choice (left/right), aligned to first movement onset

# Masks for left/right choices
left_choice_mask = trials_df['mouse_wheel_choice'].values == 'counter_clockwise'
right_choice_mask = trials_df['mouse_wheel_choice'].values == 'clockwise'

# Get wheel velocity (in rad/s)
wheel_velocity = data['WheelVelocitySmoothed']

# Interpolate to regular grid (required by pynapple's compute_perievent)
rate = 1.0 / np.median(np.diff(wheel_velocity.t))
n_points = int(((wheel_velocity.t[-1] - wheel_velocity.t[0]) * rate)) + 1
regular_t = nap.Ts(t=np.linspace(wheel_velocity.t[0], wheel_velocity.t[-1], n_points))
wheel_velocity = wheel_velocity.interpolate(regular_t)

# Create Ts objects for first movement times, separated by choice (filter NaN)
# Restrict to wheel_velocity's time_support so perievent alignment works
ep = wheel_velocity.time_support
all_move = trials_df['wheel_movement_onset_time'].dropna().values
left_move = trials_df.loc[left_choice_mask, 'wheel_movement_onset_time'].dropna().values
right_move = trials_df.loc[right_choice_mask, 'wheel_movement_onset_time'].dropna().values
movement_times = nap.Ts(t=all_move, time_support=ep)
left_movement_times = nap.Ts(t=left_move, time_support=ep)
right_movement_times = nap.Ts(t=right_move, time_support=ep)

minmax = (-0.5, 1.0)

perievent_all = nap.compute_perievent(wheel_velocity, movement_times, window=minmax)
perievent_left = nap.compute_perievent(wheel_velocity, left_movement_times, window=minmax)
perievent_right = nap.compute_perievent(wheel_velocity, right_movement_times, window=minmax)

# Compute mean and SEM
left_mean = np.nanmean(perievent_left.values, axis=1)
left_sem = np.nanstd(perievent_left.values, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_left.values), axis=1))
right_mean = np.nanmean(perievent_right.values, axis=1)
right_sem = np.nanstd(perievent_right.values, axis=1) / np.sqrt(np.sum(~np.isnan(perievent_right.values), axis=1))

time = perievent_left.t

# Sort trials by choice for raster (left first, then right)
sorted_indices = np.argsort(right_choice_mask)  # False (left) first, then True (right)
perievent_sorted = perievent_all.values[:, sorted_indices]

# Create figure
fig, axes = plt.subplots(2, 1, figsize=(4, 8), gridspec_kw={'height_ratios': [1, 3]}, sharex=True)

ax_avg = axes[0]
ax_avg.plot(time, left_mean, color='green', linewidth=1.5, label='CCW (left)')
ax_avg.fill_between(time, left_mean - left_sem, left_mean + left_sem, color='green', alpha=0.3)
ax_avg.plot(time, right_mean, color='olive', linewidth=1.5, label='CW (right)')
ax_avg.fill_between(time, right_mean - right_sem, right_mean + right_sem, color='olive', alpha=0.3)
ax_avg.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_avg.axhline(0, color='gray', linestyle='-', linewidth=0.5)
ax_avg.set_ylabel('Velocity (rad/s)')
ax_avg.set_title('Wheel velocity', fontsize=12, fontweight='bold', loc='center')
ax_avg.legend(loc='upper left', fontsize=8, framealpha=0.9)

ax_raster = axes[1]
n_trials = perievent_sorted.shape[1]
n_left = left_choice_mask.sum()
n_right = right_choice_mask.sum()

im = ax_raster.imshow(perievent_sorted.T, aspect='auto', cmap='gray_r',
                       extent=[time[0], time[-1], 0, n_trials],
                       vmin=np.nanpercentile(perievent_sorted, 5),
                       vmax=np.nanpercentile(perievent_sorted, 95),
                       origin='lower')

# Side color bar for left/right choice
bar_width = 0.05
ax_bar = ax_raster.inset_axes([1.02, 0, bar_width, 1])
ax_bar.axhspan(0, n_left / n_trials, color='green', alpha=0.8)
ax_bar.axhspan(n_left / n_trials, 1, color='olive', alpha=0.8)
ax_bar.set_xlim(0, 1)
ax_bar.set_ylim(0, 1)
ax_bar.axis('off')
ax_bar.text(1.5, (n_left / n_trials) / 2, 'CCW', rotation=90, va='center', ha='left', fontsize=9, color='green', fontweight='bold')
ax_bar.text(1.5, n_left / n_trials + (n_right / n_trials) / 2, 'CW', rotation=90, va='center', ha='left', fontsize=9, color='olive', fontweight='bold')

ax_raster.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_raster.set_ylabel('Sorted Trial Number')
ax_raster.set_xlabel('T from First Move (s)')

plt.tight_layout()
plt.show()
No description has been provided for this image
In [52]:
# Trial-aligned lick counts with correct/incorrect trial separation, aligned to feedback time

# Get lick timestamps from processing module
lick_events = nwbfile_processed.processing['lick_times']['EventsLickTimes']
lick_times = nap.Ts(t=lick_events.timestamps[:])

# Create Ts objects for feedback times
feedback_times = nap.Ts(t=trials_df['feedback_time'].values)
correct_feedback_times = nap.Ts(t=trials_df.loc[correct_mask, 'feedback_time'].values)
incorrect_feedback_times = nap.Ts(t=trials_df.loc[~correct_mask, 'feedback_time'].values)

minmax = (-0.5, 1.0)
bin_size = 0.02  # 20ms bins for counting

# Use compute_perievent to align lick timestamps around feedback
perievent_licks = nap.compute_perievent(lick_times, feedback_times, window=minmax)

# For the average trace, we need to count licks in bins
perievent_correct_licks = nap.compute_perievent(lick_times, correct_feedback_times, window=minmax)
perievent_incorrect_licks = nap.compute_perievent(lick_times, incorrect_feedback_times, window=minmax)

# Count licks in bins for average traces
correct_counts = perievent_correct_licks.count(bin_size)
incorrect_counts = perievent_incorrect_licks.count(bin_size)

# Mean across trials (columns are trials in the TsGroup)
correct_mean = np.nanmean(correct_counts.values, axis=1)
correct_sem = np.nanstd(correct_counts.values, axis=1) / np.sqrt(correct_counts.shape[1])
incorrect_mean = np.nanmean(incorrect_counts.values, axis=1)
incorrect_sem = np.nanstd(incorrect_counts.values, axis=1) / np.sqrt(incorrect_counts.shape[1])

time_counts = correct_counts.t

# Sort trials by outcome
sorted_trial_indices = np.argsort(correct_mask)

# Create figure
fig, axes = plt.subplots(2, 1, figsize=(4, 8), gridspec_kw={'height_ratios': [1, 3]}, sharex=True)

ax_avg = axes[0]
ax_avg.plot(time_counts, correct_mean, color='blue', linewidth=1.5, label='Correct')
ax_avg.fill_between(time_counts, correct_mean - correct_sem, correct_mean + correct_sem, color='blue', alpha=0.3)
ax_avg.plot(time_counts, incorrect_mean, color='red', linewidth=1.5, label='Incorrect')
ax_avg.fill_between(time_counts, incorrect_mean - incorrect_sem, incorrect_mean + incorrect_sem, color='red', alpha=0.3)
ax_avg.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_avg.set_ylabel('Licks (count)')
ax_avg.set_title('Licks', fontsize=12, fontweight='bold', loc='center')
ax_avg.legend(loc='upper left', fontsize=8, framealpha=0.9)

# Raster plot - plot individual lick events
ax_raster = axes[1]

# Plot licks as scatter points for each trial
n_trials = len(trials_df)
n_incorrect = (~correct_mask).sum()
n_correct = correct_mask.sum()

# Get lick times for each trial and plot as raster
for i, sorted_index in enumerate(sorted_trial_indices):
    if sorted_index in perievent_licks.keys():
        trial_licks = perievent_licks[sorted_index]
        if len(trial_licks) > 0:
            ax_raster.scatter(trial_licks.t, np.full(len(trial_licks), i),
                            c='black', s=1, marker='|', linewidths=0.5)

# Side color bar
bar_width = 0.05
ax_bar = ax_raster.inset_axes([1.02, 0, bar_width, 1])
ax_bar.axhspan(0, n_incorrect / n_trials, color='red', alpha=0.8)
ax_bar.axhspan(n_incorrect / n_trials, 1, color='blue', alpha=0.8)
ax_bar.set_xlim(0, 1)
ax_bar.set_ylim(0, 1)
ax_bar.axis('off')
ax_bar.text(1.5, (n_incorrect / n_trials) / 2, 'incorrect', rotation=90, va='center', ha='left', fontsize=9, color='red', fontweight='bold')
ax_bar.text(1.5, n_incorrect / n_trials + (n_correct / n_trials) / 2, 'correct', rotation=90, va='center', ha='left', fontsize=9, color='blue', fontweight='bold')

ax_raster.axvline(0, color='black', linestyle='--', linewidth=0.8)
ax_raster.set_ylabel('Sorted Trial Number')
ax_raster.set_xlabel('T from Feedback (s)')
ax_raster.set_xlim(minmax[0], minmax[1])
ax_raster.set_ylim(0, n_trials)

plt.tight_layout()
plt.show()
No description has been provided for this image
In [ ]: