From d0b5b42d4ebc8c5b494c6cd57742bcd6703fb87c Mon Sep 17 00:00:00 2001 From: Heberto Mayorquin Date: Tue, 24 Mar 2026 16:58:43 -0600 Subject: [PATCH] Imro string parsing single source of truth --- .github/workflows/copy_probe_features.yml | 3 + .../postprocess_neuropixels_probe_features.py | 131 + src/probeinterface/neuropixels_tools.py | 138 +- .../resources/neuropixels_probe_features.json | 4676 +++++++++-------- 4 files changed, 2554 insertions(+), 2394 deletions(-) create mode 100644 resources/postprocess_neuropixels_probe_features.py diff --git a/.github/workflows/copy_probe_features.yml b/.github/workflows/copy_probe_features.yml index 3970ddde..7f812a59 100644 --- a/.github/workflows/copy_probe_features.yml +++ b/.github/workflows/copy_probe_features.yml @@ -19,6 +19,9 @@ jobs: curl -o src/probeinterface/resources/neuropixels_probe_features.json \ https://raw.githubusercontent.com/billkarsh/ProbeTable/refs/heads/main/Tables/probe_features.json + - name: Derive IMRO type mappings from catalogue + run: python resources/postprocess_neuropixels_probe_features.py + - name: Commit changes if any id: commit run: | diff --git a/resources/postprocess_neuropixels_probe_features.py b/resources/postprocess_neuropixels_probe_features.py new file mode 100644 index 00000000..f3b6eeeb --- /dev/null +++ b/resources/postprocess_neuropixels_probe_features.py @@ -0,0 +1,131 @@ +""" +Post-process neuropixels_probe_features.json after syncing from ProbeTable. + +Derives two mappings from the catalogue and writes them back into the JSON: + +- z_imro_format_type_to_imro_format: IMRO type code -> IMRO format name + (e.g. "0" -> "imro_np1000", "1110" -> "imro_np1110") + +- z_imro_format_type_to_part_number: IMRO type code -> canonical probe part number + (e.g. "0" -> "NP1000", "1110" -> "NP1110") + +This script is called by the GitHub Action workflow that syncs probe_features.json +from billkarsh/ProbeTable, and can also be run standalone. +""" + +import json +import re +from pathlib import Path + +PROBE_FEATURES_PATH = ( + Path(__file__).absolute().parent + / "../src/probeinterface/resources/neuropixels_probe_features.json" +) + + +def _parse_type_values_from_val_def(val_def: str) -> list[str]: + """Extract IMRO type code(s) from a val_def string. + + Two patterns in ProbeTable: + type:{0,1020,1030,...} -> set of values + type:1110 -> single value + """ + match = re.match(r"type:\{([^}]+)\}", val_def) + if match: + return [v.strip() for v in match.group(1).split(",")] + + match = re.match(r"type:(\d+)", val_def) + if match: + return [match.group(1)] + + raise ValueError(f"Cannot parse type from val_def: {val_def!r}") + + +def build_derived_mappings(probe_features: dict) -> tuple[dict, dict]: + """Build type-to-format and type-to-part-number mappings from the catalogue.""" + + imro_formats = probe_features["z_imro_formats"] + probes = probe_features["neuropixels_probes"] + + # 1. Build type -> format mapping from val_def entries + type_to_format = {} + for key, val_def in imro_formats.items(): + if not key.endswith("_val_def"): + continue + # e.g. "imro_np1000_val_def" -> "imro_np1000" + format_name = key.removesuffix("_val_def") + for type_code in _parse_type_values_from_val_def(val_def): + if type_code in type_to_format: + raise ValueError( + f"IMRO type {type_code!r} maps to both " + f"{type_to_format[type_code]!r} and {format_name!r}" + ) + type_to_format[type_code] = format_name + + # 2. Build type -> canonical part number mapping + # For each type, find probes that use the matching format, then pick + # the first NP-prefixed part number alphabetically. + # + # We also need to verify the candidate actually belongs to this type, + # not just the same format. For example, NP1021 uses imro_np1000 format + # but its IMRO type is not "0". We filter by checking the format's + # val_def includes the type code we're resolving. + + # Invert: format -> set of type codes it covers + format_to_types = {} + for type_code, format_name in type_to_format.items(): + format_to_types.setdefault(format_name, set()).add(type_code) + + type_to_part_number = {} + for type_code, format_name in sorted(type_to_format.items()): + candidates = [ + pn + for pn, spec in probes.items() + if spec.get("imro_table_format_type") == format_name + ] + + # Prefer a probe whose part number contains the type code (e.g. NP1020 for type "1020"). + # This matters because many probes share the same IMRO format but have different + # physical geometries (e.g. NP1000 has 960 contacts, NP1020 has 2496). + exact_matches = sorted( + pn for pn in candidates if pn.startswith("NP") and type_code in pn + ) + if exact_matches: + type_to_part_number[type_code] = exact_matches[0] + continue + + # Fall back to first NP-prefixed name alphabetically + np_candidates = sorted(pn for pn in candidates if pn.startswith("NP")) + other_candidates = sorted(pn for pn in candidates if not pn.startswith("NP")) + ordered = np_candidates + other_candidates + + if ordered: + type_to_part_number[type_code] = ordered[0] + + return type_to_format, type_to_part_number + + +def postprocess(filepath: Path = PROBE_FEATURES_PATH) -> None: + filepath = filepath.resolve() + with open(filepath) as f: + probe_features = json.load(f) + + type_to_format, type_to_part_number = build_derived_mappings(probe_features) + + probe_features["z_imro_format_type_to_imro_format"] = dict(sorted(type_to_format.items(), key=lambda kv: int(kv[0]))) + probe_features["z_imro_format_type_to_part_number"] = dict(sorted(type_to_part_number.items(), key=lambda kv: int(kv[0]))) + + with open(filepath, "w") as f: + json.dump(probe_features, f, indent=4) + f.write("\n") + + print(f"Wrote derived mappings to {filepath}") + print(f" z_imro_format_type_to_imro_format: {len(type_to_format)} entries") + print(f" z_imro_format_type_to_part_number: {len(type_to_part_number)} entries") + for type_code in sorted(type_to_format, key=int): + pn = type_to_part_number.get(type_code, "???") + print(f" type {type_code:>5s} -> format={type_to_format[type_code]}, part_number={pn}") + + +if __name__ == "__main__": + postprocess() diff --git a/src/probeinterface/neuropixels_tools.py b/src/probeinterface/neuropixels_tools.py index 3e9e513d..a9450bcc 100644 --- a/src/probeinterface/neuropixels_tools.py +++ b/src/probeinterface/neuropixels_tools.py @@ -24,45 +24,23 @@ # Utils zone # ############### -# Map imDatPrb_pn (probe number) to imDatPrb_type (probe type) when the latter is missing -# ONLY needed for `read_imro` function -probe_part_number_to_probe_type = { - # for old version without a probe number we assume NP1.0 - None: "0", - # NP1.0 - "PRB_1_4_0480_1": "0", - "PRB_1_4_0480_1_C": "0", # This is the metal cap version - "PRB_1_2_0480_2": "0", - "NP1010": "0", - # NHP probes lin - "NP1015": "1015", - "NP1016": "1015", - "NP1017": "1015", - # NHP probes stag med - "NP1020": "1020", - "NP1021": "1021", - "NP1022": "1022", - # NHP probes stag long - "NP1030": "1030", - "NP1031": "1031", - "NP1032": "1032", - # NP2.0 - "NP2000": "21", - "NP2010": "24", - "NP2013": "2013", - "NP2014": "2014", - "NP2003": "2003", - "NP2004": "2004", - "PRB2_1_2_0640_0": "21", - "PRB2_4_2_0640_0": "24", - # NXT - "NP2020": "2020", - # Ultra - "NP1100": "1100", # Ultra probe - 1 bank - "NP1110": "1110", # Ultra probe - 16 banks no handle because - "NP1121": "1121", # Ultra probe - beta configuration - # Opto - "NP1300": "1300", # Opto probe +# IMRO type codes not listed in any val_def entry in the ProbeTable catalogue. +# These probes all use the imro_np1000 or imro_np2003/imro_np2013 format, but their +# type codes are not in the corresponding val_def type sets. +# We don't know if SpikeGLX actually produces IMRO files with these type codes +# (there is no test data for them). They are kept here for backwards compatibility. +# Values are (imro_format_name, canonical_part_number). +# +# TODO: @team - Should these be added to ProbeTable's val_def, or can they be removed? +# If SpikeGLX never produces these type codes, this dict can be deleted entirely. +_imro_format_type_fallback = { + "1015": ("imro_np1000", "NP1015"), + "1021": ("imro_np1000", "NP1021"), + "1022": ("imro_np1000", "NP1022"), + "1031": ("imro_np1000", "NP1031"), + "1032": ("imro_np1000", "NP1032"), + "2004": ("imro_np2003", "NP2004"), + "2014": ("imro_np2013", "NP2014"), } # Map from imro format to ProbeInterface naming conventions @@ -439,24 +417,20 @@ def _annotate_probe_with_adc_sampling_info(probe: Probe, adc_sampling_table: str ######################### -def _parse_imro_string(imro_table_string: str, probe_part_number: str) -> dict: +def _parse_imro_string(imro_table_string: str) -> dict: """ Parse IMRO (Imec ReadOut) table string into structured per-channel data. IMRO format: "(probe_type,num_chans)(ch0 bank0 ref0 ...)(ch1 bank1 ref1 ...)..." Example: "(0,384)(0 1 0 500 250 1)(1 0 0 500 250 1)..." - Note: The IMRO header contains a probe_type field (e.g., "0", "21", "24"), which is - a numeric format version identifier that specifies which IMRO table structure was used. - Different probe generations use different IMRO formats. This is a file format detail, - not a physical probe property. + The IMRO type is extracted from the header and used to look up the field schema + from the catalogue (z_imro_format_type_to_imro_format). No probe part number is needed. Parameters ---------- imro_table_string : str IMRO table string from SpikeGLX metadata file - probe_part_number : str - Probe part number (e.g., "NP1000", "NP2000") Returns ------- @@ -473,22 +447,41 @@ def _parse_imro_string(imro_table_string: str, probe_part_number: str) -> dict: Example for NP1110: {"header": {"type": 1110, "col_mode": 2, "ref_id": 0, ...}, "group": [0,1,...], "bankA": [0,0,...], "bankB": [0,0,...]} # 24 entries, not 384 """ - # Get IMRO field format from catalogue + # Parse IMRO header and per-entry values + header_str, *imro_table_values_list, _ = imro_table_string.strip().split(")") + header_values = tuple(map(int, header_str[1:].split(","))) + + # Extract IMRO type from header. Phase3A probes have a 3-field header; all others + # have 2+ fields with type as the first. Phase3A is treated as type 0. + if len(header_values) == 3: + imro_format_type = "0" + else: + imro_format_type = str(header_values[0]) + + # Look up the IMRO format schema from the catalogue's derived mappings probe_features = _load_np_probe_features() - probe_spec = probe_features["neuropixels_probes"][probe_part_number] - imro_format = probe_spec["imro_table_format_type"] + type_to_format = probe_features["z_imro_format_type_to_imro_format"] + + if imro_format_type in type_to_format: + imro_format = type_to_format[imro_format_type] + elif imro_format_type in _imro_format_type_fallback: + imro_format = _imro_format_type_fallback[imro_format_type][0] + else: + valid_types = sorted(set(type_to_format) | set(_imro_format_type_fallback), key=int) + raise ValueError(f"Unknown IMRO type '{imro_format_type}'. Valid types: {valid_types}") + imro_fields_string = probe_features["z_imro_formats"][imro_format + "_elm_flds"] imro_fields = tuple(imro_fields_string.replace("(", "").replace(")", "").split(" ")) - # Parse IMRO header and per-entry values - header_str, *imro_table_values_list, _ = imro_table_string.strip().split(")") - # Parse header fields using the catalogue schema imro_header_fields_string = probe_features["z_imro_formats"][imro_format + "_hdr_flds"] imro_header_fields = tuple(imro_header_fields_string.replace("(", "").replace(")", "").split(",")) - header_values = tuple(map(int, header_str[1:].split(","))) - # Initialize with parsed header and empty lists for per-entry fields (filled below) + # Initialize with parsed header and empty lists for per-entry fields (filled below). + # For Phase3A (3-field header), zip silently drops the extra value, which is correct. imro_per_channel = {"header": dict(zip(imro_header_fields, header_values))} + # Normalize Phase3A header type to 0 so downstream code reads it consistently + if len(header_values) == 3: + imro_per_channel["header"]["type"] = 0 for field in imro_fields: imro_per_channel[field] = [] for field_values_str in imro_table_values_list: @@ -716,34 +709,27 @@ def read_imro(file_path: str | Path) -> Probe: https://billkarsh.github.io/SpikeGLX/help/imroTables/ """ - # ===== 1. Read file and determine probe part number from IMRO header ===== + # ===== 1. Read file ===== meta_file = Path(file_path) assert meta_file.suffix == ".imro", "'file' should point to the .imro file" with meta_file.open(mode="r") as f: imro_str = str(f.read()) - imro_table_header_str, *imro_table_values_list, _ = imro_str.strip().split(")") - imro_table_header = tuple(map(int, imro_table_header_str[1:].split(","))) + # ===== 2. Parse IMRO table (type is extracted from the header automatically) ===== + imro_per_channel = _parse_imro_string(imro_str) - if len(imro_table_header) == 3: - # In older versions of neuropixel arrays (phase 3A), imro tables were structured differently. - # We use probe_type "0", which maps to probe_part_number NP1010 as a proxy for Phase3a. - imDatPrb_type = "0" - elif len(imro_table_header) == 2: - imDatPrb_type, _ = imro_table_header + # ===== 3. Resolve probe part number and build full probe ===== + imro_format_type = str(imro_per_channel["header"]["type"]) + probe_features = _load_np_probe_features() + type_to_pn = probe_features["z_imro_format_type_to_part_number"] + if imro_format_type in type_to_pn: + probe_part_number = type_to_pn[imro_format_type] + elif imro_format_type in _imro_format_type_fallback: + probe_part_number = _imro_format_type_fallback[imro_format_type][1] else: - raise ValueError(f"read_imro error, the header has a strange length: {imro_table_header}") - imDatPrb_type = str(imDatPrb_type) - - for probe_part_number, probe_type in probe_part_number_to_probe_type.items(): - if imDatPrb_type == probe_type: - imDatPrb_pn = probe_part_number - - # ===== 2. Interpret IMRO table ===== - imro_per_channel = _parse_imro_string(imro_str, imDatPrb_pn) - - # ===== 3. Build full probe with all possible contacts ===== - full_probe = build_neuropixels_probe(probe_part_number=imDatPrb_pn) + valid_types = sorted(set(type_to_pn) | set(_imro_format_type_fallback), key=int) + raise ValueError(f"Unknown IMRO type '{imro_format_type}'. Valid types: {valid_types}") + full_probe = build_neuropixels_probe(probe_part_number=probe_part_number) # ===== 4. Slice full probe to active electrodes ===== active_contact_ids = _get_imro_active_contact_ids(imro_per_channel) @@ -820,7 +806,7 @@ def read_spikeglx(file: str | Path) -> Probe: # Specifies which electrodes were selected for recording (e.g., 384 of 960) plus their # acquisition settings (gains, references, filters). See: https://billkarsh.github.io/SpikeGLX/help/imroTables/ imro_table_string = meta["imroTbl"] - imro_per_channel = _parse_imro_string(imro_table_string, imDatPrb_pn) + imro_per_channel = _parse_imro_string(imro_table_string) # ===== 4. Slice full probe to active electrodes ===== active_contact_ids = _get_imro_active_contact_ids(imro_per_channel) diff --git a/src/probeinterface/resources/neuropixels_probe_features.json b/src/probeinterface/resources/neuropixels_probe_features.json index b6583ef3..764f5a69 100644 --- a/src/probeinterface/resources/neuropixels_probe_features.json +++ b/src/probeinterface/resources/neuropixels_probe_features.json @@ -1,2318 +1,2358 @@ -{ - "neuropixels_probes": { - "NP1000": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", - "description": "Neuropixels 1.0 probe", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1000", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1001": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", - "description": "Neuropixels 1.0 probe with cap", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1001", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1010": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NEUROPIXELS 1.0 NHP SHORT_v2_digital", - "description": "Neuropixels 1.0 NHP short staggered probe with cap", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1010", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1011": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1011", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1012": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, parylene coating", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1012", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1013": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, parylene coating, sterile packaging", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1013", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1014": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, sterile packaging ", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1014", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1015": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", - "description": "Neuropixels 1.0 NHP short linear probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "191", - "part_number": "NP1015", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1016": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 NHP short wired side_DATASHEET", - "description": "Neuropixels 1.0 NHP short linear probe with cap, cabling, sharpened, sterile packaging ", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "191", - "part_number": "NP1016", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1017": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2023 - NEUROPIXELS 1.0 NHP short-S_DATASHEET", - "description": "Neuropixels 1.0 NHP short linear probe with cap, cabling, sharpened, sterile packaging sterilized", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "191", - "part_number": "NP1017", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP1020": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "6.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", - "description": "Npix 1.0 NHP MEDIUM SOI35", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "87", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "2496", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1020", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "1248", - "shank_pitch_um": "0", - "shank_thickness_um": "42", - "shank_tip_to_base_um": "25000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "2496" - }, - "NP1021": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "6.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", - "description": "Npix 1.0 NHP MEDIUM SOI60", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "87", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "2496", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1021", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "1248", - "shank_pitch_um": "0", - "shank_thickness_um": "67", - "shank_tip_to_base_um": "25000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "2496" - }, - "NP1022": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "6.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", - "description": "Neuropixels 1.0 NHP medium linear probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "103", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "2496", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1022", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "1248", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "25000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "2496" - }, - "NP1030": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "11.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", - "description": "Npix 1.0 NHP LONG SOI90", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "87", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "4416", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1030", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "2208", - "shank_pitch_um": "0", - "shank_thickness_um": "97", - "shank_tip_to_base_um": "45000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "4416" - }, - "NP1031": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "11.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", - "description": "Npix 1.0 NHP LONG SOI125", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "87", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "4416", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1031", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "2208", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "45000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "4416" - }, - "NP1032": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "11.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", - "description": "Neuropixels 1.0 NHP long linear probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "103", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "4416", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1032", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "2208", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "45000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "4416" - }, - "NP1033": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "11.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "NA", - "description": "Neuropixels 1.0 NHP long linear probe with cap, cabling, sharpened, sterile packaging ", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "103", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "4416", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1033", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "2208", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "45000", - "shank_width_um": "125", - "tip_length_um": "373", - "total_electrodes": "4416" - }, - "NP1100": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "8", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Npix 1.0 UHD1 passive", - "electrode_layout_type": "8x48", - "electrode_pitch_horz_um": "6", - "electrode_pitch_vert_um": "6", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "5", - "electrode_size_vert_direction_um": "5", - "electrodes_per_shank": "384", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "14", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "14", - "on_shank_ref_chan": "-1", - "part_number": "NP1100", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "48", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206.5", - "total_electrodes": "384" - }, - "NP1110": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "16.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "UHD groups", - "channels_per_bank": "384", - "cols_per_shank": "8", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 HD_DATASHEET", - "description": "Npix 1.0 UHD2 active", - "electrode_layout_type": "8x768", - "electrode_pitch_horz_um": "6", - "electrode_pitch_vert_um": "6", - "electrode_select_api_type": "selectElectrodeGroup", - "electrode_size_horz_direction_um": "5", - "electrode_size_vert_direction_um": "5", - "electrodes_per_shank": "6144", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "15.5", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1110", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "15.5", - "on_shank_ref_chan": "-1", - "part_number": "NP1110", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "768", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "73", - "tip_length_um": "203.5", - "total_electrodes": "6144" - }, - "NP1120": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Npix 1.0 UHD3 type 1", - "electrode_layout_type": "2x192", - "electrode_pitch_horz_um": "4.5", - "electrode_pitch_vert_um": "4.5", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "3.5", - "electrode_size_vert_direction_um": "3.5", - "electrodes_per_shank": "384", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.75", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.75", - "on_shank_ref_chan": "-1", - "part_number": "NP1120", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "192", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "205.75", - "total_electrodes": "384" - }, - "NP1121": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "1", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Npix 1.0 UHD3 type 2", - "electrode_layout_type": "1x384", - "electrode_pitch_horz_um": "0", - "electrode_pitch_vert_um": "3", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "2.5", - "electrode_size_vert_direction_um": "2.5", - "electrodes_per_shank": "384", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.25", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.25", - "on_shank_ref_chan": "-1", - "part_number": "NP1121", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "384", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "205.25", - "total_electrodes": "384" - }, - "NP1122": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "16", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Npix 1.0 UHD3 type 3", - "electrode_layout_type": "16x24", - "electrode_pitch_horz_um": "3", - "electrode_pitch_vert_um": "3", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "2.5", - "electrode_size_vert_direction_um": "2.5", - "electrodes_per_shank": "384", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "12.5", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "12.5", - "on_shank_ref_chan": "-1", - "part_number": "NP1122", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "24", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "205.25", - "total_electrodes": "384" - }, - "NP1123": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "12", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Npix 1.0 UHD3 type 4", - "electrode_layout_type": "12x32", - "electrode_pitch_horz_um": "4.5", - "electrode_pitch_vert_um": "4.5", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "3.5", - "electrode_size_vert_direction_um": "3.5", - "electrodes_per_shank": "384", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "10.25", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "10.25", - "on_shank_ref_chan": "-1", - "part_number": "NP1123", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "32", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "205.75", - "total_electrodes": "384" - }, - "NP1200": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "128", - "cols_per_shank": "2", - "databus_decoder_type": "1.0 with channel reordering", - "datasheet": "N/A", - "description": "NHP passive probe 25mm, used with 128 ch headstage", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "31", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "128", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "56.5", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "N", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1200", - "num_readout_channels": "128", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "36.5", - "on_shank_ref_chan": "-1", - "part_number": "NP1200", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "64", - "shank_pitch_um": "0", - "shank_thickness_um": "67", - "shank_tip_to_base_um": "25000", - "shank_width_um": "125", - "tip_length_um": "372", - "total_electrodes": "128" - }, - "NP1210": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "128", - "cols_per_shank": "2", - "databus_decoder_type": "1.0 with channel reordering", - "datasheet": "N/A", - "description": "NHP passive probe 45mm, used with 128 ch headstage", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "31", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "128", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "56.5", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "N", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1200", - "num_readout_channels": "128", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "36.5", - "on_shank_ref_chan": "-1", - "part_number": "NP1210", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "64", - "shank_pitch_um": "0", - "shank_thickness_um": "132", - "shank_tip_to_base_um": "45000", - "shank_width_um": "125", - "tip_length_um": "372", - "total_electrodes": "128" - }, - "NP1300": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "74", - "blue_emitter_count": "14", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "N/A", - "description": "Optopix phase1", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "48", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "100", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "NP1300", - "red_emitter0_dist_from_elec0_um": "68", - "red_emitter_count": "14", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "35", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "NP2000": { - "adc_bit_depth": "14", - "adc_range_vpp": "1", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "80", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph1", - "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", - "description": "duplicate of PRB2_1_2_0640_0", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2000", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "127", - "part_number": "NP2000", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2003": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2023 SK - NEUROPIXELS 2.0_DATASHEET_v4", - "description": "Neuropixels 2.0 single shank probe", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2003", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2003", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2004": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2023 SK - NEUROPIXELS 2.0_DATASHEET_v4", - "description": "Neuropixels 2.0 single shank probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2003", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2004", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2005": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", - "description": "Neuropixels 2.0 single shank NHP short linear probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2003", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2005", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2006": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", - "description": "Neuropixels 2.0 single shank NHP short staggered probe with cap, cabling, sharpened, sterile packaging ", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2003", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "-1", - "part_number": "NP2006", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "122", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2010": { - "adc_bit_depth": "14", - "adc_range_vpp": "1", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "80", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0MS blocks", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph1", - "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", - "description": "duplicate of PRB2_4_2_0640_0", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2010", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "127", - "part_number": "NP2010", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "NP2013": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0MS blocks", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", - "description": "Neuropixels 2.0 multishank probe", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2013", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2013", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "5120" - }, - "NP2014": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0MS blocks", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2B", - "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", - "description": "Neuropixels 2.0 multishank probe with cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2013", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2014", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "5120" - }, - "NP2020": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank (1.0 style: ch 0 to electrode 0, 384, 768, 1152)", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2C", - "datasheet": "2024 - NEUROPIXELS 2.0 QB multishank_DATASHEET", - "description": "Neuropixels 2.0 multi shank probe quad base (Ph 2C)", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2020", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2020", - "num_readout_channels": "1536", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2020", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "5120" - }, - "NP2021": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.24", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank (1.0 style: ch 0 to electrode 0, 384, 768, 1152)", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph2C", - "datasheet": "2024 - NEUROPIXELS 2.0 QB multishank_DATASHEET", - "description": "Neuropixels 2.0 multi shank probe quad base with cap (Ph 2C)", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2020", - "is_commercial": "Y", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2020", - "num_readout_channels": "1536", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP2021", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "5120" - }, - "NP3000": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.00", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "128", - "cols_per_shank": "1", - "databus_decoder_type": "N/A", - "datasheet": "N/A", - "description": "Neuropixels NXT passive probe", - "electrode_layout_type": "1x128", - "electrode_pitch_horz_um": "0", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "NA", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "128", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "59", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "N", - "imro_table_format_type": "imro_np1000", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1200", - "num_readout_channels": "128", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "59", - "on_shank_ref_chan": "-1", - "part_number": "NP3000", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "128", - "shank_pitch_um": "0", - "shank_thickness_um": "35", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "128" - }, - "NP3010": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.34", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.40", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "912", - "cols_per_shank": "2", - "databus_decoder_type": "channel reordering", - "datasheet": "N/A", - "description": "Neuropixels NXT phase1B single shank silicon cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np3010", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np3010", - "num_readout_channels": "1536", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP3010", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "30", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "203", - "total_electrodes": "1280" - }, - "NP3011": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.34", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.40", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "912", - "cols_per_shank": "2", - "databus_decoder_type": "channel reordering", - "datasheet": "N/A", - "description": "Neuropixels NXT phase1B single shank metal cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np3010", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np3010", - "num_readout_channels": "1536", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP3011", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "30", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "203", - "total_electrodes": "1280" - }, - "NP3020": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.34", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.40", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "NXT blocks", - "channels_per_bank": "912", - "cols_per_shank": "2", - "databus_decoder_type": "channel reordering", - "datasheet": "N/A", - "description": "Neuropixels NXT phase1B multishank silicon cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np3020", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np3020", - "num_readout_channels": "1536", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP3020", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "30", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "204", - "total_electrodes": "5120" - }, - "NP3021": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.34", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.40", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "NXT blocks", - "channels_per_bank": "912", - "cols_per_shank": "2", - "databus_decoder_type": "channel reordering", - "datasheet": "N/A", - "description": "Neuropixels NXT phase1B multishank metal cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np3020", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np3020", - "num_readout_channels": "1536", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP3021", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "30", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "204", - "total_electrodes": "5120" - }, - "NP3022": { - "adc_bit_depth": "12", - "adc_range_vpp": "1.34", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "100", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "1.40", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "NXT blocks", - "channels_per_bank": "912", - "cols_per_shank": "2", - "databus_decoder_type": "channel reordering", - "datasheet": "N/A", - "description": "Neuropixels NXT pre-alpha multishank metal cap", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np3020", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np3020", - "num_readout_channels": "1536", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "-1", - "part_number": "NP3022", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "30", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "204", - "total_electrodes": "5120" - }, - "PRB2_1_2_0640_0": { - "adc_bit_depth": "14", - "adc_range_vpp": "1", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "80", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0SS scrambled", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph1", - "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", - "description": "Neuropixels 2.0 phase 1 single shank", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrodeMask", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2000", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "127", - "part_number": "PRB2_1_2_0640_0", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "1280" - }, - "PRB2_4_2_0640_0": { - "adc_bit_depth": "14", - "adc_range_vpp": "1", - "ap_band_list_hz": "0.5,10000", - "ap_gain_list": "80", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "3.33", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "2.0MS blocks", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "2.0 Ph1", - "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", - "description": "Neuropixels 2.0 phase 1 multi shank", - "electrode_layout_type": "linear", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "15", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "1280", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "N", - "has_ap_bandpass": "N", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np2010", - "is_commercial": "N", - "lf_band_list_hz": "0", - "lf_gain_list": "1", - "lf_sample_frequency_hz": "0", - "mux_table_format_type": "mux_np2000", - "num_readout_channels": "384", - "num_shanks": "4", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "on_shank_ref_chan": "127", - "part_number": "PRB2_4_2_0640_0", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "640", - "shank_pitch_um": "250", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "206", - "total_electrodes": "5120" - }, - "PRB_1_2_0480_2": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", - "description": "Neuropixels 1.0 probe", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "PRB_1_2_0480_2", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "PRB_1_4_0480_1": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", - "description": "Neuropixels 1.0 probe", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "PRB_1_4_0480_1", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - }, - "PRB_1_4_0480_1_C": { - "adc_bit_depth": "10", - "adc_range_vpp": "1.2", - "ap_band_list_hz": "300,10000", - "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", - "ap_sample_frequency_hz": "30000", - "banks_per_shank": "2.50", - "blue_emitter0_dist_from_elec0_um": "0", - "blue_emitter_count": "0", - "channel_mapping_type": "simple bank", - "channels_per_bank": "384", - "cols_per_shank": "2", - "databus_decoder_type": "1.0", - "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", - "description": "Neuropixels 1.0 probe with cap", - "electrode_layout_type": "staggered", - "electrode_pitch_horz_um": "32", - "electrode_pitch_vert_um": "20", - "electrode_select_api_type": "selectElectrode", - "electrode_size_horz_direction_um": "12", - "electrode_size_vert_direction_um": "12", - "electrodes_per_shank": "960", - "emitter_pitch_um": "0", - "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", - "has_adc_calibration_file": "Y", - "has_ap_bandpass": "Y", - "has_tip_ref": "Y", - "imro_table_format_type": "imro_np1000", - "is_commercial": "Y", - "lf_band_list_hz": "0.5,500", - "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", - "lf_sample_frequency_hz": "2500", - "mux_table_format_type": "mux_np1000", - "num_readout_channels": "384", - "num_shanks": "1", - "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", - "on_shank_ref_chan": "191", - "part_number": "PRB_1_4_0480_1_C", - "red_emitter0_dist_from_elec0_um": "0", - "red_emitter_count": "0", - "rows_per_shank": "480", - "shank_pitch_um": "0", - "shank_thickness_um": "24", - "shank_tip_to_base_um": "10000", - "shank_width_um": "70", - "tip_length_um": "209", - "total_electrodes": "960" - } - }, - "z_imro_formats": { - "imro_np1000_elm_flds": "(channel bank ref_id ap_gain lf_gain ap_hipas_flt)", - "imro_np1000_elm_fmt": "(%d %d %d %d %d %d)", - "imro_np1000_hdr_flds": "(type,num_channels)", - "imro_np1000_hdr_fmt": "(%d,%d)", - "imro_np1000_val_def": "type:{0,1020,1030,1100,1120,1121,1122,1123,1200,1300} num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,tip)(2,bnk0)(3,bnk1)(4,bnk2) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", - "imro_np1110_elm_flds": "(group bankA bankB)", - "imro_np1110_elm_fmt": "(%d %d %d)", - "imro_np1110_hdr_flds": "(type,col_mode,ref_id,ap_gain,lf_gain,ap_hipas_flt)", - "imro_np1110_hdr_fmt": "(%d,%d,%d,%d,%d,%d)", - "imro_np1110_val_def": "type:1110 col_mode:(0,INNER)(1,OUTER)(2,ALL) ref_id:(0,ext)(1,tip) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", - "imro_np2000_elm_flds": "(channel bank_mask ref_id electrode)", - "imro_np2000_elm_fmt": "(%d %d %d %d)", - "imro_np2000_hdr_flds": "(type,num_channels)", - "imro_np2000_hdr_fmt": "(%d,%d)", - "imro_np2000_val_def": "type:21 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank_mask:(bit0,bnk0)(bit1,bnk1)(bit2,bnk2) ref_id:(0,ext)(1,tip)(2,bnk0)(3,bnk1)(4,bnk2) electrode:[0,electrodes_per_shank-1]", - "imro_np2003_elm_flds": "(channel bank_mask ref_id electrode)", - "imro_np2003_elm_fmt": "(%d %d %d %d)", - "imro_np2003_hdr_flds": "(type,num_channels)", - "imro_np2003_hdr_fmt": "(%d,%d)", - "imro_np2003_val_def": "type:2003 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank_mask:(bit0,bnk0)(bit1,bnk1)(bit2,bnk2) ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", - "imro_np2010_elm_flds": "(channel shank bank ref_id electrode)", - "imro_np2010_elm_fmt": "(%d %d %d %d %d)", - "imro_np2010_hdr_flds": "(type,num_channels)", - "imro_np2010_hdr_fmt": "(%d,%d)", - "imro_np2010_val_def": "type:24 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,tip0)(2,tip1)(3,tip2)(4,tip3)(5,shk0,bnk0)(6,shk0,bnk1)(7,shk0,bnk2)(8,shk0,bnk3)(9,shk1,bnk0)(10,shk1,bnk1)(11,shk1,bnk2)(12,shk1,bnk3)(13,shk2,bnk0)(14,shk2,bnk1)(15,shk2,bnk2)(16,shk2,bnk3)(17,shk3,bnk0)(18,shk3,bnk1)(19,shk3,bnk2)(20,shk3,bnk3) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", - "imro_np2013_elm_flds": "(channel shank bank ref_id electrode)", - "imro_np2013_elm_fmt": "(%d %d %d %d %d)", - "imro_np2013_hdr_flds": "(type,num_channels)", - "imro_np2013_hdr_fmt": "(%d,%d)", - "imro_np2013_val_def": "type:2013 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip0)(3,tip1)(4,tip2)(5,tip3) electrode:[0,electrodes_per_shank-1]", - "imro_np2020_elm_flds": "(channel shank bank ref_id electrode)", - "imro_np2020_elm_fmt": "(%d %d %d %d %d)", - "imro_np2020_hdr_flds": "(type,num_channels)", - "imro_np2020_hdr_fmt": "(%d,%d)", - "imro_np2020_val_def": "type:2020 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", - "imro_np3010_elm_flds": "(channel bank ref_id electrode)", - "imro_np3010_elm_fmt": "(%d %d %d %d)", - "imro_np3010_hdr_flds": "(type,num_channels)", - "imro_np3010_hdr_fmt": "(%d,%d)", - "imro_np3010_val_def": "type:3010 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", - "imro_np3020_elm_flds": "(channel shank bank ref_id electrode)", - "imro_np3020_elm_fmt": "(%d %d %d %d %d)", - "imro_np3020_hdr_flds": "(type,num_channels)", - "imro_np3020_hdr_fmt": "(%d,%d)", - "imro_np3020_val_def": "type:3020 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip0)(3,tip1)(4,tip2)(5,tip3) electrode:[0,electrodes_per_shank-1]" - }, - "z_meta": { - "table_version": "1.5" - }, - "z_mux_tables": { - "mux_np1000": "(32,12)(0 1 24 25 48 49 72 73 96 97 120 121 144 145 168 169 192 193 216 217 240 241 264 265 288 289 312 313 336 337 360 361)(2 3 26 27 50 51 74 75 98 99 122 123 146 147 170 171 194 195 218 219 242 243 266 267 290 291 314 315 338 339 362 363)(4 5 28 29 52 53 76 77 100 101 124 125 148 149 172 173 196 197 220 221 244 245 268 269 292 293 316 317 340 341 364 365)(6 7 30 31 54 55 78 79 102 103 126 127 150 151 174 175 198 199 222 223 246 247 270 271 294 295 318 319 342 343 366 367)(8 9 32 33 56 57 80 81 104 105 128 129 152 153 176 177 200 201 224 225 248 249 272 273 296 297 320 321 344 345 368 369)(10 11 34 35 58 59 82 83 106 107 130 131 154 155 178 179 202 203 226 227 250 251 274 275 298 299 322 323 346 347 370 371)(12 13 36 37 60 61 84 85 108 109 132 133 156 157 180 181 204 205 228 229 252 253 276 277 300 301 324 325 348 349 372 373)(14 15 38 39 62 63 86 87 110 111 134 135 158 159 182 183 206 207 230 231 254 255 278 279 302 303 326 327 350 351 374 375)(16 17 40 41 64 65 88 89 112 113 136 137 160 161 184 185 208 209 232 233 256 257 280 281 304 305 328 329 352 353 376 377)(18 19 42 43 66 67 90 91 114 115 138 139 162 163 186 187 210 211 234 235 258 259 282 283 306 307 330 331 354 355 378 379)(20 21 44 45 68 69 92 93 116 117 140 141 164 165 188 189 212 213 236 237 260 261 284 285 308 309 332 333 356 357 380 381)(22 23 46 47 70 71 94 95 118 119 142 143 166 167 190 191 214 215 238 239 262 263 286 287 310 311 334 335 358 359 382 383)", - "mux_np1200": "(12,12)(84 11 85 5 74 10 56 112 46 121 39 127)(100 26 110 33 69 24 63 109 45 93 25 99)(87 0 82 6 71 15 53 117 43 122 42 116)(102 28 81 34 70 18 60 103 17 94 27 101)(73 1 86 7 68 16 50 106 40 123 128 128)(105 29 75 35 67 12 54 89 20 95 128 128)(76 2 83 8 65 13 47 118 49 124 128 128)(108 30 78 36 64 14 51 90 23 96 128 128)(79 3 80 9 62 114 44 119 52 125 128 128)(104 31 72 37 61 113 57 91 19 97 128 128)(88 4 77 21 59 111 41 120 55 126 128 128)(107 32 66 38 58 115 48 92 22 98 128 128)", - "mux_np2000": "(24,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383)", - "mux_np2020": "(96,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897 928 929 960 961 992 993 1024 1025 1056 1057 1088 1089 1120 1121 1152 1153 1184 1185 1216 1217 1248 1249 1280 1281 1312 1313 1344 1345 1376 1377 1408 1409 1440 1441 1472 1473 1504 1505)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899 930 931 962 963 994 995 1026 1027 1058 1059 1090 1091 1122 1123 1154 1155 1186 1187 1218 1219 1250 1251 1282 1283 1314 1315 1346 1347 1378 1379 1410 1411 1442 1443 1474 1475 1506 1507)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901 932 933 964 965 996 997 1028 1029 1060 1061 1092 1093 1124 1125 1156 1157 1188 1189 1220 1221 1252 1253 1284 1285 1316 1317 1348 1349 1380 1381 1412 1413 1444 1445 1476 1477 1508 1509)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903 934 935 966 967 998 999 1030 1031 1062 1063 1094 1095 1126 1127 1158 1159 1190 1191 1222 1223 1254 1255 1286 1287 1318 1319 1350 1351 1382 1383 1414 1415 1446 1447 1478 1479 1510 1511)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905 936 937 968 969 1000 1001 1032 1033 1064 1065 1096 1097 1128 1129 1160 1161 1192 1193 1224 1225 1256 1257 1288 1289 1320 1321 1352 1353 1384 1385 1416 1417 1448 1449 1480 1481 1512 1513)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907 938 939 970 971 1002 1003 1034 1035 1066 1067 1098 1099 1130 1131 1162 1163 1194 1195 1226 1227 1258 1259 1290 1291 1322 1323 1354 1355 1386 1387 1418 1419 1450 1451 1482 1483 1514 1515)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909 940 941 972 973 1004 1005 1036 1037 1068 1069 1100 1101 1132 1133 1164 1165 1196 1197 1228 1229 1260 1261 1292 1293 1324 1325 1356 1357 1388 1389 1420 1421 1452 1453 1484 1485 1516 1517)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911 942 943 974 975 1006 1007 1038 1039 1070 1071 1102 1103 1134 1135 1166 1167 1198 1199 1230 1231 1262 1263 1294 1295 1326 1327 1358 1359 1390 1391 1422 1423 1454 1455 1486 1487 1518 1519)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913 944 945 976 977 1008 1009 1040 1041 1072 1073 1104 1105 1136 1137 1168 1169 1200 1201 1232 1233 1264 1265 1296 1297 1328 1329 1360 1361 1392 1393 1424 1425 1456 1457 1488 1489 1520 1521)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915 946 947 978 979 1010 1011 1042 1043 1074 1075 1106 1107 1138 1139 1170 1171 1202 1203 1234 1235 1266 1267 1298 1299 1330 1331 1362 1363 1394 1395 1426 1427 1458 1459 1490 1491 1522 1523)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917 948 949 980 981 1012 1013 1044 1045 1076 1077 1108 1109 1140 1141 1172 1173 1204 1205 1236 1237 1268 1269 1300 1301 1332 1333 1364 1365 1396 1397 1428 1429 1460 1461 1492 1493 1524 1525)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919 950 951 982 983 1014 1015 1046 1047 1078 1079 1110 1111 1142 1143 1174 1175 1206 1207 1238 1239 1270 1271 1302 1303 1334 1335 1366 1367 1398 1399 1430 1431 1462 1463 1494 1495 1526 1527)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921 952 953 984 985 1016 1017 1048 1049 1080 1081 1112 1113 1144 1145 1176 1177 1208 1209 1240 1241 1272 1273 1304 1305 1336 1337 1368 1369 1400 1401 1432 1433 1464 1465 1496 1497 1528 1529)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923 954 955 986 987 1018 1019 1050 1051 1082 1083 1114 1115 1146 1147 1178 1179 1210 1211 1242 1243 1274 1275 1306 1307 1338 1339 1370 1371 1402 1403 1434 1435 1466 1467 1498 1499 1530 1531)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925 956 957 988 989 1020 1021 1052 1053 1084 1085 1116 1117 1148 1149 1180 1181 1212 1213 1244 1245 1276 1277 1308 1309 1340 1341 1372 1373 1404 1405 1436 1437 1468 1469 1500 1501 1532 1533)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927 958 959 990 991 1022 1023 1054 1055 1086 1087 1118 1119 1150 1151 1182 1183 1214 1215 1246 1247 1278 1279 1310 1311 1342 1343 1374 1375 1406 1407 1438 1439 1470 1471 1502 1503 1534 1535)", - "mux_np3010": "(58,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927)", - "mux_np3020": "(96,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897 928 929 960 961 992 993 1024 1025 1056 1057 1088 1089 1120 1121 1152 1153 1184 1185 1216 1217 1248 1249 1280 1281 1312 1313 1344 1345 1376 1377 1408 1409 1440 1441 1472 1473 1504 1505)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899 930 931 962 963 994 995 1026 1027 1058 1059 1090 1091 1122 1123 1154 1155 1186 1187 1218 1219 1250 1251 1282 1283 1314 1315 1346 1347 1378 1379 1410 1411 1442 1443 1474 1475 1506 1507)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901 932 933 964 965 996 997 1028 1029 1060 1061 1092 1093 1124 1125 1156 1157 1188 1189 1220 1221 1252 1253 1284 1285 1316 1317 1348 1349 1380 1381 1412 1413 1444 1445 1476 1477 1508 1509)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903 934 935 966 967 998 999 1030 1031 1062 1063 1094 1095 1126 1127 1158 1159 1190 1191 1222 1223 1254 1255 1286 1287 1318 1319 1350 1351 1382 1383 1414 1415 1446 1447 1478 1479 1510 1511)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905 936 937 968 969 1000 1001 1032 1033 1064 1065 1096 1097 1128 1129 1160 1161 1192 1193 1224 1225 1256 1257 1288 1289 1320 1321 1352 1353 1384 1385 1416 1417 1448 1449 1480 1481 1512 1513)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907 938 939 970 971 1002 1003 1034 1035 1066 1067 1098 1099 1130 1131 1162 1163 1194 1195 1226 1227 1258 1259 1290 1291 1322 1323 1354 1355 1386 1387 1418 1419 1450 1451 1482 1483 1514 1515)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909 940 941 972 973 1004 1005 1036 1037 1068 1069 1100 1101 1132 1133 1164 1165 1196 1197 1228 1229 1260 1261 1292 1293 1324 1325 1356 1357 1388 1389 1420 1421 1452 1453 1484 1485 1516 1517)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911 942 943 974 975 1006 1007 1038 1039 1070 1071 1102 1103 1134 1135 1166 1167 1198 1199 1230 1231 1262 1263 1294 1295 1326 1327 1358 1359 1390 1391 1422 1423 1454 1455 1486 1487 1518 1519)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913 944 945 976 977 1008 1009 1040 1041 1072 1073 1104 1105 1136 1137 1168 1169 1200 1201 1232 1233 1264 1265 1296 1297 1328 1329 1360 1361 1392 1393 1424 1425 1456 1457 1488 1489 1520 1521)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915 946 947 978 979 1010 1011 1042 1043 1074 1075 1106 1107 1138 1139 1170 1171 1202 1203 1234 1235 1266 1267 1298 1299 1330 1331 1362 1363 1394 1395 1426 1427 1458 1459 1490 1491 1522 1523)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917 948 949 980 981 1012 1013 1044 1045 1076 1077 1108 1109 1140 1141 1172 1173 1204 1205 1236 1237 1268 1269 1300 1301 1332 1333 1364 1365 1396 1397 1428 1429 1460 1461 1492 1493 1524 1525)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919 950 951 982 983 1014 1015 1046 1047 1078 1079 1110 1111 1142 1143 1174 1175 1206 1207 1238 1239 1270 1271 1302 1303 1334 1335 1366 1367 1398 1399 1430 1431 1462 1463 1494 1495 1526 1527)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921 952 953 984 985 1016 1017 1048 1049 1080 1081 1112 1113 1144 1145 1176 1177 1208 1209 1240 1241 1272 1273 1304 1305 1336 1337 1368 1369 1400 1401 1432 1433 1464 1465 1496 1497 1528 1529)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923 954 955 986 987 1018 1019 1050 1051 1082 1083 1114 1115 1146 1147 1178 1179 1210 1211 1242 1243 1274 1275 1306 1307 1338 1339 1370 1371 1402 1403 1434 1435 1466 1467 1498 1499 1530 1531)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925 956 957 988 989 1020 1021 1052 1053 1084 1085 1116 1117 1148 1149 1180 1181 1212 1213 1244 1245 1276 1277 1308 1309 1340 1341 1372 1373 1404 1405 1436 1437 1468 1469 1500 1501 1532 1533)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927 958 959 990 991 1022 1023 1054 1055 1086 1087 1118 1119 1150 1151 1182 1183 1214 1215 1246 1247 1278 1279 1310 1311 1342 1343 1374 1375 1406 1407 1438 1439 1470 1471 1502 1503 1534 1535)" - } -} +{ + "neuropixels_probes": { + "NP1000": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", + "description": "Neuropixels 1.0 probe", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1000", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1001": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", + "description": "Neuropixels 1.0 probe with cap", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1001", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1010": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NEUROPIXELS 1.0 NHP SHORT_v2_digital", + "description": "Neuropixels 1.0 NHP short staggered probe with cap", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1010", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1011": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1011", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1012": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, parylene coating", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1012", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1013": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, parylene coating, sterile packaging", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1013", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1014": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Neuropixels 1.0 NHP short staggered probe with cap, cabling, sharpened, sterile packaging ", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1014", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1015": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", + "description": "Neuropixels 1.0 NHP short linear probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "191", + "part_number": "NP1015", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1016": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 NHP short wired side_DATASHEET", + "description": "Neuropixels 1.0 NHP short linear probe with cap, cabling, sharpened, sterile packaging ", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "191", + "part_number": "NP1016", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1017": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2023 - NEUROPIXELS 1.0 NHP short-S_DATASHEET", + "description": "Neuropixels 1.0 NHP short linear probe with cap, cabling, sharpened, sterile packaging sterilized", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "191", + "part_number": "NP1017", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP1020": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "6.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", + "description": "Npix 1.0 NHP MEDIUM SOI35", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "87", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "2496", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1020", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "1248", + "shank_pitch_um": "0", + "shank_thickness_um": "42", + "shank_tip_to_base_um": "25000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "2496" + }, + "NP1021": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "6.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", + "description": "Npix 1.0 NHP MEDIUM SOI60", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "87", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "2496", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1021", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "1248", + "shank_pitch_um": "0", + "shank_thickness_um": "67", + "shank_tip_to_base_um": "25000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "2496" + }, + "NP1022": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "6.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", + "description": "Neuropixels 1.0 NHP medium linear probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "103", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "2496", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1022", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "1248", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "25000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "2496" + }, + "NP1030": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "11.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", + "description": "Npix 1.0 NHP LONG SOI90", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "87", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "4416", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1030", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "2208", + "shank_pitch_um": "0", + "shank_thickness_um": "97", + "shank_tip_to_base_um": "45000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "4416" + }, + "NP1031": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "11.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NEUROPIXELS 1.0 NHP medium-long leaflet_digital", + "description": "Npix 1.0 NHP LONG SOI125", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "87", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "4416", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1031", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "2208", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "45000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "4416" + }, + "NP1032": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "11.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 NHP SHORT-MEDIUM-LONG_DATASHEET", + "description": "Neuropixels 1.0 NHP long linear probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "103", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "4416", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1032", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "2208", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "45000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "4416" + }, + "NP1033": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "11.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "NA", + "description": "Neuropixels 1.0 NHP long linear probe with cap, cabling, sharpened, sterile packaging ", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "103", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "4416", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1033", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "2208", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "45000", + "shank_width_um": "125", + "tip_length_um": "373", + "total_electrodes": "4416" + }, + "NP1100": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "8", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Npix 1.0 UHD1 passive", + "electrode_layout_type": "8x48", + "electrode_pitch_horz_um": "6", + "electrode_pitch_vert_um": "6", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "5", + "electrode_size_vert_direction_um": "5", + "electrodes_per_shank": "384", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "14", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "14", + "on_shank_ref_chan": "-1", + "part_number": "NP1100", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "48", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206.5", + "total_electrodes": "384" + }, + "NP1110": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "16.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "UHD groups", + "channels_per_bank": "384", + "cols_per_shank": "8", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 HD_DATASHEET", + "description": "Npix 1.0 UHD2 active", + "electrode_layout_type": "8x768", + "electrode_pitch_horz_um": "6", + "electrode_pitch_vert_um": "6", + "electrode_select_api_type": "selectElectrodeGroup", + "electrode_size_horz_direction_um": "5", + "electrode_size_vert_direction_um": "5", + "electrodes_per_shank": "6144", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "15.5", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1110", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "15.5", + "on_shank_ref_chan": "-1", + "part_number": "NP1110", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "768", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "73", + "tip_length_um": "203.5", + "total_electrodes": "6144" + }, + "NP1120": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Npix 1.0 UHD3 type 1", + "electrode_layout_type": "2x192", + "electrode_pitch_horz_um": "4.5", + "electrode_pitch_vert_um": "4.5", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "3.5", + "electrode_size_vert_direction_um": "3.5", + "electrodes_per_shank": "384", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.75", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.75", + "on_shank_ref_chan": "-1", + "part_number": "NP1120", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "192", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "205.75", + "total_electrodes": "384" + }, + "NP1121": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "1", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Npix 1.0 UHD3 type 2", + "electrode_layout_type": "1x384", + "electrode_pitch_horz_um": "0", + "electrode_pitch_vert_um": "3", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "2.5", + "electrode_size_vert_direction_um": "2.5", + "electrodes_per_shank": "384", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.25", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "6.25", + "on_shank_ref_chan": "-1", + "part_number": "NP1121", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "384", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "205.25", + "total_electrodes": "384" + }, + "NP1122": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "16", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Npix 1.0 UHD3 type 3", + "electrode_layout_type": "16x24", + "electrode_pitch_horz_um": "3", + "electrode_pitch_vert_um": "3", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "2.5", + "electrode_size_vert_direction_um": "2.5", + "electrodes_per_shank": "384", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "12.5", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "12.5", + "on_shank_ref_chan": "-1", + "part_number": "NP1122", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "24", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "205.25", + "total_electrodes": "384" + }, + "NP1123": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "12", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Npix 1.0 UHD3 type 4", + "electrode_layout_type": "12x32", + "electrode_pitch_horz_um": "4.5", + "electrode_pitch_vert_um": "4.5", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "3.5", + "electrode_size_vert_direction_um": "3.5", + "electrodes_per_shank": "384", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "10.25", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "10.25", + "on_shank_ref_chan": "-1", + "part_number": "NP1123", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "32", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "205.75", + "total_electrodes": "384" + }, + "NP1200": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "128", + "cols_per_shank": "2", + "databus_decoder_type": "1.0 with channel reordering", + "datasheet": "N/A", + "description": "NHP passive probe 25mm, used with 128 ch headstage", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "31", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "128", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "56.5", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "N", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1200", + "num_readout_channels": "128", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "36.5", + "on_shank_ref_chan": "-1", + "part_number": "NP1200", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "64", + "shank_pitch_um": "0", + "shank_thickness_um": "67", + "shank_tip_to_base_um": "25000", + "shank_width_um": "125", + "tip_length_um": "372", + "total_electrodes": "128" + }, + "NP1210": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "128", + "cols_per_shank": "2", + "databus_decoder_type": "1.0 with channel reordering", + "datasheet": "N/A", + "description": "NHP passive probe 45mm, used with 128 ch headstage", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "31", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "128", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "56.5", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "N", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1200", + "num_readout_channels": "128", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "36.5", + "on_shank_ref_chan": "-1", + "part_number": "NP1210", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "64", + "shank_pitch_um": "0", + "shank_thickness_um": "132", + "shank_tip_to_base_um": "45000", + "shank_width_um": "125", + "tip_length_um": "372", + "total_electrodes": "128" + }, + "NP1300": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "74", + "blue_emitter_count": "14", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "N/A", + "description": "Optopix phase1", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "48", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "100", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "NP1300", + "red_emitter0_dist_from_elec0_um": "68", + "red_emitter_count": "14", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "35", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "NP2000": { + "adc_bit_depth": "14", + "adc_range_vpp": "1", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "80", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph1", + "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", + "description": "duplicate of PRB2_1_2_0640_0", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2000", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "127", + "part_number": "NP2000", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2003": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2023 SK - NEUROPIXELS 2.0_DATASHEET_v4", + "description": "Neuropixels 2.0 single shank probe", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2003", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2003", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2004": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2023 SK - NEUROPIXELS 2.0_DATASHEET_v4", + "description": "Neuropixels 2.0 single shank probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2003", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2004", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2005": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", + "description": "Neuropixels 2.0 single shank NHP short linear probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2003", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2005", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2006": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", + "description": "Neuropixels 2.0 single shank NHP short staggered probe with cap, cabling, sharpened, sterile packaging ", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2003", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "-1", + "part_number": "NP2006", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "122", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2010": { + "adc_bit_depth": "14", + "adc_range_vpp": "1", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "80", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0MS blocks", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph1", + "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", + "description": "duplicate of PRB2_4_2_0640_0", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2010", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "127", + "part_number": "NP2010", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "NP2013": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0MS blocks", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", + "description": "Neuropixels 2.0 multishank probe", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2013", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2013", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "5120" + }, + "NP2014": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0MS blocks", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2B", + "datasheet": "2024 - NEUROPIXELS 2.0_DATASHEET", + "description": "Neuropixels 2.0 multishank probe with cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2013", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2014", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "5120" + }, + "NP2020": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank (1.0 style: ch 0 to electrode 0, 384, 768, 1152)", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2C", + "datasheet": "2024 - NEUROPIXELS 2.0 QB multishank_DATASHEET", + "description": "Neuropixels 2.0 multi shank probe quad base (Ph 2C)", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2020", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2020", + "num_readout_channels": "1536", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2020", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "5120" + }, + "NP2021": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.24", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank (1.0 style: ch 0 to electrode 0, 384, 768, 1152)", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph2C", + "datasheet": "2024 - NEUROPIXELS 2.0 QB multishank_DATASHEET", + "description": "Neuropixels 2.0 multi shank probe quad base with cap (Ph 2C)", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2020", + "is_commercial": "Y", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2020", + "num_readout_channels": "1536", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP2021", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "5120" + }, + "NP3000": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.00", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "128", + "cols_per_shank": "1", + "databus_decoder_type": "N/A", + "datasheet": "N/A", + "description": "Neuropixels NXT passive probe", + "electrode_layout_type": "1x128", + "electrode_pitch_horz_um": "0", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "NA", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "128", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "59", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "N", + "imro_table_format_type": "imro_np1000", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1200", + "num_readout_channels": "128", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "59", + "on_shank_ref_chan": "-1", + "part_number": "NP3000", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "128", + "shank_pitch_um": "0", + "shank_thickness_um": "35", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "128" + }, + "NP3010": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.34", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.40", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "912", + "cols_per_shank": "2", + "databus_decoder_type": "channel reordering", + "datasheet": "N/A", + "description": "Neuropixels NXT phase1B single shank silicon cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np3010", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np3010", + "num_readout_channels": "1536", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP3010", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "30", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "203", + "total_electrodes": "1280" + }, + "NP3011": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.34", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.40", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "912", + "cols_per_shank": "2", + "databus_decoder_type": "channel reordering", + "datasheet": "N/A", + "description": "Neuropixels NXT phase1B single shank metal cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np3010", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np3010", + "num_readout_channels": "1536", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP3011", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "30", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "203", + "total_electrodes": "1280" + }, + "NP3020": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.34", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.40", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "NXT blocks", + "channels_per_bank": "912", + "cols_per_shank": "2", + "databus_decoder_type": "channel reordering", + "datasheet": "N/A", + "description": "Neuropixels NXT phase1B multishank silicon cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np3020", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np3020", + "num_readout_channels": "1536", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP3020", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "30", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "204", + "total_electrodes": "5120" + }, + "NP3021": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.34", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.40", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "NXT blocks", + "channels_per_bank": "912", + "cols_per_shank": "2", + "databus_decoder_type": "channel reordering", + "datasheet": "N/A", + "description": "Neuropixels NXT phase1B multishank metal cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np3020", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np3020", + "num_readout_channels": "1536", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP3021", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "30", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "204", + "total_electrodes": "5120" + }, + "NP3022": { + "adc_bit_depth": "12", + "adc_range_vpp": "1.34", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "100", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "1.40", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "NXT blocks", + "channels_per_bank": "912", + "cols_per_shank": "2", + "databus_decoder_type": "channel reordering", + "datasheet": "N/A", + "description": "Neuropixels NXT pre-alpha multishank metal cap", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np3020", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np3020", + "num_readout_channels": "1536", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "-1", + "part_number": "NP3022", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "30", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "204", + "total_electrodes": "5120" + }, + "PRB2_1_2_0640_0": { + "adc_bit_depth": "14", + "adc_range_vpp": "1", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "80", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0SS scrambled", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph1", + "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", + "description": "Neuropixels 2.0 phase 1 single shank", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrodeMask", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2000", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "127", + "part_number": "PRB2_1_2_0640_0", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "1280" + }, + "PRB2_4_2_0640_0": { + "adc_bit_depth": "14", + "adc_range_vpp": "1", + "ap_band_list_hz": "0.5,10000", + "ap_gain_list": "80", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "3.33", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "2.0MS blocks", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "2.0 Ph1", + "datasheet": "NEUROPIXELS 2.0 Fully-integrated CMOS digital neural probe for small animal recording_print", + "description": "Neuropixels 2.0 phase 1 multi shank", + "electrode_layout_type": "linear", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "15", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "1280", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "N", + "has_ap_bandpass": "N", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np2010", + "is_commercial": "N", + "lf_band_list_hz": "0", + "lf_gain_list": "1", + "lf_sample_frequency_hz": "0", + "mux_table_format_type": "mux_np2000", + "num_readout_channels": "384", + "num_shanks": "4", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "on_shank_ref_chan": "127", + "part_number": "PRB2_4_2_0640_0", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "640", + "shank_pitch_um": "250", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "206", + "total_electrodes": "5120" + }, + "PRB_1_2_0480_2": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", + "description": "Neuropixels 1.0 probe", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "PRB_1_2_0480_2", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "PRB_1_4_0480_1": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", + "description": "Neuropixels 1.0 probe", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "PRB_1_4_0480_1", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + }, + "PRB_1_4_0480_1_C": { + "adc_bit_depth": "10", + "adc_range_vpp": "1.2", + "ap_band_list_hz": "300,10000", + "ap_gain_list": "50,125,250,500,1000,1500,2000,3000", + "ap_sample_frequency_hz": "30000", + "banks_per_shank": "2.50", + "blue_emitter0_dist_from_elec0_um": "0", + "blue_emitter_count": "0", + "channel_mapping_type": "simple bank", + "channels_per_bank": "384", + "cols_per_shank": "2", + "databus_decoder_type": "1.0", + "datasheet": "2024 - NEUROPIXELS 1.0 Fully-integrated CMOS digital neural probe_DATASHEET", + "description": "Neuropixels 1.0 probe with cap", + "electrode_layout_type": "staggered", + "electrode_pitch_horz_um": "32", + "electrode_pitch_vert_um": "20", + "electrode_select_api_type": "selectElectrode", + "electrode_size_horz_direction_um": "12", + "electrode_size_vert_direction_um": "12", + "electrodes_per_shank": "960", + "emitter_pitch_um": "0", + "even_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "27", + "has_adc_calibration_file": "Y", + "has_ap_bandpass": "Y", + "has_tip_ref": "Y", + "imro_table_format_type": "imro_np1000", + "is_commercial": "Y", + "lf_band_list_hz": "0.5,500", + "lf_gain_list": "50,125,250,500,1000,1500,2000,3000", + "lf_sample_frequency_hz": "2500", + "mux_table_format_type": "mux_np1000", + "num_readout_channels": "384", + "num_shanks": "1", + "odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um": "11", + "on_shank_ref_chan": "191", + "part_number": "PRB_1_4_0480_1_C", + "red_emitter0_dist_from_elec0_um": "0", + "red_emitter_count": "0", + "rows_per_shank": "480", + "shank_pitch_um": "0", + "shank_thickness_um": "24", + "shank_tip_to_base_um": "10000", + "shank_width_um": "70", + "tip_length_um": "209", + "total_electrodes": "960" + } + }, + "z_imro_formats": { + "imro_np1000_elm_flds": "(channel bank ref_id ap_gain lf_gain ap_hipas_flt)", + "imro_np1000_elm_fmt": "(%d %d %d %d %d %d)", + "imro_np1000_hdr_flds": "(type,num_channels)", + "imro_np1000_hdr_fmt": "(%d,%d)", + "imro_np1000_val_def": "type:{0,1020,1030,1100,1120,1121,1122,1123,1200,1300} num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,tip)(2,bnk0)(3,bnk1)(4,bnk2) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", + "imro_np1110_elm_flds": "(group bankA bankB)", + "imro_np1110_elm_fmt": "(%d %d %d)", + "imro_np1110_hdr_flds": "(type,col_mode,ref_id,ap_gain,lf_gain,ap_hipas_flt)", + "imro_np1110_hdr_fmt": "(%d,%d,%d,%d,%d,%d)", + "imro_np1110_val_def": "type:1110 col_mode:(0,INNER)(1,OUTER)(2,ALL) ref_id:(0,ext)(1,tip) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", + "imro_np2000_elm_flds": "(channel bank_mask ref_id electrode)", + "imro_np2000_elm_fmt": "(%d %d %d %d)", + "imro_np2000_hdr_flds": "(type,num_channels)", + "imro_np2000_hdr_fmt": "(%d,%d)", + "imro_np2000_val_def": "type:21 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank_mask:(bit0,bnk0)(bit1,bnk1)(bit2,bnk2) ref_id:(0,ext)(1,tip)(2,bnk0)(3,bnk1)(4,bnk2) electrode:[0,electrodes_per_shank-1]", + "imro_np2003_elm_flds": "(channel bank_mask ref_id electrode)", + "imro_np2003_elm_fmt": "(%d %d %d %d)", + "imro_np2003_hdr_flds": "(type,num_channels)", + "imro_np2003_hdr_fmt": "(%d,%d)", + "imro_np2003_val_def": "type:2003 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank_mask:(bit0,bnk0)(bit1,bnk1)(bit2,bnk2) ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", + "imro_np2010_elm_flds": "(channel shank bank ref_id electrode)", + "imro_np2010_elm_fmt": "(%d %d %d %d %d)", + "imro_np2010_hdr_flds": "(type,num_channels)", + "imro_np2010_hdr_fmt": "(%d,%d)", + "imro_np2010_val_def": "type:24 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,tip0)(2,tip1)(3,tip2)(4,tip3)(5,shk0,bnk0)(6,shk0,bnk1)(7,shk0,bnk2)(8,shk0,bnk3)(9,shk1,bnk0)(10,shk1,bnk1)(11,shk1,bnk2)(12,shk1,bnk3)(13,shk2,bnk0)(14,shk2,bnk1)(15,shk2,bnk2)(16,shk2,bnk3)(17,shk3,bnk0)(18,shk3,bnk1)(19,shk3,bnk2)(20,shk3,bnk3) ap_gain:ap_gain_list lf_gain:lf_gain_list ap_hipas_flt:[0,1]", + "imro_np2013_elm_flds": "(channel shank bank ref_id electrode)", + "imro_np2013_elm_fmt": "(%d %d %d %d %d)", + "imro_np2013_hdr_flds": "(type,num_channels)", + "imro_np2013_hdr_fmt": "(%d,%d)", + "imro_np2013_val_def": "type:2013 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip0)(3,tip1)(4,tip2)(5,tip3) electrode:[0,electrodes_per_shank-1]", + "imro_np2020_elm_flds": "(channel shank bank ref_id electrode)", + "imro_np2020_elm_fmt": "(%d %d %d %d %d)", + "imro_np2020_hdr_flds": "(type,num_channels)", + "imro_np2020_hdr_fmt": "(%d,%d)", + "imro_np2020_val_def": "type:2020 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", + "imro_np3010_elm_flds": "(channel bank ref_id electrode)", + "imro_np3010_elm_fmt": "(%d %d %d %d)", + "imro_np3010_hdr_flds": "(type,num_channels)", + "imro_np3010_hdr_fmt": "(%d,%d)", + "imro_np3010_val_def": "type:3010 num_channels:num_readout_channels channel:[0,num_readout_channels-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip) electrode:[0,electrodes_per_shank-1]", + "imro_np3020_elm_flds": "(channel shank bank ref_id electrode)", + "imro_np3020_elm_fmt": "(%d %d %d %d %d)", + "imro_np3020_hdr_flds": "(type,num_channels)", + "imro_np3020_hdr_fmt": "(%d,%d)", + "imro_np3020_val_def": "type:3020 num_channels:num_readout_channels channel:[0,num_readout_channels-1] shank:[0,num_shanks-1] bank:[0,banks_per_shank-1] ref_id:(0,ext)(1,gnd)(2,tip0)(3,tip1)(4,tip2)(5,tip3) electrode:[0,electrodes_per_shank-1]" + }, + "z_meta": { + "table_version": "1.5" + }, + "z_mux_tables": { + "mux_np1000": "(32,12)(0 1 24 25 48 49 72 73 96 97 120 121 144 145 168 169 192 193 216 217 240 241 264 265 288 289 312 313 336 337 360 361)(2 3 26 27 50 51 74 75 98 99 122 123 146 147 170 171 194 195 218 219 242 243 266 267 290 291 314 315 338 339 362 363)(4 5 28 29 52 53 76 77 100 101 124 125 148 149 172 173 196 197 220 221 244 245 268 269 292 293 316 317 340 341 364 365)(6 7 30 31 54 55 78 79 102 103 126 127 150 151 174 175 198 199 222 223 246 247 270 271 294 295 318 319 342 343 366 367)(8 9 32 33 56 57 80 81 104 105 128 129 152 153 176 177 200 201 224 225 248 249 272 273 296 297 320 321 344 345 368 369)(10 11 34 35 58 59 82 83 106 107 130 131 154 155 178 179 202 203 226 227 250 251 274 275 298 299 322 323 346 347 370 371)(12 13 36 37 60 61 84 85 108 109 132 133 156 157 180 181 204 205 228 229 252 253 276 277 300 301 324 325 348 349 372 373)(14 15 38 39 62 63 86 87 110 111 134 135 158 159 182 183 206 207 230 231 254 255 278 279 302 303 326 327 350 351 374 375)(16 17 40 41 64 65 88 89 112 113 136 137 160 161 184 185 208 209 232 233 256 257 280 281 304 305 328 329 352 353 376 377)(18 19 42 43 66 67 90 91 114 115 138 139 162 163 186 187 210 211 234 235 258 259 282 283 306 307 330 331 354 355 378 379)(20 21 44 45 68 69 92 93 116 117 140 141 164 165 188 189 212 213 236 237 260 261 284 285 308 309 332 333 356 357 380 381)(22 23 46 47 70 71 94 95 118 119 142 143 166 167 190 191 214 215 238 239 262 263 286 287 310 311 334 335 358 359 382 383)", + "mux_np1200": "(12,12)(84 11 85 5 74 10 56 112 46 121 39 127)(100 26 110 33 69 24 63 109 45 93 25 99)(87 0 82 6 71 15 53 117 43 122 42 116)(102 28 81 34 70 18 60 103 17 94 27 101)(73 1 86 7 68 16 50 106 40 123 128 128)(105 29 75 35 67 12 54 89 20 95 128 128)(76 2 83 8 65 13 47 118 49 124 128 128)(108 30 78 36 64 14 51 90 23 96 128 128)(79 3 80 9 62 114 44 119 52 125 128 128)(104 31 72 37 61 113 57 91 19 97 128 128)(88 4 77 21 59 111 41 120 55 126 128 128)(107 32 66 38 58 115 48 92 22 98 128 128)", + "mux_np2000": "(24,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383)", + "mux_np2020": "(96,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897 928 929 960 961 992 993 1024 1025 1056 1057 1088 1089 1120 1121 1152 1153 1184 1185 1216 1217 1248 1249 1280 1281 1312 1313 1344 1345 1376 1377 1408 1409 1440 1441 1472 1473 1504 1505)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899 930 931 962 963 994 995 1026 1027 1058 1059 1090 1091 1122 1123 1154 1155 1186 1187 1218 1219 1250 1251 1282 1283 1314 1315 1346 1347 1378 1379 1410 1411 1442 1443 1474 1475 1506 1507)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901 932 933 964 965 996 997 1028 1029 1060 1061 1092 1093 1124 1125 1156 1157 1188 1189 1220 1221 1252 1253 1284 1285 1316 1317 1348 1349 1380 1381 1412 1413 1444 1445 1476 1477 1508 1509)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903 934 935 966 967 998 999 1030 1031 1062 1063 1094 1095 1126 1127 1158 1159 1190 1191 1222 1223 1254 1255 1286 1287 1318 1319 1350 1351 1382 1383 1414 1415 1446 1447 1478 1479 1510 1511)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905 936 937 968 969 1000 1001 1032 1033 1064 1065 1096 1097 1128 1129 1160 1161 1192 1193 1224 1225 1256 1257 1288 1289 1320 1321 1352 1353 1384 1385 1416 1417 1448 1449 1480 1481 1512 1513)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907 938 939 970 971 1002 1003 1034 1035 1066 1067 1098 1099 1130 1131 1162 1163 1194 1195 1226 1227 1258 1259 1290 1291 1322 1323 1354 1355 1386 1387 1418 1419 1450 1451 1482 1483 1514 1515)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909 940 941 972 973 1004 1005 1036 1037 1068 1069 1100 1101 1132 1133 1164 1165 1196 1197 1228 1229 1260 1261 1292 1293 1324 1325 1356 1357 1388 1389 1420 1421 1452 1453 1484 1485 1516 1517)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911 942 943 974 975 1006 1007 1038 1039 1070 1071 1102 1103 1134 1135 1166 1167 1198 1199 1230 1231 1262 1263 1294 1295 1326 1327 1358 1359 1390 1391 1422 1423 1454 1455 1486 1487 1518 1519)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913 944 945 976 977 1008 1009 1040 1041 1072 1073 1104 1105 1136 1137 1168 1169 1200 1201 1232 1233 1264 1265 1296 1297 1328 1329 1360 1361 1392 1393 1424 1425 1456 1457 1488 1489 1520 1521)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915 946 947 978 979 1010 1011 1042 1043 1074 1075 1106 1107 1138 1139 1170 1171 1202 1203 1234 1235 1266 1267 1298 1299 1330 1331 1362 1363 1394 1395 1426 1427 1458 1459 1490 1491 1522 1523)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917 948 949 980 981 1012 1013 1044 1045 1076 1077 1108 1109 1140 1141 1172 1173 1204 1205 1236 1237 1268 1269 1300 1301 1332 1333 1364 1365 1396 1397 1428 1429 1460 1461 1492 1493 1524 1525)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919 950 951 982 983 1014 1015 1046 1047 1078 1079 1110 1111 1142 1143 1174 1175 1206 1207 1238 1239 1270 1271 1302 1303 1334 1335 1366 1367 1398 1399 1430 1431 1462 1463 1494 1495 1526 1527)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921 952 953 984 985 1016 1017 1048 1049 1080 1081 1112 1113 1144 1145 1176 1177 1208 1209 1240 1241 1272 1273 1304 1305 1336 1337 1368 1369 1400 1401 1432 1433 1464 1465 1496 1497 1528 1529)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923 954 955 986 987 1018 1019 1050 1051 1082 1083 1114 1115 1146 1147 1178 1179 1210 1211 1242 1243 1274 1275 1306 1307 1338 1339 1370 1371 1402 1403 1434 1435 1466 1467 1498 1499 1530 1531)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925 956 957 988 989 1020 1021 1052 1053 1084 1085 1116 1117 1148 1149 1180 1181 1212 1213 1244 1245 1276 1277 1308 1309 1340 1341 1372 1373 1404 1405 1436 1437 1468 1469 1500 1501 1532 1533)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927 958 959 990 991 1022 1023 1054 1055 1086 1087 1118 1119 1150 1151 1182 1183 1214 1215 1246 1247 1278 1279 1310 1311 1342 1343 1374 1375 1406 1407 1438 1439 1470 1471 1502 1503 1534 1535)", + "mux_np3010": "(58,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927)", + "mux_np3020": "(96,16)(0 1 32 33 64 65 96 97 128 129 160 161 192 193 224 225 256 257 288 289 320 321 352 353 384 385 416 417 448 449 480 481 512 513 544 545 576 577 608 609 640 641 672 673 704 705 736 737 768 769 800 801 832 833 864 865 896 897 928 929 960 961 992 993 1024 1025 1056 1057 1088 1089 1120 1121 1152 1153 1184 1185 1216 1217 1248 1249 1280 1281 1312 1313 1344 1345 1376 1377 1408 1409 1440 1441 1472 1473 1504 1505)(2 3 34 35 66 67 98 99 130 131 162 163 194 195 226 227 258 259 290 291 322 323 354 355 386 387 418 419 450 451 482 483 514 515 546 547 578 579 610 611 642 643 674 675 706 707 738 739 770 771 802 803 834 835 866 867 898 899 930 931 962 963 994 995 1026 1027 1058 1059 1090 1091 1122 1123 1154 1155 1186 1187 1218 1219 1250 1251 1282 1283 1314 1315 1346 1347 1378 1379 1410 1411 1442 1443 1474 1475 1506 1507)(4 5 36 37 68 69 100 101 132 133 164 165 196 197 228 229 260 261 292 293 324 325 356 357 388 389 420 421 452 453 484 485 516 517 548 549 580 581 612 613 644 645 676 677 708 709 740 741 772 773 804 805 836 837 868 869 900 901 932 933 964 965 996 997 1028 1029 1060 1061 1092 1093 1124 1125 1156 1157 1188 1189 1220 1221 1252 1253 1284 1285 1316 1317 1348 1349 1380 1381 1412 1413 1444 1445 1476 1477 1508 1509)(6 7 38 39 70 71 102 103 134 135 166 167 198 199 230 231 262 263 294 295 326 327 358 359 390 391 422 423 454 455 486 487 518 519 550 551 582 583 614 615 646 647 678 679 710 711 742 743 774 775 806 807 838 839 870 871 902 903 934 935 966 967 998 999 1030 1031 1062 1063 1094 1095 1126 1127 1158 1159 1190 1191 1222 1223 1254 1255 1286 1287 1318 1319 1350 1351 1382 1383 1414 1415 1446 1447 1478 1479 1510 1511)(8 9 40 41 72 73 104 105 136 137 168 169 200 201 232 233 264 265 296 297 328 329 360 361 392 393 424 425 456 457 488 489 520 521 552 553 584 585 616 617 648 649 680 681 712 713 744 745 776 777 808 809 840 841 872 873 904 905 936 937 968 969 1000 1001 1032 1033 1064 1065 1096 1097 1128 1129 1160 1161 1192 1193 1224 1225 1256 1257 1288 1289 1320 1321 1352 1353 1384 1385 1416 1417 1448 1449 1480 1481 1512 1513)(10 11 42 43 74 75 106 107 138 139 170 171 202 203 234 235 266 267 298 299 330 331 362 363 394 395 426 427 458 459 490 491 522 523 554 555 586 587 618 619 650 651 682 683 714 715 746 747 778 779 810 811 842 843 874 875 906 907 938 939 970 971 1002 1003 1034 1035 1066 1067 1098 1099 1130 1131 1162 1163 1194 1195 1226 1227 1258 1259 1290 1291 1322 1323 1354 1355 1386 1387 1418 1419 1450 1451 1482 1483 1514 1515)(12 13 44 45 76 77 108 109 140 141 172 173 204 205 236 237 268 269 300 301 332 333 364 365 396 397 428 429 460 461 492 493 524 525 556 557 588 589 620 621 652 653 684 685 716 717 748 749 780 781 812 813 844 845 876 877 908 909 940 941 972 973 1004 1005 1036 1037 1068 1069 1100 1101 1132 1133 1164 1165 1196 1197 1228 1229 1260 1261 1292 1293 1324 1325 1356 1357 1388 1389 1420 1421 1452 1453 1484 1485 1516 1517)(14 15 46 47 78 79 110 111 142 143 174 175 206 207 238 239 270 271 302 303 334 335 366 367 398 399 430 431 462 463 494 495 526 527 558 559 590 591 622 623 654 655 686 687 718 719 750 751 782 783 814 815 846 847 878 879 910 911 942 943 974 975 1006 1007 1038 1039 1070 1071 1102 1103 1134 1135 1166 1167 1198 1199 1230 1231 1262 1263 1294 1295 1326 1327 1358 1359 1390 1391 1422 1423 1454 1455 1486 1487 1518 1519)(16 17 48 49 80 81 112 113 144 145 176 177 208 209 240 241 272 273 304 305 336 337 368 369 400 401 432 433 464 465 496 497 528 529 560 561 592 593 624 625 656 657 688 689 720 721 752 753 784 785 816 817 848 849 880 881 912 913 944 945 976 977 1008 1009 1040 1041 1072 1073 1104 1105 1136 1137 1168 1169 1200 1201 1232 1233 1264 1265 1296 1297 1328 1329 1360 1361 1392 1393 1424 1425 1456 1457 1488 1489 1520 1521)(18 19 50 51 82 83 114 115 146 147 178 179 210 211 242 243 274 275 306 307 338 339 370 371 402 403 434 435 466 467 498 499 530 531 562 563 594 595 626 627 658 659 690 691 722 723 754 755 786 787 818 819 850 851 882 883 914 915 946 947 978 979 1010 1011 1042 1043 1074 1075 1106 1107 1138 1139 1170 1171 1202 1203 1234 1235 1266 1267 1298 1299 1330 1331 1362 1363 1394 1395 1426 1427 1458 1459 1490 1491 1522 1523)(20 21 52 53 84 85 116 117 148 149 180 181 212 213 244 245 276 277 308 309 340 341 372 373 404 405 436 437 468 469 500 501 532 533 564 565 596 597 628 629 660 661 692 693 724 725 756 757 788 789 820 821 852 853 884 885 916 917 948 949 980 981 1012 1013 1044 1045 1076 1077 1108 1109 1140 1141 1172 1173 1204 1205 1236 1237 1268 1269 1300 1301 1332 1333 1364 1365 1396 1397 1428 1429 1460 1461 1492 1493 1524 1525)(22 23 54 55 86 87 118 119 150 151 182 183 214 215 246 247 278 279 310 311 342 343 374 375 406 407 438 439 470 471 502 503 534 535 566 567 598 599 630 631 662 663 694 695 726 727 758 759 790 791 822 823 854 855 886 887 918 919 950 951 982 983 1014 1015 1046 1047 1078 1079 1110 1111 1142 1143 1174 1175 1206 1207 1238 1239 1270 1271 1302 1303 1334 1335 1366 1367 1398 1399 1430 1431 1462 1463 1494 1495 1526 1527)(24 25 56 57 88 89 120 121 152 153 184 185 216 217 248 249 280 281 312 313 344 345 376 377 408 409 440 441 472 473 504 505 536 537 568 569 600 601 632 633 664 665 696 697 728 729 760 761 792 793 824 825 856 857 888 889 920 921 952 953 984 985 1016 1017 1048 1049 1080 1081 1112 1113 1144 1145 1176 1177 1208 1209 1240 1241 1272 1273 1304 1305 1336 1337 1368 1369 1400 1401 1432 1433 1464 1465 1496 1497 1528 1529)(26 27 58 59 90 91 122 123 154 155 186 187 218 219 250 251 282 283 314 315 346 347 378 379 410 411 442 443 474 475 506 507 538 539 570 571 602 603 634 635 666 667 698 699 730 731 762 763 794 795 826 827 858 859 890 891 922 923 954 955 986 987 1018 1019 1050 1051 1082 1083 1114 1115 1146 1147 1178 1179 1210 1211 1242 1243 1274 1275 1306 1307 1338 1339 1370 1371 1402 1403 1434 1435 1466 1467 1498 1499 1530 1531)(28 29 60 61 92 93 124 125 156 157 188 189 220 221 252 253 284 285 316 317 348 349 380 381 412 413 444 445 476 477 508 509 540 541 572 573 604 605 636 637 668 669 700 701 732 733 764 765 796 797 828 829 860 861 892 893 924 925 956 957 988 989 1020 1021 1052 1053 1084 1085 1116 1117 1148 1149 1180 1181 1212 1213 1244 1245 1276 1277 1308 1309 1340 1341 1372 1373 1404 1405 1436 1437 1468 1469 1500 1501 1532 1533)(30 31 62 63 94 95 126 127 158 159 190 191 222 223 254 255 286 287 318 319 350 351 382 383 414 415 446 447 478 479 510 511 542 543 574 575 606 607 638 639 670 671 702 703 734 735 766 767 798 799 830 831 862 863 894 895 926 927 958 959 990 991 1022 1023 1054 1055 1086 1087 1118 1119 1150 1151 1182 1183 1214 1215 1246 1247 1278 1279 1310 1311 1342 1343 1374 1375 1406 1407 1438 1439 1470 1471 1502 1503 1534 1535)" + }, + "z_imro_format_type_to_imro_format": { + "0": "imro_np1000", + "21": "imro_np2000", + "24": "imro_np2010", + "1020": "imro_np1000", + "1030": "imro_np1000", + "1100": "imro_np1000", + "1110": "imro_np1110", + "1120": "imro_np1000", + "1121": "imro_np1000", + "1122": "imro_np1000", + "1123": "imro_np1000", + "1200": "imro_np1000", + "1300": "imro_np1000", + "2003": "imro_np2003", + "2013": "imro_np2013", + "2020": "imro_np2020", + "3010": "imro_np3010", + "3020": "imro_np3020" + }, + "z_imro_format_type_to_part_number": { + "0": "NP1000", + "21": "NP2000", + "24": "NP2010", + "1020": "NP1020", + "1030": "NP1030", + "1100": "NP1100", + "1110": "NP1110", + "1120": "NP1120", + "1121": "NP1121", + "1122": "NP1122", + "1123": "NP1123", + "1200": "NP1200", + "1300": "NP1300", + "2003": "NP2003", + "2013": "NP2013", + "2020": "NP2020", + "3010": "NP3010", + "3020": "NP3020" + } +}