In [1]:
import analysis3 as a3

In [2]:
## For Aut1367:
points_path = 'Aut1367reorient_atlaslocaleq.csv'

In [3]:
p, uniq = a3.get_regions(points_path, "atlas/ara3_annotation.nii", "points/" + 'Aut1367' + "_regions.csv");


10000
num unique regions: 31
[0, 771, 7, 781, 656, 1041, 1049, 153, 665, 794, 412, 413, 159, 288, 934, 647, 556, 698, 188, 703, 448, 1089, 328, 841, 728, 217, 96, 354, 1123, 996, 101]
analysis3.py:468: VisibleDeprecationWarning:

using a non-integer number instead of an integer will result in an error in the future


In [34]:
import numpy as np
import os

import plotly
from plotly.graph_objs import *
from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
from plotly import tools
import csv
import seaborn as sns

import requests
import json
""" Generates the plotly centroid html file with proper scaling of the centroid determined by the number of bright spots from the csv file. :param points_path: Filepath to points csv. :param output_path: Filepath for where to save output html. :param resolution: Resolution for spacing (see openConnecto.me spacing) :return: """

In [5]:
# Type in the path to your csv file here
thedata = None
thedata = np.genfromtxt('points/Aut1367_regions.csv',
    delimiter=',', dtype='int', usecols = (0,1,2,4), names=['a','b','c', 'region'])

In [6]:
# Sort the csv file by the last column (by order = 'region') using ndarray.sort
sort = np.sort(thedata, order = 'region');

In [7]:
# Save a copy of this sorted csv in the points folder
if not os.path.exists('points'):
    os.makedirs('points')
np.savetxt('points/Aut1367_regions_sorted.csv', sort, fmt='%d', delimiter=',')

In [21]:
# Find the centroids of each region

sorted_regions = np.sort(uniq);

current_region = sorted_regions[0];
i = 0;
x = [];
y = [];
z = [];
centroids = {};

for row in sort:
    if row[3] == current_region:
        # Append x, y, z to appropiate list
        x.append(row[0]);
        y.append(row[1]);
        z.append(row[2]);
    else:
        # Store in centroids dictionary with key current_region the average x, y, z position.
        # Also store the number of points.
        centroids[current_region] = [np.average(x), np.average(y), np.average(z), len(x)];
        
        # Increment i, change current_region
        i = i + 1;
        current_region = sorted_regions[i]
        
        # Set x, y, z to new row values;
        x = [row[0]];
        y = [row[1]];
        z = [row[2]];

# Store last region averages also!
centroids[current_region] = [np.average(x), np.average(y), np.average(z), len(x)];

In [27]:
output_path = 'output/Aut1367_centroids_by_size.html'

In [ ]:
current_palette = sns.color_palette("husl", len(sorted_regions))
i = 0;

data = [];
for key in sorted_regions:
    current_values_list = centroids[key];
    
    tmp_col = current_palette[i];
    tmp_col_lit = 'rgb' + str(tmp_col);

    trace_scatter = Scatter3d(
        x = [current_values_list[0]],
        y = [current_values_list[1]],
        z = [current_values_list[2]],
        mode = 'markers',
        name = key,
        marker = dict(
            size= np.divide(float(current_values_list[3]), 10000) * 1000,
            color = tmp_col_lit,     # set color to an array/list of desired values
            colorscale = 'Viridis',  # choose a colorscale
            opacity = 0.5
        )
    )

    data.append(trace_scatter)
    i = i + 1;
        
layout = Layout(
    margin=dict(
        l=0,
        r=0,
        b=0,
        t=0
    ),
    paper_bgcolor='rgb(0,0,0)',
    plot_bgcolor='rgb(0,0,0)'
)

fig = Figure(data=data, layout=layout)

if not os.path.exists('output'):
    os.makedirs('output')

if output_path != None:
    plotly.offline.plot(fig, filename=output_path)

In [44]:
## For s275 to ara3:
points_path = 's275_to_ara3.csv'
output_path = 'output/s275_centroids_by_size.html'
p, uniq = a3.get_regions(points_path, "atlas/ara3_annotation.nii", "points/" + 's275_to_ara3_run' + "_regions.csv");

points_path = 'points/s275_to_ara3_run_regions.csv'
generate_scaled_centroids_graph('s275', points_path, uniq, output_path = output_path)


10050
num unique regions: 409
[0, 2, 4, 6, 9, 10, 15, 17, 19, 23, 26, 27, 33, 35, 36, 38, 42, 50, 56, 59, 62, 63, 64, 67, 68, 72, 73, 74, 81, 84, 88, 100, 113, 117, 118, 120, 122, 125, 126, 127, 128, 129, 131, 132, 133, 140, 146, 148, 149, 155, 156, 158, 159, 163, 170, 171, 173, 178, 180, 181, 186, 187, 188, 189, 190, 194, 196, 197, 201, 204, 210, 211, 214, 215, 218, 223, 226, 233, 243, 246, 250, 252, 255, 257, 258, 260, 262, 263, 266, 271, 272, 274, 278, 286, 287, 288, 289, 296, 298, 301, 303, 304, 305, 310, 311, 313, 314, 319, 320, 321, 326, 328, 333, 335, 338, 342, 344, 347, 351, 362, 363, 364, 366, 368, 374, 377, 381, 382, 397, 403, 412, 414, 421, 422, 423, 430, 434, 436, 440, 442, 443, 448, 449, 450, 451, 452, 463, 10704, 466, 469, 470, 475, 477, 478, 482, 483, 484, 491, 494, 502, 503, 507, 510, 511, 515, 520, 523, 525, 530, 531, 536, 542, 549, 556, 558, 564, 565, 566, 573, 574, 575, 577, 580, 581, 582, 583, 587, 588, 589, 590, 591, 593, 595, 596, 598, 599, 600, 601, 603, 608, 609, 610, 611, 612, 613, 614, 616, 620, 621, 622, 625, 628, 629, 630, 632, 634, 638, 639, 642, 647, 648, 654, 656, 657, 658, 665, 667, 670, 672, 673, 675, 678, 679, 681, 685, 687, 689, 690, 692, 693, 694, 697, 698, 702, 703, 704, 706, 707, 718, 721, 725, 729, 10703, 733, 741, 749, 754, 767, 771, 772, 776, 778, 780, 783, 784, 786, 788, 795, 797, 800, 802, 803, 804, 806, 810, 814, 819, 821, 827, 830, 838, 842, 843, 844, 847, 848, 851, 854, 857, 862, 863, 872, 874, 877, 878, 882, 884, 888, 889, 893, 897, 900, 902, 905, 906, 907, 908, 910, 914, 918, 919, 924, 182305693, 926, 927, 182305697, 930, 931, 182305701, 934, 935, 182305705, 940, 182305709, 943, 182305713, 946, 950, 952, 954, 961, 962, 966, 969, 973, 974, 975, 977, 980, 981, 982, 985, 988, 996, 998, 1004, 1005, 1009, 1010, 1015, 1016, 1020, 1021, 1022, 1026, 1029, 1031, 1035, 1037, 1038, 1044, 1045, 1046, 1047, 1052, 1054, 1058, 1060, 1061, 1062, 1070, 1074, 1077, 1081, 1084, 1085, 1089, 1090, 1092, 1094, 1097, 1101, 1102, 1105, 1106, 1109, 1111, 1113, 1114, 1120, 1125, 1128, 1139, 929, 945, 312782562, 312782566, 312782582, 312782586, 312782590, 312782594, 312782604, 312782608, 312782612, 312782616, 312782620, 312782624, 312782644, 312782648]
Total number of unique ID's:
343
0

In [43]:
def generate_scaled_centroids_graph(token, points_path, unique_list, output_path=None):
    """
    Generates the plotly centroid html file with proper scaling of the centroid determined by the number of bright spots from the csv file.
    :param points_path: Filepath to points csv.
    :param output_path: Filepath for where to save output html.
    :param resolution: Resolution for spacing (see openConnecto.me spacing)
    :return:
    """
    
    # Type in the path to your csv file here
    thedata = None
    thedata = np.genfromtxt(points_path,
        delimiter=',', dtype='int', usecols = (0,1,2,4), names=['a','b','c', 'region'])
    
    # Save the names of the regions
    """
    Load the CSV of the ARA with CCF v3: in order to generate this we use the ARA API.
    We can download a csv using the following URL:
    http://api.brain-map.org/api/v2/data/query.csv?criteria=model::Structure,rma::criteria,[ontology_id$eq1],rma::options[order$eq%27structures.graph_order%27][num_rows$eqall]
    
    Note the change of ontology_id$eq27 to ontology_id$eq1 to get the brain atlas.
    """
    ccf_txt = 'natureCCFOhedited.csv'

    ccf = {}
    with open(ccf_txt, 'rU') as csvfile:
        csvreader = csv.reader(csvfile)
        for row in csvreader:
            # row[0] is ccf atlas index, row[4] is string of full name
            ccf[row[0]] = row[4];
    
    # Sort the csv file by the last column (by order = 'region') using ndarray.sort
    sort = np.sort(thedata, order = 'region');
    
    # Save the unique counts
    unique = [];

    for l in sort:
        unique.append(l[3])

    uniqueNP = np.asarray(unique)
    allUnique = np.unique(uniqueNP)
    numRegionsA = len(allUnique)
    
    """
    First we download annotation ontology from Allen Brain Atlas API.
    It returns a JSON tree in which larger parent structures are divided into smaller children regions.
    For example the "corpus callosum" parent is has children "corpus callosum, anterior forceps", "genu of corpus callosum", "corpus callosum, body", etc
    """

    url = "http://api.brain-map.org/api/v2/structure_graph_download/1.json"
    jsonRaw = requests.get(url).content
    jsonDict = json.loads(jsonRaw)

    """
    Next we collect the names and ids of all of the regions.
    Since our json data is a tree we can walk through it in arecursive manner.
    Thus starting from the root...
    """
    root = jsonDict['msg'][0]
    """
    ...we define a recursive function ...
    """

    leafList = []

    def getChildrenNames(parent, childrenNames={}):
        if len(parent['children']) == 0:
            leafList.append(parent['id'])

        for childIndex in range(len(parent['children'])):
            child = parent['children'][childIndex]
            childrenNames[child['id']] = child['name']

            childrenNames = getChildrenNames(child, childrenNames)
        return childrenNames

    """
    ... and collect all of the region names in a dictionary with the "id" field as keys.
    """

    regionDict = getChildrenNames(root)

    # Store most specific data
    specificRegions = [];

    for l in sort:
        if l[3] in leafList:
            specificRegions.append(l)

    # Find all unique regions of brightest points (new)
    uniqueFromSpecific = [];

    for l in specificRegions:
        uniqueFromSpecific.append(l[3])

    # Convert to numpy and save specific lengths
    uniqueSpecificNP = np.asarray(uniqueFromSpecific)
    allUniqueSpecific = np.unique(uniqueSpecificNP)
    numRegionsASpecific = len(allUniqueSpecific)
    specificRegionsNP = np.asarray(specificRegions)

    print "Total number of unique ID's:"
    print numRegionsASpecific  ## number of regions

    # Save a copy of this sorted/specific csv in the points folder
    if not os.path.exists('points'):
        os.makedirs('points')
        
    np.savetxt('points/' + str(token) + '_regions_sorted.csv', sort, fmt='%d', delimiter=',')
    np.savetxt('points/' + str(token) + '_regions_sorted_specific.csv', specificRegionsNP, fmt='%d', delimiter=',')
    
    # Find the centroids of each region
    sorted_regions = np.sort(unique_list);

    current_region = sorted_regions[0];
    i = 0;
    x = [];
    y = [];
    z = [];
    centroids = {};

    for row in specificRegionsNP:
        if row[3] == current_region:
            # Append x, y, z to appropiate list
            x.append(row[0]);
            y.append(row[1]);
            z.append(row[2]);
        else:
            # Store in centroids dictionary with key current_region the average x, y, z position.
            # Also store the number of points.
            centroids[current_region] = [np.average(x), np.average(y), np.average(z), len(x)];

            # Increment i, change current_region
            i = i + 1;
            current_region = sorted_regions[i]

            # Set x, y, z to new row values;
            x = [row[0]];
            y = [row[1]];
            z = [row[2]];

    # Store last region averages also!
    centroids[current_region] = [np.average(x), np.average(y), np.average(z), len(x)];
    
    trace = [];
    for l in specificRegionsNP:
        if str(l[3]) in ccf.keys():
            trace = ccf[str(l[3])]
    
    # Set color pallete to number of specific regions
    current_palette = sns.color_palette("husl", numRegionsA)
    i = 0;

    data = [];
    
    for key in centroids.keys():
        if str(key) not in ccf.keys():
            print key
        else:
            current_values_list = centroids[key];

            tmp_col = current_palette[i];
            tmp_col_lit = 'rgb' + str(tmp_col);

            trace_scatter = Scatter3d(
                x = [current_values_list[0]],
                y = [current_values_list[1]],
                z = [current_values_list[2]],
                mode = 'markers',
                name = ccf[str(key)],
                marker = dict(
                    size= np.divide(float(current_values_list[3]), 10000) * 500,
                    color = tmp_col_lit,     # set color to an array/list of desired values
                    colorscale = 'Viridis',  # choose a colorscale
                    opacity = 0.5
                )
            )

            data.append(trace_scatter)
        i = i + 1;

    layout = Layout(
        margin=dict(
            l=0,
            r=0,
            b=0,
            t=0
        ),
        paper_bgcolor='rgb(0,0,0)',
        plot_bgcolor='rgb(0,0,0)'
    )

    fig = Figure(data=data, layout=layout)

    if not os.path.exists('output'):
        os.makedirs('output')

    if output_path != None:
        plotly.offline.plot(fig, filename=output_path)

In [23]:
ccf_txt = 'natureCCFOhedited.csv'

ccf = {}
with open(ccf_txt, 'rU') as csvfile:
    csvreader = csv.reader(csvfile)
    for row in csvreader:
        # row[0] is ccf atlas index, row[4] is string of full name
        ccf[row[0]] = row[4];

In [24]:
print ccf['312782562']


Anterior area, layer 5

In [27]:
reload(a3)


Out[27]:
<module 'analysis3' from 'analysis3.py'>

In [29]:
a3.generate_region_graph('s275_to_ara3_test', points_path, output_path = 'test.html')


Total number of unique ID's:
343
Done counting!
Out[29]:
({'data': [{'marker': {'color': 'rgb(0.9677975592919913, 0.44127456009157356, 0.5358103155058701)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 6b',
    'type': 'scatter3d',
    'x': [849],
    'y': [294],
    'z': [520]},
   {'marker': {'color': 'rgb(0.9679182505914964, 0.44217197691188087, 0.5279992503747023)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'internal capsule',
    'type': 'scatter3d',
    'x': [715,
     729,
     739,
     740,
     742,
     744,
     748,
     750,
     759,
     761,
     763,
     767,
     771,
     772,
     772,
     776,
     776,
     777,
     779,
     782,
     783,
     784,
     785,
     785,
     793,
     797,
     798,
     798,
     800,
     800,
     802,
     802,
     805,
     806,
     807,
     811,
     813,
     821,
     822,
     825,
     830,
     832,
     837,
     840,
     840,
     841,
     841,
     843,
     844,
     844,
     847,
     847,
     851,
     853,
     862,
     863,
     871,
     876,
     886,
     887,
     891,
     910],
    'y': [483,
     586,
     512,
     570,
     399,
     571,
     390,
     578,
     558,
     374,
     461,
     572,
     488,
     397,
     492,
     498,
     533,
     474,
     470,
     550,
     506,
     481,
     359,
     541,
     477,
     533,
     446,
     514,
     422,
     481,
     379,
     504,
     525,
     480,
     485,
     355,
     371,
     382,
     491,
     421,
     382,
     462,
     476,
     373,
     441,
     378,
     427,
     340,
     369,
     473,
     332,
     376,
     389,
     334,
     390,
     414,
     411,
     414,
     392,
     396,
     415,
     382],
    'z': [588,
     761,
     649,
     749,
     571,
     721,
     583,
     717,
     741,
     590,
     613,
     735,
     646,
     607,
     646,
     669,
     727,
     647,
     644,
     760,
     710,
     664,
     608,
     736,
     653,
     755,
     641,
     728,
     628,
     659,
     631,
     700,
     669,
     647,
     713,
     638,
     630,
     640,
     673,
     667,
     647,
     707,
     679,
     664,
     692,
     665,
     683,
     646,
     645,
     698,
     651,
     671,
     684,
     657,
     684,
     678,
     674,
     702,
     714,
     706,
     714,
     725]},
   {'marker': {'color': 'rgb(0.9680393396300463, 0.4430702263028363, 0.5200110275401794)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, trunk, layer 6a',
    'type': 'scatter3d',
    'x': [721, 799, 810],
    'y': [111, 145, 138],
    'z': [732, 730, 731]},
   {'marker': {'color': 'rgb(0.9681608855222964, 0.44396973878030366, 0.5118319178219797)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Parataenial nucleus',
    'type': 'scatter3d',
    'x': [529, 545, 548, 597, 604, 607, 611, 612, 615, 618],
    'y': [428, 485, 467, 415, 423, 434, 479, 444, 387, 480],
    'z': [567, 570, 562, 608, 588, 573, 583, 587, 592, 579]},
   {'marker': {'color': 'rgb(0.9682829482606413, 0.4448709472739604, 0.5034468649051946)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, intermediate white layer',
    'type': 'scatter3d',
    'x': [532,
     538,
     550,
     551,
     569,
     581,
     583,
     599,
     607,
     615,
     624,
     625,
     626,
     628,
     634,
     635,
     637,
     639,
     643,
     646,
     647,
     647,
     654,
     654,
     657,
     658,
     659,
     661,
     662,
     664,
     666,
     669,
     670,
     671,
     673,
     673,
     678,
     679,
     679,
     681,
     681,
     681,
     684,
     685,
     688,
     688,
     694,
     702,
     707,
     708,
     711,
     711,
     723,
     725,
     727,
     728,
     730,
     731,
     733,
     739,
     740,
     743],
    'y': [246,
     249,
     244,
     209,
     194,
     192,
     224,
     263,
     171,
     191,
     182,
     216,
     196,
     170,
     243,
     225,
     212,
     210,
     180,
     201,
     220,
     294,
     205,
     260,
     290,
     225,
     252,
     213,
     320,
     255,
     252,
     203,
     225,
     296,
     227,
     230,
     315,
     213,
     298,
     189,
     211,
     218,
     209,
     315,
     217,
     266,
     240,
     308,
     224,
     231,
     264,
     304,
     283,
     258,
     290,
     305,
     247,
     332,
     294,
     280,
     241,
     287],
    'z': [839,
     839,
     833,
     923,
     965,
     956,
     881,
     834,
     954,
     949,
     930,
     883,
     898,
     976,
     874,
     898,
     922,
     927,
     979,
     956,
     921,
     857,
     911,
     858,
     843,
     898,
     855,
     958,
     843,
     861,
     874,
     957,
     896,
     839,
     927,
     901,
     854,
     928,
     856,
     980,
     966,
     954,
     930,
     868,
     935,
     867,
     925,
     872,
     971,
     920,
     902,
     883,
     896,
     900,
     915,
     864,
     907,
     870,
     891,
     916,
     940,
     897]},
   {'marker': {'color': 'rgb(0.9684055888364181, 0.44577428797123714, 0.49483928830162766)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Induseum griseum',
    'type': 'scatter3d',
    'x': [578],
    'y': [273],
    'z': [509]},
   {'marker': {'color': 'rgb(0.968528869365248, 0.44668020117466706, 0.48599084799650544)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior amygdalar area',
    'type': 'scatter3d',
    'x': [755,
     757,
     758,
     765,
     774,
     776,
     778,
     786,
     794,
     800,
     803,
     806,
     812,
     813,
     814,
     822,
     824,
     826,
     851],
    'y': [657,
     685,
     691,
     611,
     626,
     686,
     629,
     635,
     632,
     619,
     634,
     616,
     622,
     630,
     630,
     634,
     611,
     617,
     623],
    'z': [578,
     558,
     573,
     587,
     593,
     567,
     584,
     563,
     607,
     551,
     564,
     544,
     570,
     581,
     620,
     571,
     571,
     589,
     607]},
   {'marker': {'color': 'rgb(0.968652853217088, 0.44758913217627677, 0.47688116119664653)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, deep gray layer',
    'type': 'scatter3d',
    'x': [531,
     532,
     538,
     543,
     548,
     548,
     551,
     563,
     569,
     573,
     585,
     588,
     598,
     600,
     606,
     608,
     609,
     613,
     615,
     620,
     621,
     621,
     625,
     632,
     634,
     636,
     642,
     650,
     652,
     656,
     662,
     676,
     677,
     681,
     681,
     689,
     691,
     699],
    'y': [236,
     233,
     237,
     251,
     232,
     236,
     220,
     227,
     261,
     250,
     248,
     234,
     226,
     227,
     218,
     203,
     235,
     205,
     257,
     210,
     217,
     222,
     201,
     267,
     249,
     263,
     257,
     265,
     230,
     287,
     269,
     256,
     289,
     243,
     303,
     298,
     283,
     299],
    'z': [898,
     893,
     876,
     861,
     885,
     884,
     921,
     909,
     851,
     862,
     859,
     875,
     888,
     906,
     896,
     938,
     896,
     931,
     847,
     931,
     963,
     928,
     951,
     864,
     904,
     862,
     893,
     886,
     934,
     868,
     893,
     921,
     926,
     935,
     887,
     908,
     962,
     910]},
   {'marker': {'color': 'rgb(0.9687776051515843, 0.4485015321527858, 0.46748745862977265)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Intergeniculate leaflet of the lateral geniculate complex',
    'type': 'scatter3d',
    'x': [816],
    'y': [368],
    'z': [749]},
   {'marker': {'color': 'rgb(0.9689031914593648, 0.4494178590855172, 0.4577841637653975)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 6a',
    'type': 'scatter3d',
    'x': [752,
     758,
     758,
     758,
     769,
     777,
     779,
     781,
     782,
     789,
     790,
     790,
     792,
     792,
     792,
     799,
     802,
     807,
     811,
     818,
     824,
     825,
     826,
     829,
     836,
     840,
     847,
     848,
     851,
     854,
     855,
     860,
     864,
     872,
     873,
     873,
     876,
     878,
     878,
     882],
    'y': [120,
     111,
     130,
     132,
     134,
     117,
     138,
     121,
     141,
     143,
     123,
     152,
     142,
     152,
     155,
     121,
     135,
     113,
     131,
     133,
     142,
     139,
     170,
     181,
     208,
     149,
     182,
     148,
     145,
     182,
     163,
     206,
     158,
     184,
     168,
     195,
     198,
     161,
     176,
     195],
    'z': [882,
     909,
     922,
     937,
     930,
     801,
     940,
     879,
     875,
     914,
     845,
     939,
     929,
     921,
     961,
     796,
     858,
     777,
     843,
     793,
     800,
     829,
     951,
     980,
     974,
     893,
     967,
     863,
     810,
     929,
     889,
     964,
     829,
     931,
     870,
     951,
     904,
     830,
     900,
     882]},
   {'marker': {'color': 'rgb(0.9690296801099448, 0.4503385787091139, 0.4477423726375564)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Oculomotor nucleus',
    'type': 'scatter3d',
    'x': [539, 583],
    'y': [375, 378],
    'z': [926, 900]},
   {'marker': {'color': 'rgb(0.9691571409069836, 0.4512641654933643, 0.4373292038876395)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Gustatory areas, layer 1',
    'type': 'scatter3d',
    'x': [892, 899, 915, 919, 919, 923, 924, 925, 942, 968],
    'y': [418, 401, 444, 379, 428, 420, 415, 405, 409, 458],
    'z': [332, 337, 352, 352, 366, 356, 359, 356, 370, 431]},
   {'marker': {'color': 'rgb(0.969285645651668, 0.45219510366268306, 0.42650697702579893)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, deep white layer',
    'type': 'scatter3d',
    'x': [536, 556, 558, 594, 604, 621, 622, 637, 652, 657],
    'y': [238, 269, 231, 252, 236, 229, 263, 261, 282, 266],
    'z': [905, 845, 922, 872, 909, 944, 879, 898, 915, 940]},
   {'marker': {'color': 'rgb(0.9694152683150791, 0.453131888258087, 0.4152321598417205)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Precommissural nucleus',
    'type': 'scatter3d',
    'x': [543, 545, 595, 603, 611, 622],
    'y': [310, 305, 304, 323, 319, 329],
    'z': [759, 758, 759, 761, 758, 753]},
   {'marker': {'color': 'rgb(0.9695460852204584, 0.4540750262468181, 0.4034540002933199)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus accumbens',
    'type': 'scatter3d',
    'x': [606,
     610,
     614,
     618,
     620,
     627,
     628,
     628,
     630,
     631,
     631,
     632,
     635,
     638,
     640,
     640,
     641,
     641,
     643,
     644,
     646,
     646,
     647,
     653,
     654,
     656,
     658,
     659,
     660,
     661,
     661,
     661,
     662,
     662,
     664,
     665,
     667,
     667,
     667,
     667,
     668,
     671,
     671,
     671,
     672,
     674,
     674,
     675,
     676,
     676,
     678,
     679,
     679,
     679,
     680,
     682,
     683,
     683,
     684,
     686,
     687,
     691,
     692,
     693,
     693,
     696,
     698,
     698,
     699,
     700,
     703,
     704,
     704,
     710,
     711,
     713,
     713,
     716,
     716,
     716,
     716,
     718,
     719,
     720,
     723,
     725,
     727,
     727,
     728,
     730,
     732,
     733,
     734,
     736,
     737,
     740,
     740,
     744,
     746,
     747,
     748,
     751,
     752,
     754,
     760,
     764,
     767,
     774,
     781,
     781,
     782,
     795,
     801],
    'y': [592,
     546,
     609,
     595,
     587,
     583,
     575,
     625,
     549,
     543,
     588,
     511,
     504,
     500,
     542,
     582,
     496,
     500,
     525,
     512,
     548,
     549,
     616,
     490,
     569,
     610,
     609,
     547,
     617,
     504,
     534,
     636,
     519,
     649,
     624,
     534,
     532,
     546,
     625,
     628,
     501,
     536,
     569,
     606,
     603,
     606,
     631,
     570,
     531,
     563,
     521,
     511,
     584,
     605,
     613,
     547,
     563,
     564,
     629,
     584,
     648,
     625,
     580,
     592,
     626,
     490,
     522,
     577,
     595,
     577,
     582,
     490,
     508,
     617,
     580,
     578,
     590,
     500,
     587,
     651,
     654,
     599,
     542,
     610,
     572,
     642,
     635,
     650,
     501,
     659,
     579,
     613,
     626,
     611,
     615,
     601,
     610,
     591,
     589,
     615,
     578,
     646,
     631,
     588,
     595,
     597,
     591,
     605,
     606,
     626,
     589,
     629,
     588],
    'z': [411,
     426,
     412,
     437,
     422,
     446,
     392,
     409,
     435,
     426,
     371,
     453,
     421,
     378,
     400,
     414,
     374,
     421,
     440,
     462,
     376,
     388,
     407,
     430,
     461,
     385,
     388,
     404,
     453,
     352,
     379,
     393,
     357,
     426,
     435,
     396,
     416,
     387,
     458,
     396,
     437,
     411,
     371,
     375,
     367,
     398,
     381,
     356,
     384,
     458,
     403,
     433,
     464,
     390,
     371,
     353,
     410,
     375,
     432,
     427,
     402,
     415,
     427,
     410,
     376,
     366,
     430,
     463,
     476,
     387,
     471,
     387,
     387,
     393,
     437,
     412,
     462,
     377,
     450,
     460,
     424,
     394,
     397,
     437,
     447,
     444,
     447,
     432,
     373,
     440,
     424,
     453,
     471,
     482,
     477,
     469,
     453,
     429,
     471,
     411,
     412,
     434,
     449,
     449,
     445,
     479,
     455,
     469,
     456,
     479,
     479,
     477,
     449]},
   {'marker': {'color': 'rgb(0.9696781752363764, 0.45502503768514885, 0.3911127188851523)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Intermediodorsal nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [569, 571, 574, 575, 575, 576, 578],
    'y': [387, 434, 408, 386, 438, 393, 406],
    'z': [684, 680, 649, 674, 725, 695, 712]},
   {'marker': {'color': 'rgb(0.9698116199818884, 0.45598245694030964, 0.3781370755541685)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'medial longitudinal fascicle',
    'type': 'scatter3d',
    'x': [538, 539, 546, 551, 556, 564, 571, 597, 599, 606, 609, 610, 612],
    'y': [406, 389, 406, 409, 412, 410, 403, 399, 385, 359, 391, 366, 403],
    'z': [925, 925, 928, 945, 868, 869, 938, 887, 866, 840, 934, 859, 932]},
   {'marker': {'color': 'rgb(0.9699465040448744, 0.45694783397796174, 0.36444102435681136)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterodorsal nucleus',
    'type': 'scatter3d',
    'x': [638, 639, 641, 643, 644, 649],
    'y': [343, 390, 377, 391, 316, 347],
    'z': [597, 604, 594, 597, 625, 590]},
   {'marker': {'color': 'rgb(0.9700829152148588, 0.4579217357221637, 0.34991899989743613)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Interstitial nucleus of Cajal',
    'type': 'scatter3d',
    'x': [537, 598, 602],
    'y': [414, 441, 446],
    'z': [819, 803, 804]},
   {'marker': {'color': 'rgb(0.9702209447317433, 0.45890474749538274, 0.33443908318069776)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Frontal pole, layer 1',
    'type': 'scatter3d',
    'x': [673, 693, 713, 715, 747, 765],
    'y': [320, 318, 286, 282, 334, 336],
    'z': [208, 203, 208, 200, 206, 209]},
   {'marker': {'color': 'rgb(0.9703606875520231, 0.4598974745467727, 0.31783275170570285)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterodorsal preoptic nucleus',
    'type': 'scatter3d',
    'x': [595, 601, 615],
    'y': [556, 591, 563],
    'z': [499, 513, 526]},
   {'marker': {'color': 'rgb(0.9705022426342117, 0.46090054367770233, 0.29987886747629194)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral visual area, layer 6a',
    'type': 'scatter3d',
    'x': [890, 894, 899, 901, 925, 927],
    'y': [204, 169, 199, 225, 231, 208],
    'z': [907, 846, 909, 943, 911, 892]},
   {'marker': {'color': 'rgb(0.97064571324539, 0.46191460497436326, 0.28027738076456105)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Prelimbic area, layer 6a',
    'type': 'scatter3d',
    'x': [492, 633, 637, 641, 646, 651, 652, 655, 655, 666, 672, 675],
    'y': [336, 325, 294, 311, 305, 305, 320, 300, 320, 338, 307, 334],
    'z': [349, 330, 388, 311, 305, 297, 346, 314, 352, 331, 320, 335]},
   {'marker': {'color': 'rgb(0.9707912072909816, 0.46294033365824944, 0.25860333498285243)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Interpeduncular nucleus',
    'type': 'scatter3d',
    'x': [528,
     541,
     547,
     548,
     552,
     553,
     555,
     557,
     558,
     559,
     560,
     561,
     569,
     571,
     571,
     571,
     572,
     573,
     574,
     574,
     577,
     580,
     582,
     591,
     593,
     601,
     609],
    'y': [551,
     543,
     557,
     575,
     514,
     534,
     559,
     552,
     563,
     523,
     522,
     531,
     583,
     516,
     544,
     547,
     569,
     573,
     550,
     569,
     505,
     519,
     551,
     562,
     572,
     556,
     566],
    'z': [874,
     881,
     848,
     862,
     852,
     874,
     836,
     844,
     874,
     887,
     849,
     902,
     859,
     894,
     902,
     828,
     889,
     867,
     858,
     881,
     886,
     870,
     884,
     848,
     878,
     875,
     869]},
   {'marker': {'color': 'rgb(0.970938837670095, 0.4639784320663716, 0.23421952931941897)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, lower limb, layer 2/3',
    'type': 'scatter3d',
    'x': [761],
    'y': [110],
    'z': [605]},
   {'marker': {'color': 'rgb(0.9710887226590253, 0.46502963177428375, 0.206090993204691)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'optic chiasm',
    'type': 'scatter3d',
    'x': [557, 594, 614, 628],
    'y': [712, 709, 702, 715],
    'z': [504, 591, 519, 531]},
   {'marker': {'color': 'rgb(0.9650202306592622, 0.4700075319483819, 0.1965038804678878)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Periventricular hypothalamic nucleus, intermediate part',
    'type': 'scatter3d',
    'x': [560, 563, 563, 576, 577, 579],
    'y': [627, 595, 669, 598, 647, 660],
    'z': [613, 692, 635, 726, 640, 638]},
   {'marker': {'color': 'rgb(0.9565091344279079, 0.4763310231621907, 0.19641481910691172)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, posterior part, layer 1',
    'type': 'scatter3d',
    'x': [960, 961, 967, 982, 1002, 1003, 1004],
    'y': [539, 546, 527, 544, 538, 528, 550],
    'z': [514, 485, 485, 512, 605, 595, 597]},
   {'marker': {'color': 'rgb(0.9482919979030354, 0.4822691279841725, 0.19632978218680042)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior olivary complex, periolivary region',
    'type': 'scatter3d',
    'x': [693, 693, 694, 704],
    'y': [686, 690, 699, 669],
    'z': [994, 987, 991, 955]},
   {'marker': {'color': 'rgb(0.9403489487474115, 0.4878601814268266, 0.19624846561013365)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'optic tract',
    'type': 'scatter3d',
    'x': [656,
     662,
     677,
     682,
     691,
     696,
     704,
     713,
     715,
     736,
     748,
     756,
     780,
     786,
     819,
     823,
     837,
     844,
     848,
     851,
     852],
    'y': [700,
     699,
     702,
     702,
     667,
     681,
     663,
     673,
     649,
     625,
     608,
     601,
     564,
     577,
     518,
     519,
     486,
     488,
     466,
     490,
     433],
    'z': [594,
     563,
     584,
     599,
     621,
     641,
     638,
     633,
     645,
     685,
     705,
     681,
     697,
     697,
     715,
     718,
     754,
     750,
     738,
     740,
     745]},
   {'marker': {'color': 'rgb(0.9326618124663643, 0.49313746219278426, 0.19617059467210474)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Periventricular hypothalamic nucleus, posterior part',
    'type': 'scatter3d',
    'x': [584, 591, 592, 600, 600],
    'y': [648, 644, 672, 653, 670],
    'z': [769, 747, 756, 750, 778]},
   {'marker': {'color': 'rgb(0.9252139283959812, 0.4981300262786999, 0.1960959205750219)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'third ventricle',
    'type': 'scatter3d',
    'x': [533,
     534,
     535,
     542,
     542,
     543,
     547,
     549,
     552,
     554,
     554,
     557,
     558,
     560,
     561,
     563,
     563,
     563,
     564,
     565,
     566,
     568,
     569,
     569,
     569,
     569,
     570,
     570,
     571,
     571,
     571,
     572,
     572,
     572,
     572,
     572,
     572,
     573,
     573,
     574,
     574,
     575,
     575,
     575,
     581,
     582,
     583,
     583,
     587,
     594,
     604,
     610,
     611,
     613,
     614,
     615,
     616,
     651],
    'y': [405,
     427,
     322,
     341,
     359,
     344,
     262,
     251,
     292,
     287,
     290,
     408,
     375,
     287,
     344,
     273,
     361,
     443,
     340,
     511,
     478,
     576,
     621,
     641,
     647,
     659,
     272,
     576,
     312,
     648,
     675,
     347,
     403,
     550,
     599,
     619,
     670,
     273,
     537,
     286,
     629,
     277,
     321,
     429,
     338,
     290,
     264,
     276,
     261,
     262,
     326,
     426,
     331,
     336,
     340,
     391,
     397,
     373],
    'z': [568,
     557,
     588,
     601,
     590,
     606,
     725,
     749,
     620,
     766,
     630,
     566,
     571,
     645,
     623,
     780,
     596,
     538,
     601,
     561,
     547,
     624,
     630,
     689,
     718,
     503,
     643,
     535,
     693,
     734,
     646,
     602,
     547,
     565,
     717,
     585,
     551,
     611,
     736,
     673,
     741,
     741,
     675,
     538,
     612,
     664,
     703,
     666,
     705,
     738,
     588,
     558,
     584,
     605,
     595,
     556,
     573,
     570]},
   {'marker': {'color': 'rgb(0.9179899892823097, 0.5028633765348922, 0.196024217426792)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral amygdalar nucleus',
    'type': 'scatter3d',
    'x': [892,
     916,
     917,
     917,
     925,
     930,
     931,
     932,
     933,
     938,
     944,
     946,
     947,
     951,
     953,
     953,
     957,
     959],
    'y': [539,
     512,
     533,
     545,
     537,
     583,
     509,
     546,
     551,
     559,
     508,
     471,
     537,
     497,
     486,
     487,
     480,
     470],
    'z': [729,
     757,
     747,
     717,
     721,
     693,
     759,
     733,
     760,
     764,
     740,
     740,
     739,
     765,
     747,
     775,
     764,
     731]},
   {'marker': {'color': 'rgb(0.910975900955844, 0.507360005518803, 0.19595527964674342)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Prelimbic area, layer 6b',
    'type': 'scatter3d',
    'x': [483],
    'y': [316],
    'z': [338]},
   {'marker': {'color': 'rgb(0.9041586591893591, 0.5116398393849051, 0.19588891971569034)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Periventricular hypothalamic nucleus, preoptic part',
    'type': 'scatter3d',
    'x': [558, 565, 580],
    'y': [643, 620, 593],
    'z': [566, 545, 538]},
   {'marker': {'color': 'rgb(0.8975262413028282, 0.5157206036907875, 0.19582496621806367)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'cerebral aqueduct',
    'type': 'scatter3d',
    'x': [568],
    'y': [314],
    'z': [842]},
   {'marker': {'color': 'rgb(0.8910675104686026, 0.5196181270192205, 0.1957632621328021)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Pontine reticular nucleus',
    'type': 'scatter3d',
    'x': [530,
     539,
     608,
     612,
     618,
     624,
     626,
     630,
     633,
     635,
     646,
     648,
     648,
     650,
     650,
     652,
     657,
     658,
     658,
     661,
     665,
     667,
     669,
     670,
     670,
     671,
     674,
     674,
     676,
     678,
     681,
     681,
     682,
     685,
     686,
     687,
     688,
     688,
     691,
     693,
     697,
     699,
     703,
     703,
     705,
     709,
     709,
     711,
     715,
     727,
     728,
     740],
    'y': [562,
     564,
     572,
     568,
     563,
     518,
     538,
     489,
     501,
     482,
     515,
     510,
     519,
     478,
     512,
     620,
     582,
     517,
     531,
     547,
     633,
     591,
     467,
     488,
     641,
     604,
     486,
     519,
     533,
     489,
     499,
     626,
     626,
     583,
     505,
     483,
     567,
     624,
     568,
     527,
     558,
     498,
     466,
     550,
     565,
     515,
     518,
     478,
     497,
     555,
     446,
     543],
    'z': [909,
     903,
     960,
     917,
     944,
     899,
     939,
     920,
     902,
     920,
     969,
     960,
     943,
     964,
     901,
     976,
     939,
     924,
     931,
     896,
     970,
     941,
     938,
     967,
     947,
     953,
     905,
     914,
     915,
     958,
     939,
     953,
     962,
     939,
     922,
     970,
     955,
     965,
     962,
     960,
     947,
     937,
     953,
     939,
     963,
     959,
     961,
     915,
     968,
     961,
     913,
     982]},
   {'marker': {'color': 'rgb(0.8847721309903993, 0.5233465946544174, 0.1957036633368497)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Gustatory areas, layer 4',
    'type': 'scatter3d',
    'x': [876, 898, 924],
    'y': [383, 378, 429],
    'z': [350, 373, 439]},
   {'marker': {'color': 'rgb(0.8786304930942881, 0.5269187618257194, 0.19564603729102803)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Paraventricular nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [548,
     553,
     554,
     555,
     555,
     556,
     557,
     559,
     560,
     563,
     568,
     568,
     569,
     573,
     574,
     576,
     576,
     578,
     578,
     579,
     579,
     582,
     583,
     587,
     587,
     587,
     599],
    'y': [342,
     394,
     348,
     357,
     377,
     369,
     348,
     409,
     423,
     412,
     355,
     450,
     353,
     427,
     399,
     348,
     380,
     345,
     405,
     355,
     378,
     337,
     362,
     339,
     351,
     495,
     407],
    'z': [699,
     600,
     712,
     628,
     615,
     709,
     706,
     575,
     574,
     574,
     637,
     587,
     679,
     582,
     618,
     633,
     629,
     628,
     613,
     626,
     611,
     655,
     638,
     641,
     625,
     564,
     580]},
   {'marker': {'color': 'rgb(0.8726336459894565, 0.5303461339812503, 0.19559026188281692)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral dorsal nucleus of thalamus',
    'type': 'scatter3d',
    'x': [658,
     668,
     678,
     682,
     685,
     686,
     692,
     694,
     707,
     711,
     718,
     721,
     722,
     724,
     725,
     725,
     728,
     729,
     736,
     754,
     765],
    'y': [317,
     332,
     302,
     341,
     324,
     308,
     340,
     352,
     281,
     325,
     315,
     287,
     306,
     295,
     305,
     352,
     285,
     342,
     306,
     299,
     320],
    'z': [651,
     653,
     636,
     669,
     610,
     630,
     660,
     678,
     693,
     664,
     651,
     679,
     660,
     703,
     670,
     608,
     696,
     636,
     696,
     689,
     691]},
   {'marker': {'color': 'rgb(0.866773238139435, 0.5336391199949179, 0.19553622440461776)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal auditory area, layer 6a',
    'type': 'scatter3d',
    'x': [923,
     927,
     928,
     934,
     941,
     942,
     942,
     946,
     947,
     948,
     948,
     948,
     950,
     951,
     951,
     952,
     952,
     952,
     955,
     957,
     958,
     959,
     959,
     962,
     964,
     969,
     972,
     973,
     979,
     981],
    'y': [210,
     242,
     198,
     291,
     227,
     217,
     281,
     258,
     260,
     248,
     266,
     283,
     222,
     249,
     293,
     266,
     291,
     300,
     259,
     239,
     291,
     284,
     313,
     301,
     326,
     353,
     306,
     325,
     275,
     310],
    'z': [770,
     723,
     766,
     695,
     828,
     815,
     682,
     720,
     703,
     784,
     740,
     729,
     816,
     782,
     687,
     723,
     736,
     728,
     713,
     880,
     701,
     753,
     697,
     680,
     722,
     687,
     738,
     688,
     852,
     717]},
   {'marker': {'color': 'rgb(0.8610414638374106, 0.5368071630133493, 0.1954838206492856)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'posterior commissure',
    'type': 'scatter3d',
    'x': [568, 580],
    'y': [313, 300],
    'z': [813, 825]},
   {'marker': {'color': 'rgb(0.8554310153076211, 0.5398588527225474, 0.19543295410754358)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, posterior part, layer 2/3',
    'type': 'scatter3d',
    'x': [916, 929, 939, 945, 950, 953, 965, 985, 991],
    'y': [501, 507, 532, 486, 507, 503, 507, 536, 516],
    'z': [461, 459, 497, 476, 470, 496, 498, 582, 559]},
   {'marker': {'color': 'rgb(0.8499350396629376, 0.5428020220904121, 0.19538353525405222)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Prelimbic area, layer 1',
    'type': 'scatter3d',
    'x': [556,
     559,
     560,
     560,
     561,
     562,
     562,
     562,
     564,
     565,
     572,
     576,
     579,
     580,
     581,
     581,
     582,
     583,
     583,
     584,
     587],
    'y': [268,
     277,
     279,
     292,
     270,
     279,
     292,
     310,
     280,
     247,
     294,
     241,
     304,
     223,
     240,
     310,
     277,
     271,
     322,
     220,
     210],
    'z': [379,
     344,
     372,
     264,
     268,
     262,
     318,
     329,
     335,
     309,
     277,
     356,
     270,
     356,
     314,
     385,
     277,
     335,
     301,
     339,
     337]},
   {'marker': {'color': 'rgb(0.8445471001401066, 0.5456438310718953, 0.19533548091095054)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrochiasmatic area',
    'type': 'scatter3d',
    'x': [604, 622, 640, 667],
    'y': [676, 701, 681, 667],
    'z': [643, 609, 634, 608]},
   {'marker': {'color': 'rgb(0.8392611411115872, 0.5483908393123281, 0.19528871367915152)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Gustatory areas, layer 2/3',
    'type': 'scatter3d',
    'x': [877,
     896,
     902,
     911,
     912,
     914,
     917,
     917,
     920,
     924,
     927,
     929,
     930,
     943,
     948,
     964,
     970,
     974],
    'y': [402,
     369,
     440,
     449,
     369,
     439,
     390,
     418,
     400,
     384,
     447,
     423,
     417,
     432,
     434,
     424,
     483,
     486],
    'z': [342,
     351,
     379,
     369,
     354,
     403,
     367,
     386,
     375,
     369,
     390,
     407,
     414,
     443,
     430,
     436,
     500,
     500]},
   {'marker': {'color': 'rgb(0.8340714564387929, 0.5510490695244413, 0.19524316142914688)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of reuniens',
    'type': 'scatter3d',
    'x': [548,
     561,
     564,
     565,
     567,
     570,
     573,
     574,
     574,
     577,
     578,
     580,
     581,
     587,
     592,
     594,
     599,
     611,
     619],
    'y': [530,
     530,
     514,
     501,
     518,
     545,
     486,
     507,
     523,
     501,
     523,
     534,
     494,
     523,
     529,
     526,
     523,
     505,
     492],
    'z': [613,
     692,
     607,
     650,
     618,
     696,
     619,
     684,
     692,
     605,
     705,
     694,
     644,
     602,
     645,
     639,
     613,
     602,
     601]},
   {'marker': {'color': 'rgb(0.8289726607877457, 0.5536240629255387, 0.19519875684411025)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral habenula',
    'type': 'scatter3d',
    'x': [530, 533, 538, 544, 592, 598, 605, 619, 621, 623, 627, 627, 639],
    'y': [322, 328, 332, 334, 329, 335, 333, 342, 334, 337, 320, 332, 301],
    'z': [696, 700, 641, 713, 698, 688, 638, 667, 692, 693, 717, 674, 720]},
   {'marker': {'color': 'rgb(0.8239596635762187, 0.5561209278877879, 0.19515543700914045)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Gustatory areas, layer 5',
    'type': 'scatter3d',
    'x': [799,
     800,
     811,
     812,
     821,
     840,
     841,
     847,
     848,
     851,
     860,
     865,
     872,
     873,
     877,
     879,
     884,
     887,
     889,
     889,
     891,
     896,
     906,
     909,
     949,
     949],
    'y': [385,
     386,
     391,
     406,
     406,
     376,
     404,
     377,
     347,
     400,
     435,
     393,
     362,
     414,
     427,
     411,
     367,
     372,
     376,
     447,
     445,
     409,
     407,
     427,
     501,
     513],
    'z': [343,
     348,
     337,
     363,
     363,
     336,
     375,
     343,
     359,
     368,
     369,
     365,
     360,
     400,
     377,
     375,
     388,
     392,
     386,
     394,
     388,
     437,
     425,
     406,
     521,
     524]},
   {'marker': {'color': 'rgb(0.8190276452626677, 0.5585443827649431, 0.19511314304124405)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Accessory olfactory bulb, glomerular layer',
    'type': 'scatter3d',
    'x': [677, 683, 686, 687, 698],
    'y': [341, 337, 340, 361, 365],
    'z': [216, 209, 208, 229, 227]},
   {'marker': {'color': 'rgb(0.8141720357227237, 0.5608987937039293, 0.19507181975542504)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rhomboid nucleus',
    'type': 'scatter3d',
    'x': [554, 565, 575, 577, 579],
    'y': [478, 490, 476, 472, 476],
    'z': [668, 668, 665, 641, 680]},
   {'marker': {'color': 'rgb(0.8093884944895751, 0.56318820812261, 0.19503141536276936)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'pyramid',
    'type': 'scatter3d',
    'x': [605],
    'y': [677],
    'z': [960]},
   {'marker': {'color': 'rgb(0.8046728926609971, 0.565416384430231, 0.19499188119699135)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral hypothalamic area',
    'type': 'scatter3d',
    'x': [603,
     604,
     612,
     629,
     629,
     630,
     631,
     633,
     634,
     634,
     634,
     637,
     639,
     641,
     641,
     641,
     641,
     642,
     642,
     643,
     643,
     644,
     645,
     648,
     649,
     649,
     651,
     652,
     652,
     652,
     654,
     656,
     656,
     657,
     657,
     657,
     657,
     658,
     659,
     659,
     660,
     661,
     663,
     665,
     666,
     666,
     668,
     669,
     672,
     673,
     674,
     674,
     675,
     675,
     675,
     676,
     680,
     681,
     681,
     682,
     682,
     682,
     684,
     684,
     685,
     686,
     686,
     687,
     687,
     689,
     690,
     690,
     690,
     693,
     694,
     695,
     695,
     696,
     696,
     699,
     699,
     700,
     702,
     702,
     702,
     704,
     705,
     705,
     705,
     706,
     706,
     707,
     707,
     708,
     709,
     709,
     710,
     713,
     716,
     717,
     721,
     721,
     723,
     724,
     728,
     731,
     732,
     733,
     734,
     748,
     762],
    'y': [529,
     529,
     508,
     632,
     648,
     528,
     534,
     614,
     576,
     576,
     611,
     637,
     631,
     571,
     574,
     629,
     665,
     566,
     646,
     581,
     587,
     644,
     600,
     603,
     541,
     674,
     574,
     560,
     670,
     675,
     687,
     654,
     674,
     568,
     576,
     583,
     658,
     639,
     585,
     648,
     567,
     574,
     546,
     594,
     544,
     655,
     590,
     567,
     594,
     585,
     583,
     622,
     566,
     614,
     626,
     658,
     618,
     556,
     586,
     613,
     625,
     668,
     652,
     653,
     611,
     545,
     558,
     581,
     655,
     599,
     616,
     617,
     663,
     553,
     634,
     582,
     658,
     604,
     605,
     566,
     607,
     595,
     560,
     598,
     639,
     587,
     583,
     590,
     641,
     611,
     614,
     556,
     560,
     570,
     595,
     637,
     553,
     583,
     535,
     537,
     570,
     581,
     674,
     532,
     562,
     626,
     646,
     597,
     528,
     599,
     612],
    'z': [768,
     765,
     761,
     643,
     733,
     763,
     756,
     655,
     753,
     766,
     719,
     710,
     705,
     785,
     751,
     708,
     724,
     621,
     723,
     756,
     627,
     729,
     773,
     678,
     579,
     669,
     645,
     619,
     597,
     727,
     590,
     656,
     666,
     580,
     715,
     766,
     592,
     667,
     739,
     661,
     762,
     668,
     611,
     658,
     754,
     738,
     578,
     683,
     596,
     679,
     727,
     588,
     735,
     752,
     703,
     675,
     677,
     655,
     664,
     784,
     636,
     582,
     633,
     613,
     743,
     609,
     594,
     727,
     656,
     604,
     718,
     578,
     652,
     601,
     641,
     628,
     629,
     708,
     620,
     689,
     716,
     705,
     648,
     680,
     656,
     613,
     689,
     638,
     615,
     702,
     731,
     657,
     633,
     667,
     604,
     674,
     658,
     632,
     620,
     631,
     640,
     613,
     591,
     685,
     629,
     645,
     597,
     642,
     632,
     600,
     608]},
   {'marker': {'color': 'rgb(0.8000212962986613, 0.5675868184801981, 0.1949531714663394)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Accessory olfactory bulb, granular layer',
    'type': 'scatter3d',
    'x': [695],
    'y': [408],
    'z': [206]},
   {'marker': {'color': 'rgb(0.7954299511652192, 0.5697027671726006, 0.1949152430281033)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostral linear nucleus raphe',
    'type': 'scatter3d',
    'x': [564, 575],
    'y': [428, 523],
    'z': [894, 818]},
   {'marker': {'color': 'rgb(0.7908952686619282, 0.5717672695635407, 0.19487805518334425)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 2/3',
    'type': 'scatter3d',
    'x': [843,
     847,
     849,
     859,
     859,
     863,
     865,
     870,
     873,
     877,
     878,
     881,
     881,
     883,
     883,
     884,
     886,
     892,
     895,
     897,
     899,
     906,
     907,
     910,
     913,
     913,
     917,
     918,
     928,
     931,
     938,
     940,
     946,
     948,
     950,
     955,
     957,
     957,
     965,
     966,
     968,
     969,
     976,
     976,
     978],
    'y': [105,
     100,
     113,
     97,
     103,
     114,
     123,
     131,
     98,
     120,
     132,
     106,
     146,
     109,
     110,
     118,
     102,
     132,
     111,
     126,
     127,
     121,
     121,
     156,
     120,
     155,
     149,
     132,
     152,
     162,
     136,
     168,
     139,
     172,
     186,
     155,
     157,
     164,
     183,
     212,
     194,
     196,
     208,
     210,
     194],
    'z': [680,
     674,
     678,
     654,
     728,
     628,
     609,
     664,
     714,
     712,
     669,
     666,
     637,
     647,
     653,
     753,
     736,
     664,
     686,
     739,
     709,
     691,
     701,
     595,
     690,
     622,
     661,
     665,
     741,
     624,
     669,
     655,
     755,
     616,
     634,
     739,
     683,
     778,
     719,
     624,
     677,
     671,
     677,
     617,
     621]},
   {'marker': {'color': 'rgb(0.7864138128446351, 0.57378316578771, 0.19484156948971573)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Accessory olfactory bulb, mitral layer',
    'type': 'scatter3d',
    'x': [650, 673, 680, 696, 698, 700],
    'y': [391, 375, 397, 390, 393, 391],
    'z': [230, 210, 219, 227, 231, 228]},
   {'marker': {'color': 'rgb(0.781982288409069, 0.5757531140580516, 0.19480574959052305)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral mammillary nucleus',
    'type': 'scatter3d',
    'x': [670],
    'y': [607],
    'z': [800]},
   {'marker': {'color': 'rgb(0.777597529547875, 0.5776796059703501, 0.1947705610583483)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, dorsal part, layer 2/3',
    'type': 'scatter3d',
    'x': [526,
     530,
     532,
     534,
     535,
     537,
     542,
     542,
     543,
     544,
     545,
     545,
     547,
     550,
     550,
     551,
     554,
     585,
     586,
     586,
     587,
     588,
     589,
     591,
     594,
     594,
     594,
     596,
     596,
     597,
     601,
     605,
     606,
     606,
     607,
     607,
     608,
     608,
     611,
     611,
     613,
     615],
    'y': [230,
     146,
     150,
     202,
     199,
     140,
     133,
     135,
     224,
     229,
     103,
     136,
     145,
     129,
     130,
     214,
     202,
     216,
     146,
     202,
     132,
     209,
     224,
     211,
     214,
     222,
     223,
     123,
     207,
     228,
     237,
     138,
     193,
     200,
     183,
     213,
     200,
     223,
     178,
     203,
     122,
     254],
    'z': [346,
     513,
     517,
     460,
     483,
     550,
     509,
     528,
     400,
     312,
     577,
     540,
     504,
     506,
     540,
     426,
     390,
     386,
     516,
     384,
     534,
     417,
     402,
     393,
     414,
     390,
     317,
     583,
     461,
     274,
     345,
     514,
     350,
     442,
     445,
     457,
     337,
     270,
     446,
     448,
     572,
     254]},
   {'marker': {'color': 'rgb(0.7732564895918688, 0.5795649803100826, 0.19473597125178702)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Red nucleus',
    'type': 'scatter3d',
    'x': [602,
     605,
     615,
     624,
     627,
     629,
     631,
     632,
     633,
     634,
     634,
     636,
     645,
     648,
     653,
     655,
     656,
     662],
    'y': [458,
     437,
     451,
     452,
     465,
     426,
     450,
     427,
     410,
     415,
     432,
     410,
     435,
     446,
     418,
     434,
     432,
     446],
    'z': [861,
     860,
     851,
     863,
     867,
     880,
     862,
     858,
     847,
     876,
     833,
     850,
     863,
     837,
     839,
     880,
     873,
     827]},
   {'marker': {'color': 'rgb(0.7689562313568022, 0.5814114355329181, 0.19470194918399383)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior pretectal nucleus',
    'type': 'scatter3d',
    'x': [659,
     659,
     659,
     660,
     670,
     671,
     671,
     674,
     677,
     679,
     680,
     683,
     683,
     684,
     687,
     692,
     696,
     696,
     697,
     698,
     700,
     704,
     706,
     707,
     708,
     709,
     713,
     716,
     717,
     718,
     719,
     719,
     722,
     722,
     724,
     729,
     731,
     733,
     748],
    'y': [261,
     275,
     311,
     288,
     300,
     259,
     345,
     261,
     302,
     317,
     265,
     356,
     362,
     340,
     317,
     319,
     312,
     342,
     283,
     326,
     326,
     308,
     303,
     283,
     294,
     336,
     275,
     357,
     326,
     306,
     331,
     357,
     301,
     347,
     296,
     373,
     293,
     378,
     367],
    'z': [788,
     794,
     789,
     775,
     771,
     770,
     787,
     796,
     800,
     767,
     786,
     824,
     807,
     822,
     799,
     832,
     794,
     826,
     767,
     805,
     817,
     767,
     803,
     796,
     820,
     798,
     804,
     818,
     810,
     825,
     801,
     796,
     809,
     806,
     793,
     801,
     813,
     831,
     832]},
   {'marker': {'color': 'rgb(0.7646939181246455, 0.583221041068114, 0.1946684654018847)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral posterior nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [666,
     673,
     684,
     686,
     686,
     702,
     704,
     710,
     726,
     733,
     735,
     739,
     741,
     741,
     741,
     745,
     746,
     752,
     755,
     763,
     764,
     764,
     767,
     777,
     782,
     785,
     790],
    'y': [299,
     301,
     294,
     295,
     311,
     310,
     280,
     290,
     326,
     290,
     286,
     294,
     285,
     299,
     310,
     296,
     305,
     317,
     307,
     333,
     297,
     335,
     293,
     322,
     307,
     325,
     326],
    'z': [746,
     724,
     720,
     722,
     714,
     743,
     734,
     745,
     783,
     706,
     720,
     717,
     722,
     737,
     782,
     754,
     802,
     785,
     720,
     767,
     723,
     790,
     777,
     786,
     802,
     818,
     819]},
   {'marker': {'color': 'rgb(0.7604668051951781, 0.5849957475751282, 0.19463549187493875)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Arcuate hypothalamic nucleus',
    'type': 'scatter3d',
    'x': [577],
    'y': [673],
    'z': [722]},
   {'marker': {'color': 'rgb(0.7562722319496138, 0.5867373962675058, 0.19460300189271548)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral preoptic area',
    'type': 'scatter3d',
    'x': [537,
     582,
     603,
     605,
     606,
     608,
     610,
     610,
     617,
     623,
     625,
     626,
     628,
     631,
     646,
     649,
     662,
     668,
     670,
     672,
     676,
     677,
     678,
     681,
     681,
     688,
     688,
     689,
     691,
     693,
     695,
     696,
     700,
     711,
     719,
     729],
    'y': [577,
     534,
     573,
     546,
     540,
     586,
     506,
     607,
     521,
     518,
     579,
     594,
     627,
     500,
     628,
     593,
     688,
     637,
     679,
     640,
     669,
     639,
     677,
     605,
     687,
     627,
     636,
     612,
     618,
     646,
     634,
     662,
     623,
     617,
     641,
     634],
    'z': [478,
     496,
     489,
     516,
     454,
     480,
     497,
     473,
     472,
     479,
     460,
     475,
     501,
     483,
     529,
     520,
     538,
     514,
     546,
     543,
     530,
     518,
     554,
     543,
     552,
     551,
     566,
     553,
     572,
     565,
     561,
     572,
     571,
     558,
     553,
     552]},
   {'marker': {'color': 'rgb(0.7521076143732254, 0.588447727404123, 0.19457096997022233)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterolateral visual area, layer 5',
    'type': 'scatter3d',
    'x': [915, 916, 917, 919, 929, 939, 957],
    'y': [148, 163, 172, 184, 189, 182, 193],
    'z': [817, 838, 825, 790, 816, 834, 841]},
   {'marker': {'color': 'rgb(0.7479704379884863, 0.590128388035804, 0.19453937176043556)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal auditory area, layer 6b',
    'type': 'scatter3d',
    'x': [923, 933, 955, 968],
    'y': [256, 259, 315, 335],
    'z': [723, 737, 715, 742]},
   {'marker': {'color': 'rgb(0.7438582511542718, 0.5917809390848974, 0.1945081839732599)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Midbrain reticular nucleus, retrorubral area',
    'type': 'scatter3d',
    'x': [636,
     668,
     678,
     685,
     691,
     714,
     718,
     718,
     722,
     729,
     738,
     741,
     742,
     750,
     764],
    'y': [461,
     459,
     453,
     442,
     474,
     450,
     441,
     445,
     433,
     449,
     450,
     428,
     417,
     417,
     411],
    'z': [900,
     901,
     911,
     898,
     884,
     924,
     908,
     937,
     935,
     927,
     936,
     892,
     923,
     890,
     896]},
   {'marker': {'color': 'rgb(0.7397686586901518, 0.5934068618263496, 0.19447738430039216)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral septal nucleus, caudal (caudodorsal) part',
    'type': 'scatter3d',
    'x': [615,
     616,
     618,
     620,
     622,
     622,
     628,
     629,
     629,
     630,
     631,
     633,
     635,
     636,
     638,
     641,
     642,
     647,
     648,
     650,
     653,
     658],
    'y': [303,
     305,
     295,
     343,
     267,
     326,
     302,
     269,
     368,
     271,
     273,
     301,
     300,
     308,
     278,
     345,
     318,
     304,
     321,
     324,
     343,
     336],
    'z': [563,
     525,
     557,
     495,
     558,
     507,
     555,
     559,
     471,
     569,
     559,
     555,
     534,
     565,
     562,
     493,
     513,
     563,
     563,
     511,
     518,
     535]},
   {'marker': {'color': 'rgb(0.7356993157878555, 0.5950075638309565, 0.19444695134548254)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal auditory area, layer 5',
    'type': 'scatter3d',
    'x': [941,
     944,
     953,
     953,
     954,
     955,
     964,
     966,
     966,
     967,
     968,
     971,
     971,
     975,
     975,
     976,
     976,
     977,
     978,
     978,
     978,
     978,
     980],
    'y': [220,
     185,
     206,
     230,
     243,
     219,
     219,
     222,
     222,
     248,
     224,
     263,
     268,
     258,
     275,
     208,
     293,
     251,
     243,
     254,
     275,
     298,
     244],
    'z': [741,
     771,
     822,
     751,
     710,
     768,
     775,
     842,
     864,
     754,
     850,
     738,
     685,
     741,
     718,
     845,
     696,
     703,
     713,
     717,
     751,
     678,
     748]},
   {'marker': {'color': 'rgb(0.7316479221746234, 0.5965843844246255, 0.1944168645591692)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anteroventral nucleus of thalamus',
    'type': 'scatter3d',
    'x': [668, 671, 684, 686, 693, 695, 705],
    'y': [377, 389, 418, 368, 391, 397, 370],
    'z': [598, 602, 612, 594, 586, 601, 596]},
   {'marker': {'color': 'rgb(0.7276122164954355, 0.5981385997115063, 0.19438710417851435)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'posteromedial visual area, layer 6a',
    'type': 'scatter3d',
    'x': [721, 729, 737, 754, 757],
    'y': [92, 96, 120, 115, 98],
    'z': [874, 824, 832, 828, 823]},
   {'marker': {'color': 'rgb(0.7235899708830301, 0.5996714272036263, 0.19435765117044887)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral septal nucleus, rostral (rostroventral) part',
    'type': 'scatter3d',
    'x': [528,
     529,
     530,
     531,
     532,
     534,
     535,
     537,
     539,
     539,
     543,
     546,
     547,
     547,
     548,
     553,
     554,
     555,
     560,
     563,
     566,
     567,
     578,
     580,
     581,
     581,
     584,
     584,
     585,
     585,
     585,
     587,
     587,
     595,
     598,
     598,
     599,
     599,
     599,
     600,
     601,
     602,
     602,
     603,
     604,
     605,
     606,
     607,
     608,
     609,
     611,
     612,
     612,
     613,
     615,
     615,
     617,
     618,
     619,
     620,
     621,
     623,
     623,
     623,
     628,
     631,
     632,
     633,
     635,
     638,
     639,
     639,
     644,
     645,
     645,
     648,
     648,
     650,
     657],
    'y': [548,
     480,
     517,
     378,
     493,
     522,
     360,
     477,
     488,
     498,
     521,
     521,
     419,
     582,
     487,
     341,
     459,
     422,
     414,
     401,
     341,
     343,
     408,
     378,
     418,
     453,
     341,
     435,
     464,
     543,
     569,
     348,
     523,
     421,
     409,
     577,
     389,
     459,
     517,
     525,
     472,
     360,
     518,
     532,
     499,
     388,
     372,
     524,
     447,
     520,
     456,
     456,
     492,
     400,
     436,
     488,
     516,
     472,
     484,
     419,
     482,
     393,
     438,
     447,
     422,
     368,
     434,
     414,
     484,
     455,
     392,
     422,
     464,
     412,
     456,
     376,
     486,
     480,
     473],
    'z': [376,
     434,
     385,
     489,
     443,
     372,
     513,
     431,
     431,
     421,
     398,
     392,
     469,
     354,
     423,
     475,
     421,
     444,
     464,
     459,
     472,
     499,
     459,
     474,
     453,
     436,
     503,
     439,
     417,
     396,
     355,
     507,
     392,
     473,
     465,
     396,
     457,
     420,
     412,
     379,
     434,
     493,
     424,
     365,
     401,
     505,
     504,
     436,
     441,
     396,
     492,
     441,
     501,
     507,
     418,
     442,
     379,
     496,
     399,
     483,
     471,
     473,
     473,
     486,
     485,
     509,
     434,
     523,
     474,
     430,
     520,
     507,
     418,
     487,
     507,
     500,
     489,
     456,
     474]},
   {'marker': {'color': 'rgb(0.7195789856862549, 0.6011840300950808, 0.1943284871788662)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the lateral olfactory tract, molecular layer',
    'type': 'scatter3d',
    'x': [768, 771, 778, 787],
    'y': [689, 703, 724, 716],
    'z': [579, 617, 620, 583]},
   {'marker': {'color': 'rgb(0.7155770843286207, 0.6026775212148157, 0.19429959447504608)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Reticular nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [673,
     678,
     681,
     689,
     691,
     704,
     705,
     707,
     708,
     711,
     713,
     718,
     719,
     720,
     723,
     726,
     730,
     735,
     737,
     738,
     744,
     747,
     748,
     771,
     772,
     775,
     776,
     780,
     781,
     784,
     785,
     791,
     796,
     798,
     806,
     810,
     812,
     813,
     816,
     819,
     819,
     823,
     824,
     829,
     846,
     850],
    'y': [496,
     494,
     500,
     485,
     462,
     501,
     394,
     425,
     466,
     499,
     488,
     445,
     357,
     433,
     368,
     360,
     414,
     416,
     505,
     424,
     430,
     394,
     433,
     363,
     490,
     459,
     485,
     327,
     412,
     428,
     382,
     454,
     446,
     339,
     444,
     376,
     344,
     386,
     456,
     365,
     375,
     388,
     386,
     396,
     436,
     420],
    'z': [596,
     584,
     595,
     579,
     600,
     590,
     601,
     592,
     593,
     615,
     631,
     595,
     609,
     585,
     607,
     612,
     593,
     607,
     660,
     606,
     613,
     605,
     619,
     642,
     683,
     656,
     677,
     674,
     630,
     634,
     640,
     664,
     662,
     700,
     672,
     670,
     704,
     687,
     713,
     686,
     686,
     708,
     663,
     666,
     711,
     711]},
   {'marker': {'color': 'rgb(0.7115821082699982, 0.6041529666885, 0.19427095591109955)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anteroventral preoptic nucleus',
    'type': 'scatter3d',
    'x': [606],
    'y': [672],
    'z': [503]},
   {'marker': {'color': 'rgb(0.707591912045208, 0.6056113893368741, 0.1942425548761599)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral septal nucleus, ventral part',
    'type': 'scatter3d',
    'x': [609, 612, 612, 619, 630],
    'y': [497, 463, 497, 453, 436],
    'z': [513, 518, 515, 531, 545]},
   {'marker': {'color': 'rgb(0.703604358353804, 0.60705377183521, 0.1942143752550906)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus sagulum',
    'type': 'scatter3d',
    'x': [760, 761],
    'y': [392, 373],
    'z': [949, 952]},
   {'marker': {'color': 'rgb(0.699617313175692, 0.6084810596560977, 0.19418640138944934)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anteroventral periventricular nucleus',
    'type': 'scatter3d',
    'x': [553, 589, 596],
    'y': [642, 636, 682],
    'z': [514, 523, 520]},
   {'marker': {'color': 'rgb(0.6956286408872971, 0.6098941638156146, 0.19415861804052803)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, dorsal part, layer 6a',
    'type': 'scatter3d',
    'x': [513, 521, 521, 635, 637, 638, 641, 647, 660, 672, 674, 676, 740],
    'y': [100, 100, 106, 103, 111, 102, 140, 99, 119, 94, 95, 90, 128],
    'z': [664, 662, 638, 695, 679, 655, 616, 713, 682, 798, 824, 846, 930]},
   {'marker': {'color': 'rgb(0.6916361993528406, 0.6112939634410458, 0.19413101035426264)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Suprachiasmatic nucleus',
    'type': 'scatter3d',
    'x': [552, 580, 580, 599],
    'y': [650, 674, 687, 691],
    'z': [582, 590, 586, 582]},
   {'marker': {'color': 'rgb(0.6876378349648997, 0.6126813081766266, 0.19410356382781846)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Bed nucleus of the anterior commissure',
    'type': 'scatter3d',
    'x': [630],
    'y': [506],
    'z': [540]},
   {'marker': {'color': 'rgb(0.6836313776077655, 0.6140570204422865, 0.19407626427771388)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, ventrolateral part, layer 2/3',
    'type': 'scatter3d',
    'x': [615,
     617,
     627,
     628,
     644,
     646,
     655,
     656,
     667,
     683,
     684,
     684,
     703,
     716],
    'y': [422,
     378,
     332,
     365,
     343,
     392,
     372,
     385,
     353,
     372,
     382,
     425,
     410,
     400],
    'z': [293,
     265,
     222,
     265,
     237,
     280,
     272,
     266,
     286,
     302,
     307,
     315,
     326,
     316]},
   {'marker': {'color': 'rgb(0.6796146355162128, 0.6154218975590472, 0.19404909780932048)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Temporal association areas, layer 5',
    'type': 'scatter3d',
    'x': [990, 996],
    'y': [435, 461],
    'z': [679, 645]},
   {'marker': {'color': 'rgb(0.6755853900010937, 0.6167767137535439, 0.1940220507875624)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, ventral part, layer 2/3',
    'type': 'scatter3d',
    'x': [525,
     530,
     531,
     531,
     533,
     535,
     540,
     540,
     542,
     543,
     544,
     545,
     546,
     547,
     549,
     549,
     551,
     551,
     552,
     553,
     585,
     590,
     590,
     591,
     592,
     592,
     592,
     593,
     594,
     594,
     595,
     596,
     597,
     597,
     598,
     598,
     599,
     601,
     603,
     604,
     605,
     607,
     608,
     609],
    'y': [217,
     242,
     160,
     177,
     194,
     199,
     206,
     314,
     238,
     202,
     217,
     239,
     168,
     273,
     229,
     245,
     211,
     289,
     171,
     134,
     190,
     181,
     211,
     177,
     151,
     165,
     204,
     246,
     199,
     257,
     260,
     220,
     198,
     244,
     164,
     240,
     210,
     225,
     168,
     285,
     307,
     168,
     275,
     230],
    'z': [493,
     445,
     569,
     541,
     558,
     513,
     571,
     431,
     420,
     586,
     492,
     491,
     561,
     492,
     478,
     481,
     469,
     392,
     563,
     589,
     597,
     591,
     490,
     539,
     567,
     584,
     557,
     416,
     587,
     397,
     474,
     580,
     597,
     537,
     554,
     529,
     592,
     549,
     590,
     437,
     443,
     586,
     446,
     461]},
   {'marker': {'color': 'rgb(0.6715413900116859, 0.6181222220530935, 0.19399510980873022)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Magnocellular nucleus',
    'type': 'scatter3d',
    'x': [666, 676, 680, 695, 715, 734, 736, 740, 758],
    'y': [706, 680, 699, 684, 681, 661, 673, 647, 653],
    'z': [493, 502, 502, 508, 520, 543, 514, 544, 529]},
   {'marker': {'color': 'rgb(0.6674803465028921, 0.619459156081799, 0.19396826167324688)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Basolateral amygdalar nucleus, anterior part',
    'type': 'scatter3d',
    'x': [859,
     863,
     866,
     868,
     868,
     873,
     875,
     883,
     887,
     890,
     895,
     897,
     898,
     898,
     904,
     905,
     906,
     907,
     907,
     908,
     909,
     912,
     913,
     914,
     916,
     918,
     924],
    'y': [595,
     604,
     604,
     556,
     574,
     583,
     580,
     560,
     586,
     547,
     545,
     565,
     538,
     543,
     608,
     552,
     554,
     547,
     582,
     551,
     550,
     590,
     546,
     596,
     547,
     606,
     587],
    'z': [682,
     700,
     685,
     747,
     702,
     645,
     721,
     694,
     728,
     705,
     665,
     725,
     678,
     688,
     659,
     732,
     655,
     650,
     679,
     692,
     676,
     678,
     670,
     680,
     699,
     681,
     671]},
   {'marker': {'color': 'rgb(0.6633999265732113, 0.6207882317673603, 0.19394149335928124)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Prelimbic area, layer 2/3',
    'type': 'scatter3d',
    'x': [541,
     545,
     546,
     548,
     550,
     555,
     589,
     589,
     591,
     592,
     599,
     602,
     603,
     607,
     608,
     613],
    'y': [300,
     314,
     320,
     279,
     278,
     261,
     298,
     321,
     277,
     278,
     273,
     328,
     312,
     272,
     304,
     306],
    'z': [334,
     293,
     351,
     314,
     318,
     320,
     285,
     382,
     360,
     333,
     385,
     303,
     299,
     286,
     301,
     349]},
   {'marker': {'color': 'rgb(0.6592977473368167, 0.6221101489675162, 0.193914791997078)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 6b',
    'type': 'scatter3d',
    'x': [824],
    'y': [149],
    'z': [827]},
   {'marker': {'color': 'rgb(0.6551713694900341, 0.6234255930244073, 0.1938881448439291)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Septofimbrial nucleus',
    'type': 'scatter3d',
    'x': [551, 560, 577, 586, 596, 603, 603, 609, 616, 619, 639],
    'y': [363, 361, 330, 261, 339, 305, 376, 393, 307, 450, 392],
    'z': [509, 520, 530, 596, 540, 573, 515, 515, 571, 533, 549]},
   {'marker': {'color': 'rgb(0.6510182905289851, 0.6247352362545666, 0.19386153925963237)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Basolateral amygdalar nucleus, posterior part',
    'type': 'scatter3d',
    'x': [892,
     893,
     895,
     895,
     899,
     904,
     906,
     912,
     916,
     921,
     923,
     924,
     927,
     928],
    'y': [576,
     565,
     578,
     596,
     583,
     583,
     601,
     586,
     606,
     627,
     608,
     569,
     578,
     576],
    'z': [760,
     769,
     758,
     810,
     764,
     760,
     705,
     818,
     814,
     708,
     770,
     775,
     734,
     730]},
   {'marker': {'color': 'rgb(0.6468359375710273, 0.6260397393817432, 0.1938349626823898)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, posterior part, layer 6a',
    'type': 'scatter3d',
    'x': [911, 960, 964],
    'y': [484, 490, 458],
    'z': [482, 577, 594]},
   {'marker': {'color': 'rgb(0.64262165972787, 0.6273397529193221, 0.19380840260499219)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary motor area, Layer 1',
    'type': 'scatter3d',
    'x': [699,
     699,
     705,
     725,
     733,
     741,
     742,
     745,
     755,
     766,
     767,
     790,
     790,
     794,
     796,
     797,
     799,
     801,
     802,
     808,
     809,
     813,
     815,
     815,
     818,
     819,
     820,
     821,
     830,
     837,
     839,
     840,
     846,
     847,
     849,
     849,
     850,
     851,
     854,
     856,
     859,
     863,
     865,
     866,
     871,
     876,
     876,
     876,
     880,
     880,
     882,
     884,
     898,
     905],
    'y': [120,
     127,
     132,
     144,
     152,
     131,
     156,
     154,
     176,
     162,
     118,
     158,
     207,
     169,
     186,
     133,
     235,
     188,
     183,
     161,
     202,
     142,
     231,
     257,
     223,
     400,
     176,
     176,
     404,
     261,
     258,
     253,
     262,
     322,
     209,
     293,
     344,
     361,
     285,
     277,
     395,
     196,
     353,
     279,
     389,
     265,
     277,
     296,
     293,
     312,
     384,
     226,
     337,
     296],
    'z': [439,
     439,
     388,
     352,
     346,
     437,
     349,
     381,
     318,
     365,
     478,
     412,
     291,
     377,
     343,
     480,
     266,
     359,
     354,
     432,
     311,
     477,
     287,
     263,
     298,
     276,
     412,
     422,
     282,
     281,
     298,
     292,
     301,
     264,
     368,
     263,
     272,
     272,
     275,
     307,
     287,
     411,
     274,
     301,
     307,
     355,
     314,
     297,
     316,
     304,
     304,
     388,
     316,
     342]},
   {'marker': {'color': 'rgb(0.6383727199726951, 0.6286359185087204, 0.1937818465512561)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subgeniculate nucleus',
    'type': 'scatter3d',
    'x': [831],
    'y': [443],
    'z': [773]},
   {'marker': {'color': 'rgb(0.634086286437248, 0.6299288702197992, 0.19375528205254858)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, dorsal part, layer 2/3',
    'type': 'scatter3d',
    'x': [728,
     729,
     743,
     743,
     749,
     751,
     754,
     756,
     758,
     758,
     759,
     763,
     769,
     769,
     769,
     769,
     776,
     777,
     778,
     786,
     786,
     796,
     797,
     799,
     802,
     806,
     806,
     822,
     823,
     827,
     827,
     828,
     837,
     838,
     848,
     871,
     876,
     890,
     891,
     893,
     896,
     900,
     911,
     927],
    'y': [372,
     360,
     385,
     388,
     394,
     373,
     408,
     420,
     389,
     425,
     413,
     390,
     392,
     420,
     423,
     437,
     424,
     439,
     413,
     429,
     442,
     454,
     417,
     475,
     416,
     408,
     456,
     420,
     397,
     430,
     444,
     429,
     461,
     425,
     446,
     460,
     463,
     450,
     464,
     469,
     474,
     438,
     466,
     482],
    'z': [283,
     235,
     277,
     241,
     242,
     252,
     247,
     283,
     235,
     258,
     309,
     236,
     247,
     300,
     259,
     281,
     265,
     294,
     303,
     266,
     276,
     287,
     312,
     309,
     292,
     313,
     303,
     288,
     321,
     329,
     322,
     304,
     318,
     313,
     360,
     347,
     356,
     360,
     377,
     381,
     387,
     361,
     442,
     454]},
   {'marker': {'color': 'rgb(0.6297594230674289, 0.631219235819055, 0.19372869662437361)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Septohippocampal nucleus',
    'type': 'scatter3d',
    'x': [557, 593],
    'y': [412, 417],
    'z': [432, 415]},
   {'marker': {'color': 'rgb(0.6253890795573777, 0.6325076380111099, 0.19370207774287881)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Perirhinal area, layer 6a',
    'type': 'scatter3d',
    'x': [947, 961, 966, 966, 967, 970, 978, 981, 987],
    'y': [511, 495, 502, 527, 475, 487, 470, 453, 477],
    'z': [677, 686, 706, 664, 698, 675, 666, 742, 728]},
   {'marker': {'color': 'rgb(0.6209720804720789, 0.633794695658821, 0.19367541282120007)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subfornical organ',
    'type': 'scatter3d',
    'x': [589],
    'y': [327],
    'z': [596]},
   {'marker': {'color': 'rgb(0.6165051134569959, 0.635081024987177, 0.1936486891855716)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Substantia innominata',
    'type': 'scatter3d',
    'x': [627,
     633,
     638,
     639,
     643,
     657,
     672,
     680,
     682,
     682,
     689,
     690,
     691,
     692,
     701,
     701,
     703,
     704,
     705,
     706,
     707,
     707,
     709,
     710,
     711,
     715,
     717,
     725,
     726,
     726,
     727,
     727,
     729,
     730,
     730,
     734,
     734,
     734,
     734,
     737,
     740,
     741,
     742,
     744,
     745,
     745,
     746,
     747,
     752,
     754,
     758,
     761,
     762,
     763,
     764,
     764,
     766,
     766,
     767,
     771,
     771,
     774,
     775,
     775,
     794,
     795,
     802,
     803,
     804,
     805],
    'y': [604,
     621,
     639,
     649,
     637,
     608,
     676,
     631,
     548,
     661,
     575,
     614,
     598,
     577,
     561,
     594,
     606,
     633,
     542,
     582,
     642,
     661,
     573,
     626,
     565,
     535,
     618,
     682,
     547,
     619,
     651,
     666,
     655,
     518,
     528,
     575,
     589,
     601,
     616,
     578,
     641,
     604,
     562,
     542,
     656,
     688,
     608,
     567,
     578,
     648,
     582,
     643,
     679,
     575,
     555,
     588,
     571,
     668,
     683,
     595,
     609,
     654,
     569,
     575,
     643,
     553,
     531,
     645,
     546,
     542],
    'z': [485,
     465,
     376,
     431,
     470,
     494,
     441,
     497,
     569,
     458,
     567,
     489,
     493,
     530,
     560,
     551,
     544,
     367,
     571,
     535,
     473,
     465,
     561,
     485,
     556,
     580,
     518,
     495,
     587,
     557,
     506,
     479,
     399,
     595,
     598,
     589,
     532,
     563,
     525,
     528,
     397,
     521,
     606,
     597,
     501,
     503,
     387,
     589,
     656,
     517,
     584,
     510,
     483,
     598,
     597,
     571,
     578,
     492,
     494,
     560,
     582,
     514,
     585,
     592,
     435,
     651,
     699,
     459,
     644,
     636]},
   {'marker': {'color': 'rgb(0.611984716419799, 0.6363672407760252, 0.19362189405106672)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, posterior part, layer 5',
    'type': 'scatter3d',
    'x': [906,
     915,
     924,
     928,
     940,
     946,
     951,
     959,
     960,
     972,
     975,
     978,
     980,
     980,
     987],
    'y': [505,
     469,
     508,
     527,
     500,
     521,
     521,
     500,
     525,
     524,
     483,
     501,
     479,
     479,
     503],
    'z': [472,
     467,
     478,
     512,
     500,
     534,
     567,
     511,
     592,
     618,
     568,
     543,
     582,
     598,
     590]},
   {'marker': {'color': 'rgb(0.6074072635535932, 0.6376539575465945, 0.19359501449691116)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subparaventricular zone',
    'type': 'scatter3d',
    'x': [537, 541, 549, 578, 578, 584, 589, 590, 595],
    'y': [591, 596, 647, 596, 649, 646, 600, 586, 640],
    'z': [615, 618, 617, 618, 595, 624, 633, 591, 602]},
   {'marker': {'color': 'rgb(0.6027689500527543, 0.6389417907467299, 0.19356803744122053)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Prelimbic area, layer 5',
    'type': 'scatter3d',
    'x': [519,
     526,
     528,
     530,
     604,
     604,
     608,
     612,
     617,
     617,
     618,
     619,
     627,
     636,
     636,
     641],
    'y': [303,
     278,
     272,
     300,
     282,
     290,
     283,
     260,
     303,
     305,
     294,
     326,
     292,
     277,
     287,
     282],
    'z': [376,
     378,
     386,
     383,
     336,
     373,
     361,
     352,
     382,
     345,
     357,
     297,
     282,
     218,
     312,
     280]},
   {'marker': {'color': 'rgb(0.5980657753509978, 0.6402313579397454, 0.19354094961510165)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Parasubthalamic nucleus',
    'type': 'scatter3d',
    'x': [673, 683, 698, 708, 719],
    'y': [584, 583, 564, 567, 582],
    'z': [767, 757, 738, 718, 718]},
   {'marker': {'color': 'rgb(0.5932935246860896, 0.6415232800018231, 0.19351373753597473)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Submedial nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [531, 548, 605, 621, 631],
    'y': [489, 508, 492, 504, 467],
    'z': [663, 683, 648, 692, 658]},
   {'marker': {'color': 'rgb(0.5884477487658076, 0.6428181823329513, 0.1934863874800173)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Perirhinal area, layer 6b',
    'type': 'scatter3d',
    'x': [971],
    'y': [461],
    'z': [724]},
   {'marker': {'color': 'rgb(0.5835237412745466, 0.6441166960864821, 0.1934588854535929)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Substantia nigra, compact part',
    'type': 'scatter3d',
    'x': [663, 665, 669, 677, 682],
    'y': [553, 517, 547, 505, 512],
    'z': [810, 849, 810, 881, 880]},
   {'marker': {'color': 'rgb(0.5785165139180612, 0.6454194594225297, 0.19343121716355213)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterolateral visual area, layer 6a',
    'type': 'scatter3d',
    'x': [876, 884, 920],
    'y': [218, 233, 250],
    'z': [981, 997, 963]},
   {'marker': {'color': 'rgb(0.5734207686539101, 0.6467271187905959, 0.19340336798625093)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Substantia nigra, reticular part',
    'type': 'scatter3d',
    'x': [671,
     678,
     692,
     696,
     698,
     701,
     710,
     711,
     713,
     716,
     718,
     722,
     727,
     729,
     733,
     734,
     735,
     739,
     739,
     739,
     740,
     741,
     744,
     744,
     746,
     748,
     751,
     753,
     754,
     755,
     756,
     757,
     761,
     764,
     765,
     766,
     767,
     769,
     770,
     774,
     778,
     779,
     784,
     785,
     796],
    'y': [530,
     547,
     562,
     519,
     537,
     553,
     575,
     502,
     570,
     540,
     540,
     485,
     528,
     518,
     534,
     524,
     503,
     490,
     522,
     536,
     556,
     550,
     515,
     556,
     558,
     511,
     519,
     510,
     544,
     527,
     534,
     549,
     477,
     460,
     498,
     473,
     440,
     492,
     532,
     494,
     487,
     462,
     518,
     488,
     473],
    'z': [839,
     854,
     812,
     840,
     853,
     832,
     813,
     885,
     780,
     796,
     874,
     892,
     814,
     840,
     797,
     858,
     828,
     859,
     839,
     780,
     802,
     777,
     833,
     794,
     797,
     881,
     817,
     823,
     781,
     844,
     824,
     807,
     858,
     878,
     848,
     892,
     888,
     873,
     782,
     816,
     873,
     851,
     814,
     867,
     855]},
   {'marker': {'color': 'rgb(0.568230866695336, 0.6480403302470259, 0.19337532293514897)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'ventral tegmental decussation',
    'type': 'scatter3d',
    'x': [550, 563, 575, 588, 590],
    'y': [494, 480, 463, 482, 497],
    'z': [853, 860, 876, 845, 849]},
   {'marker': {'color': 'rgb(0.5629407938043579, 0.6493597608131451, 0.193347066626825)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, lateral part, layer 2/3',
    'type': 'scatter3d',
    'x': [651,
     660,
     664,
     668,
     672,
     690,
     701,
     707,
     713,
     718,
     724,
     728,
     728,
     732,
     737,
     737,
     738,
     739,
     742,
     742,
     749,
     754,
     755,
     757,
     763,
     769,
     772,
     773,
     774,
     779,
     793,
     801],
    'y': [310,
     330,
     344,
     329,
     336,
     369,
     379,
     391,
     393,
     380,
     367,
     422,
     437,
     408,
     405,
     441,
     426,
     377,
     422,
     448,
     431,
     437,
     431,
     454,
     444,
     460,
     465,
     472,
     454,
     481,
     467,
     469],
    'z': [250,
     252,
     255,
     239,
     239,
     279,
     272,
     295,
     264,
     308,
     254,
     332,
     336,
     278,
     289,
     343,
     264,
     245,
     274,
     362,
     332,
     325,
     319,
     339,
     342,
     337,
     366,
     356,
     344,
     344,
     337,
     365]},
   {'marker': {'color': 'rgb(0.5575441213028809, 0.6506860898802369, 0.19331858324524337)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subparafascicular nucleus, magnocellular part',
    'type': 'scatter3d',
    'x': [545],
    'y': [530],
    'z': [723]},
   {'marker': {'color': 'rgb(0.5520339621249926, 0.6520200106678644, 0.1932898565040765)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral visual area, layer 1',
    'type': 'scatter3d',
    'x': [937, 944],
    'y': [128, 128],
    'z': [883, 869]},
   {'marker': {'color': 'rgb(0.5464029211046826, 0.6533622317424433, 0.19326086960690028)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subparafascicular nucleus, parvicellular part',
    'type': 'scatter3d',
    'x': [696, 703, 722, 727, 740, 767, 774, 793],
    'y': [435, 434, 437, 441, 455, 452, 439, 413],
    'z': [775, 781, 795, 806, 789, 823, 819, 860]},
   {'marker': {'color': 'rgb(0.5406430385349252, 0.6547134786034339, 0.19323160520503452)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, ventral part, layer 2/3',
    'type': 'scatter3d',
    'x': [533,
     535,
     549,
     550,
     551,
     552,
     554,
     554,
     557,
     561,
     563,
     564,
     576,
     581,
     581,
     584,
     586,
     586,
     616,
     625,
     626,
     635,
     635,
     642,
     689,
     692],
    'y': [127,
     127,
     143,
     158,
     124,
     97,
     104,
     112,
     120,
     186,
     157,
     128,
     115,
     151,
     182,
     173,
     153,
     158,
     134,
     169,
     145,
     154,
     164,
     144,
     183,
     157],
    'z': [854,
     852,
     728,
     670,
     618,
     803,
     659,
     688,
     619,
     661,
     690,
     597,
     681,
     751,
     609,
     644,
     771,
     602,
     844,
     834,
     855,
     843,
     831,
     851,
     834,
     857]},
   {'marker': {'color': 'rgb(0.5347457258386387, 0.6560744953450454, 0.1932020453527846)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, dorsal part, layer 2/3',
    'type': 'scatter3d',
    'x': [591],
    'y': [109],
    'z': [591]},
   {'marker': {'color': 'rgb(0.5287016919492529, 0.65744604640194, 0.19317217145985607)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'columns of the fornix',
    'type': 'scatter3d',
    'x': [597, 621, 624, 628, 660, 671],
    'y': [481, 523, 498, 502, 638, 637],
    'z': [541, 579, 554, 559, 723, 719]},
   {'marker': {'color': 'rgb(0.5225008586950405, 0.6588289183880894, 0.19314196424062777)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, lateral part, layer 6a',
    'type': 'scatter3d',
    'x': [684, 689, 699, 712, 724],
    'y': [306, 309, 311, 340, 401],
    'z': [296, 281, 271, 317, 369]},
   {'marker': {'color': 'rgb(0.5161322630991089, 0.6602239220387016, 0.19311140365999319)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, dorsal part, layer 1',
    'type': 'scatter3d',
    'x': [572, 577],
    'y': [96, 102],
    'z': [621, 613]},
   {'marker': {'color': 'rgb(0.5095839440220506, 0.6616318942659826, 0.19308046887542438)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'dorsal hippocampal commissure',
    'type': 'scatter3d',
    'x': [564,
     579,
     601,
     638,
     654,
     692,
     701,
     723,
     741,
     745,
     761,
     782,
     786,
     786,
     789,
     804,
     808,
     810,
     818,
     823,
     827,
     845,
     879,
     885,
     885,
     907],
    'y': [198,
     198,
     193,
     181,
     168,
     137,
     156,
     160,
     146,
     150,
     173,
     172,
     159,
     186,
     172,
     197,
     211,
     220,
     199,
     226,
     213,
     231,
     240,
     249,
     294,
     273],
    'z': [739,
     748,
     694,
     773,
     775,
     755,
     820,
     829,
     824,
     814,
     877,
     910,
     840,
     887,
     883,
     913,
     914,
     904,
     932,
     926,
     919,
     926,
     947,
     941,
     942,
     940]},
   {'marker': {'color': 'rgb(0.5028428099542773, 0.6630537003404535, 0.19304913817490238)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, lateral part, layer 1',
    'type': 'scatter3d',
    'x': [671, 674, 689, 694, 726, 750],
    'y': [350, 332, 392, 403, 432, 449],
    'z': [229, 226, 257, 281, 309, 302]},
   {'marker': {'color': 'rgb(0.4958944839656651, 0.664490236210629, 0.19301738891026202)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'ventral hippocampal commissure',
    'type': 'scatter3d',
    'x': [555, 556, 558, 585, 608, 623],
    'y': [354, 279, 350, 333, 300, 301],
    'z': [569, 594, 564, 569, 591, 600]},
   {'marker': {'color': 'rgb(0.4887231207800052, 0.665942430975061, 0.19298519742554515)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 1',
    'type': 'scatter3d',
    'x': [805, 820, 837, 849, 854, 866, 875],
    'y': [110, 125, 153, 116, 175, 167, 174],
    'z': [544, 498, 471, 565, 444, 460, 460]},
   {'marker': {'color': 'rgb(0.48131118957521973, 0.6674112495221288, 0.19295253897982992)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Basolateral amygdalar nucleus, ventral part',
    'type': 'scatter3d',
    'x': [879, 888, 890, 894, 894, 905],
    'y': [641, 666, 659, 650, 689, 655],
    'z': [762, 732, 717, 743, 731, 721]},
   {'marker': {'color': 'rgb(0.47363921429601746, 0.6688976953544712, 0.19291938766398173)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Median preoptic nucleus',
    'type': 'scatter3d',
    'x': [548, 557, 565, 568, 569, 573, 576, 578, 581, 582, 583, 584],
    'y': [627, 492, 512, 585, 498, 575, 638, 650, 651, 550, 591, 603],
    'z': [502, 519, 505, 508, 525, 509, 495, 487, 478, 532, 511, 496]},
   {'marker': {'color': 'rgb(0.46568546082958956, 0.6704028136166943, 0.1928857163107155)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'alveus',
    'type': 'scatter3d',
    'x': [608, 638, 763, 848, 852, 919, 920, 931, 954, 957],
    'y': [201, 196, 162, 186, 333, 263, 237, 427, 339, 496],
    'z': [736, 776, 696, 849, 748, 774, 842, 766, 940, 913]},
   {'marker': {'color': 'rgb(0.45742555708372584, 0.6719276943469183, 0.19285149639726606)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'posteromedial visual area, layer 6b',
    'type': 'scatter3d',
    'x': [717, 762],
    'y': [108, 122],
    'z': [855, 801]},
   {'marker': {'color': 'rgb(0.44883202744572576, 0.6734734759749255, 0.1928166979399186)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subthalamic nucleus',
    'type': 'scatter3d',
    'x': [710, 754, 762, 765],
    'y': [560, 537, 514, 507],
    'z': [739, 744, 738, 709]},
   {'marker': {'color': 'rgb(0.43987371672625425, 0.6750413490921302, 0.19278128937951214)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, lower limb, layer 6a',
    'type': 'scatter3d',
    'x': [711,
     713,
     713,
     717,
     722,
     726,
     733,
     735,
     749,
     751,
     751,
     752,
     756,
     756],
    'y': [135,
     139,
     159,
     154,
     133,
     154,
     138,
     140,
     164,
     171,
     184,
     144,
     163,
     173],
    'z': [664,
     668,
     639,
     611,
     649,
     605,
     634,
     681,
     584,
     580,
     621,
     641,
     613,
     620]},
   {'marker': {'color': 'rgb(0.43051506964138303, 0.6766325605213968, 0.19274523745699296)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'brachium of the inferior colliculus',
    'type': 'scatter3d',
    'x': [777, 779, 782, 786, 794, 796, 797, 797],
    'y': [346, 269, 310, 347, 388, 374, 308, 348],
    'z': [923, 926, 890, 883, 918, 912, 906, 891]},
   {'marker': {'color': 'rgb(0.42071521880804713, 0.6782484177178804, 0.19270850707790668)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Medial habenula',
    'type': 'scatter3d',
    'x': [541, 546, 556, 588, 589, 591, 595, 597, 608],
    'y': [279, 302, 290, 285, 331, 328, 329, 284, 308],
    'z': [722, 733, 683, 672, 663, 623, 624, 682, 636]},
   {'marker': {'color': 'rgb(0.41042681496274747, 0.6798902935356508, 0.19267106116464633)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, medial part, layer 1',
    'type': 'scatter3d',
    'x': [541,
     551,
     558,
     561,
     561,
     562,
     565,
     566,
     571,
     573,
     573,
     573,
     574,
     575,
     581,
     583,
     584,
     591],
    'y': [446,
     421,
     394,
     328,
     404,
     335,
     405,
     388,
     358,
     324,
     365,
     403,
     351,
     387,
     363,
     283,
     354,
     444],
    'z': [292,
     293,
     330,
     267,
     306,
     263,
     343,
     302,
     252,
     265,
     269,
     298,
     264,
     313,
     297,
     242,
     259,
     288]},
   {'marker': {'color': 'rgb(0.39959450411741143, 0.6815596313989231, 0.1926328604950862)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, intermediate gray layer, sublayer a',
    'type': 'scatter3d',
    'x': [584, 636, 680],
    'y': [242, 283, 279],
    'z': [819, 813, 818]},
   {'marker': {'color': 'rgb(0.3881529116645894, 0.6832579509213407, 0.1925938635260869)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, intermediate gray layer, sublayer b',
    'type': 'scatter3d',
    'x': [545, 624, 635, 654, 655, 659, 662, 679],
    'y': [268, 277, 332, 411, 327, 293, 340, 299],
    'z': [821, 822, 802, 792, 832, 832, 821, 842]},
   {'marker': {'color': 'rgb(0.37602392263991263, 0.6849868540220149, 0.1925540262001205)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, lower limb, layer 6b',
    'type': 'scatter3d',
    'x': [724, 738, 742, 748],
    'y': [183, 200, 192, 187],
    'z': [611, 593, 608, 630]},
   {'marker': {'color': 'rgb(0.3631129317024616, 0.686748031593033, 0.19251330173309)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, motor related, intermediate gray layer, sublayer c',
    'type': 'scatter3d',
    'x': [558, 581, 607, 636],
    'y': [287, 295, 315, 311],
    'z': [822, 828, 814, 823]},
   {'marker': {'color': 'rgb(0.34930354073325753, 0.6885432707800069, 0.19247164038111042)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral auditory area, layer 6a',
    'type': 'scatter3d',
    'x': [959, 963, 970, 974, 975, 975, 976, 978, 979, 979, 981, 988],
    'y': [360, 385, 367, 378, 363, 395, 398, 364, 404, 406, 377, 394],
    'z': [653, 648, 638, 671, 713, 702, 666, 732, 641, 664, 667, 694]},
   {'marker': {'color': 'rgb(0.33444983713417487, 0.6903744629450957, 0.19242898918375698)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Medial preoptic area',
    'type': 'scatter3d',
    'x': [537,
     537,
     539,
     549,
     557,
     558,
     574,
     582,
     583,
     589,
     590,
     592,
     593,
     593,
     598,
     600,
     606,
     612,
     617,
     618,
     622,
     643,
     645,
     646,
     650,
     651,
     653,
     659,
     667],
    'y': [618,
     626,
     585,
     655,
     611,
     617,
     600,
     600,
     594,
     605,
     585,
     605,
     569,
     613,
     654,
     604,
     599,
     557,
     619,
     628,
     629,
     629,
     628,
     625,
     654,
     655,
     665,
     640,
     687],
    'z': [497,
     492,
     495,
     503,
     516,
     560,
     476,
     549,
     474,
     513,
     542,
     518,
     526,
     566,
     503,
     529,
     517,
     539,
     489,
     496,
     568,
     522,
     578,
     571,
     513,
     548,
     543,
     514,
     575]},
   {'marker': {'color': 'rgb(0.3183647484167744, 0.6922436123909561, 0.19238529168088342)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'dorsal fornix',
    'type': 'scatter3d',
    'x': [559, 571],
    'y': [277, 335],
    'z': [569, 540]},
   {'marker': {'color': 'rgb(0.30080172083331674, 0.6941528459344478, 0.19234048759980907)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Medial pretectal area',
    'type': 'scatter3d',
    'x': [533, 538, 540, 542, 542, 590, 593, 597, 610, 610],
    'y': [291, 287, 273, 282, 290, 289, 282, 279, 288, 312],
    'z': [804, 767, 773, 792, 760, 808, 807, 787, 801, 776]},
   {'marker': {'color': 'rgb(0.2814243517290111, 0.6961044234308823, 0.1922945125090853)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, ventral part, layer 1',
    'type': 'scatter3d',
    'x': [562, 562, 564, 567, 568, 573, 576, 577, 601],
    'y': [92, 104, 135, 157, 151, 146, 162, 163, 175],
    'z': [726, 735, 670, 668, 652, 737, 616, 670, 827]},
   {'marker': {'color': 'rgb(0.2597526162481387, 0.698100749363418, 0.1922472974346012)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Infralimbic area, layer 2/3',
    'type': 'scatter3d',
    'x': [532,
     538,
     540,
     540,
     549,
     588,
     590,
     594,
     595,
     597,
     599,
     599,
     599,
     601,
     602,
     603,
     609,
     613,
     632,
     637,
     646,
     647,
     665],
    'y': [326,
     313,
     314,
     412,
     329,
     316,
     394,
     330,
     326,
     323,
     321,
     331,
     395,
     430,
     387,
     316,
     324,
     441,
     430,
     428,
     430,
     429,
     421],
    'z': [424,
     425,
     338,
     309,
     356,
     417,
     341,
     357,
     338,
     411,
     395,
     355,
     324,
     307,
     339,
     340,
     421,
     308,
     325,
     312,
     320,
     314,
     320]},
   {'marker': {'color': 'rgb(0.2350590152840693, 0.700144385628203, 0.19219876843312028)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 1',
    'type': 'scatter3d',
    'x': [912, 948, 955, 957, 958, 989],
    'y': [169, 182, 182, 186, 214, 212],
    'z': [510, 580, 585, 565, 509, 592]},
   {'marker': {'color': 'rgb(0.20614247140808717, 0.7022380656644452, 0.1921488461175966)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Medial septal nucleus',
    'type': 'scatter3d',
    'x': [530,
     544,
     545,
     545,
     546,
     546,
     551,
     553,
     553,
     557,
     559,
     562,
     563,
     565,
     571,
     572,
     573,
     575,
     579,
     580,
     584,
     587,
     588,
     589,
     592,
     595,
     595,
     597,
     597,
     599,
     604],
    'y': [461,
     530,
     474,
     540,
     559,
     559,
     462,
     456,
     539,
     571,
     494,
     518,
     560,
     488,
     483,
     536,
     491,
     498,
     507,
     495,
     541,
     518,
     493,
     553,
     571,
     453,
     542,
     454,
     558,
     464,
     530],
    'z': [483,
     447,
     501,
     465,
     459,
     461,
     495,
     502,
     436,
     475,
     477,
     427,
     450,
     455,
     508,
     464,
     454,
     463,
     489,
     449,
     483,
     474,
     455,
     458,
     433,
     492,
     475,
     508,
     463,
     503,
     479]},
   {'marker': {'color': 'rgb(0.19252271914660457, 0.7026947747364648, 0.21115993427297397)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'posteromedial visual area, layer 5',
    'type': 'scatter3d',
    'x': [715, 743, 752, 754, 766, 795],
    'y': [94, 101, 88, 97, 99, 95],
    'z': [835, 805, 833, 828, 812, 784]},
   {'marker': {'color': 'rgb(0.193086715418597, 0.7019509987694736, 0.23938301904304454)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral visual area, layer 4',
    'type': 'scatter3d',
    'x': [925, 935],
    'y': [155, 176],
    'z': [871, 887]},
   {'marker': {'color': 'rgb(0.19362779882660291, 0.7012342435027539, 0.26336290893828895)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Tegmental reticular nucleus',
    'type': 'scatter3d',
    'x': [521,
     534,
     538,
     555,
     560,
     563,
     576,
     593,
     600,
     603,
     606,
     611,
     613,
     617,
     659],
    'y': [594,
     628,
     573,
     612,
     608,
     635,
     626,
     613,
     595,
     633,
     614,
     603,
     583,
     630,
     613],
    'z': [948,
     929,
     939,
     968,
     953,
     931,
     951,
     969,
     965,
     953,
     967,
     967,
     904,
     927,
     898]},
   {'marker': {'color': 'rgb(0.19414758271808968, 0.7005427425352123, 0.28429056758240046)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Central lateral nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [638, 646, 653, 655, 658, 658, 663, 669],
    'y': [345, 348, 343, 367, 370, 393, 368, 400],
    'z': [639, 657, 706, 658, 669, 709, 690, 677]},
   {'marker': {'color': 'rgb(0.1946475357017109, 0.6998748749089599, 0.302893978579691)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 4',
    'type': 'scatter3d',
    'x': [777, 797, 802, 802, 808, 808, 809, 817, 823, 846],
    'y': [148, 109, 131, 133, 138, 189, 186, 151, 134, 216],
    'z': [541, 628, 578, 585, 557, 497, 502, 556, 575, 482]},
   {'marker': {'color': 'rgb(0.19512899768727632, 0.6992291502508511, 0.3196566164106609)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the brachium of the inferior colliculus',
    'type': 'scatter3d',
    'x': [764, 774, 785],
    'y': [320, 354, 399],
    'z': [903, 900, 890]},
   {'marker': {'color': 'rgb(0.19559319383821966, 0.6986041956937061, 0.3349189324707251)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Triangular nucleus of septum',
    'type': 'scatter3d',
    'x': [544, 546, 565, 566, 570, 584, 590, 612, 640],
    'y': [383, 325, 274, 353, 286, 410, 315, 394, 413],
    'z': [529, 563, 574, 544, 573, 534, 567, 549, 551]},
   {'marker': {'color': 'rgb(0.1960412467476772, 0.697998744333016, 0.34893134659922126)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, medial part, layer 2/3',
    'type': 'scatter3d',
    'x': [536, 537, 543, 544, 546, 547, 556, 586, 593, 594, 598, 609, 612],
    'y': [389, 344, 346, 372, 389, 384, 358, 366, 325, 313, 318, 318, 393],
    'z': [300, 311, 286, 265, 321, 310, 290, 282, 257, 235, 225, 226, 292]},
   {'marker': {'color': 'rgb(0.19647418709725173, 0.6974116250124905, 0.36188437303927046)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Claustrum',
    'type': 'scatter3d',
    'x': [811,
     834,
     843,
     845,
     852,
     868,
     873,
     893,
     897,
     909,
     913,
     917,
     917,
     930,
     935,
     941,
     944,
     944,
     953],
    'y': [492,
     470,
     490,
     511,
     500,
     503,
     510,
     479,
     499,
     518,
     493,
     490,
     491,
     509,
     511,
     514,
     499,
     513,
     479],
    'z': [405,
     410,
     419,
     435,
     427,
     439,
     460,
     464,
     475,
     509,
     502,
     524,
     514,
     551,
     557,
     593,
     567,
     632,
     622]},
   {'marker': {'color': 'rgb(0.1968929630152263, 0.6968417532629892, 0.3739268962287802)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of Darkschewitsch',
    'type': 'scatter3d',
    'x': [544, 581],
    'y': [392, 403],
    'z': [840, 846]},
   {'marker': {'color': 'rgb(0.19729844831618026, 0.6962881232453535, 0.38517784175669373)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, ventral part, layer 1',
    'type': 'scatter3d',
    'x': [552,
     552,
     554,
     555,
     555,
     556,
     559,
     559,
     559,
     559,
     560,
     561,
     562,
     562,
     564,
     566,
     568,
     568,
     574,
     574,
     575,
     575,
     577,
     578,
     579,
     580,
     580,
     580,
     581,
     582,
     582,
     585,
     586,
     587,
     589],
    'y': [253,
     281,
     167,
     154,
     209,
     239,
     154,
     215,
     239,
     265,
     150,
     171,
     256,
     286,
     289,
     232,
     141,
     159,
     241,
     242,
     214,
     222,
     268,
     192,
     162,
     157,
     227,
     279,
     280,
     147,
     188,
     249,
     280,
     310,
     141],
    'z': [517,
     483,
     574,
     560,
     463,
     439,
     530,
     579,
     525,
     399,
     565,
     537,
     428,
     444,
     404,
     483,
     587,
     515,
     441,
     498,
     457,
     450,
     450,
     596,
     582,
     554,
     552,
     403,
     388,
     576,
     593,
     483,
     391,
     431,
     578]},
   {'marker': {'color': 'rgb(0.19769144977545294, 0.6957498005693943, 0.3957339465525135)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, ventral part, layer 6a',
    'type': 'scatter3d',
    'x': [518,
     609,
     623,
     624,
     626,
     629,
     630,
     632,
     633,
     637,
     641,
     647,
     657,
     685,
     686,
     710,
     717,
     726,
     728],
    'y': [108,
     138,
     130,
     114,
     133,
     159,
     179,
     141,
     119,
     111,
     124,
     106,
     139,
     169,
     150,
     119,
     160,
     151,
     121],
    'z': [660,
     792,
     726,
     752,
     767,
     627,
     801,
     784,
     766,
     700,
     802,
     802,
     813,
     823,
     830,
     896,
     856,
     872,
     895]},
   {'marker': {'color': 'rgb(0.19807271356822148, 0.6952259158795209, 0.4056751137517004)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Central linear nucleus raphe',
    'type': 'scatter3d',
    'x': [578, 592],
    'y': [446, 484],
    'z': [908, 874]},
   {'marker': {'color': 'rgb(0.19844293098341503, 0.6947156591128628, 0.4150682119174376)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 1',
    'type': 'scatter3d',
    'x': [851, 899, 909],
    'y': [83, 92, 103],
    'z': [905, 849, 856]},
   {'marker': {'color': 'rgb(0.19880274350632732, 0.6942182743487022, 0.4239698383325738)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'fasciculus retroflexus',
    'type': 'scatter3d',
    'x': [529, 535, 596, 605, 611, 620],
    'y': [345, 338, 339, 364, 425, 346],
    'z': [689, 688, 712, 727, 776, 712]},
   {'marker': {'color': 'rgb(0.19915274735015598, 0.6937330551790383, 0.4324283724202386)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Diagonal band nucleus',
    'type': 'scatter3d',
    'x': [533,
     540,
     542,
     544,
     545,
     546,
     546,
     547,
     547,
     550,
     551,
     551,
     552,
     552,
     553,
     558,
     562,
     568,
     570,
     577,
     580,
     582,
     583,
     583,
     585,
     589,
     592,
     594,
     595,
     595,
     596,
     598,
     599,
     601,
     601,
     616,
     625,
     631,
     632,
     633,
     634,
     650,
     675,
     682,
     694,
     710,
     719,
     722],
    'y': [643,
     572,
     626,
     575,
     602,
     596,
     642,
     576,
     636,
     524,
     548,
     623,
     558,
     576,
     534,
     644,
     553,
     636,
     628,
     567,
     612,
     613,
     574,
     651,
     596,
     621,
     584,
     531,
     571,
     609,
     628,
     591,
     567,
     551,
     580,
     622,
     702,
     662,
     661,
     653,
     698,
     685,
     676,
     671,
     689,
     675,
     668,
     681],
    'z': [427,
     430,
     453,
     444,
     428,
     424,
     460,
     452,
     441,
     418,
     427,
     411,
     407,
     444,
     410,
     458,
     403,
     425,
     445,
     407,
     429,
     436,
     414,
     473,
     438,
     452,
     441,
     399,
     428,
     410,
     449,
     405,
     426,
     406,
     423,
     442,
     502,
     463,
     463,
     454,
     513,
     506,
     479,
     476,
     537,
     541,
     548,
     546]},
   {'marker': {'color': 'rgb(0.1994934975052473, 0.6932593405394507, 0.44048553049367006)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral auditory area, layer 6b',
    'type': 'scatter3d',
    'x': [953, 960, 962],
    'y': [382, 378, 384],
    'z': [651, 660, 677]},
   {'marker': {'color': 'rgb(0.19982551136518018, 0.6927965109473919, 0.4481775624947317)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Central medial nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [542, 553, 555, 557, 563, 567, 573, 575, 581, 584, 588, 590],
    'y': [459, 447, 449, 476, 455, 441, 451, 471, 442, 457, 438, 448],
    'z': [662, 700, 701, 600, 669, 649, 676, 689, 622, 721, 643, 660]},
   {'marker': {'color': 'rgb(0.2001492719806739, 0.6923439851018571, 0.4555361867174494)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal auditory area, layer 2/3',
    'type': 'scatter3d',
    'x': [951, 970, 973, 973],
    'y': [174, 169, 158, 178],
    'z': [755, 756, 762, 775]},
   {'marker': {'color': 'rgb(0.20046523098541225, 0.6919012168042139, 0.4625893294653454)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterolateral visual area, layer 6a',
    'type': 'scatter3d',
    'x': [925, 933, 942],
    'y': [186, 193, 207],
    'z': [827, 834, 837]},
   {'marker': {'color': 'rgb(0.20077381123200622, 0.6914676921649923, 0.469361717244042)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'fimbria',
    'type': 'scatter3d',
    'x': [544,
     609,
     616,
     632,
     634,
     636,
     640,
     640,
     649,
     653,
     663,
     675,
     682,
     690,
     708,
     715,
     723,
     739,
     745,
     754,
     768,
     778,
     778,
     793,
     812,
     812,
     817,
     817,
     821,
     826,
     826,
     826,
     835,
     838,
     839,
     846,
     848,
     861,
     870,
     875,
     883,
     890,
     892],
    'y': [392,
     264,
     349,
     275,
     311,
     272,
     333,
     381,
     264,
     345,
     364,
     380,
     280,
     324,
     312,
     300,
     342,
     296,
     263,
     286,
     270,
     293,
     328,
     275,
     256,
     318,
     280,
     300,
     301,
     304,
     306,
     313,
     331,
     263,
     275,
     295,
     497,
     472,
     312,
     335,
     319,
     370,
     402],
    'z': [519,
     606,
     552,
     603,
     596,
     589,
     576,
     558,
     597,
     580,
     574,
     564,
     619,
     606,
     598,
     611,
     598,
     627,
     641,
     639,
     666,
     655,
     644,
     666,
     668,
     659,
     693,
     697,
     672,
     698,
     702,
     683,
     702,
     689,
     695,
     704,
     764,
     758,
     724,
     733,
     724,
     740,
     751]},
   {'marker': {'color': 'rgb(0.20107540917131145, 0.6910429270657608, 0.47587535592663094)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, ventrolateral part, layer 6a',
    'type': 'scatter3d',
    'x': [646, 649, 655, 677, 702, 708],
    'y': [324, 329, 430, 415, 419, 420],
    'z': [266, 273, 349, 356, 361, 377]},
   {'marker': {'color': 'rgb(0.201370397004054, 0.690626464848943, 0.4821499221990559)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Subparafascicular area',
    'type': 'scatter3d',
    'x': [547, 555, 555, 571, 585, 594],
    'y': [459, 443, 449, 411, 451, 457],
    'z': [735, 753, 739, 749, 741, 734]},
   {'marker': {'color': 'rgb(0.20165912463004687, 0.6902178742116662, 0.4882030861493664)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, dorsal part, layer 5',
    'type': 'scatter3d',
    'x': [746],
    'y': [158],
    'z': [958]},
   {'marker': {'color': 'rgb(0.20194192141711909, 0.6898167472825322, 0.4940507792451843)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'habenular commissure',
    'type': 'scatter3d',
    'x': [610],
    'y': [286],
    'z': [724]},
   {'marker': {'color': 'rgb(0.20221909780919312, 0.6894226978626397, 0.4997074185837614)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral visual area, layer 5',
    'type': 'scatter3d',
    'x': [911, 912, 913, 920, 923, 924, 931, 932, 933, 934, 936, 941],
    'y': [171, 210, 180, 171, 225, 211, 180, 205, 205, 208, 198, 187],
    'z': [885, 945, 890, 857, 951, 937, 858, 928, 900, 932, 858, 876]},
   {'marker': {'color': 'rgb(0.20249094679058477, 0.6890353598143155, 0.5051860958226491)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Tuberal nucleus',
    'type': 'scatter3d',
    'x': [642, 668, 674, 676, 688, 688, 689, 700],
    'y': [677, 692, 668, 656, 650, 651, 692, 649],
    'z': [739, 655, 709, 705, 706, 695, 665, 702]},
   {'marker': {'color': 'rgb(0.20275774522155027, 0.6886543855828601, 0.510498737351619)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Cuneiform nucleus',
    'type': 'scatter3d',
    'x': [705, 731],
    'y': [359, 373],
    'z': [965, 962]},
   {'marker': {'color': 'rgb(0.2030197550584083, 0.6882794448382379, 0.5156562408726788)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, medial part, layer 5',
    'type': 'scatter3d',
    'x': [613, 617, 622, 623, 631, 633, 642],
    'y': [295, 308, 353, 318, 308, 351, 288],
    'z': [254, 254, 291, 316, 266, 284, 249]},
   {'marker': {'color': 'rgb(0.20327722446995483, 0.6879102232250679, 0.5206685924925697)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Motor nucleus of trigeminal',
    'type': 'scatter3d',
    'x': [742, 743],
    'y': [531, 512],
    'z': [988, 988]},
   {'marker': {'color': 'rgb(0.20353038886061453, 0.6875464212105123, 0.5255449676142899)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, ventral part, layer 6b',
    'type': 'scatter3d',
    'x': [626, 633, 719],
    'y': [139, 123, 125],
    'z': [671, 697, 890]},
   {'marker': {'color': 'rgb(0.20377947180957795, 0.6871877530207638, 0.5302938182790611)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 5',
    'type': 'scatter3d',
    'x': [749,
     774,
     775,
     776,
     777,
     778,
     781,
     783,
     785,
     785,
     788,
     789,
     791,
     791,
     792,
     794,
     802,
     803,
     814,
     815,
     815,
     821,
     828,
     828,
     832,
     834,
     836,
     836,
     837,
     841,
     842,
     847],
    'y': [108,
     135,
     117,
     117,
     166,
     174,
     151,
     174,
     123,
     182,
     135,
     110,
     110,
     150,
     179,
     113,
     164,
     140,
     199,
     156,
     169,
     187,
     208,
     221,
     242,
     244,
     227,
     237,
     189,
     188,
     228,
     220],
    'z': [683,
     621,
     639,
     662,
     546,
     535,
     607,
     573,
     616,
     560,
     664,
     679,
     637,
     573,
     573,
     657,
     561,
     603,
     504,
     592,
     577,
     530,
     511,
     473,
     487,
     487,
     490,
     482,
     534,
     543,
     511,
     501]},
   {'marker': {'color': 'rgb(0.20402468593416306, 0.6868339456577957, 0.5349229491126862)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the optic tract',
    'type': 'scatter3d',
    'x': [663, 670],
    'y': [247, 247],
    'z': [793, 788]},
   {'marker': {'color': 'rgb(0.20426623368474822, 0.6864847379888992, 0.539439583637592)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral anterior-lateral complex of the thalamus',
    'type': 'scatter3d',
    'x': [644,
     645,
     650,
     653,
     660,
     672,
     675,
     679,
     687,
     693,
     695,
     696,
     696,
     698,
     699,
     712,
     716,
     720,
     721,
     724,
     725,
     730,
     736],
    'y': [459,
     463,
     465,
     447,
     467,
     446,
     413,
     399,
     428,
     418,
     419,
     416,
     423,
     472,
     448,
     432,
     385,
     482,
     469,
     471,
     381,
     494,
     488],
    'z': [680,
     663,
     652,
     672,
     669,
     683,
     627,
     657,
     608,
     652,
     637,
     657,
     665,
     657,
     656,
     640,
     627,
     669,
     644,
     645,
     646,
     661,
     660]},
   {'marker': {'color': 'rgb(0.204504308077831, 0.6861398799022769, 0.543850422399626)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, lateral part, layer 5',
    'type': 'scatter3d',
    'x': [704, 719, 733, 736, 742, 742, 746, 768, 788],
    'y': [352, 433, 463, 416, 414, 418, 435, 456, 454],
    'z': [288, 358, 364, 357, 336, 339, 362, 361, 362]},
   {'marker': {'color': 'rgb(0.20473909337307866, 0.685799131522638, 0.5481616941086582)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dentate gyrus, granule cell layer',
    'type': 'scatter3d',
    'x': [587,
     596,
     601,
     604,
     606,
     610,
     625,
     658,
     664,
     675,
     680,
     687,
     711,
     716,
     729,
     730,
     741,
     754,
     764,
     775,
     780,
     794,
     800,
     801,
     822,
     823,
     826,
     827,
     839,
     850,
     853,
     859,
     869,
     870,
     875,
     877,
     878,
     883,
     888,
     891,
     894,
     896],
    'y': [250,
     253,
     261,
     260,
     261,
     262,
     256,
     248,
     270,
     245,
     260,
     270,
     226,
     257,
     225,
     223,
     252,
     597,
     239,
     244,
     238,
     253,
     278,
     278,
     300,
     269,
     269,
     528,
     296,
     354,
     316,
     317,
     330,
     418,
     335,
     411,
     365,
     455,
     345,
     362,
     428,
     425],
    'z': [617,
     657,
     647,
     633,
     666,
     658,
     699,
     743,
     707,
     717,
     718,
     687,
     777,
     715,
     733,
     766,
     738,
     819,
     817,
     749,
     778,
     818,
     859,
     867,
     884,
     808,
     828,
     871,
     878,
     848,
     892,
     883,
     886,
     901,
     878,
     904,
     897,
     874,
     860,
     871,
     860,
     857]},
   {'marker': {'color': 'rgb(0.2049707656996499, 0.6854622624813288, 0.5523792007905871)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the posterior commissure',
    'type': 'scatter3d',
    'x': [618, 623, 624, 626, 637, 643, 653, 659, 661],
    'y': [313, 295, 313, 331, 337, 324, 380, 353, 372],
    'z': [788, 759, 768, 808, 779, 777, 771, 784, 786]},
   {'marker': {'color': 'rgb(0.20519949363648704, 0.6851290512360553, 0.5565083577849836)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Gustatory areas, layer 6a',
    'type': 'scatter3d',
    'x': [747,
     755,
     770,
     772,
     783,
     784,
     788,
     816,
     820,
     828,
     846,
     846,
     854,
     867,
     882,
     882,
     892,
     930,
     960],
    'y': [383,
     336,
     382,
     399,
     373,
     389,
     377,
     407,
     417,
     413,
     403,
     412,
     432,
     414,
     426,
     456,
     440,
     462,
     461],
    'z': [362,
     344,
     369,
     378,
     342,
     375,
     354,
     377,
     388,
     399,
     382,
     382,
     429,
     421,
     452,
     462,
     449,
     509,
     564]},
   {'marker': {'color': 'rgb(0.20542543875084002, 0.6847992844357265, 0.5605542292893837)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the trapezoid body',
    'type': 'scatter3d',
    'x': [638],
    'y': [652],
    'z': [957]},
   {'marker': {'color': 'rgb(0.20564875609885552, 0.6844727563263571, 0.5645215600420083)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary motor area, Layer 5',
    'type': 'scatter3d',
    'x': [636,
     649,
     658,
     660,
     667,
     680,
     680,
     681,
     684,
     688,
     690,
     690,
     692,
     695,
     695,
     696,
     696,
     696,
     697,
     697,
     697,
     697,
     698,
     700,
     701,
     702,
     703,
     703,
     704,
     705,
     707,
     709,
     709,
     710,
     710,
     712,
     712,
     713,
     714,
     715,
     719,
     721,
     721,
     722,
     723,
     725,
     725,
     726,
     726,
     732,
     732,
     733,
     734,
     734,
     734,
     735,
     736,
     740,
     741,
     741,
     742,
     742,
     742,
     742,
     743,
     743,
     745,
     745,
     746,
     746,
     749,
     749,
     750,
     751,
     751,
     753,
     755,
     757,
     758,
     758,
     759,
     760,
     761,
     762,
     762,
     764,
     764,
     766,
     766,
     766,
     766,
     768,
     771,
     773,
     773,
     777,
     777,
     778,
     780,
     781,
     783,
     788,
     788,
     789,
     792,
     795,
     795,
     796,
     798,
     801,
     802,
     802,
     803,
     804,
     808,
     811,
     812,
     814,
     814,
     814,
     818,
     821,
     822,
     825,
     826,
     830,
     831,
     831,
     835,
     836,
     838,
     840,
     841,
     841,
     844,
     847,
     849,
     852,
     862,
     873,
     881],
    'y': [109,
     99,
     147,
     105,
     137,
     141,
     209,
     126,
     144,
     149,
     115,
     158,
     118,
     120,
     186,
     164,
     196,
     206,
     113,
     153,
     163,
     176,
     136,
     182,
     108,
     250,
     135,
     227,
     188,
     152,
     175,
     124,
     137,
     222,
     229,
     183,
     194,
     171,
     129,
     137,
     274,
     160,
     280,
     216,
     216,
     122,
     226,
     138,
     202,
     202,
     225,
     189,
     152,
     192,
     331,
     134,
     130,
     189,
     179,
     193,
     134,
     172,
     210,
     295,
     173,
     263,
     205,
     236,
     215,
     235,
     297,
     310,
     202,
     187,
     214,
     192,
     271,
     198,
     262,
     281,
     260,
     195,
     253,
     253,
     283,
     187,
     222,
     216,
     280,
     362,
     372,
     260,
     277,
     238,
     286,
     224,
     240,
     238,
     266,
     354,
     380,
     193,
     286,
     328,
     292,
     255,
     376,
     282,
     336,
     396,
     243,
     328,
     294,
     276,
     267,
     345,
     226,
     268,
     304,
     363,
     329,
     338,
     258,
     299,
     305,
     257,
     269,
     356,
     285,
     320,
     267,
     282,
     269,
     274,
     321,
     295,
     286,
     356,
     328,
     324,
     358],
    'z': [612,
     613,
     507,
     625,
     551,
     536,
     408,
     521,
     506,
     529,
     576,
     465,
     613,
     606,
     376,
     496,
     362,
     361,
     618,
     474,
     523,
     461,
     593,
     497,
     617,
     340,
     588,
     340,
     412,
     547,
     422,
     574,
     519,
     341,
     368,
     446,
     401,
     527,
     559,
     574,
     310,
     454,
     303,
     350,
     349,
     576,
     432,
     539,
     372,
     446,
     329,
     387,
     496,
     486,
     301,
     560,
     539,
     498,
     509,
     385,
     556,
     495,
     407,
     287,
     508,
     314,
     442,
     442,
     483,
     410,
     286,
     298,
     481,
     450,
     434,
     535,
     275,
     485,
     335,
     333,
     309,
     482,
     359,
     314,
     340,
     526,
     389,
     462,
     273,
     292,
     308,
     316,
     311,
     392,
     288,
     400,
     383,
     359,
     349,
     269,
     305,
     509,
     311,
     276,
     362,
     359,
     325,
     335,
     286,
     307,
     403,
     294,
     317,
     333,
     375,
     341,
     445,
     368,
     324,
     306,
     316,
     319,
     388,
     374,
     373,
     428,
     445,
     329,
     405,
     394,
     396,
     422,
     410,
     383,
     398,
     400,
     405,
     342,
     369,
     366,
     369]},
   {'marker': {'color': 'rgb(0.2058695946916811, 0.6841492681943376, 0.5684148036446534)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 4',
    'type': 'scatter3d',
    'x': [917, 918, 927, 930, 937, 943, 951, 957, 958, 964, 968, 972],
    'y': [219, 229, 230, 246, 212, 285, 235, 237, 248, 261, 251, 290],
    'z': [588, 549, 520, 548, 577, 528, 577, 602, 601, 585, 598, 553]},
   {'marker': {'color': 'rgb(0.20608809793020877, 0.6838286278437146, 0.5722381479529229)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Secondary motor area, layer 1',
    'type': 'scatter3d',
    'x': [541,
     584,
     598,
     602,
     614,
     616,
     616,
     621,
     638,
     644,
     647,
     671,
     675,
     690,
     712,
     739,
     750,
     755,
     758,
     760,
     762,
     767,
     781,
     781,
     784,
     785,
     786,
     795],
    'y': [94,
     128,
     113,
     165,
     147,
     158,
     192,
     181,
     98,
     96,
     122,
     118,
     213,
     137,
     365,
     170,
     393,
     408,
     339,
     260,
     298,
     278,
     225,
     292,
     380,
     289,
     287,
     336],
    'z': [526,
     485,
     471,
     339,
     340,
     308,
     262,
     281,
     491,
     490,
     377,
     413,
     226,
     352,
     233,
     310,
     222,
     226,
     215,
     220,
     217,
     215,
     257,
     218,
     229,
     222,
     212,
     224]},
   {'marker': {'color': 'rgb(0.20630440401130568, 0.6835106491044078, 0.5759955378989308)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 2/3',
    'type': 'scatter3d',
    'x': [859,
     860,
     868,
     884,
     885,
     887,
     890,
     897,
     898,
     898,
     900,
     905,
     906,
     907,
     907,
     911,
     914,
     916,
     919,
     920,
     920,
     921,
     922,
     922,
     922,
     924,
     925,
     925,
     925,
     925,
     926,
     926,
     928,
     929,
     929,
     932,
     935,
     935,
     935,
     936,
     940,
     943,
     943,
     944,
     945,
     947,
     947,
     948,
     948,
     949,
     952,
     955,
     957,
     957,
     959,
     961,
     967,
     969,
     971,
     972,
     973,
     973,
     974,
     974,
     976,
     977,
     980],
    'y': [216,
     237,
     216,
     169,
     200,
     206,
     201,
     237,
     226,
     295,
     241,
     268,
     310,
     238,
     340,
     288,
     299,
     316,
     310,
     226,
     326,
     279,
     253,
     262,
     327,
     361,
     244,
     333,
     335,
     337,
     317,
     321,
     249,
     231,
     329,
     310,
     260,
     293,
     382,
     340,
     326,
     280,
     285,
     255,
     392,
     247,
     284,
     281,
     285,
     226,
     274,
     380,
     362,
     400,
     389,
     350,
     336,
     421,
     427,
     366,
     383,
     413,
     326,
     349,
     289,
     421,
     404],
    'z': [450,
     433,
     462,
     494,
     501,
     486,
     488,
     454,
     468,
     368,
     408,
     390,
     360,
     445,
     384,
     383,
     429,
     428,
     380,
     483,
     378,
     440,
     458,
     416,
     387,
     383,
     483,
     409,
     398,
     363,
     410,
     381,
     485,
     477,
     421,
     427,
     471,
     464,
     417,
     405,
     389,
     451,
     449,
     452,
     430,
     471,
     473,
     457,
     489,
     488,
     475,
     433,
     455,
     412,
     408,
     475,
     482,
     464,
     471,
     448,
     460,
     477,
     503,
     468,
     489,
     448,
     459]},
   {'marker': {'color': 'rgb(0.2065186463080816, 0.6831951513685616, 0.5796906960597387)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'lateral lemniscus',
    'type': 'scatter3d',
    'x': [686,
     689,
     694,
     708,
     713,
     713,
     716,
     721,
     722,
     723,
     725,
     725,
     731,
     737,
     745,
     746,
     750,
     751,
     753,
     755],
    'y': [576,
     599,
     561,
     615,
     513,
     515,
     488,
     445,
     529,
     555,
     484,
     518,
     495,
     514,
     470,
     375,
     532,
     490,
     438,
     439],
    'z': [929,
     925,
     913,
     943,
     926,
     933,
     913,
     960,
     915,
     952,
     915,
     922,
     945,
     937,
     921,
     980,
     962,
     930,
     946,
     948]},
   {'marker': {'color': 'rgb(0.20673095372655403, 0.6828819591524542, 0.5833271412412872)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'lateral olfactory tract, body',
    'type': 'scatter3d',
    'x': [708,
     732,
     766,
     794,
     797,
     807,
     811,
     836,
     838,
     844,
     851,
     859,
     867,
     882],
    'y': [571,
     394,
     539,
     606,
     580,
     567,
     599,
     620,
     651,
     653,
     634,
     637,
     632,
     639],
    'z': [259,
     209,
     288,
     353,
     328,
     323,
     348,
     390,
     437,
     465,
     439,
     433,
     444,
     477]},
   {'marker': {'color': 'rgb(0.20694145104083195, 0.6825709016816012, 0.5869082053108967)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Frontal pole, layer 2/3',
    'type': 'scatter3d',
    'x': [667, 668, 668, 671, 691, 692, 695],
    'y': [298, 305, 308, 261, 296, 278, 302],
    'z': [205, 215, 214, 208, 212, 206, 212]},
   {'marker': {'color': 'rgb(0.20715025920876812, 0.6822618124968698, 0.5904370484804192)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, trunk, layer 2/3',
    'type': 'scatter3d',
    'x': [839],
    'y': [98],
    'z': [710]},
   {'marker': {'color': 'rgb(0.20735749566986905, 0.6819545290795935, 0.5939166732157922)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Caudoputamen',
    'type': 'scatter3d',
    'x': [650,
     651,
     653,
     658,
     658,
     659,
     659,
     660,
     662,
     663,
     664,
     666,
     668,
     668,
     669,
     672,
     672,
     672,
     673,
     674,
     677,
     677,
     678,
     679,
     680,
     681,
     682,
     682,
     683,
     683,
     683,
     683,
     683,
     684,
     685,
     685,
     685,
     685,
     686,
     686,
     687,
     688,
     688,
     689,
     691,
     693,
     693,
     693,
     693,
     694,
     694,
     694,
     694,
     697,
     697,
     698,
     698,
     702,
     702,
     703,
     704,
     706,
     706,
     706,
     706,
     707,
     708,
     708,
     709,
     709,
     709,
     711,
     712,
     712,
     716,
     717,
     717,
     717,
     718,
     718,
     719,
     719,
     720,
     721,
     723,
     724,
     724,
     724,
     724,
     725,
     725,
     725,
     725,
     725,
     726,
     726,
     726,
     726,
     727,
     727,
     728,
     728,
     729,
     729,
     729,
     730,
     731,
     731,
     731,
     731,
     732,
     734,
     734,
     734,
     735,
     735,
     735,
     735,
     736,
     736,
     737,
     738,
     738,
     738,
     738,
     740,
     740,
     740,
     740,
     741,
     741,
     741,
     741,
     741,
     741,
     742,
     743,
     743,
     743,
     743,
     743,
     743,
     744,
     744,
     745,
     745,
     745,
     746,
     746,
     746,
     746,
     747,
     747,
     747,
     747,
     748,
     748,
     748,
     748,
     748,
     749,
     750,
     750,
     750,
     750,
     750,
     750,
     751,
     752,
     752,
     752,
     753,
     754,
     754,
     754,
     755,
     755,
     755,
     756,
     756,
     756,
     757,
     757,
     757,
     758,
     758,
     759,
     759,
     759,
     759,
     759,
     759,
     760,
     760,
     760,
     762,
     762,
     762,
     762,
     762,
     762,
     763,
     763,
     763,
     763,
     764,
     764,
     764,
     765,
     765,
     766,
     766,
     766,
     767,
     767,
     767,
     767,
     767,
     767,
     767,
     768,
     768,
     768,
     768,
     769,
     769,
     769,
     769,
     769,
     770,
     770,
     770,
     770,
     771,
     773,
     774,
     774,
     774,
     775,
     775,
     775,
     776,
     776,
     776,
     776,
     776,
     776,
     777,
     777,
     777,
     777,
     777,
     778,
     778,
     778,
     778,
     778,
     778,
     779,
     780,
     781,
     781,
     781,
     781,
     782,
     782,
     782,
     782,
     782,
     783,
     784,
     784,
     784,
     785,
     785,
     785,
     786,
     786,
     786,
     786,
     786,
     787,
     787,
     787,
     788,
     790,
     790,
     790,
     791,
     792,
     792,
     792,
     792,
     794,
     794,
     795,
     796,
     796,
     796,
     797,
     797,
     797,
     798,
     798,
     799,
     799,
     799,
     800,
     800,
     800,
     801,
     801,
     802,
     802,
     802,
     802,
     802,
     802,
     803,
     803,
     804,
     804,
     804,
     805,
     805,
     805,
     805,
     806,
     806,
     806,
     807,
     807,
     807,
     808,
     808,
     808,
     808,
     809,
     809,
     809,
     810,
     810,
     810,
     810,
     810,
     811,
     811,
     811,
     812,
     812,
     812,
     812,
     813,
     814,
     814,
     814,
     815,
     815,
     816,
     816,
     816,
     816,
     816,
     817,
     817,
     817,
     817,
     817,
     818,
     818,
     818,
     818,
     818,
     818,
     819,
     819,
     819,
     820,
     820,
     820,
     820,
     820,
     821,
     821,
     822,
     822,
     822,
     824,
     824,
     824,
     825,
     825,
     825,
     825,
     825,
     826,
     826,
     826,
     826,
     826,
     827,
     827,
     828,
     828,
     828,
     828,
     829,
     830,
     830,
     830,
     831,
     831,
     831,
     831,
     832,
     832,
     832,
     833,
     834,
     834,
     834,
     835,
     835,
     835,
     835,
     836,
     836,
     837,
     837,
     837,
     837,
     837,
     838,
     838,
     838,
     838,
     839,
     840,
     840,
     840,
     841,
     841,
     841,
     841,
     842,
     842,
     843,
     843,
     843,
     843,
     844,
     844,
     844,
     844,
     844,
     844,
     845,
     845,
     845,
     846,
     846,
     846,
     848,
     848,
     848,
     848,
     848,
     848,
     849,
     849,
     849,
     849,
     849,
     850,
     851,
     851,
     851,
     852,
     852,
     852,
     853,
     853,
     853,
     853,
     853,
     854,
     854,
     855,
     855,
     857,
     857,
     857,
     857,
     857,
     858,
     859,
     860,
     860,
     860,
     860,
     860,
     861,
     861,
     862,
     862,
     863,
     863,
     863,
     864,
     864,
     864,
     864,
     864,
     864,
     865,
     865,
     865,
     865,
     865,
     866,
     866,
     867,
     867,
     867,
     867,
     868,
     868,
     869,
     869,
     869,
     870,
     870,
     870,
     870,
     871,
     871,
     871,
     872,
     872,
     872,
     873,
     873,
     873,
     873,
     874,
     875,
     875,
     876,
     877,
     877,
     878,
     878,
     878,
     879,
     879,
     879,
     879,
     880,
     880,
     880,
     881,
     882,
     884,
     884,
     884,
     885,
     885,
     885,
     885,
     885,
     887,
     888,
     888,
     888,
     888,
     888,
     890,
     891,
     891,
     891,
     893,
     893,
     893,
     894,
     894,
     894,
     894,
     894,
     894,
     895,
     895,
     895,
     895,
     895,
     895,
     895,
     896,
     896,
     896,
     896,
     896,
     896,
     896,
     899,
     899,
     900,
     900,
     900,
     900,
     900,
     902,
     902,
     902,
     902,
     902,
     902,
     902,
     903,
     903,
     903,
     903,
     904,
     904,
     904,
     905,
     906,
     906,
     906,
     907,
     907,
     907,
     907,
     908,
     909,
     909,
     909,
     910,
     912,
     913,
     914,
     914,
     914,
     914,
     915,
     915,
     915,
     916,
     917,
     917,
     918,
     918,
     918,
     918,
     918,
     918,
     918,
     919,
     920,
     920,
     920,
     921,
     923,
     923,
     925,
     926,
     926,
     926,
     926,
     927,
     927,
     927,
     928,
     929,
     930,
     930,
     930,
     931,
     932,
     932,
     932,
     933,
     934,
     935,
     935,
     935,
     936,
     937,
     937,
     938,
     939,
     940,
     944,
     944,
     944,
     945,
     946,
     946,
     946,
     948,
     956],
    'y': [422,
     436,
     442,
     397,
     435,
     411,
     413,
     445,
     385,
     455,
     391,
     472,
     344,
     435,
     387,
     331,
     354,
     432,
     414,
     403,
     322,
     378,
     434,
     491,
     295,
     376,
     390,
     406,
     358,
     375,
     384,
     398,
     414,
     402,
     348,
     366,
     394,
     395,
     363,
     386,
     417,
     365,
     416,
     343,
     345,
     320,
     322,
     436,
     511,
     364,
     367,
     398,
     443,
     324,
     404,
     423,
     438,
     417,
     452,
     480,
     322,
     297,
     309,
     327,
     418,
     483,
     330,
     432,
     311,
     353,
     353,
     416,
     422,
     429,
     355,
     351,
     373,
     473,
     295,
     405,
     372,
     504,
     507,
     447,
     319,
     268,
     315,
     507,
     515,
     374,
     423,
     487,
     506,
     572,
     270,
     288,
     352,
     531,
     468,
     478,
     395,
     399,
     315,
     316,
     511,
     374,
     324,
     336,
     368,
     483,
     314,
     359,
     437,
     442,
     346,
     423,
     491,
     549,
     328,
     431,
     496,
     391,
     399,
     468,
     535,
     304,
     334,
     514,
     526,
     316,
     445,
     450,
     456,
     513,
     531,
     391,
     285,
     291,
     297,
     331,
     479,
     522,
     370,
     517,
     388,
     557,
     560,
     286,
     324,
     345,
     453,
     338,
     360,
     484,
     522,
     377,
     407,
     414,
     426,
     483,
     337,
     337,
     400,
     447,
     462,
     472,
     536,
     421,
     266,
     497,
     543,
     490,
     300,
     385,
     460,
     380,
     389,
     486,
     339,
     515,
     575,
     440,
     484,
     534,
     370,
     480,
     314,
     320,
     365,
     421,
     563,
     571,
     311,
     442,
     548,
     264,
     287,
     351,
     511,
     577,
     579,
     277,
     300,
     318,
     515,
     333,
     359,
     461,
     318,
     417,
     303,
     323,
     406,
     281,
     324,
     369,
     371,
     432,
     433,
     576,
     324,
     345,
     455,
     497,
     332,
     400,
     466,
     466,
     510,
     362,
     448,
     532,
     549,
     383,
     429,
     325,
     326,
     397,
     295,
     395,
     514,
     286,
     295,
     381,
     412,
     462,
     476,
     296,
     375,
     403,
     445,
     480,
     307,
     366,
     397,
     418,
     452,
     522,
     371,
     323,
     278,
     291,
     488,
     538,
     376,
     383,
     436,
     477,
     565,
     513,
     367,
     430,
     545,
     483,
     511,
     550,
     283,
     323,
     332,
     407,
     451,
     289,
     404,
     521,
     337,
     400,
     506,
     534,
     327,
     317,
     413,
     497,
     538,
     515,
     579,
     368,
     327,
     449,
     531,
     318,
     347,
     412,
     410,
     482,
     447,
     469,
     478,
     294,
     397,
     498,
     420,
     563,
     347,
     348,
     447,
     461,
     472,
     543,
     392,
     439,
     365,
     451,
     568,
     396,
     402,
     447,
     536,
     392,
     537,
     568,
     414,
     524,
     555,
     335,
     368,
     492,
     508,
     409,
     437,
     472,
     283,
     348,
     428,
     437,
     523,
     270,
     338,
     469,
     289,
     321,
     389,
     528,
     325,
     398,
     412,
     413,
     383,
     525,
     346,
     360,
     385,
     438,
     572,
     311,
     368,
     467,
     470,
     538,
     330,
     332,
     361,
     391,
     414,
     424,
     294,
     485,
     574,
     310,
     455,
     479,
     522,
     541,
     284,
     569,
     442,
     483,
     551,
     321,
     514,
     566,
     354,
     358,
     385,
     441,
     464,
     357,
     358,
     467,
     514,
     528,
     285,
     464,
     307,
     368,
     383,
     562,
     404,
     391,
     435,
     458,
     342,
     409,
     461,
     491,
     397,
     456,
     548,
     530,
     306,
     329,
     503,
     456,
     512,
     544,
     548,
     354,
     509,
     321,
     410,
     460,
     484,
     509,
     390,
     557,
     558,
     571,
     428,
     385,
     430,
     511,
     296,
     304,
     391,
     509,
     482,
     501,
     259,
     315,
     428,
     566,
     278,
     288,
     330,
     396,
     499,
     560,
     371,
     468,
     494,
     344,
     369,
     453,
     318,
     387,
     409,
     430,
     535,
     538,
     329,
     464,
     505,
     525,
     525,
     404,
     331,
     361,
     468,
     372,
     470,
     570,
     326,
     405,
     418,
     450,
     454,
     445,
     460,
     329,
     349,
     315,
     388,
     461,
     469,
     508,
     529,
     374,
     375,
     416,
     436,
     487,
     498,
     487,
     581,
     324,
     387,
     285,
     298,
     348,
     325,
     327,
     330,
     380,
     438,
     573,
     309,
     366,
     374,
     399,
     563,
     413,
     425,
     348,
     384,
     404,
     517,
     322,
     429,
     295,
     299,
     379,
     311,
     386,
     555,
     570,
     379,
     456,
     503,
     279,
     530,
     570,
     280,
     334,
     459,
     525,
     489,
     476,
     493,
     498,
     347,
     355,
     293,
     399,
     491,
     296,
     426,
     509,
     547,
     374,
     390,
     413,
     486,
     467,
     355,
     459,
     521,
     347,
     394,
     405,
     463,
     471,
     321,
     412,
     414,
     416,
     469,
     509,
     365,
     418,
     426,
     490,
     331,
     434,
     464,
     382,
     385,
     423,
     439,
     481,
     500,
     361,
     409,
     424,
     428,
     438,
     458,
     487,
     308,
     377,
     414,
     458,
     465,
     487,
     493,
     403,
     483,
     396,
     420,
     436,
     465,
     499,
     327,
     350,
     402,
     441,
     459,
     509,
     511,
     328,
     423,
     435,
     477,
     329,
     357,
     439,
     463,
     424,
     426,
     433,
     459,
     471,
     481,
     536,
     477,
     315,
     417,
     526,
     372,
     344,
     415,
     431,
     469,
     498,
     500,
     344,
     383,
     450,
     459,
     463,
     472,
     385,
     395,
     444,
     458,
     463,
     490,
     521,
     425,
     398,
     423,
     479,
     456,
     452,
     507,
     392,
     328,
     363,
     427,
     515,
     411,
     507,
     511,
     441,
     335,
     414,
     435,
     460,
     437,
     410,
     436,
     479,
     426,
     399,
     371,
     387,
     471,
     466,
     360,
     418,
     404,
     447,
     425,
     415,
     417,
     472,
     385,
     369,
     376,
     446,
     429,
     422],
    'z': [421,
     402,
     422,
     458,
     424,
     407,
     431,
     400,
     493,
     395,
     387,
     417,
     426,
     406,
     516,
     489,
     495,
     387,
     444,
     430,
     466,
     432,
     402,
     440,
     507,
     452,
     435,
     498,
     511,
     420,
     387,
     517,
     383,
     409,
     456,
     544,
     476,
     471,
     517,
     419,
     493,
     426,
     385,
     446,
     420,
     520,
     426,
     469,
     490,
     455,
     522,
     437,
     477,
     438,
     428,
     490,
     479,
     464,
     406,
     448,
     464,
     537,
     462,
     497,
     465,
     449,
     442,
     397,
     518,
     392,
     515,
     488,
     486,
     486,
     434,
     433,
     421,
     432,
     527,
     434,
     459,
     533,
     404,
     494,
     511,
     549,
     566,
     511,
     463,
     498,
     478,
     449,
     440,
     497,
     544,
     517,
     577,
     427,
     382,
     403,
     484,
     457,
     517,
     501,
     404,
     539,
     470,
     530,
     517,
     401,
     552,
     462,
     406,
     411,
     487,
     418,
     388,
     473,
     460,
     398,
     434,
     465,
     502,
     477,
     432,
     584,
     537,
     424,
     455,
     485,
     551,
     510,
     396,
     547,
     541,
     418,
     494,
     564,
     550,
     429,
     517,
     454,
     556,
     435,
     384,
     466,
     453,
     547,
     513,
     538,
     405,
     549,
     525,
     490,
     489,
     536,
     400,
     466,
     468,
     453,
     602,
     428,
     458,
     518,
     456,
     501,
     424,
     536,
     541,
     457,
     394,
     437,
     530,
     435,
     491,
     422,
     408,
     503,
     433,
     433,
     430,
     418,
     459,
     516,
     553,
     424,
     575,
     431,
     475,
     432,
     409,
     469,
     537,
     518,
     455,
     558,
     561,
     572,
     521,
     496,
     421,
     524,
     505,
     445,
     544,
     456,
     517,
     542,
     461,
     493,
     476,
     542,
     455,
     606,
     484,
     579,
     552,
     400,
     465,
     483,
     463,
     470,
     497,
     423,
     559,
     395,
     413,
     543,
     425,
     455,
     443,
     519,
     427,
     426,
     488,
     609,
     518,
     451,
     568,
     478,
     429,
     508,
     618,
     426,
     470,
     519,
     454,
     537,
     468,
     463,
     414,
     426,
     612,
     399,
     424,
     536,
     436,
     519,
     504,
     563,
     560,
     611,
     471,
     530,
     495,
     405,
     424,
     502,
     509,
     418,
     472,
     491,
     488,
     542,
     503,
     451,
     575,
     551,
     461,
     580,
     423,
     544,
     479,
     506,
     473,
     423,
     460,
     508,
     611,
     477,
     477,
     495,
     425,
     442,
     439,
     495,
     543,
     407,
     444,
     561,
     522,
     476,
     414,
     560,
     481,
     547,
     411,
     567,
     405,
     573,
     506,
     495,
     436,
     581,
     579,
     459,
     574,
     564,
     455,
     428,
     558,
     474,
     455,
     572,
     545,
     468,
     460,
     437,
     463,
     536,
     465,
     535,
     484,
     571,
     610,
     423,
     557,
     550,
     414,
     524,
     640,
     432,
     541,
     545,
     493,
     586,
     521,
     505,
     586,
     486,
     532,
     439,
     544,
     526,
     416,
     504,
     510,
     511,
     544,
     575,
     498,
     556,
     502,
     621,
     500,
     551,
     445,
     492,
     577,
     550,
     451,
     579,
     538,
     589,
     579,
     465,
     522,
     563,
     577,
     570,
     559,
     467,
     589,
     522,
     458,
     487,
     453,
     601,
     461,
     575,
     519,
     613,
     618,
     561,
     462,
     458,
     554,
     479,
     572,
     509,
     592,
     527,
     564,
     559,
     476,
     509,
     610,
     470,
     481,
     470,
     597,
     427,
     593,
     515,
     518,
     440,
     509,
     612,
     633,
     530,
     468,
     578,
     523,
     485,
     590,
     542,
     567,
     614,
     484,
     439,
     583,
     505,
     462,
     582,
     549,
     569,
     489,
     632,
     472,
     535,
     636,
     571,
     593,
     600,
     573,
     520,
     669,
     555,
     464,
     560,
     653,
     641,
     592,
     481,
     524,
     598,
     604,
     582,
     587,
     489,
     576,
     561,
     615,
     453,
     549,
     576,
     474,
     583,
     672,
     555,
     615,
     491,
     549,
     580,
     618,
     486,
     618,
     613,
     546,
     602,
     555,
     643,
     571,
     534,
     618,
     447,
     475,
     512,
     479,
     684,
     614,
     454,
     509,
     475,
     516,
     464,
     497,
     452,
     453,
     635,
     543,
     497,
     576,
     553,
     646,
     629,
     639,
     532,
     661,
     588,
     626,
     475,
     479,
     528,
     603,
     590,
     555,
     647,
     556,
     647,
     532,
     637,
     513,
     636,
     497,
     596,
     553,
     628,
     672,
     586,
     663,
     612,
     610,
     548,
     550,
     598,
     513,
     664,
     520,
     534,
     665,
     625,
     623,
     551,
     501,
     658,
     578,
     589,
     648,
     583,
     648,
     610,
     543,
     651,
     524,
     595,
     532,
     672,
     559,
     488,
     585,
     581,
     592,
     497,
     596,
     637,
     630,
     566,
     670,
     720,
     608,
     542,
     680,
     548,
     667,
     618,
     634,
     517,
     545,
     605,
     637,
     637,
     549,
     677,
     636,
     649,
     643,
     578,
     593,
     659,
     606,
     659,
     690,
     615,
     726,
     501,
     686,
     649,
     697,
     536,
     505,
     718,
     536,
     689,
     636,
     676,
     514,
     572,
     629,
     682,
     689,
     611,
     619,
     499,
     503,
     654,
     544,
     718,
     670,
     551,
     616,
     650,
     597,
     538,
     627,
     695,
     549,
     511,
     718,
     743,
     732,
     581,
     684,
     689,
     643,
     654,
     596,
     698,
     675,
     605,
     545,
     649,
     568,
     724,
     685,
     708,
     542,
     743,
     728,
     603,
     733,
     523,
     555,
     581,
     716,
     653,
     599,
     629,
     704,
     543,
     615,
     700,
     657,
     604,
     714,
     651,
     693,
     629,
     732,
     660,
     643,
     589,
     694,
     669,
     727,
     649,
     743,
     623,
     726,
     646,
     620,
     748,
     659,
     726,
     692,
     642,
     681,
     688,
     752,
     764,
     697,
     642,
     643,
     617,
     732,
     699,
     741,
     605,
     687,
     692]},
   {'marker': {'color': 'rgb(0.20756327462709118, 0.6816488924938142, 0.5973499369263396)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'mammillary peduncle',
    'type': 'scatter3d',
    'x': [654],
    'y': [580],
    'z': [808]},
   {'marker': {'color': 'rgb(0.2077677073140401, 0.681344747043916, 0.6007395635680086)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, ventral part, layer 6a',
    'type': 'scatter3d',
    'x': [735],
    'y': [390],
    'z': [367]},
   {'marker': {'color': 'rgb(0.2079709022489562, 0.6810419399460296, 0.6040881542783282)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal auditory area, layer 4',
    'type': 'scatter3d',
    'x': [974, 979, 986],
    'y': [212, 216, 256],
    'z': [735, 735, 680]},
   {'marker': {'color': 'rgb(0.20817296547677966, 0.6807403210116838, 0.6073981971467644)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'mammillotegmental tract',
    'type': 'scatter3d',
    'x': [543, 546, 566, 583],
    'y': [464, 467, 428, 450],
    'z': [865, 853, 871, 852]},
   {'marker': {'color': 'rgb(0.20837400080048069, 0.6804397423422777, 0.6106720762120064)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral medial nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [640,
     642,
     650,
     652,
     657,
     660,
     662,
     664,
     664,
     665,
     666,
     668,
     669,
     669,
     674,
     680,
     683,
     683,
     685,
     688,
     697,
     697,
     698,
     698,
     700],
    'y': [497,
     479,
     500,
     514,
     511,
     489,
     520,
     487,
     503,
     506,
     481,
     495,
     476,
     509,
     520,
     483,
     491,
     496,
     496,
     493,
     512,
     516,
     478,
     486,
     474],
    'z': [693,
     705,
     681,
     640,
     742,
     721,
     643,
     670,
     623,
     692,
     647,
     632,
     743,
     734,
     680,
     634,
     658,
     651,
     663,
     694,
     694,
     703,
     647,
     631,
     627]},
   {'marker': {'color': 'rgb(0.20857411000277526, 0.6801400580330175, 0.6139120797672086)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, ventral part, layer 5',
    'type': 'scatter3d',
    'x': [527,
     527,
     530,
     531,
     539,
     539,
     540,
     543,
     544,
     547,
     549,
     553,
     559,
     576,
     581,
     583,
     588,
     595,
     596,
     596,
     596,
     598,
     601,
     606,
     606,
     609,
     611,
     612,
     617,
     617,
     622,
     638,
     647,
     651,
     671,
     673,
     675,
     685,
     687,
     742],
    'y': [112,
     150,
     103,
     111,
     105,
     137,
     137,
     123,
     115,
     122,
     126,
     184,
     147,
     169,
     170,
     171,
     146,
     175,
     112,
     140,
     157,
     99,
     154,
     125,
     136,
     136,
     128,
     108,
     125,
     139,
     185,
     137,
     186,
     142,
     148,
     142,
     141,
     165,
     177,
     158],
    'z': [730,
     631,
     671,
     737,
     648,
     797,
     670,
     649,
     618,
     798,
     791,
     663,
     679,
     684,
     677,
     684,
     776,
     649,
     767,
     673,
     767,
     734,
     716,
     607,
     716,
     726,
     641,
     733,
     810,
     811,
     814,
     823,
     811,
     845,
     849,
     857,
     859,
     850,
     835,
     927]},
   {'marker': {'color': 'rgb(0.20877339305927395, 0.6798411238850356, 0.6171204080451287)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventrolateral preoptic nucleus',
    'type': 'scatter3d',
    'x': [643, 669],
    'y': [714, 682],
    'z': [538, 527]},
   {'marker': {'color': 'rgb(0.20897194834402444, 0.6795427971244655, 0.6202991803472148)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'mammilothalmic tract',
    'type': 'scatter3d',
    'x': [609, 616, 625],
    'y': [553, 564, 539],
    'z': [764, 764, 759]},
   {'marker': {'color': 'rgb(0.20916987282838295, 0.6792449361272941, 0.6234504416738391)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Perirhinal area, layer 5',
    'type': 'scatter3d',
    'x': [967, 988, 989, 990, 990, 993, 995],
    'y': [515, 519, 470, 508, 515, 474, 475],
    'z': [673, 648, 678, 705, 739, 684, 671]},
   {'marker': {'color': 'rgb(0.2093672622740888, 0.6789474001488544, 0.6265761689068927)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, ventral part, layer 2/3',
    'type': 'scatter3d',
    'x': [780,
     801,
     802,
     809,
     817,
     817,
     822,
     834,
     835,
     844,
     844,
     846,
     846,
     853,
     853,
     853,
     856,
     863,
     864,
     869,
     871,
     885,
     897,
     912],
    'y': [446,
     505,
     497,
     472,
     434,
     485,
     446,
     494,
     468,
     476,
     501,
     480,
     488,
     488,
     498,
     508,
     505,
     479,
     502,
     517,
     495,
     497,
     496,
     498],
    'z': [329,
     379,
     371,
     339,
     324,
     352,
     329,
     377,
     343,
     329,
     374,
     332,
     370,
     360,
     382,
     411,
     388,
     363,
     392,
     431,
     394,
     386,
     410,
     424]},
   {'marker': {'color': 'rgb(0.20956421142136794, 0.6786500490568554, 0.6296782765907624)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'medial lemniscus',
    'type': 'scatter3d',
    'x': [532,
     540,
     552,
     555,
     556,
     557,
     593,
     618,
     622,
     631,
     639,
     640,
     663,
     680,
     683,
     691,
     692,
     720],
    'y': [593,
     593,
     602,
     665,
     662,
     630,
     608,
     583,
     548,
     576,
     567,
     534,
     505,
     486,
     464,
     463,
     467,
     453],
    'z': [894,
     894,
     935,
     976,
     970,
     954,
     907,
     894,
     870,
     882,
     877,
     856,
     858,
     856,
     797,
     784,
     805,
     791]},
   {'marker': {'color': 'rgb(0.20976081417286685, 0.678352743066867, 0.6327586223531542)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 5',
    'type': 'scatter3d',
    'x': [862,
     873,
     873,
     880,
     886,
     888,
     894,
     903,
     905,
     913,
     920,
     920,
     924,
     928,
     934,
     934,
     941,
     942,
     943,
     946,
     946,
     949,
     953,
     959],
    'y': [228,
     207,
     232,
     238,
     239,
     223,
     226,
     199,
     269,
     281,
     238,
     247,
     237,
     277,
     239,
     289,
     298,
     263,
     276,
     241,
     251,
     255,
     302,
     284],
    'z': [539,
     543,
     524,
     548,
     591,
     586,
     607,
     592,
     553,
     550,
     567,
     551,
     612,
     568,
     598,
     536,
     576,
     581,
     541,
     593,
     612,
     590,
     565,
     605]},
   {'marker': {'color': 'rgb(0.20995716377418494, 0.6780553424791973, 0.6358190120032489)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, ventral part, layer 1',
    'type': 'scatter3d',
    'x': [844,
     863,
     864,
     867,
     874,
     880,
     893,
     895,
     900,
     911,
     913,
     917,
     924,
     937,
     945,
     946,
     946],
    'y': [496,
     517,
     482,
     515,
     519,
     534,
     512,
     517,
     528,
     534,
     513,
     505,
     537,
     537,
     520,
     502,
     532],
    'z': [347,
     365,
     324,
     354,
     370,
     372,
     395,
     397,
     406,
     432,
     401,
     405,
     451,
     428,
     435,
     411,
     445]},
   {'marker': {'color': 'rgb(0.21015335299174198, 0.6777577074161082, 0.6388612043412155)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Olivary pretectal nucleus',
    'type': 'scatter3d',
    'x': [625, 644, 647],
    'y': [276, 255, 273],
    'z': [775, 780, 769]},
   {'marker': {'color': 'rgb(0.21034947428872103, 0.6774596975583188, 0.641886915710052)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Infralimbic area, layer 1',
    'type': 'scatter3d',
    'x': [555,
     560,
     561,
     561,
     563,
     563,
     564,
     565,
     578,
     579,
     584,
     584,
     587,
     588,
     588,
     589,
     593],
    'y': [331,
     351,
     309,
     425,
     350,
     420,
     350,
     305,
     342,
     336,
     326,
     424,
     334,
     331,
     410,
     362,
     439],
    'z': [413,
     389,
     395,
     354,
     359,
     333,
     401,
     405,
     363,
     369,
     415,
     347,
     405,
     411,
     360,
     384,
     319]},
   {'marker': {'color': 'rgb(0.2105456199997835, 0.6771611718797387, 0.6448978243180837)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral posterolateral nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [718,
     725,
     741,
     752,
     773,
     775,
     775,
     779,
     780,
     780,
     781,
     782,
     785,
     786,
     796,
     799,
     815,
     817],
    'y': [489,
     490,
     483,
     479,
     419,
     375,
     377,
     459,
     421,
     436,
     428,
     413,
     462,
     414,
     405,
     416,
     413,
     419],
    'z': [694,
     680,
     681,
     674,
     650,
     668,
     663,
     715,
     661,
     727,
     672,
     644,
     719,
     758,
     747,
     744,
     734,
     708]},
   {'marker': {'color': 'rgb(0.21074188250526554, 0.6768619883793635, 0.6478955743581234)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 4',
    'type': 'scatter3d',
    'x': [806,
     809,
     812,
     816,
     818,
     827,
     841,
     842,
     844,
     844,
     849,
     849,
     856,
     862,
     869,
     884,
     896,
     899],
    'y': [96,
     95,
     107,
     98,
     88,
     109,
     110,
     100,
     120,
     135,
     119,
     121,
     135,
     141,
     129,
     156,
     172,
     129],
    'z': [845,
     882,
     906,
     911,
     879,
     910,
     865,
     871,
     921,
     945,
     900,
     914,
     905,
     938,
     902,
     945,
     933,
     839]},
   {'marker': {'color': 'rgb(0.21093835440555786, 0.6765620038092441, 0.6508817799472871)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral posterolateral nucleus of the thalamus, parvicellular part',
    'type': 'scatter3d',
    'x': [687, 700],
    'y': [484, 459],
    'z': [723, 754]},
   {'marker': {'color': 'rgb(0.2111351286963699, 0.6762610733974151, 0.6538580289097005)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Temporal association areas, layer 6a',
    'type': 'scatter3d',
    'x': [968, 979, 980, 981, 986, 987, 989],
    'y': [451, 441, 381, 410, 418, 374, 404],
    'z': [651, 646, 750, 712, 742, 761, 734]},
   {'marker': {'color': 'rgb(0.21133229894558014, 0.6759590505646296, 0.6568258864228268)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral posteromedial nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [691,
     694,
     695,
     713,
     713,
     719,
     730,
     733,
     735,
     737,
     738,
     738,
     740,
     741,
     742,
     742,
     746,
     748,
     752,
     752,
     753,
     755,
     759,
     760,
     761,
     763,
     764,
     764,
     764,
     766,
     767,
     769,
     770,
     771,
     772,
     774,
     776,
     777,
     777,
     778,
     778,
     780,
     780,
     784,
     786,
     796,
     799],
    'y': [468,
     468,
     441,
     439,
     462,
     455,
     466,
     480,
     466,
     428,
     414,
     421,
     390,
     420,
     377,
     415,
     448,
     396,
     412,
     433,
     448,
     455,
     441,
     357,
     395,
     352,
     363,
     377,
     384,
     404,
     398,
     424,
     395,
     381,
     378,
     424,
     415,
     354,
     385,
     379,
     383,
     377,
     421,
     389,
     371,
     397,
     389],
    'z': [694,
     694,
     687,
     769,
     664,
     740,
     708,
     699,
     685,
     761,
     672,
     721,
     715,
     749,
     693,
     667,
     708,
     686,
     671,
     758,
     677,
     700,
     729,
     710,
     759,
     715,
     686,
     748,
     764,
     735,
     732,
     683,
     721,
     744,
     726,
     705,
     704,
     738,
     768,
     699,
     690,
     770,
     734,
     743,
     762,
     689,
     676]},
   {'marker': {'color': 'rgb(0.21152995947239434, 0.6756557866337097, 0.6597868985468471)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral posteromedial nucleus of the thalamus, parvicellular part',
    'type': 'scatter3d',
    'x': [629, 639, 661, 665, 668, 669],
    'y': [475, 451, 471, 448, 448, 468],
    'z': [717, 745, 739, 739, 751, 746]},
   {'marker': {'color': 'rgb(0.21172820552954563, 0.6753511305302642, 0.6627425956554123)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral tegmental area',
    'type': 'scatter3d',
    'x': [534,
     538,
     605,
     613,
     613,
     614,
     614,
     614,
     616,
     620,
     621,
     623,
     625,
     626,
     627,
     639,
     643,
     646,
     650,
     650,
     652,
     654,
     655,
     665,
     679,
     702],
    'y': [503,
     477,
     501,
     498,
     527,
     498,
     518,
     543,
     500,
     525,
     529,
     533,
     537,
     529,
     500,
     516,
     542,
     515,
     506,
     514,
     573,
     511,
     499,
     586,
     525,
     508],
    'z': [852,
     818,
     880,
     887,
     852,
     826,
     860,
     805,
     779,
     858,
     779,
     887,
     886,
     784,
     793,
     869,
     786,
     797,
     787,
     794,
     822,
     823,
     866,
     797,
     797,
     814]},
   {'marker': {'color': 'rgb(0.21192713348929693, 0.6750449284734656, 0.6656944957851731)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Secondary motor area, layer 5',
    'type': 'scatter3d',
    'x': [486,
     493,
     498,
     501,
     502,
     506,
     507,
     513,
     517,
     517,
     518,
     521,
     530,
     607,
     611,
     613,
     619,
     621,
     621,
     621,
     624,
     624,
     626,
     626,
     627,
     629,
     631,
     633,
     634,
     634,
     635,
     635,
     637,
     637,
     638,
     638,
     638,
     638,
     639,
     639,
     639,
     640,
     642,
     643,
     643,
     644,
     645,
     646,
     646,
     647,
     649,
     649,
     649,
     650,
     650,
     652,
     653,
     653,
     654,
     655,
     658,
     658,
     661,
     661,
     662,
     662,
     665,
     666,
     667,
     667,
     669,
     669,
     670,
     672,
     674,
     677,
     683,
     687,
     689,
     690,
     698,
     699,
     699,
     702,
     702,
     704,
     707,
     709,
     710,
     719,
     725,
     730,
     731,
     732,
     745,
     766],
    'y': [259,
     197,
     182,
     164,
     195,
     144,
     221,
     174,
     139,
     145,
     116,
     119,
     211,
     181,
     215,
     169,
     163,
     163,
     169,
     173,
     157,
     258,
     137,
     228,
     201,
     131,
     196,
     195,
     162,
     185,
     177,
     194,
     153,
     215,
     115,
     120,
     217,
     228,
     122,
     191,
     266,
     215,
     148,
     141,
     187,
     210,
     181,
     154,
     252,
     239,
     116,
     155,
     268,
     105,
     155,
     236,
     115,
     286,
     175,
     207,
     213,
     258,
     140,
     201,
     192,
     246,
     167,
     173,
     152,
     179,
     199,
     263,
     165,
     173,
     257,
     143,
     172,
     239,
     239,
     300,
     272,
     236,
     248,
     235,
     298,
     299,
     278,
     265,
     277,
     271,
     303,
     307,
     325,
     260,
     311,
     312],
    'z': [316,
     433,
     450,
     482,
     437,
     447,
     409,
     435,
     551,
     488,
     541,
     566,
     409,
     387,
     376,
     415,
     401,
     400,
     439,
     401,
     466,
     238,
     527,
     370,
     424,
     561,
     477,
     408,
     412,
     344,
     460,
     463,
     398,
     333,
     518,
     561,
     270,
     263,
     579,
     436,
     297,
     287,
     505,
     506,
     496,
     291,
     349,
     434,
     296,
     342,
     518,
     397,
     302,
     569,
     429,
     290,
     586,
     217,
     473,
     366,
     342,
     279,
     403,
     365,
     406,
     310,
     441,
     364,
     468,
     413,
     304,
     253,
     389,
     402,
     312,
     419,
     425,
     339,
     259,
     246,
     255,
     324,
     256,
     313,
     218,
     251,
     271,
     257,
     296,
     298,
     249,
     258,
     241,
     264,
     253,
     260]},
   {'marker': {'color': 'rgb(0.2121268410340134, 0.6747370236555106, 0.6686441079207236)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, ventral part, layer 5',
    'type': 'scatter3d',
    'x': [512,
     514,
     514,
     517,
     520,
     522,
     523,
     524,
     528,
     535,
     602,
     604,
     611,
     611,
     612,
     618,
     618,
     622,
     623,
     624,
     633],
    'y': [285,
     199,
     200,
     259,
     220,
     267,
     175,
     278,
     219,
     259,
     268,
     190,
     203,
     204,
     262,
     249,
     299,
     216,
     259,
     215,
     276],
    'z': [432,
     552,
     540,
     447,
     489,
     489,
     578,
     461,
     467,
     399,
     389,
     530,
     592,
     590,
     509,
     423,
     428,
     564,
     442,
     527,
     458]},
   {'marker': {'color': 'rgb(0.21232742735213905, 0.6744272559082984, 0.6715929352309813)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 5',
    'type': 'scatter3d',
    'x': [744,
     749,
     772,
     776,
     785,
     793,
     794,
     795,
     796,
     798,
     803,
     811,
     813,
     814,
     817,
     824,
     825,
     827,
     834,
     839,
     839,
     843,
     851,
     851,
     852,
     857,
     860,
     864,
     875,
     877,
     879,
     882,
     884,
     884,
     886,
     887,
     887,
     888,
     890,
     891,
     896,
     898,
     899,
     909],
    'y': [95,
     91,
     114,
     99,
     116,
     103,
     112,
     100,
     111,
     111,
     110,
     120,
     153,
     106,
     122,
     142,
     173,
     116,
     141,
     123,
     134,
     164,
     106,
     140,
     114,
     122,
     141,
     175,
     187,
     130,
     208,
     170,
     172,
     187,
     160,
     166,
     188,
     181,
     192,
     164,
     169,
     158,
     171,
     188],
    'z': [884,
     868,
     907,
     906,
     910,
     893,
     818,
     821,
     824,
     827,
     900,
     836,
     968,
     846,
     882,
     917,
     983,
     782,
     940,
     810,
     900,
     947,
     828,
     879,
     827,
     811,
     898,
     934,
     963,
     849,
     984,
     918,
     885,
     961,
     885,
     893,
     951,
     933,
     974,
     850,
     914,
     894,
     880,
     950]},
   {'marker': {'color': 'rgb(0.21252899334040876, 0.6741154613557758, 0.6745424782725724)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterior amygdalar nucleus',
    'type': 'scatter3d',
    'x': [758, 790, 808, 809, 815, 816, 850, 853, 860],
    'y': [593, 613, 626, 604, 605, 614, 600, 610, 611],
    'z': [756, 762, 813, 767, 767, 750, 818, 819, 788]},
   {'marker': {'color': 'rgb(0.21273164181321702, 0.6738014720502832, 0.6774942381754417)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, dorsal part, layer 6a',
    'type': 'scatter3d',
    'x': [761, 772, 772, 777, 788, 835, 840, 865, 879],
    'y': [368, 401, 411, 430, 406, 469, 461, 453, 452],
    'z': [321, 364, 369, 380, 373, 426, 412, 427, 415]},
   {'marker': {'color': 'rgb(0.21293547772006632, 0.6734851155911232, 0.6804497198257221)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Temporal association areas, layer 6b',
    'type': 'scatter3d',
    'x': [970, 973, 974, 978],
    'y': [437, 289, 400, 406],
    'z': [658, 890, 740, 752]},
   {'marker': {'color': 'rgb(0.21314060837213428, 0.6731662147234282, 0.683410435060813)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, ventral part, layer 5',
    'type': 'scatter3d',
    'x': [738, 743, 748, 756, 769, 790, 837, 865],
    'y': [384, 414, 404, 401, 458, 470, 476, 516],
    'z': [327, 344, 349, 333, 375, 386, 394, 419]},
   {'marker': {'color': 'rgb(0.2133471436790071, 0.6728445869152588, 0.686377905891678)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'stria medullaris',
    'type': 'scatter3d',
    'x': [617, 623, 626, 627, 632, 633],
    'y': [343, 314, 328, 466, 333, 356],
    'z': [623, 622, 617, 559, 619, 593]},
   {'marker': {'color': 'rgb(0.21355519639675608, 0.6725200439106872, 0.6893536677675434)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Fields of Forel',
    'type': 'scatter3d',
    'x': [669, 675],
    'y': [506, 507],
    'z': [762, 767]},
   {'marker': {'color': 'rgb(0.21376488238858438, 0.6721923912564272, 0.6923392728984876)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Supplemental somatosensory area, layer 2/3',
    'type': 'scatter3d',
    'x': [950, 979, 981, 983, 986, 989, 991, 992, 1000, 1000, 1004],
    'y': [423, 364, 208, 357, 411, 405, 412, 334, 326, 381, 408],
    'z': [447, 482, 702, 505, 483, 485, 484, 532, 511, 489, 500]},
   {'marker': {'color': 'rgb(0.21397632089938756, 0.6718614277993594, 0.6953362936518473)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, ventral part, 6a',
    'type': 'scatter3d',
    'x': [491,
     498,
     502,
     503,
     511,
     514,
     520,
     629,
     630,
     632,
     635,
     635,
     638,
     638,
     640,
     646,
     648],
    'y': [288,
     277,
     231,
     246,
     281,
     302,
     284,
     248,
     268,
     272,
     212,
     265,
     267,
     272,
     277,
     190,
     265],
    'z': [392,
     405,
     506,
     471,
     400,
     428,
     396,
     508,
     469,
     420,
     529,
     423,
     390,
     450,
     448,
     567,
     440]},
   {'marker': {'color': 'rgb(0.2141896348456671, 0.6715269451520515, 0.6983463260389361)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, ventral part, 6b',
    'type': 'scatter3d',
    'x': [645, 651, 652],
    'y': [313, 299, 288],
    'z': [393, 415, 424]},
   {'marker': {'color': 'rgb(0.21440495112239344, 0.6711887271231066, 0.7013709933092813)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary visual area, layer 2/3',
    'type': 'scatter3d',
    'x': [807,
     822,
     849,
     863,
     868,
     870,
     871,
     871,
     878,
     881,
     881,
     883,
     884,
     886,
     891,
     894,
     894,
     895,
     896,
     899,
     902,
     909,
     915],
    'y': [94,
     99,
     93,
     122,
     101,
     129,
     93,
     100,
     105,
     117,
     123,
     127,
     137,
     117,
     103,
     114,
     117,
     121,
     123,
     141,
     120,
     125,
     114],
    'z': [896,
     898,
     867,
     897,
     854,
     926,
     883,
     854,
     851,
     853,
     858,
     930,
     934,
     858,
     828,
     859,
     838,
     847,
     937,
     919,
     860,
     850,
     841]},
   {'marker': {'color': 'rgb(0.21462240092848678, 0.6708465491088634, 0.7044119496704665)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Infralimbic area, layer 5',
    'type': 'scatter3d',
    'x': [508,
     530,
     604,
     606,
     608,
     614,
     618,
     619,
     620,
     623,
     625,
     632,
     633,
     644,
     656],
    'y': [328,
     350,
     355,
     336,
     363,
     327,
     321,
     299,
     375,
     313,
     373,
     391,
     386,
     414,
     407],
    'z': [337,
     397,
     358,
     359,
     357,
     413,
     417,
     425,
     322,
     415,
     300,
     312,
     327,
     326,
     328]},
   {'marker': {'color': 'rgb(0.2148421201128204, 0.6705001774426305, 0.7074708841526677)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 2/3',
    'type': 'scatter3d',
    'x': [891,
     900,
     913,
     917,
     930,
     932,
     932,
     934,
     940,
     944,
     946,
     947,
     965,
     966,
     971,
     971,
     972,
     976,
     977,
     982,
     988,
     991],
    'y': [186,
     170,
     219,
     210,
     231,
     166,
     228,
     219,
     229,
     203,
     192,
     211,
     219,
     225,
     217,
     259,
     229,
     246,
     252,
     270,
     283,
     251],
    'z': [530,
     521,
     514,
     501,
     531,
     574,
     515,
     503,
     519,
     528,
     559,
     540,
     572,
     528,
     570,
     566,
     570,
     606,
     545,
     581,
     569,
     574]},
   {'marker': {'color': 'rgb(0.21506424954276276, 0.6701493686972526, 0.7105495246382031)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, superficial gray layer',
    'type': 'scatter3d',
    'x': [528,
     540,
     550,
     562,
     562,
     563,
     571,
     571,
     572,
     574,
     575,
     583,
     586,
     599,
     604,
     622,
     625,
     645,
     656,
     663,
     671,
     672,
     684,
     687,
     694,
     697,
     723,
     737],
    'y': [158,
     184,
     171,
     158,
     204,
     159,
     144,
     150,
     161,
     178,
     168,
     156,
     145,
     158,
     186,
     181,
     134,
     191,
     134,
     146,
     129,
     180,
     173,
     155,
     186,
     189,
     180,
     192],
    'z': [859,
     837,
     864,
     937,
     835,
     874,
     933,
     889,
     901,
     864,
     882,
     871,
     882,
     862,
     834,
     840,
     925,
     844,
     911,
     951,
     920,
     875,
     894,
     933,
     890,
     873,
     924,
     929]},
   {'marker': {'color': 'rgb(0.21528893549749728, 0.6697938689363716, 0.7136496420777924)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary motor area, Layer 6a',
    'type': 'scatter3d',
    'x': [655,
     657,
     662,
     665,
     666,
     667,
     668,
     668,
     674,
     674,
     677,
     679,
     679,
     680,
     680,
     681,
     681,
     681,
     681,
     685,
     687,
     688,
     688,
     692,
     692,
     692,
     696,
     697,
     698,
     699,
     705,
     709,
     711,
     711,
     714,
     714,
     715,
     717,
     718,
     719,
     719,
     724,
     725,
     727,
     728,
     729,
     730,
     731,
     734,
     737,
     738,
     739,
     739,
     739,
     741,
     741,
     742,
     742,
     744,
     745,
     746,
     747,
     747,
     748,
     749,
     749,
     750,
     754,
     757,
     758,
     763,
     764,
     766,
     771,
     773,
     776,
     777,
     779,
     780,
     781,
     783,
     783,
     792,
     793,
     796,
     801,
     808,
     811,
     816,
     817,
     819,
     823,
     826,
     833],
    'y': [110,
     101,
     150,
     168,
     160,
     144,
     118,
     171,
     123,
     176,
     124,
     156,
     208,
     168,
     189,
     136,
     144,
     207,
     266,
     234,
     141,
     193,
     262,
     195,
     222,
     227,
     166,
     254,
     237,
     229,
     220,
     204,
     226,
     252,
     219,
     220,
     207,
     263,
     165,
     181,
     262,
     252,
     286,
     263,
     185,
     238,
     313,
     252,
     279,
     280,
     259,
     247,
     256,
     265,
     262,
     309,
     332,
     357,
     260,
     311,
     223,
     332,
     344,
     211,
     214,
     273,
     293,
     322,
     290,
     313,
     286,
     273,
     312,
     264,
     280,
     299,
     229,
     307,
     353,
     264,
     335,
     352,
     274,
     298,
     279,
     309,
     378,
     262,
     279,
     320,
     299,
     322,
     313,
     357],
    'z': [631,
     637,
     543,
     532,
     540,
     589,
     629,
     532,
     619,
     521,
     675,
     629,
     466,
     554,
     532,
     658,
     572,
     469,
     367,
     434,
     583,
     503,
     362,
     490,
     403,
     366,
     596,
     373,
     417,
     470,
     466,
     464,
     440,
     436,
     419,
     466,
     521,
     374,
     581,
     532,
     374,
     366,
     382,
     428,
     592,
     385,
     321,
     403,
     351,
     428,
     383,
     459,
     440,
     436,
     428,
     332,
     314,
     329,
     430,
     361,
     490,
     274,
     321,
     470,
     523,
     447,
     409,
     356,
     372,
     342,
     400,
     430,
     353,
     445,
     404,
     373,
     471,
     353,
     314,
     425,
     366,
     370,
     421,
     438,
     389,
     418,
     384,
     473,
     463,
     423,
     424,
     409,
     398,
     403]},
   {'marker': {'color': 'rgb(0.21551633008857868, 0.6694334129092628, 0.7167730549168335)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary auditory area, layer 5',
    'type': 'scatter3d',
    'x': [979],
    'y': [242],
    'z': [804]},
   {'marker': {'color': 'rgb(0.215746591710421, 0.6690677231835723, 0.7199216337568434)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Superior colliculus, optic layer',
    'type': 'scatter3d',
    'x': [534,
     553,
     553,
     559,
     573,
     578,
     584,
     585,
     590,
     613,
     613,
     641,
     652,
     653,
     681,
     687,
     703,
     724,
     727,
     727,
     728,
     732,
     736],
    'y': [204,
     157,
     178,
     186,
     184,
     179,
     165,
     189,
     162,
     148,
     207,
     145,
     182,
     151,
     163,
     209,
     202,
     214,
     194,
     198,
     196,
     191,
     195],
    'z': [837,
     928,
     895,
     901,
     902,
     921,
     947,
     875,
     937,
     916,
     824,
     934,
     877,
     931,
     974,
     856,
     876,
     882,
     941,
     918,
     924,
     947,
     941]},
   {'marker': {'color': 'rgb(0.21597988552368608, 0.6686965092096716, 0.7230973062792987)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 2/3',
    'type': 'scatter3d',
    'x': [782,
     791,
     792,
     792,
     796,
     803,
     805,
     811,
     812,
     813,
     823,
     823,
     824,
     826,
     826,
     842,
     843,
     847,
     851,
     853,
     855,
     855,
     856,
     861,
     872],
    'y': [115,
     105,
     124,
     131,
     122,
     142,
     132,
     172,
     98,
     139,
     122,
     177,
     142,
     135,
     164,
     143,
     154,
     180,
     182,
     167,
     170,
     180,
     181,
     171,
     183],
    'z': [538,
     547,
     588,
     541,
     552,
     500,
     534,
     495,
     584,
     541,
     601,
     477,
     549,
     522,
     500,
     491,
     539,
     479,
     459,
     510,
     460,
     464,
     459,
     459,
     478]},
   {'marker': {'color': 'rgb(0.21621638397488263, 0.6683194663096389, 0.7263020624615021)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Visceral area, layer 6a',
    'type': 'scatter3d',
    'x': [921, 931, 941, 948, 952, 954, 963, 973, 982, 995],
    'y': [449, 441, 433, 438, 457, 450, 442, 428, 448, 432],
    'z': [500, 490, 540, 547, 591, 544, 596, 577, 621, 624]},
   {'marker': {'color': 'rgb(0.2164562673557875, 0.6679362745830959, 0.7295379601167934)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Supplemental somatosensory area, layer 6a',
    'type': 'scatter3d',
    'x': [914,
     917,
     927,
     929,
     937,
     938,
     940,
     941,
     941,
     942,
     942,
     949,
     950,
     952,
     954,
     957,
     959,
     961,
     962,
     963,
     963,
     963,
     967,
     967,
     977],
    'y': [365,
     354,
     360,
     323,
     318,
     366,
     379,
     372,
     420,
     318,
     357,
     371,
     305,
     376,
     420,
     383,
     374,
     409,
     358,
     342,
     353,
     376,
     331,
     403,
     369],
    'z': [540,
     551,
     550,
     608,
     595,
     591,
     536,
     568,
     555,
     662,
     549,
     565,
     619,
     568,
     601,
     596,
     607,
     556,
     625,
     605,
     607,
     573,
     617,
     558,
     621]},
   {'marker': {'color': 'rgb(0.21669972440673757, 0.6675465977212317, 0.7328071307944989)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal nucleus raphe',
    'type': 'scatter3d',
    'x': [563, 564, 567, 567, 571, 573, 574, 577],
    'y': [417, 398, 361, 380, 379, 370, 386, 405],
    'z': [928, 949, 910, 913, 950, 953, 927, 949]},
   {'marker': {'color': 'rgb(0.21694695296827587, 0.6671500817193311, 0.7361117860784815)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Parabigeminal nucleus',
    'type': 'scatter3d',
    'x': [779, 781, 785],
    'y': [344, 400, 382],
    'z': [959, 926, 925]},
   {'marker': {'color': 'rgb(0.21719816068611048, 0.6667463534769824, 0.7394542243270892)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 1',
    'type': 'scatter3d',
    'x': [896,
     907,
     910,
     910,
     930,
     931,
     931,
     940,
     945,
     950,
     957,
     959,
     964,
     970,
     970,
     973,
     992,
     992,
     997],
    'y': [222,
     245,
     206,
     213,
     258,
     271,
     325,
     215,
     247,
     285,
     258,
     374,
     269,
     320,
     340,
     357,
     318,
     327,
     319],
    'z': [410,
     385,
     451,
     435,
     404,
     410,
     361,
     471,
     437,
     421,
     451,
     396,
     453,
     437,
     425,
     433,
     484,
     473,
     487]},
   {'marker': {'color': 'rgb(0.21745356577497732, 0.6663350192738222, 0.742836837901761)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary motor area, Layer 6b',
    'type': 'scatter3d',
    'x': [667,
     672,
     680,
     682,
     682,
     687,
     693,
     707,
     707,
     711,
     713,
     718,
     725,
     733,
     738,
     738,
     746,
     748,
     756,
     762,
     773,
     779,
     783,
     787,
     801,
     808,
     812,
     818],
    'y': [153,
     232,
     235,
     134,
     166,
     232,
     175,
     176,
     256,
     287,
     228,
     190,
     213,
     208,
     276,
     325,
     305,
     270,
     323,
     372,
     319,
     336,
     374,
     331,
     310,
     356,
     329,
     339],
    'z': [641,
     465,
     452,
     678,
     629,
     463,
     615,
     604,
     457,
     387,
     520,
     599,
     562,
     556,
     439,
     369,
     389,
     458,
     388,
     372,
     401,
     389,
     379,
     401,
     437,
     403,
     421,
     423]},
   {'marker': {'color': 'rgb(0.2177133978475721, 0.6659156631071904, 0.7462621209366042)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'amygdalar capsule',
    'type': 'scatter3d',
    'x': [898],
    'y': [582],
    'z': [615]},
   {'marker': {'color': 'rgb(0.21797789881551227, 0.6654878448763635, 0.7497326777069979)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Perirhinal area, layer 2/3',
    'type': 'scatter3d',
    'x': [991],
    'y': [534],
    'z': [660]},
   {'marker': {'color': 'rgb(0.21824732387008638, 0.6650510983960886, 0.7532512316617943)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 6a',
    'type': 'scatter3d',
    'x': [862,
     868,
     870,
     872,
     874,
     879,
     883,
     890,
     893,
     897,
     905,
     916,
     917,
     923,
     925,
     928],
    'y': [237,
     254,
     224,
     258,
     266,
     252,
     239,
     275,
     279,
     267,
     275,
     261,
     278,
     300,
     299,
     297],
    'z': [572,
     536,
     595,
     580,
     615,
     542,
     600,
     560,
     567,
     623,
     629,
     618,
     605,
     563,
     601,
     583]},
   {'marker': {'color': 'rgb(0.21852194255152302, 0.6646049292199052, 0.7568206351911001)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Supplemental somatosensory area, layer 6b',
    'type': 'scatter3d',
    'x': [920, 937, 950],
    'y': [298, 400, 396],
    'z': [665, 577, 614]},
   {'marker': {'color': 'rgb(0.2188020399165831, 0.6641488122511824, 0.7604438802100738)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Visceral area, layer 1',
    'type': 'scatter3d',
    'x': [977],
    'y': [446],
    'z': [450]},
   {'marker': {'color': 'rgb(0.2190879178155407, 0.6636821891168438, 0.7641241096487892)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'anterior commissure, olfactory limb',
    'type': 'scatter3d',
    'x': [550,
     552,
     565,
     583,
     625,
     629,
     652,
     658,
     659,
     659,
     662,
     668,
     670,
     679,
     681,
     682,
     684,
     693,
     700,
     702,
     704,
     709],
    'y': [527,
     522,
     508,
     512,
     517,
     524,
     534,
     543,
     506,
     536,
     532,
     541,
     518,
     481,
     504,
     536,
     508,
     514,
     554,
     532,
     536,
     536],
    'z': [528,
     532,
     537,
     526,
     519,
     519,
     268,
     477,
     262,
     476,
     269,
     469,
     279,
     261,
     300,
     444,
     292,
     333,
     408,
     395,
     398,
     411]},
   {'marker': {'color': 'rgb(0.21937989629101723, 0.6632044652753525, 0.7678646299492315)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterolateral visual area, layer 5',
    'type': 'scatter3d',
    'x': [891, 916, 929, 930],
    'y': [222, 215, 251, 238],
    'z': [984, 981, 987, 969]},
   {'marker': {'color': 'rgb(0.2196783151128105, 0.6627150068265846, 0.7716689246830832)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterolateral visual area, layer 2/3',
    'type': 'scatter3d',
    'x': [954, 959, 962, 964, 965, 967],
    'y': [148, 153, 168, 174, 169, 173],
    'z': [793, 839, 851, 830, 853, 808]},
   {'marker': {'color': 'rgb(0.21998353546467825, 0.6622131369866681, 0.7755406694183866)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Retrosplenial area, lateral agranular part, layer 6a',
    'type': 'scatter3d',
    'x': [672, 676, 687, 689, 699],
    'y': [112, 91, 92, 102, 89],
    'z': [701, 770, 829, 767, 807]},
   {'marker': {'color': 'rgb(0.22029594180130618, 0.661698132185554, 0.779483747979776)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Paracentral nucleus',
    'type': 'scatter3d',
    'x': [534, 538, 621, 623, 636, 646, 651, 657],
    'y': [442, 454, 441, 455, 439, 423, 434, 409],
    'z': [668, 688, 676, 699, 676, 664, 679, 663]},
   {'marker': {'color': 'rgb(0.22061594389608763, 0.6611692177389169, 0.7835022702660721)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'anterior commissure, temporal limb',
    'type': 'scatter3d',
    'x': [617, 625, 749, 783],
    'y': [538, 519, 562, 565],
    'z': [529, 533, 540, 540]},
   {'marker': {'color': 'rgb(0.22094397910334695, 0.6606255630387728, 0.7876005918110716)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, medial part, layer 6a',
    'type': 'scatter3d',
    'x': [639, 648, 649],
    'y': [349, 332, 322],
    'z': [298, 286, 310]},
   {'marker': {'color': 'rgb(0.22128051486197542, 0.6600662761987558, 0.7917833352988769)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterodorsal preoptic nucleus',
    'type': 'scatter3d',
    'x': [619],
    'y': [580],
    'z': [542]},
   {'marker': {'color': 'rgb(0.22162605147138836, 0.65949039808008, 0.7960554142746694)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, dorsal part, layer 6a',
    'type': 'scatter3d',
    'x': [483,
     484,
     496,
     497,
     499,
     505,
     638,
     638,
     645,
     645,
     647,
     649,
     652,
     654,
     658,
     662,
     667],
    'y': [278,
     293,
     281,
     240,
     208,
     234,
     175,
     192,
     219,
     284,
     238,
     250,
     233,
     256,
     270,
     279,
     291],
    'z': [315,
     369,
     367,
     431,
     518,
     399,
     549,
     535,
     472,
     273,
     458,
     437,
     446,
     336,
     395,
     310,
     310]},
   {'marker': {'color': 'rgb(0.2219811251753196, 0.658896895612539, 0.8004220593262014)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'cerebal peduncle',
    'type': 'scatter3d',
    'x': [642,
     659,
     697,
     703,
     706,
     709,
     716,
     725,
     725,
     739,
     791,
     791,
     792,
     796,
     801],
    'y': [562,
     557,
     576,
     601,
     577,
     582,
     591,
     534,
     582,
     588,
     493,
     507,
     513,
     495,
     465],
    'z': [864,
     865,
     862,
     778,
     857,
     824,
     830,
     889,
     841,
     778,
     785,
     787,
     791,
     813,
     821]},
   {'marker': {'color': 'rgb(0.22234631159434248, 0.6582846543110892, 0.8048888470513442)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, dorsal part, layer 6b',
    'type': 'scatter3d',
    'x': [658],
    'y': [270],
    'z': [414]},
   {'marker': {'color': 'rgb(0.22272222955435184, 0.6576524698722204, 0.8094617321738338)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, nose, layer 6b',
    'type': 'scatter3d',
    'x': [842, 877],
    'y': [245, 298],
    'z': [604, 569]},
   {'marker': {'color': 'rgb(0.22310954536564437, 0.6569990387148664, 0.8141470832242238)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Parafascicular nucleus',
    'type': 'scatter3d',
    'x': [530, 538, 623, 635, 642, 646, 651, 652, 666, 667, 670],
    'y': [342, 434, 369, 342, 355, 443, 386, 440, 426, 374, 361],
    'z': [742, 743, 753, 749, 738, 746, 765, 747, 745, 756, 745]},
   {'marker': {'color': 'rgb(0.22350897761607152, 0.6563229473074179, 0.8189517222675542)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Pontine gray',
    'type': 'scatter3d',
    'x': [538,
     560,
     561,
     564,
     583,
     583,
     583,
     585,
     594,
     596,
     600,
     612,
     617,
     627,
     633,
     645,
     647,
     650,
     651,
     658,
     663,
     664,
     667,
     679,
     680,
     683,
     688,
     692,
     696],
    'y': [627,
     647,
     610,
     643,
     629,
     654,
     663,
     621,
     639,
     635,
     628,
     661,
     687,
     631,
     644,
     633,
     653,
     606,
     626,
     629,
     616,
     675,
     669,
     633,
     603,
     624,
     658,
     608,
     627],
    'z': [909,
     915,
     886,
     915,
     874,
     902,
     900,
     881,
     888,
     883,
     880,
     882,
     934,
     864,
     875,
     891,
     881,
     880,
     871,
     879,
     889,
     901,
     907,
     905,
     877,
     917,
     892,
     913,
     910]},
   {'marker': {'color': 'rgb(0.22392130255213444, 0.6556226600946142, 0.8238829692352854)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, dorsal part, layer 1',
    'type': 'scatter3d',
    'x': [552,
     555,
     560,
     560,
     560,
     562,
     563,
     565,
     568,
     578,
     578,
     578,
     581,
     581,
     581,
     584,
     584,
     593,
     594],
    'y': [95,
     209,
     183,
     209,
     212,
     203,
     174,
     178,
     123,
     159,
     177,
     192,
     123,
     184,
     186,
     114,
     197,
     225,
     207],
    'z': [539,
     440,
     423,
     443,
     436,
     352,
     481,
     479,
     564,
     459,
     498,
     445,
     563,
     470,
     381,
     545,
     479,
     271,
     269]},
   {'marker': {'color': 'rgb(0.2243473601342892, 0.6548965058047171, 0.82894869150901)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'cingulum bundle',
    'type': 'scatter3d',
    'x': [612,
     613,
     631,
     645,
     646,
     646,
     646,
     650,
     651,
     651,
     652,
     654,
     655,
     657,
     663,
     664,
     670,
     675,
     679,
     679,
     684,
     688,
     692,
     693,
     714,
     722,
     724,
     726],
    'y': [156,
     197,
     207,
     188,
     156,
     173,
     203,
     137,
     118,
     374,
     116,
     103,
     124,
     185,
     168,
     111,
     322,
     221,
     103,
     281,
     260,
     102,
     117,
     250,
     128,
     185,
     181,
     118],
    'z': [716,
     626,
     593,
     601,
     664,
     633,
     574,
     678,
     786,
     375,
     735,
     774,
     709,
     589,
     614,
     754,
     367,
     519,
     802,
     406,
     434,
     830,
     837,
     461,
     720,
     628,
     633,
     857]},
   {'marker': {'color': 'rgb(0.22478806086749525, 0.6541426618770866, 0.8341573595102375)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary motor area, Layer 2/3',
    'type': 'scatter3d',
    'x': [670,
     672,
     673,
     675,
     685,
     689,
     692,
     694,
     700,
     703,
     703,
     704,
     707,
     711,
     719,
     720,
     724,
     725,
     733,
     737,
     738,
     743,
     743,
     743,
     743,
     745,
     748,
     749,
     752,
     753,
     755,
     756,
     757,
     760,
     763,
     763,
     764,
     764,
     769,
     770,
     771,
     771,
     772,
     773,
     774,
     775,
     776,
     778,
     779,
     780,
     784,
     784,
     785,
     785,
     787,
     788,
     788,
     789,
     789,
     790,
     790,
     791,
     792,
     793,
     795,
     797,
     798,
     801,
     801,
     803,
     803,
     804,
     805,
     809,
     810,
     811,
     811,
     813,
     813,
     813,
     813,
     815,
     815,
     816,
     817,
     817,
     819,
     821,
     821,
     825,
     825,
     827,
     830,
     831,
     832,
     832,
     833,
     834,
     834,
     841,
     846,
     846,
     847,
     848,
     849,
     854,
     856,
     858,
     858,
     865,
     868,
     868,
     871,
     878,
     878,
     879,
     879,
     880,
     884,
     886,
     888,
     896,
     897,
     902,
     905],
    'y': [97,
     124,
     107,
     106,
     140,
     127,
     129,
     133,
     162,
     112,
     136,
     140,
     143,
     97,
     166,
     162,
     151,
     161,
     99,
     226,
     214,
     147,
     149,
     200,
     224,
     151,
     201,
     115,
     152,
     182,
     162,
     234,
     185,
     197,
     111,
     227,
     156,
     159,
     343,
     130,
     238,
     341,
     357,
     212,
     143,
     356,
     128,
     133,
     209,
     339,
     169,
     175,
     150,
     211,
     191,
     206,
     217,
     225,
     274,
     229,
     389,
     228,
     176,
     217,
     142,
     268,
     280,
     151,
     207,
     258,
     389,
     386,
     174,
     168,
     257,
     194,
     250,
     224,
     232,
     278,
     335,
     217,
     383,
     293,
     275,
     333,
     174,
     224,
     357,
     185,
     315,
     227,
     341,
     352,
     238,
     288,
     307,
     248,
     285,
     277,
     276,
     363,
     216,
     184,
     233,
     246,
     245,
     212,
     231,
     304,
     226,
     380,
     360,
     244,
     304,
     255,
     315,
     298,
     289,
     380,
     325,
     290,
     316,
     342,
     355],
    'z': [523,
     506,
     497,
     515,
     381,
     501,
     412,
     455,
     353,
     538,
     449,
     455,
     379,
     532,
     392,
     392,
     410,
     367,
     523,
     320,
     299,
     497,
     432,
     369,
     323,
     460,
     329,
     503,
     455,
     439,
     456,
     279,
     336,
     390,
     547,
     271,
     446,
     474,
     253,
     513,
     315,
     245,
     246,
     286,
     506,
     257,
     532,
     497,
     333,
     244,
     459,
     392,
     460,
     308,
     359,
     349,
     302,
     347,
     294,
     313,
     264,
     261,
     404,
     342,
     465,
     307,
     268,
     457,
     377,
     303,
     296,
     286,
     415,
     450,
     310,
     399,
     267,
     377,
     303,
     334,
     260,
     411,
     303,
     272,
     274,
     257,
     462,
     379,
     308,
     460,
     294,
     349,
     267,
     311,
     345,
     337,
     291,
     310,
     284,
     314,
     305,
     300,
     392,
     445,
     376,
     381,
     403,
     423,
     369,
     354,
     415,
     318,
     326,
     377,
     330,
     388,
     336,
     331,
     361,
     326,
     332,
     353,
     336,
     358,
     342]},
   {'marker': {'color': 'rgb(0.22524439352578285, 0.6533591367014925, 0.8395181091777218)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 6a',
    'type': 'scatter3d',
    'x': [748,
     755,
     756,
     758,
     767,
     768,
     772,
     776,
     781,
     785,
     790,
     795,
     796,
     796,
     797,
     798,
     803,
     803,
     805],
    'y': [131,
     189,
     147,
     186,
     128,
     124,
     161,
     183,
     178,
     203,
     208,
     226,
     223,
     240,
     233,
     216,
     206,
     219,
     218],
    'z': [677,
     582,
     660,
     557,
     688,
     692,
     624,
     637,
     640,
     561,
     581,
     545,
     559,
     541,
     559,
     601,
     563,
     558,
     527]},
   {'marker': {'color': 'rgb(0.22571743391081683, 0.6525437493011488, 0.8450408123658489)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterior hypothalamic nucleus',
    'type': 'scatter3d',
    'x': [530,
     536,
     539,
     539,
     540,
     547,
     550,
     554,
     554,
     557,
     557,
     559,
     561,
     567,
     567,
     569,
     574,
     576,
     577,
     581,
     582,
     583,
     585,
     591,
     594,
     596,
     598,
     604,
     605,
     605,
     607,
     614,
     616,
     621,
     624],
    'y': [527,
     546,
     499,
     551,
     541,
     487,
     517,
     492,
     586,
     509,
     514,
     560,
     511,
     520,
     594,
     575,
     525,
     527,
     480,
     567,
     528,
     530,
     572,
     605,
     537,
     587,
     507,
     564,
     557,
     623,
     496,
     534,
     560,
     548,
     544],
    'z': [690,
     704,
     760,
     727,
     699,
     767,
     753,
     743,
     751,
     732,
     756,
     762,
     785,
     735,
     744,
     758,
     732,
     780,
     742,
     759,
     802,
     798,
     744,
     749,
     773,
     743,
     778,
     727,
     770,
     724,
     764,
     740,
     810,
     803,
     689]},
   {'marker': {'color': 'rgb(0.22620835481014762, 0.6516941060189335, 0.8507361563800656)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 4',
    'type': 'scatter3d',
    'x': [866,
     869,
     884,
     884,
     890,
     893,
     904,
     907,
     911,
     915,
     916,
     922,
     934,
     935,
     938,
     939,
     959,
     965],
    'y': [229,
     199,
     245,
     305,
     245,
     309,
     308,
     280,
     264,
     295,
     310,
     267,
     371,
     330,
     381,
     312,
     402,
     332],
    'z': [489,
     509,
     479,
     386,
     482,
     412,
     422,
     455,
     456,
     447,
     431,
     482,
     438,
     443,
     456,
     454,
     460,
     514]},
   {'marker': {'color': 'rgb(0.22671843735190428, 0.6508075736772518, 0.8566157340851436)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Endopiriform nucleus, dorsal part',
    'type': 'scatter3d',
    'x': [713,
     722,
     723,
     729,
     734,
     754,
     765,
     785,
     803,
     807,
     821,
     833,
     836,
     841,
     850,
     851,
     872,
     872,
     880,
     882,
     888,
     901,
     907,
     907,
     909,
     909,
     916,
     916,
     926,
     932,
     932,
     933,
     942,
     945,
     957,
     959,
     961,
     967,
     967,
     968,
     969,
     975,
     977,
     980,
     981,
     983,
     985,
     986],
    'y': [548,
     520,
     523,
     518,
     549,
     554,
     544,
     531,
     526,
     558,
     526,
     578,
     537,
     570,
     547,
     569,
     548,
     564,
     537,
     546,
     567,
     567,
     529,
     571,
     560,
     565,
     531,
     560,
     518,
     518,
     538,
     517,
     520,
     529,
     566,
     539,
     537,
     513,
     554,
     547,
     488,
     482,
     509,
     513,
     507,
     487,
     519,
     517],
    'z': [350,
     336,
     342,
     352,
     376,
     383,
     389,
     394,
     388,
     402,
     405,
     461,
     447,
     445,
     444,
     478,
     460,
     491,
     457,
     462,
     524,
     543,
     534,
     592,
     557,
     623,
     581,
     547,
     555,
     611,
     564,
     635,
     677,
     672,
     711,
     767,
     797,
     762,
     749,
     736,
     780,
     757,
     738,
     786,
     747,
     796,
     738,
     738]},
   {'marker': {'color': 'rgb(0.22724908399048133, 0.6498812485721984, 0.8626921462880559)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary auditory area, layer 6a',
    'type': 'scatter3d',
    'x': [970, 979, 986],
    'y': [263, 298, 342],
    'z': [826, 807, 763]},
   {'marker': {'color': 'rgb(0.2278018334039748, 0.6489119205265733, 0.868979118420422)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Secondary motor area, layer 2/3',
    'type': 'scatter3d',
    'x': [505,
     509,
     522,
     528,
     533,
     539,
     540,
     589,
     599,
     601,
     603,
     605,
     605,
     609,
     610,
     612,
     612,
     617,
     618,
     619,
     621,
     622,
     622,
     624,
     626,
     627,
     631,
     633,
     634,
     634,
     634,
     636,
     637,
     638,
     638,
     639,
     642,
     644,
     645,
     646,
     646,
     649,
     649,
     651,
     651,
     653,
     654,
     656,
     656,
     665,
     667,
     669,
     671,
     672,
     675,
     679,
     685,
     686,
     687,
     694,
     697,
     698,
     698,
     699,
     700,
     711,
     713,
     717,
     719,
     722,
     723,
     723,
     733,
     734,
     740,
     742,
     743,
     743,
     754,
     756,
     760,
     766,
     767,
     774,
     778,
     779,
     781,
     792,
     796,
     798],
    'y': [138,
     144,
     132,
     129,
     141,
     188,
     134,
     166,
     189,
     206,
     105,
     163,
     227,
     174,
     177,
     119,
     218,
     145,
     156,
     111,
     120,
     94,
     178,
     151,
     150,
     149,
     222,
     211,
     116,
     131,
     153,
     253,
     240,
     187,
     223,
     142,
     198,
     128,
     176,
     108,
     171,
     209,
     253,
     100,
     133,
     113,
     113,
     160,
     176,
     146,
     176,
     191,
     145,
     186,
     104,
     179,
     136,
     164,
     167,
     177,
     227,
     181,
     192,
     201,
     247,
     266,
     193,
     196,
     229,
     236,
     192,
     234,
     283,
     220,
     164,
     266,
     216,
     281,
     212,
     260,
     327,
     259,
     270,
     260,
     243,
     341,
     299,
     280,
     303,
     266],
    'z': [412,
     435,
     478,
     489,
     477,
     451,
     479,
     423,
     432,
     295,
     526,
     393,
     294,
     327,
     488,
     500,
     263,
     465,
     354,
     467,
     449,
     533,
     486,
     398,
     390,
     354,
     256,
     285,
     485,
     418,
     383,
     215,
     240,
     281,
     222,
     386,
     264,
     455,
     290,
     507,
     318,
     255,
     228,
     543,
     434,
     495,
     471,
     325,
     305,
     366,
     323,
     294,
     395,
     293,
     475,
     356,
     430,
     320,
     345,
     318,
     261,
     345,
     321,
     250,
     230,
     233,
     284,
     302,
     257,
     231,
     330,
     232,
     234,
     267,
     339,
     234,
     293,
     230,
     295,
     238,
     226,
     244,
     254,
     258,
     262,
     229,
     246,
     263,
     245,
     246]},
   {'marker': {'color': 'rgb(0.22837837764086494, 0.6478960310566556, 0.8754916339400045)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Endopiriform nucleus, ventral part',
    'type': 'scatter3d',
    'x': [797,
     826,
     865,
     886,
     902,
     906,
     910,
     917,
     920,
     923,
     926,
     926,
     938,
     944],
    'y': [647,
     627,
     665,
     608,
     623,
     601,
     620,
     630,
     660,
     615,
     624,
     630,
     636,
     634],
    'z': [561,
     559,
     628,
     610,
     642,
     638,
     659,
     750,
     738,
     671,
     758,
     757,
     782,
     784]},
   {'marker': {'color': 'rgb(0.22898058192334808, 0.6468296244950443, 0.8822460873546792)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, ventrolateral part, layer 1',
    'type': 'scatter3d',
    'x': [538,
     543,
     546,
     546,
     558,
     565,
     566,
     577,
     583,
     586,
     590,
     593,
     595,
     598,
     600,
     607,
     616,
     632,
     640,
     646,
     653,
     664,
     670,
     672],
    'y': [437,
     363,
     368,
     378,
     347,
     416,
     401,
     394,
     416,
     382,
     410,
     396,
     361,
     423,
     396,
     430,
     412,
     386,
     380,
     369,
     328,
     395,
     403,
     376],
    'z': [275,
     243,
     229,
     237,
     223,
     264,
     255,
     262,
     268,
     231,
     276,
     246,
     228,
     265,
     243,
     268,
     266,
     247,
     243,
     250,
     221,
     279,
     295,
     263]},
   {'marker': {'color': 'rgb(0.2296105076014992, 0.6457082906438215, 0.8892604603688731)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Lateral visual area, layer 2/3',
    'type': 'scatter3d',
    'x': [926, 930, 931, 933, 942, 942, 944, 950, 953, 961, 966],
    'y': [163, 139, 192, 165, 144, 175, 182, 170, 169, 172, 161],
    'z': [913, 892, 947, 935, 888, 929, 949, 892, 858, 894, 866]},
   {'marker': {'color': 'rgb(0.23027043886053272, 0.6445270971922727, 0.8965545253918512)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 5',
    'type': 'scatter3d',
    'x': [837,
     842,
     845,
     853,
     855,
     857,
     864,
     865,
     865,
     866,
     866,
     867,
     871,
     872,
     874,
     874,
     876,
     877,
     880,
     881,
     883,
     884,
     886,
     886,
     887,
     889,
     889,
     890,
     891,
     892,
     893,
     902,
     902,
     905,
     909,
     910,
     912,
     912,
     912,
     914,
     915,
     915,
     915,
     920,
     921,
     928,
     930,
     930,
     937],
    'y': [268,
     252,
     255,
     236,
     259,
     325,
     283,
     270,
     320,
     266,
     315,
     285,
     333,
     331,
     319,
     324,
     278,
     265,
     257,
     354,
     308,
     387,
     279,
     319,
     281,
     261,
     285,
     352,
     284,
     300,
     358,
     271,
     341,
     258,
     295,
     300,
     271,
     367,
     401,
     334,
     329,
     332,
     378,
     273,
     397,
     281,
     355,
     380,
     373],
    'z': [444,
     443,
     502,
     485,
     473,
     404,
     461,
     444,
     414,
     501,
     398,
     417,
     404,
     417,
     439,
     432,
     501,
     471,
     502,
     428,
     434,
     414,
     465,
     460,
     491,
     520,
     508,
     395,
     500,
     444,
     440,
     507,
     470,
     515,
     522,
     500,
     505,
     401,
     447,
     429,
     438,
     513,
     480,
     507,
     458,
     514,
     455,
     482,
     467]},
   {'marker': {'color': 'rgb(0.2309629139189866, 0.6432805096992016, 0.9041500815686931)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Edinger-Westphal nucleus',
    'type': 'scatter3d',
    'x': [562, 567],
    'y': [372, 401],
    'z': [899, 857]},
   {'marker': {'color': 'rgb(0.23169076162653907, 0.6419622963815823, 0.9120712296499709)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ectorhinal area/Layer 6a',
    'type': 'scatter3d',
    'x': [975, 980, 986],
    'y': [457, 472, 430],
    'z': [660, 645, 726]},
   {'marker': {'color': 'rgb(0.23245714458703504, 0.640565414228138, 0.920344693473304)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dorsal premammillary nucleus',
    'type': 'scatter3d',
    'x': [621, 636],
    'y': [602, 606],
    'z': [745, 751]},
   {'marker': {'color': 'rgb(0.2332656102093571, 0.6390818720123711, 0.9290001976801453)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 1',
    'type': 'scatter3d',
    'x': [904, 935, 944, 958, 962, 971, 982],
    'y': [97, 114, 130, 158, 142, 153, 193],
    'z': [721, 746, 683, 668, 740, 702, 605]},
   {'marker': {'color': 'rgb(0.2341201514450551, 0.6375025645368926, 0.938070913656777)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Fasciola cinerea',
    'type': 'scatter3d',
    'x': [587],
    'y': [211],
    'z': [741]},
   {'marker': {'color': 'rgb(0.2350252794334971, 0.6358170707905617, 0.9475939887354509)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ectorhinal area/Layer 5',
    'type': 'scatter3d',
    'x': [993],
    'y': [454],
    'z': [677]},
   {'marker': {'color': 'rgb(0.23598611087845478, 0.6340134064874666, 0.9576111776470438)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, dorsal part, layer 1',
    'type': 'scatter3d',
    'x': [762,
     783,
     790,
     797,
     800,
     803,
     826,
     838,
     867,
     872,
     880,
     881,
     896,
     917,
     924,
     925,
     930,
     955,
     958],
    'y': [434,
     461,
     438,
     469,
     480,
     486,
     457,
     466,
     432,
     463,
     463,
     472,
     452,
     474,
     464,
     492,
     488,
     478,
     496],
    'z': [252,
     269,
     256,
     288,
     299,
     295,
     295,
     305,
     321,
     318,
     337,
     353,
     356,
     367,
     373,
     384,
     392,
     452,
     454]},
   {'marker': {'color': 'rgb(0.2617123803301709, 0.6313901184949553, 0.9586812588064982)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Fundus of striatum',
    'type': 'scatter3d',
    'x': [737, 793, 818, 831, 832],
    'y': [599, 622, 635, 593, 595],
    'z': [511, 517, 523, 519, 524]},
   {'marker': {'color': 'rgb(0.28705827887168606, 0.6286895382434424, 0.958666308370007)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ventral premammillary nucleus',
    'type': 'scatter3d',
    'x': [604, 642],
    'y': [666, 647],
    'z': [751, 739]},
   {'marker': {'color': 'rgb(0.3098134906260197, 0.6259988804814621, 0.9586514945543444)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary auditory area, layer 6b',
    'type': 'scatter3d',
    'x': [972, 974, 979, 983],
    'y': [313, 340, 344, 323],
    'z': [761, 769, 773, 809]},
   {'marker': {'color': 'rgb(0.33056279001650896, 0.6233167350083058, 0.9586368086338816)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Visceral area, layer 4',
    'type': 'scatter3d',
    'x': [950, 983, 993],
    'y': [456, 444, 451],
    'z': [476, 502, 514]},
   {'marker': {'color': 'rgb(0.3497037229257664, 0.6206417089780452, 0.9586222421521212)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior cingulate area, dorsal part, layer 5',
    'type': 'scatter3d',
    'x': [506,
     515,
     515,
     518,
     519,
     522,
     522,
     523,
     524,
     525,
     540,
     608,
     609,
     613,
     615,
     615,
     618,
     619,
     619,
     620,
     621,
     621,
     623,
     623,
     629,
     629,
     634],
    'y': [221,
     237,
     244,
     257,
     159,
     251,
     272,
     208,
     233,
     213,
     259,
     198,
     214,
     155,
     146,
     238,
     166,
     227,
     230,
     200,
     174,
     191,
     184,
     245,
     209,
     250,
     214],
    'z': [467,
     429,
     360,
     380,
     560,
     370,
     361,
     387,
     426,
     435,
     379,
     420,
     392,
     556,
     542,
     404,
     545,
     453,
     365,
     496,
     501,
     511,
     498,
     316,
     471,
     354,
     474]},
   {'marker': {'color': 'rgb(0.3675209648541376, 0.6179724238707079, 0.9586077869008521)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'olfactory nerve layer of main olfactory bulb',
    'type': 'scatter3d',
    'x': [561, 562, 574],
    'y': [564, 498, 526],
    'z': [222, 203, 204]},
   {'marker': {'color': 'rgb(0.3842266000089387, 0.6153075125261576, 0.9585934349004371)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterior complex of the thalamus',
    'type': 'scatter3d',
    'x': [675,
     679,
     680,
     680,
     680,
     682,
     683,
     683,
     686,
     688,
     698,
     700,
     701,
     702,
     703,
     705,
     706,
     710,
     716,
     718,
     722,
     725,
     728,
     732,
     740,
     745,
     745,
     746,
     747,
     749,
     757,
     761],
    'y': [340,
     377,
     348,
     383,
     422,
     386,
     380,
     390,
     425,
     356,
     351,
     360,
     423,
     383,
     350,
     339,
     346,
     337,
     410,
     351,
     407,
     411,
     335,
     384,
     353,
     363,
     363,
     370,
     342,
     342,
     358,
     347],
    'z': [739,
     707,
     719,
     729,
     700,
     685,
     694,
     717,
     741,
     746,
     689,
     742,
     772,
     769,
     760,
     721,
     751,
     742,
     725,
     742,
     730,
     763,
     714,
     738,
     745,
     683,
     736,
     781,
     681,
     726,
     766,
     745]},
   {'marker': {'color': 'rgb(0.3999836430517876, 0.6126456162265626, 0.9585791783811305)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Secondary motor area, layer 6a',
    'type': 'scatter3d',
    'x': [483,
     490,
     495,
     498,
     504,
     508,
     635,
     639,
     640,
     640,
     643,
     645,
     646,
     647,
     647,
     649,
     651,
     653,
     653,
     655,
     656,
     657,
     658,
     664,
     666,
     672,
     672,
     677,
     679,
     679,
     680,
     682,
     683,
     683,
     685,
     689,
     691,
     720],
    'y': [272,
     214,
     202,
     229,
     171,
     172,
     137,
     134,
     170,
     219,
     229,
     234,
     247,
     149,
     198,
     247,
     151,
     179,
     250,
     133,
     246,
     196,
     269,
     146,
     265,
     202,
     239,
     252,
     247,
     265,
     214,
     289,
     254,
     255,
     267,
     305,
     273,
     316],
    'z': [322,
     405,
     449,
     458,
     501,
     535,
     586,
     596,
     518,
     406,
     380,
     405,
     379,
     581,
     466,
     377,
     552,
     495,
     362,
     578,
     353,
     462,
     380,
     583,
     364,
     478,
     424,
     336,
     417,
     306,
     393,
     373,
     344,
     391,
     374,
     313,
     340,
     273]},
   {'marker': {'color': 'rgb(0.4149206004819342, 0.6099853818136918, 0.958565009765323)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Globus pallidus, external segment',
    'type': 'scatter3d',
    'x': [718,
     723,
     728,
     732,
     735,
     740,
     741,
     744,
     746,
     749,
     749,
     751,
     754,
     756,
     760,
     760,
     772,
     778,
     783,
     784,
     788,
     791,
     792,
     796,
     797,
     797,
     801,
     802,
     802,
     803,
     805,
     808,
     809,
     812,
     814,
     816,
     816,
     817,
     818,
     824,
     826,
     827,
     832,
     834,
     838,
     851,
     857,
     858,
     869,
     874],
    'y': [494,
     476,
     489,
     468,
     483,
     459,
     489,
     526,
     478,
     451,
     497,
     516,
     471,
     535,
     449,
     470,
     516,
     445,
     466,
     546,
     507,
     516,
     444,
     518,
     457,
     478,
     449,
     462,
     527,
     434,
     482,
     532,
     529,
     451,
     422,
     469,
     513,
     500,
     450,
     514,
     456,
     517,
     428,
     492,
     471,
     452,
     496,
     471,
     457,
     471],
    'z': [569,
     562,
     552,
     566,
     571,
     581,
     573,
     564,
     571,
     561,
     571,
     582,
     589,
     575,
     587,
     594,
     604,
     575,
     572,
     580,
     590,
     577,
     604,
     623,
     587,
     606,
     592,
     602,
     631,
     590,
     611,
     620,
     609,
     625,
     625,
     622,
     642,
     628,
     614,
     603,
     647,
     622,
     634,
     669,
     654,
     649,
     692,
     692,
     697,
     698]},
   {'marker': {'color': 'rgb(0.42914091625202494, 0.6073254588275361, 0.9585509216506315)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, upper limb, layer 6b',
    'type': 'scatter3d',
    'x': [764, 764, 780, 785, 789, 804, 816],
    'y': [146, 177, 221, 222, 228, 264, 251],
    'z': [688, 650, 572, 585, 589, 517, 547]},
   {'marker': {'color': 'rgb(0.44272933827392036, 0.6046644966528734, 0.958536906793742)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterior limiting nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [751, 754, 771],
    'y': [369, 351, 430],
    'z': [840, 833, 806]},
   {'marker': {'color': 'rgb(0.4557563492248155, 0.6020011416604306, 0.9585229580949347)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Globus pallidus, internal segment',
    'type': 'scatter3d',
    'x': [741, 749, 770, 774, 775, 782, 795, 796],
    'y': [533, 534, 512, 514, 533, 523, 514, 525],
    'z': [648, 632, 620, 673, 627, 641, 660, 675]},
   {'marker': {'color': 'rgb(0.4682813351946277, 0.5993340343292025, 0.9585090685832159)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Supplemental somatosensory area, layer 4',
    'type': 'scatter3d',
    'x': [960, 971, 977, 979, 981, 991, 997],
    'y': [367, 333, 390, 266, 413, 361, 352],
    'z': [484, 519, 502, 642, 521, 541, 563]},
   {'marker': {'color': 'rgb(0.48035490533681463, 0.5966618063362817, 0.9584952314019878)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 6a',
    'type': 'scatter3d',
    'x': [817,
     818,
     819,
     842,
     843,
     843,
     844,
     845,
     847,
     850,
     864,
     868,
     869,
     871,
     874,
     876,
     880,
     884,
     884,
     887,
     889,
     891,
     892,
     895,
     901,
     903,
     906,
     906,
     908,
     913,
     916,
     920,
     936],
    'y': [155,
     157,
     173,
     167,
     161,
     193,
     181,
     240,
     160,
     202,
     165,
     257,
     202,
     209,
     235,
     172,
     175,
     224,
     228,
     210,
     179,
     231,
     224,
     199,
     259,
     219,
     197,
     241,
     243,
     285,
     238,
     208,
     251],
    'z': [695,
     693,
     652,
     696,
     755,
     637,
     657,
     623,
     721,
     670,
     728,
     633,
     703,
     641,
     626,
     768,
     757,
     689,
     677,
     700,
     752,
     641,
     648,
     693,
     651,
     732,
     768,
     641,
     683,
     654,
     673,
     748,
     685]},
   {'marker': {'color': 'rgb(0.4920206248971503, 0.593983077600245, 0.9584814397951954)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Peripeduncular nucleus',
    'type': 'scatter3d',
    'x': [815],
    'y': [442],
    'z': [831]},
   {'marker': {'color': 'rgb(0.5033163333101127, 0.5912964532636898, 0.9584676870938827)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Ectorhinal area/Layer 6b',
    'type': 'scatter3d',
    'x': [969],
    'y': [427],
    'z': [711]},
   {'marker': {'color': 'rgb(0.5142751626958, 0.5886005205999557, 0.9584539667031112)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anteromedial visual area, layer 6a',
    'type': 'scatter3d',
    'x': [699, 703, 715, 723],
    'y': [109, 112, 103, 101],
    'z': [765, 783, 736, 776]},
   {'marker': {'color': 'rgb(0.5249263360456967, 0.5858938458283557, 0.9584402720891737)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 4',
    'type': 'scatter3d',
    'x': [862,
     865,
     878,
     883,
     888,
     894,
     906,
     911,
     915,
     919,
     922,
     925,
     943,
     948,
     950,
     956,
     967,
     977],
    'y': [151,
     117,
     128,
     159,
     148,
     164,
     179,
     181,
     179,
     193,
     197,
     164,
     165,
     213,
     222,
     230,
     222,
     223],
    'z': [629,
     741,
     746,
     634,
     678,
     643,
     647,
     643,
     666,
     616,
     633,
     715,
     782,
     656,
     612,
     645,
     624,
     660]},
   {'marker': {'color': 'rgb(0.5352958007387411, 0.5831749708213888, 0.9584265967670577)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Pedunculopontine nucleus',
    'type': 'scatter3d',
    'x': [654, 666, 668, 678, 681, 686, 690, 692, 702, 704, 705],
    'y': [470, 441, 430, 457, 463, 460, 460, 439, 461, 456, 436],
    'z': [932, 949, 957, 947, 945, 937, 926, 948, 949, 937, 968]},
   {'marker': {'color': 'rgb(0.5454067371604294, 0.5804424096863985, 0.9584129342881061)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Infralimbic area, layer 6a',
    'type': 'scatter3d',
    'x': [491, 499, 503, 625, 631, 631, 633, 633, 638, 643, 644, 664],
    'y': [323, 298, 410, 345, 315, 355, 323, 363, 290, 355, 402, 335],
    'z': [344, 419, 342, 407, 393, 338, 391, 351, 423, 338, 345, 317]},
   {'marker': {'color': 'rgb(0.5552799713302535, 0.5776946452029453, 0.9583992782278213)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Visceral area, layer 5',
    'type': 'scatter3d',
    'x': [925, 938, 951, 952, 957, 959, 960, 964, 976, 989, 994, 995],
    'y': [428, 444, 432, 464, 455, 449, 484, 429, 434, 459, 444, 460],
    'z': [466, 471, 504, 524, 519, 485, 517, 502, 543, 633, 604, 596]},
   {'marker': {'color': 'rgb(0.5649343128627197, 0.5749301250957927, 0.9583856221737673)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'doral tegmental decussation',
    'type': 'scatter3d',
    'x': [561, 566],
    'y': [438, 452],
    'z': [897, 887]},
   {'marker': {'color': 'rgb(0.5743868342116409, 0.572147258121796, 0.95837195971352)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Posterior pretectal nucleus',
    'type': 'scatter3d',
    'x': [637, 649],
    'y': [274, 310],
    'z': [791, 789]},
   {'marker': {'color': 'rgb(0.5836531032770109, 0.569344409947157, 0.9583582844226165)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 6b',
    'type': 'scatter3d',
    'x': [821, 844, 849, 880],
    'y': [203, 221, 192, 263],
    'z': [660, 655, 705, 645]},
   {'marker': {'color': 'rgb(0.5927473786282756, 0.5665198987893927, 0.9583445898524584)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, barrel field, layer 5',
    'type': 'scatter3d',
    'x': [828,
     836,
     848,
     848,
     849,
     850,
     850,
     852,
     857,
     860,
     863,
     868,
     878,
     878,
     879,
     881,
     883,
     888,
     890,
     894,
     898,
     898,
     900,
     901,
     903,
     904,
     904,
     910,
     911,
     913,
     916,
     921,
     925,
     927,
     928,
     931,
     932,
     932,
     933,
     941,
     941,
     942,
     942,
     943,
     943,
     944,
     946,
     947,
     951],
    'y': [125,
     152,
     133,
     156,
     137,
     136,
     165,
     143,
     188,
     131,
     147,
     181,
     181,
     195,
     153,
     190,
     172,
     215,
     166,
     201,
     193,
     233,
     152,
     179,
     150,
     169,
     198,
     210,
     211,
     187,
     176,
     190,
     180,
     243,
     193,
     227,
     167,
     233,
     192,
     222,
     236,
     228,
     241,
     191,
     221,
     265,
     227,
     269,
     213],
    'z': [669,
     670,
     722,
     698,
     660,
     735,
     677,
     659,
     616,
     709,
     730,
     662,
     609,
     606,
     699,
     665,
     698,
     609,
     736,
     657,
     657,
     623,
     746,
     725,
     751,
     756,
     617,
     656,
     660,
     732,
     786,
     738,
     777,
     638,
     753,
     645,
     787,
     638,
     729,
     668,
     642,
     674,
     658,
     724,
     633,
     655,
     676,
     639,
     698]},
   {'marker': {'color': 'rgb(0.6016827745087844, 0.5636719907959601, 0.9583308695181164)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterolateral visual area, layer 1',
    'type': 'scatter3d',
    'x': [945, 977],
    'y': [126, 149],
    'z': [846, 805]},
   {'marker': {'color': 'rgb(0.6104714012234063, 0.560798895128712, 0.9583171168859898)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Perireunensis nucleus',
    'type': 'scatter3d',
    'x': [606],
    'y': [527],
    'z': [658]},
   {'marker': {'color': 'rgb(0.6191244853295222, 0.5578987587202104, 0.958303325361271)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Infralimbic area, layer 6b',
    'type': 'scatter3d',
    'x': [497, 529, 662],
    'y': [333, 352, 324],
    'z': [397, 403, 337]},
   {'marker': {'color': 'rgb(0.6276524731489057, 0.5549696606643135, 0.9582894882751612)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Secondary motor area, layer 6b',
    'type': 'scatter3d',
    'x': [651, 669, 669, 673, 697],
    'y': [191, 253, 258, 244, 279],
    'z': [551, 433, 431, 434, 395]},
   {'marker': {'color': 'rgb(0.6360651204220383, 0.5520096061993315, 0.9582755988717874)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Supplemental somatosensory area, layer 5',
    'type': 'scatter3d',
    'x': [929,
     954,
     956,
     961,
     961,
     961,
     962,
     962,
     962,
     965,
     965,
     966,
     967,
     968,
     971,
     972,
     972,
     973,
     974,
     975,
     976,
     978,
     979,
     981,
     983,
     983,
     984,
     984,
     984,
     985,
     985,
     989,
     992],
    'y': [370,
     270,
     378,
     290,
     309,
     390,
     254,
     301,
     359,
     274,
     379,
     370,
     242,
     426,
     359,
     305,
     319,
     399,
     398,
     372,
     313,
     374,
     310,
     366,
     392,
     424,
     380,
     384,
     394,
     356,
     402,
     292,
     388],
    'z': [486,
     667,
     512,
     626,
     599,
     519,
     662,
     656,
     507,
     664,
     578,
     564,
     693,
     539,
     548,
     668,
     670,
     541,
     534,
     578,
     665,
     570,
     668,
     598,
     594,
     545,
     606,
     580,
     572,
     618,
     611,
     637,
     558]},
   {'marker': {'color': 'rgb(0.644371570385208, 0.5490165202373178, 0.9582616502947602)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'external medullary lamina of the thalamus',
    'type': 'scatter3d',
    'x': [705, 814, 818],
    'y': [463, 415, 401],
    'z': [615, 687, 731]},
   {'marker': {'color': 'rgb(0.6525804221263737, 0.5459882403876627, 0.9582476355733222)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, lower limb, layer 4',
    'type': 'scatter3d',
    'x': [739, 744, 753, 766, 774, 783],
    'y': [116, 109, 100, 98, 127, 115],
    'z': [593, 575, 618, 616, 590, 599]},
   {'marker': {'color': 'rgb(0.6606997907406775, 0.5429225094169295, 0.9582335476080183)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Agranular insular area, dorsal part, layer 5',
    'type': 'scatter3d',
    'x': [730,
     766,
     782,
     784,
     786,
     790,
     798,
     811,
     844,
     847,
     849,
     851,
     853,
     861,
     873],
    'y': [362,
     381,
     397,
     467,
     396,
     404,
     425,
     402,
     437,
     451,
     469,
     472,
     475,
     462,
     466],
    'z': [283,
     295,
     319,
     392,
     293,
     345,
     367,
     331,
     388,
     391,
     405,
     397,
     406,
     390,
     406]},
   {'marker': {'color': 'rgb(0.6687373605398448, 0.5398169670797449, 0.9582193791558281)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, mouth, layer 6a',
    'type': 'scatter3d',
    'x': [845,
     850,
     851,
     852,
     854,
     866,
     868,
     868,
     873,
     874,
     883,
     885,
     886,
     888,
     892,
     894,
     895,
     895,
     895,
     899,
     901,
     902,
     904,
     909,
     916,
     922],
    'y': [266,
     314,
     337,
     338,
     249,
     310,
     300,
     312,
     345,
     300,
     303,
     318,
     318,
     377,
     393,
     323,
     355,
     360,
     393,
     393,
     387,
     398,
     408,
     356,
     416,
     339],
    'z': [485,
     437,
     446,
     456,
     521,
     492,
     478,
     462,
     437,
     484,
     487,
     511,
     530,
     442,
     478,
     511,
     464,
     468,
     477,
     487,
     496,
     466,
     462,
     525,
     464,
     534]},
   {'marker': {'color': 'rgb(0.6767004323562862, 0.5366691412473211, 0.9582051228146932)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Intercalated amygdalar nucleus',
    'type': 'scatter3d',
    'x': [825, 837, 841, 845, 845, 848, 864],
    'y': [639, 602, 620, 621, 644, 618, 639],
    'z': [654, 559, 658, 593, 648, 600, 644]},
   {'marker': {'color': 'rgb(0.6845959658107865, 0.5334764382506912, 0.9581907710073613)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Visceral area, layer 2/3',
    'type': 'scatter3d',
    'x': [982, 985, 986],
    'y': [432, 448, 501],
    'z': [478, 474, 522]},
   {'marker': {'color': 'rgb(0.6924306172734048, 0.5302361323447521, 0.958176315964477)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Parastrial nucleus',
    'type': 'scatter3d',
    'x': [632],
    'y': [567],
    'z': [507]},
   {'marker': {'color': 'rgb(0.700210774133836, 0.5269453541864515, 0.958161749706829)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, trunk, layer 5',
    'type': 'scatter3d',
    'x': [756, 779, 782],
    'y': [118, 106, 107],
    'z': [702, 724, 716]},
   {'marker': {'color': 'rgb(0.7079425859047513, 0.5236010782056435, 0.9581470640266693)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Interanterodorsal nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [611, 622],
    'y': [434, 410],
    'z': [632, 602]},
   {'marker': {'color': 'rgb(0.7156319926054753, 0.5202001087298203, 0.9581322504680024)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterolateral visual area, layer 4',
    'type': 'scatter3d',
    'x': [938, 952, 953, 956, 965],
    'y': [165, 158, 168, 177, 168],
    'z': [841, 826, 843, 832, 822]},
   {'marker': {'color': 'rgb(0.7232847508105946, 0.5167390647037075, 0.9581173003057449)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Interanteromedial nucleus of the thalamus',
    'type': 'scatter3d',
    'x': [568, 570],
    'y': [456, 453],
    'z': [636, 611]},
   {'marker': {'color': 'rgb(0.7309064576961907, 0.5132143628209526, 0.9581022045236319)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Orbital area, ventrolateral part, layer 5',
    'type': 'scatter3d',
    'x': [650, 693],
    'y': [326, 418],
    'z': [253, 343]},
   {'marker': {'color': 'rgb(0.7385025733734255, 0.5096221988571631, 0.9580869537907611)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, lower limb, layer 5',
    'type': 'scatter3d',
    'x': [700, 706, 725, 734, 738, 741, 745, 761, 761, 762, 768, 773],
    'y': [102, 104, 114, 118, 107, 104, 118, 156, 160, 103, 157, 143],
    'z': [635, 636, 668, 598, 629, 678, 638, 585, 585, 646, 596, 598]},
   {'marker': {'color': 'rgb(0.7460784417635605, 0.505958526960497, 0.9580715384366195)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Nucleus of the lateral olfactory tract, layer 3',
    'type': 'scatter3d',
    'x': [770, 778, 779, 803],
    'y': [674, 685, 674, 661],
    'z': [607, 582, 609, 603]},
   {'marker': {'color': 'rgb(0.7536393102389208, 0.5022190366167917, 0.9580559484244583)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dentate gyrus, molecular layer',
    'type': 'scatter3d',
    'x': [537,
     560,
     591,
     593,
     609,
     610,
     616,
     621,
     643,
     648,
     649,
     654,
     654,
     655,
     656,
     662,
     663,
     664,
     665,
     666,
     667,
     668,
     670,
     677,
     682,
     683,
     683,
     684,
     687,
     689,
     690,
     700,
     701,
     701,
     706,
     707,
     707,
     707,
     715,
     718,
     723,
     728,
     735,
     742,
     743,
     747,
     749,
     754,
     760,
     770,
     773,
     779,
     780,
     781,
     789,
     790,
     792,
     793,
     794,
     795,
     799,
     799,
     800,
     801,
     807,
     813,
     814,
     816,
     818,
     820,
     821,
     821,
     824,
     824,
     826,
     829,
     831,
     832,
     832,
     833,
     833,
     834,
     835,
     839,
     839,
     841,
     843,
     843,
     845,
     848,
     854,
     856,
     862,
     865,
     867,
     874,
     874,
     879,
     879,
     887,
     888,
     893,
     893,
     896,
     901,
     904,
     908,
     910,
     911,
     911,
     915,
     918],
    'y': [293,
     252,
     266,
     254,
     277,
     289,
     242,
     277,
     298,
     235,
     300,
     231,
     276,
     244,
     252,
     222,
     298,
     271,
     270,
     236,
     225,
     267,
     238,
     218,
     256,
     269,
     284,
     226,
     224,
     255,
     268,
     218,
     221,
     248,
     203,
     227,
     239,
     255,
     234,
     237,
     206,
     220,
     265,
     217,
     244,
     223,
     253,
     263,
     230,
     220,
     217,
     226,
     282,
     234,
     232,
     301,
     224,
     288,
     246,
     237,
     266,
     517,
     301,
     222,
     230,
     233,
     261,
     251,
     270,
     241,
     324,
     324,
     281,
     312,
     248,
     255,
     280,
     247,
     417,
     282,
     336,
     499,
     252,
     270,
     500,
     524,
     379,
     518,
     345,
     395,
     262,
     269,
     308,
     482,
     295,
     449,
     501,
     306,
     365,
     453,
     336,
     323,
     352,
     461,
     390,
     428,
     416,
     404,
     380,
     443,
     437,
     422],
    'z': [626,
     654,
     670,
     659,
     627,
     637,
     675,
     719,
     657,
     714,
     682,
     666,
     718,
     712,
     658,
     704,
     663,
     734,
     735,
     707,
     741,
     729,
     772,
     695,
     755,
     746,
     664,
     756,
     713,
     755,
     730,
     741,
     709,
     785,
     711,
     803,
     683,
     743,
     699,
     805,
     720,
     808,
     739,
     818,
     803,
     832,
     792,
     853,
     830,
     768,
     748,
     821,
     872,
     758,
     823,
     826,
     765,
     796,
     825,
     815,
     874,
     897,
     831,
     770,
     754,
     753,
     856,
     782,
     862,
     813,
     826,
     867,
     889,
     873,
     820,
     804,
     868,
     826,
     881,
     866,
     853,
     912,
     831,
     806,
     919,
     848,
     868,
     865,
     888,
     907,
     827,
     815,
     874,
     898,
     839,
     909,
     869,
     878,
     910,
     902,
     863,
     870,
     899,
     894,
     889,
     902,
     881,
     845,
     880,
     872,
     853,
     860]},
   {'marker': {'color': 'rgb(0.7611903482298334, 0.49839912695951966, 0.9580401733228462)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Dentate gyrus, polymorph layer',
    'type': 'scatter3d',
    'x': [630,
     692,
     713,
     714,
     729,
     739,
     765,
     771,
     791,
     794,
     804,
     813,
     828,
     833,
     851,
     853,
     853,
     856,
     861,
     868,
     873,
     876,
     880,
     880,
     887,
     888],
    'y': [266,
     244,
     233,
     235,
     231,
     238,
     252,
     240,
     258,
     557,
     516,
     513,
     293,
     487,
     424,
     340,
     345,
     396,
     314,
     444,
     377,
     423,
     344,
     357,
     425,
     409],
    'z': [658,
     697,
     760,
     743,
     778,
     733,
     759,
     795,
     780,
     866,
     883,
     878,
     849,
     882,
     876,
     876,
     862,
     885,
     857,
     891,
     879,
     887,
     856,
     862,
     889,
     883]},
   {'marker': {'color': 'rgb(0.7687366649773751, 0.4944938780390104, 0.9580242022752233)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 1',
    'type': 'scatter3d',
    'x': [862],
    'y': [123],
    'z': [554]},
   {'marker': {'color': 'rgb(0.7762833265951797, 0.49049801859829895, 0.9580080239672558)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 2/3',
    'type': 'scatter3d',
    'x': [829, 833, 839, 844, 859, 862, 869, 872, 876, 879, 890],
    'y': [117, 106, 108, 121, 119, 140, 154, 155, 173, 175, 161],
    'z': [613, 633, 592, 595, 602, 567, 531, 586, 540, 541, 518]},
   {'marker': {'color': 'rgb(0.7838353725901145, 0.4864058898220303, 0.9579916265917748)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 4',
    'type': 'scatter3d',
    'x': [832, 839, 847, 868],
    'y': [118, 169, 172, 194],
    'z': [642, 562, 561, 544]},
   {'marker': {'color': 'rgb(0.7913978319808838, 0.4822114044267198, 0.9579749978110582)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 5',
    'type': 'scatter3d',
    'x': [806, 812, 817, 831, 835, 837, 838, 858, 866],
    'y': [109, 167, 138, 180, 199, 161, 163, 203, 201],
    'z': [676, 611, 646, 590, 592, 621, 607, 585, 567]},
   {'marker': {'color': 'rgb(0.7989757391452601, 0.4779080003410752, 0.9579581247161885)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 6a',
    'type': 'scatter3d',
    'x': [802, 805, 809, 809, 811, 820, 822, 823, 832, 834, 843, 847, 853],
    'y': [165, 180, 168, 189, 174, 201, 197, 230, 201, 207, 237, 220, 235],
    'z': [662, 618, 656, 621, 648, 610, 623, 570, 608, 594, 548, 580, 544]},
   {'marker': {'color': 'rgb(0.806574149520405, 0.47348858807856303, 0.9579409937831859)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Primary somatosensory area, unassigned, layer 6b',
    'type': 'scatter3d',
    'x': [790, 819, 835],
    'y': [174, 230, 243],
    'z': [656, 611, 604]},
   {'marker': {'color': 'rgb(0.8141981552764402, 0.46894549072383, 0.9579235908255946)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior area, layer 5',
    'type': 'scatter3d',
    'x': [728, 822],
    'y': [100, 127],
    'z': [735, 743]},
   {'marker': {'color': 'rgb(0.8218529010809275, 0.4642703752307142, 0.9579059009431498)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Anterior area, layer 6a',
    'type': 'scatter3d',
    'x': [771, 785],
    'y': [123, 111],
    'z': [754, 762]},
   {'marker': {'color': 'rgb(0.8295436000710741, 0.459454173450248, 0.9578879084661159)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Laterointermediate area, layer 2/3',
    'type': 'scatter3d',
    'x': [965, 970, 977],
    'y': [189, 204, 198],
    'z': [881, 944, 880]},
   {'marker': {'color': 'rgb(0.8372755501513259, 0.4544869909560824, 0.9578695968948453)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Laterointermediate area, layer 4',
    'type': 'scatter3d',
    'x': [970],
    'y': [233],
    'z': [923]},
   {'marker': {'color': 'rgb(0.8450541507364279, 0.44935800129061104, 0.9578509488340391)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Laterointermediate area, layer 5',
    'type': 'scatter3d',
    'x': [928, 954, 960],
    'y': [239, 204, 196],
    'z': [937, 866, 877]},
   {'marker': {'color': 'rgb(0.8528849200641176, 0.4440553226885958, 0.957831945921139)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Laterointermediate area, layer 6a',
    'type': 'scatter3d',
    'x': [921, 928, 936, 940, 943],
    'y': [240, 243, 208, 246, 252],
    'z': [907, 936, 852, 910, 899]},
   {'marker': {'color': 'rgb(0.860773513207365, 0.4385658736065686, 0.9578125687482079)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 1',
    'type': 'scatter3d',
    'x': [909, 919, 937],
    'y': [98, 103, 113],
    'z': [810, 827, 795]},
   {'marker': {'color': 'rgb(0.8687257409236423, 0.4328752024410001, 0.9577927967765739)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 2/3',
    'type': 'scatter3d',
    'x': [902, 911, 912, 920],
    'y': [98, 121, 105, 124],
    'z': [812, 791, 816, 783]},
   {'marker': {'color': 'rgb(0.8767475894881515, 0.4269672855799059, 0.9577726082434171)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 4',
    'type': 'scatter3d',
    'x': [914],
    'y': [126],
    'z': [823]},
   {'marker': {'color': 'rgb(0.8848452416694842, 0.4208242862936071, 0.9577519800593836)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 5',
    'type': 'scatter3d',
    'x': [831,
     836,
     854,
     860,
     865,
     867,
     877,
     884,
     884,
     892,
     894,
     895,
     902,
     917],
    'y': [129,
     118,
     143,
     113,
     113,
     135,
     147,
     118,
     148,
     144,
     159,
     153,
     158,
     137],
    'z': [739,
     754,
     756,
     761,
     776,
     792,
     795,
     814,
     783,
     773,
     826,
     792,
     811,
     820]},
   {'marker': {'color': 'rgb(0.8930250990200497, 0.41442626477691846, 0.9577308876961727)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 6a',
    'type': 'scatter3d',
    'x': [862, 888, 893],
    'y': [167, 173, 169],
    'z': [774, 803, 809]},
   {'marker': {'color': 'rgb(0.9012938056700333, 0.40775082668402823, 0.9577093050629227)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Rostrolateral area, layer 6b',
    'type': 'scatter3d',
    'x': [884],
    'y': [182],
    'z': [789]},
   {'marker': {'color': 'rgb(0.9096582738329805, 0.40077269342022254, 0.9576872043700456)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Postrhinal area, layer 5',
    'type': 'scatter3d',
    'x': [945, 955, 969, 974],
    'y': [265, 272, 257, 258],
    'z': [972, 942, 968, 914]},
   {'marker': {'color': 'rgb(0.9181257112537815, 0.3934631717793232, 0.9576645559789722)',
     'colorscale': 'Viridis',
     'opacity': 0.5,
     'size': 3},
    'mode': 'markers',
    'name': 'Postrhinal area, layer 6a',
    'type': 'scatter3d',
    'x': [923, 941, 942, 953, 968],
    'y': [246, 274, 278, 302, 299],
    'z': [943, 959, 957, 944, 928]}],
  'layout': {'margin': {'b': 0, 'l': 0, 'r': 0, 't': 0},
   'paper_bgcolor': 'rgb(0,0,0)',
   'plot_bgcolor': 'rgb(0,0,0)'}},
 {2: 1,
  6: 62,
  9: 3,
  15: 10,
  17: 62,
  19: 1,
  23: 19,
  26: 38,
  27: 1,
  33: 40,
  35: 2,
  36: 10,
  42: 10,
  50: 6,
  56: 113,
  59: 7,
  62: 13,
  64: 6,
  67: 3,
  68: 6,
  72: 3,
  74: 6,
  84: 12,
  100: 27,
  113: 1,
  117: 4,
  118: 6,
  120: 7,
  122: 4,
  125: 21,
  126: 5,
  129: 58,
  131: 18,
  132: 1,
  133: 3,
  140: 1,
  146: 52,
  148: 3,
  149: 27,
  155: 21,
  156: 30,
  158: 2,
  163: 9,
  171: 21,
  173: 4,
  180: 18,
  181: 19,
  186: 13,
  187: 26,
  188: 5,
  189: 5,
  190: 1,
  194: 111,
  196: 1,
  197: 2,
  201: 45,
  204: 6,
  210: 1,
  211: 42,
  214: 18,
  215: 39,
  218: 27,
  223: 1,
  226: 36,
  233: 7,
  243: 4,
  246: 15,
  250: 22,
  252: 23,
  255: 7,
  257: 5,
  258: 79,
  260: 4,
  262: 46,
  263: 1,
  266: 5,
  271: 2,
  272: 3,
  274: 13,
  286: 4,
  287: 1,
  288: 14,
  289: 2,
  296: 44,
  298: 9,
  303: 27,
  304: 16,
  305: 1,
  310: 11,
  311: 14,
  314: 3,
  320: 54,
  321: 1,
  328: 44,
  333: 2,
  335: 9,
  338: 1,
  342: 70,
  344: 15,
  347: 9,
  363: 16,
  364: 5,
  366: 5,
  368: 1,
  374: 5,
  377: 3,
  381: 45,
  397: 5,
  412: 32,
  414: 1,
  421: 2,
  422: 8,
  430: 26,
  434: 1,
  436: 6,
  440: 5,
  442: 2,
  443: 26,
  448: 6,
  449: 6,
  450: 7,
  451: 6,
  452: 12,
  466: 10,
  469: 2,
  470: 4,
  478: 14,
  482: 8,
  483: 9,
  484: 18,
  494: 3,
  503: 8,
  510: 4,
  511: 4,
  520: 12,
  523: 29,
  530: 2,
  531: 10,
  542: 9,
  556: 23,
  558: 6,
  564: 31,
  565: 6,
  573: 2,
  574: 15,
  575: 8,
  577: 10,
  580: 3,
  581: 9,
  582: 13,
  583: 19,
  587: 2,
  588: 35,
  590: 19,
  591: 2,
  593: 3,
  595: 6,
  596: 48,
  598: 3,
  599: 12,
  600: 4,
  601: 3,
  603: 43,
  608: 6,
  609: 6,
  610: 1,
  611: 1,
  613: 12,
  614: 8,
  616: 2,
  620: 7,
  621: 2,
  622: 3,
  625: 32,
  628: 2,
  629: 23,
  630: 9,
  632: 42,
  634: 9,
  638: 19,
  642: 1,
  648: 141,
  654: 12,
  656: 28,
  657: 67,
  658: 20,
  665: 14,
  667: 7,
  670: 1,
  672: 700,
  673: 1,
  675: 1,
  678: 3,
  681: 4,
  685: 25,
  687: 40,
  689: 2,
  690: 3,
  692: 7,
  694: 24,
  697: 18,
  702: 24,
  704: 17,
  706: 3,
  707: 17,
  718: 18,
  721: 18,
  725: 2,
  729: 7,
  733: 47,
  741: 6,
  749: 26,
  767: 96,
  772: 21,
  778: 44,
  780: 9,
  783: 9,
  786: 4,
  800: 8,
  802: 6,
  804: 2,
  806: 11,
  810: 17,
  819: 3,
  821: 23,
  827: 15,
  838: 22,
  842: 28,
  844: 94,
  847: 1,
  851: 23,
  854: 25,
  857: 10,
  862: 25,
  872: 8,
  874: 3,
  878: 19,
  882: 28,
  884: 1,
  888: 1,
  889: 16,
  893: 3,
  897: 1,
  900: 22,
  902: 4,
  905: 6,
  906: 5,
  907: 8,
  908: 4,
  910: 3,
  914: 1,
  919: 17,
  924: 15,
  927: 1,
  929: 2,
  930: 11,
  931: 29,
  935: 19,
  940: 28,
  943: 125,
  945: 19,
  946: 35,
  950: 18,
  952: 48,
  954: 3,
  962: 90,
  966: 14,
  969: 24,
  973: 11,
  974: 49,
  975: 2,
  977: 3,
  980: 2,
  981: 7,
  982: 1,
  988: 1,
  996: 19,
  998: 5,
  1004: 2,
  1005: 4,
  1010: 3,
  1015: 27,
  1016: 3,
  1020: 32,
  1021: 38,
  1022: 50,
  1026: 7,
  1029: 3,
  1031: 8,
  1035: 7,
  1038: 33,
  1044: 1,
  1045: 1,
  1046: 4,
  1047: 18,
  1052: 11,
  1054: 12,
  1058: 12,
  1060: 2,
  1061: 2,
  1062: 4,
  1070: 49,
  1074: 2,
  1077: 1,
  1081: 3,
  1085: 5,
  1090: 33,
  1092: 3,
  1094: 6,
  1101: 15,
  1102: 26,
  1105: 7,
  1106: 3,
  1109: 1,
  1111: 3,
  1113: 2,
  1114: 5,
  1120: 2,
  1125: 2,
  1128: 12,
  1139: 4,
  10703: 112,
  10704: 26,
  182305693: 1,
  182305697: 11,
  182305701: 4,
  182305705: 9,
  182305709: 13,
  182305713: 3,
  312782562: 2,
  312782566: 2,
  312782582: 3,
  312782586: 1,
  312782590: 3,
  312782594: 5,
  312782604: 3,
  312782608: 4,
  312782612: 1,
  312782616: 14,
  312782620: 3,
  312782624: 1,
  312782644: 4,
  312782648: 5})

In [ ]: