diff --git a/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_LOAD_DATA-checkpoint.py b/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_LOAD_DATA-checkpoint.py index 3552c0964d358d7acf0f94b7f024ebdea971419f..cdd991029ac3fe855b39519d996ae78b3f1d71c4 100644 --- a/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_LOAD_DATA-checkpoint.py +++ b/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_LOAD_DATA-checkpoint.py @@ -97,14 +97,14 @@ def load_and_create_data(M, A, raster_areas): print("Computing rate time series done") - # Compute time series of firing rates convolved with a kernel - # data_path = sys.argv[1] - print(data_path) - label = M.simulation.label - method = 'auto_kernel' - for area in raster_areas: - subprocess.run(['python3', './figures/Schmidt2018_dyn/compute_rate_time_series.py', data_path, label, area, method]) - print("Computing rate time series auto kernel done") + # # Compute time series of firing rates convolved with a kernel + # # data_path = sys.argv[1] + # print(data_path) + # label = M.simulation.label + # method = 'auto_kernel' + # for area in raster_areas: + # subprocess.run(['python3', './figures/Schmidt2018_dyn/compute_rate_time_series.py', data_path, label, area, method]) + # print("Computing rate time series auto kernel done") """ diff --git a/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_visualize_resting_state-checkpoint.py b/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_visualize_resting_state-checkpoint.py index 450adaa03481114a495dcd12d8f07efaa8b1f7d7..b19ae9c826974b05369fa769eb9598d24b3dcd86 100644 --- a/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_visualize_resting_state-checkpoint.py +++ b/figures/MAM2EBRAINS/.ipynb_checkpoints/M2E_visualize_resting_state-checkpoint.py @@ -64,7 +64,7 @@ def plot_resting_state(M, data_path, raster_areas=['V1', 'V2', 'FEF']): load_areas=None) # load data - load_and_create_data(M, A) + load_and_create_data(M, A, raster_areas) t_sim = M.simulation.params["t_sim"] @@ -220,7 +220,7 @@ def plot_resting_state(M, data_path, raster_areas=['V1', 'V2', 'FEF']): 'rate_time_series-{}.npy'.format(area)) rate_time_series[area] = np.load(fn) - # time series of firing rates convolved with a kernel + # # time series of firing rates convolved with a kernel # rate_time_series_auto_kernel = {} # for area in areas: # fn = os.path.join(data_path, label, @@ -444,9 +444,8 @@ def plot_resting_state(M, data_path, raster_areas=['V1', 'V2', 'FEF']): binned_spikes = rate_time_series[area][np.where( np.logical_and(time >= t_min, time < t_max))] ax[i].plot(time, binned_spikes, color=colors[0], label=area) - rate = rate_time_series_auto_kernel[area] - # rate = rate_time_series[area] - ax[i].plot(time, rate, color=colors[2], label=area) + # rate = rate_time_series_auto_kernel[area] + # ax[i].plot(time, rate, color=colors[2], label=area) ax[i].set_xlim((t_min, t_max)) ax[i].text(0.8, 0.7, area, transform=ax[i].transAxes) diff --git a/figures/MAM2EBRAINS/M2E_LOAD_DATA.py b/figures/MAM2EBRAINS/M2E_LOAD_DATA.py index 3552c0964d358d7acf0f94b7f024ebdea971419f..cdd991029ac3fe855b39519d996ae78b3f1d71c4 100644 --- a/figures/MAM2EBRAINS/M2E_LOAD_DATA.py +++ b/figures/MAM2EBRAINS/M2E_LOAD_DATA.py @@ -97,14 +97,14 @@ def load_and_create_data(M, A, raster_areas): print("Computing rate time series done") - # Compute time series of firing rates convolved with a kernel - # data_path = sys.argv[1] - print(data_path) - label = M.simulation.label - method = 'auto_kernel' - for area in raster_areas: - subprocess.run(['python3', './figures/Schmidt2018_dyn/compute_rate_time_series.py', data_path, label, area, method]) - print("Computing rate time series auto kernel done") + # # Compute time series of firing rates convolved with a kernel + # # data_path = sys.argv[1] + # print(data_path) + # label = M.simulation.label + # method = 'auto_kernel' + # for area in raster_areas: + # subprocess.run(['python3', './figures/Schmidt2018_dyn/compute_rate_time_series.py', data_path, label, area, method]) + # print("Computing rate time series auto kernel done") """ diff --git a/figures/MAM2EBRAINS/M2E_visualize_resting_state.py b/figures/MAM2EBRAINS/M2E_visualize_resting_state.py index 9dda1f86a0365051c1130d3610a4e25c49b570a8..b19ae9c826974b05369fa769eb9598d24b3dcd86 100644 --- a/figures/MAM2EBRAINS/M2E_visualize_resting_state.py +++ b/figures/MAM2EBRAINS/M2E_visualize_resting_state.py @@ -220,14 +220,14 @@ def plot_resting_state(M, data_path, raster_areas=['V1', 'V2', 'FEF']): 'rate_time_series-{}.npy'.format(area)) rate_time_series[area] = np.load(fn) - # time series of firing rates convolved with a kernel - rate_time_series_auto_kernel = {} - for area in areas: - fn = os.path.join(data_path, label, - 'Analysis', - 'rate_time_series_auto_kernel', - 'rate_time_series_auto_kernel_{}.npy'.format(area)) - rate_time_series_auto_kernel[area] = np.load(fn) + # # time series of firing rates convolved with a kernel + # rate_time_series_auto_kernel = {} + # for area in areas: + # fn = os.path.join(data_path, label, + # 'Analysis', + # 'rate_time_series_auto_kernel', + # 'rate_time_series_auto_kernel_{}.npy'.format(area)) + # rate_time_series_auto_kernel[area] = np.load(fn) # local variance revised (LvR) fn = os.path.join(data_path, label, 'Analysis', 'pop_LvR.json') @@ -444,9 +444,8 @@ def plot_resting_state(M, data_path, raster_areas=['V1', 'V2', 'FEF']): binned_spikes = rate_time_series[area][np.where( np.logical_and(time >= t_min, time < t_max))] ax[i].plot(time, binned_spikes, color=colors[0], label=area) - rate = rate_time_series_auto_kernel[area] - # rate = rate_time_series[area] - ax[i].plot(time, rate, color=colors[2], label=area) + # rate = rate_time_series_auto_kernel[area] + # ax[i].plot(time, rate, color=colors[2], label=area) ax[i].set_xlim((t_min, t_max)) ax[i].text(0.8, 0.7, area, transform=ax[i].transAxes) diff --git a/figures/Schmidt2018_dyn/compute_rate_time_series.py b/figures/Schmidt2018_dyn/compute_rate_time_series.py index 2ec875575bd8c3fdf4ff7d54761a8045889d182e..77bc6d9cd78a9c23f34a83d9f5fb4b9973cb9978 100644 --- a/figures/Schmidt2018_dyn/compute_rate_time_series.py +++ b/figures/Schmidt2018_dyn/compute_rate_time_series.py @@ -51,8 +51,7 @@ except FileExistsError: with open(os.path.join(data_path, label, 'custom_params_{}'.format(label)), 'r') as f: sim_params = json.load(f) -# T = sim_params['T'] -T = sim_params['t_sim'] +T = sim_params['T'] """ Create MultiAreaModel instance to have access to data structures diff --git a/multi-area-model.ipynb b/multi-area-model.ipynb index a7d072190e81bdd9ec9fa7451ce4e89000f82e7b..24601edefb0eba5aa5907e1781442b1ba84a6121 100644 --- a/multi-area-model.ipynb +++ b/multi-area-model.ipynb @@ -378,7 +378,7 @@ "output_type": "stream", "text": [ "Initializing network from dictionary.\n", - "RAND_DATA_LABEL 7821\n" + "RAND_DATA_LABEL 7495\n" ] }, { @@ -533,7 +533,7 @@ "output_type": "stream", "text": [ "Initializing network from dictionary.\n", - "RAND_DATA_LABEL 4983\n" + "RAND_DATA_LABEL 1869\n" ] }, { @@ -615,72 +615,72 @@ "text": [ "Prepared simulation in 0.00 seconds.\n", "Rank 0: created area V1 with 0 local nodes\n", - "Memory after V1 : 1515.90 MB\n", + "Memory after V1 : 1515.14 MB\n", "Rank 0: created area V2 with 0 local nodes\n", - "Memory after V2 : 1542.60 MB\n", + "Memory after V2 : 1541.84 MB\n", "Rank 0: created area VP with 0 local nodes\n", - "Memory after VP : 1571.73 MB\n", + "Memory after VP : 1571.05 MB\n", "Rank 0: created area V3 with 0 local nodes\n", - "Memory after V3 : 1600.13 MB\n", + "Memory after V3 : 1599.30 MB\n", "Rank 0: created area V3A with 0 local nodes\n", - "Memory after V3A : 1620.03 MB\n", + "Memory after V3A : 1619.27 MB\n", "Rank 0: created area MT with 0 local nodes\n", - "Memory after MT : 1645.52 MB\n", + "Memory after MT : 1644.77 MB\n", "Rank 0: created area V4t with 0 local nodes\n", - "Memory after V4t : 1670.48 MB\n", + "Memory after V4t : 1669.73 MB\n", "Rank 0: created area V4 with 0 local nodes\n", - "Memory after V4 : 1697.54 MB\n", + "Memory after V4 : 1696.79 MB\n", "Rank 0: created area VOT with 0 local nodes\n", - "Memory after VOT : 1722.00 MB\n", + "Memory after VOT : 1721.25 MB\n", "Rank 0: created area MSTd with 0 local nodes\n", - "Memory after MSTd : 1742.01 MB\n", + "Memory after MSTd : 1741.25 MB\n", "Rank 0: created area PIP with 0 local nodes\n", - "Memory after PIP : 1763.47 MB\n", + "Memory after PIP : 1762.75 MB\n", "Rank 0: created area PO with 0 local nodes\n", - "Memory after PO : 1784.81 MB\n", + "Memory after PO : 1784.13 MB\n", "Rank 0: created area DP with 0 local nodes\n", - "Memory after DP : 1805.07 MB\n", + "Memory after DP : 1804.39 MB\n", "Rank 0: created area MIP with 0 local nodes\n", - "Memory after MIP : 1826.64 MB\n", + "Memory after MIP : 1825.91 MB\n", "Rank 0: created area MDP with 0 local nodes\n", - "Memory after MDP : 1848.14 MB\n", + "Memory after MDP : 1847.42 MB\n", "Rank 0: created area VIP with 0 local nodes\n", - "Memory after VIP : 1870.10 MB\n", + "Memory after VIP : 1869.27 MB\n", "Rank 0: created area LIP with 0 local nodes\n", - "Memory after LIP : 1894.04 MB\n", + "Memory after LIP : 1893.36 MB\n", "Rank 0: created area PITv with 0 local nodes\n", - "Memory after PITv : 1919.33 MB\n", + "Memory after PITv : 1918.56 MB\n", "Rank 0: created area PITd with 0 local nodes\n", - "Memory after PITd : 1944.53 MB\n", + "Memory after PITd : 1943.77 MB\n", "Rank 0: created area MSTl with 0 local nodes\n", - "Memory after MSTl : 1966.02 MB\n", + "Memory after MSTl : 1965.01 MB\n", "Rank 0: created area CITv with 0 local nodes\n", - "Memory after CITv : 1985.20 MB\n", + "Memory after CITv : 1983.81 MB\n", "Rank 0: created area CITd with 0 local nodes\n", - "Memory after CITd : 2004.47 MB\n", + "Memory after CITd : 2003.21 MB\n", "Rank 0: created area FEF with 0 local nodes\n", - "Memory after FEF : 2025.85 MB\n", + "Memory after FEF : 2024.55 MB\n", "Rank 0: created area TF with 0 local nodes\n", - "Memory after TF : 2041.52 MB\n", + "Memory after TF : 2040.23 MB\n", "Rank 0: created area AITv with 0 local nodes\n", - "Memory after AITv : 2064.24 MB\n", + "Memory after AITv : 2062.93 MB\n", "Rank 0: created area FST with 0 local nodes\n", - "Memory after FST : 2080.84 MB\n", + "Memory after FST : 2079.66 MB\n", "Rank 0: created area 7a with 0 local nodes\n", - "Memory after 7a : 2102.16 MB\n", + "Memory after 7a : 2100.74 MB\n", "Rank 0: created area STPp with 0 local nodes\n", - "Memory after STPp : 2120.87 MB\n", + "Memory after STPp : 2119.45 MB\n", "Rank 0: created area STPa with 0 local nodes\n", - "Memory after STPa : 2140.00 MB\n", + "Memory after STPa : 2138.70 MB\n", "Rank 0: created area 46 with 0 local nodes\n", - "Memory after 46 : 2155.36 MB\n", + "Memory after 46 : 2154.06 MB\n", "Rank 0: created area AITd with 0 local nodes\n", - "Memory after AITd : 2177.66 MB\n", + "Memory after AITd : 2176.65 MB\n", "Rank 0: created area TH with 0 local nodes\n", - "Memory after TH : 2190.14 MB\n", - "Created areas and internal connections in 2.21 seconds.\n", - "Created cortico-cortical connections in 22.73 seconds.\n", - "Simulated network in 84.21 seconds.\n" + "Memory after TH : 2189.35 MB\n", + "Created areas and internal connections in 2.23 seconds.\n", + "Created cortico-cortical connections in 22.53 seconds.\n", + "Simulated network in 77.18 seconds.\n" ] } ], @@ -767,6 +767,7 @@ "Loading data from file\n", "Loading data from file\n", "Computing rate time series done\n", + "/opt/app-root/src/MAM2EBRAINS/simulations\n", "\n", " -- N E S T --\n", " Copyright (C) 2004 The NEST Initiative\n", @@ -863,26 +864,35 @@ "Computing rate time series auto kernel done\n", "Loading data from file\n", "Computing synchrony done\n", - "Loading data from file\n", - "Computing synaptic input done\n", "pop_LvR\n", - "pop_rates\n" + "pop_rates\n", + "synchrony\n" ] }, { - "ename": "AttributeError", - "evalue": "'NoneType' object has no attribute 'items'", + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: '/opt/app-root/src/MAM2EBRAINS/simulations/27d81076e6d6e9e591684be053078477/Analysis/rate_time_series_auto_kernel/rate_time_series_auto_kernel_V4.npy'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", "Cell \u001b[0;32mIn [15], line 4\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# Choose 3 areas from the complete_area_list to show their sipking activity\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;66;03m# By default, it's set as ['V1', 'V2', 'FEF']\u001b[39;00m\n\u001b[1;32m 3\u001b[0m raster_areas \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mV4\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mV1\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mFEF\u001b[39m\u001b[38;5;124m'\u001b[39m]\n\u001b[0;32m----> 4\u001b[0m plot_resting_state(M, data_path, raster_areas)\n", - "File \u001b[0;32m~/MAM2EBRAINS/./figures/MAM2EBRAINS/M2E_visualize_resting_state.py:67\u001b[0m, in \u001b[0;36mplot_resting_state\u001b[0;34m(M, data_path, raster_areas)\u001b[0m\n\u001b[1;32m 61\u001b[0m A \u001b[38;5;241m=\u001b[39m Analysis(network\u001b[38;5;241m=\u001b[39mM, \n\u001b[1;32m 62\u001b[0m simulation\u001b[38;5;241m=\u001b[39mM\u001b[38;5;241m.\u001b[39msimulation, \n\u001b[1;32m 63\u001b[0m data_list\u001b[38;5;241m=\u001b[39m[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mspikes\u001b[39m\u001b[38;5;124m'\u001b[39m],\n\u001b[1;32m 64\u001b[0m load_areas\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m)\n\u001b[1;32m 66\u001b[0m \u001b[38;5;66;03m# load data\u001b[39;00m\n\u001b[0;32m---> 67\u001b[0m \u001b[43mload_and_create_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43mM\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mA\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mraster_areas\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 69\u001b[0m t_sim \u001b[38;5;241m=\u001b[39m M\u001b[38;5;241m.\u001b[39msimulation\u001b[38;5;241m.\u001b[39mparams[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mt_sim\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 71\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 72\u001b[0m \u001b[38;5;124;03mFigure layout\u001b[39;00m\n\u001b[1;32m 73\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n", - "File \u001b[0;32m~/MAM2EBRAINS/./figures/MAM2EBRAINS/M2E_LOAD_DATA.py:180\u001b[0m, in \u001b[0;36mload_and_create_data\u001b[0;34m(M, A, raster_areas)\u001b[0m\n\u001b[1;32m 177\u001b[0m A\u001b[38;5;241m.\u001b[39mcreate_synaptic_input()\n\u001b[1;32m 178\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mComputing synaptic input done\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 180\u001b[0m \u001b[43mA\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msave\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/MAM2EBRAINS/multiarea_model/analysis.py:973\u001b[0m, in \u001b[0;36mAnalysis.save\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 971\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m members[i][\u001b[38;5;241m0\u001b[39m] \u001b[38;5;129;01min\u001b[39;00m save_list_npy:\n\u001b[1;32m 972\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39moutput_dir \u001b[38;5;241m+\u001b[39m members[i][\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 973\u001b[0m \u001b[43mah\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_save_dict_to_npy\u001b[49m\u001b[43m(\u001b[49m\u001b[43mf\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmembers\u001b[49m\u001b[43m[\u001b[49m\u001b[43mi\u001b[49m\u001b[43m]\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/MAM2EBRAINS/multiarea_model/analysis_helpers.py:288\u001b[0m, in \u001b[0;36m_save_dict_to_npy\u001b[0;34m(fp, data)\u001b[0m\n\u001b[1;32m 276\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_save_dict_to_npy\u001b[39m(fp, data):\n\u001b[1;32m 277\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 278\u001b[0m \u001b[38;5;124;03m Save data dictionary to binary numpy files\u001b[39;00m\n\u001b[1;32m 279\u001b[0m \u001b[38;5;124;03m by iteratively going through the dictionary.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 286\u001b[0m \u001b[38;5;124;03m Dictionary containing the data\u001b[39;00m\n\u001b[1;32m 287\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m--> 288\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m key, val \u001b[38;5;129;01min\u001b[39;00m \u001b[43mdata\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mitems\u001b[49m():\n\u001b[1;32m 289\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key \u001b[38;5;241m!=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mParameters\u001b[39m\u001b[38;5;124m'\u001b[39m:\n\u001b[1;32m 290\u001b[0m fp_key \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m-\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;241m.\u001b[39mjoin((fp, key))\n", - "\u001b[0;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'items'" + "File \u001b[0;32m~/MAM2EBRAINS/./figures/MAM2EBRAINS/M2E_visualize_resting_state.py:230\u001b[0m, in \u001b[0;36mplot_resting_state\u001b[0;34m(M, data_path, raster_areas)\u001b[0m\n\u001b[1;32m 225\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m area \u001b[38;5;129;01min\u001b[39;00m areas:\n\u001b[1;32m 226\u001b[0m fn \u001b[38;5;241m=\u001b[39m os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mjoin(data_path, label,\n\u001b[1;32m 227\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mAnalysis\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 228\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mrate_time_series_auto_kernel\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 229\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mrate_time_series_auto_kernel_\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m.npy\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;241m.\u001b[39mformat(area))\n\u001b[0;32m--> 230\u001b[0m rate_time_series_auto_kernel[area] \u001b[38;5;241m=\u001b[39m \u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mload\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfn\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 232\u001b[0m \u001b[38;5;66;03m# local variance revised (LvR)\u001b[39;00m\n\u001b[1;32m 233\u001b[0m fn \u001b[38;5;241m=\u001b[39m os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mjoin(data_path, label, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mAnalysis\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mpop_LvR.json\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "File \u001b[0;32m/srv/main-spack-instance-2305/spack/opt/spack/linux-ubuntu20.04-x86_64/gcc-10.3.0/py-numpy-1.22.4-2oqgru7t5upcffz4fffhepvquuy3hdsh/lib/python3.8/site-packages/numpy/lib/npyio.py:407\u001b[0m, in \u001b[0;36mload\u001b[0;34m(file, mmap_mode, allow_pickle, fix_imports, encoding)\u001b[0m\n\u001b[1;32m 405\u001b[0m own_fid \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[1;32m 406\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 407\u001b[0m fid \u001b[38;5;241m=\u001b[39m stack\u001b[38;5;241m.\u001b[39menter_context(\u001b[38;5;28;43mopen\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mos_fspath\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfile\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mrb\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m)\n\u001b[1;32m 408\u001b[0m own_fid \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 410\u001b[0m \u001b[38;5;66;03m# Code to distinguish from NumPy binary files and pickles.\u001b[39;00m\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/opt/app-root/src/MAM2EBRAINS/simulations/27d81076e6d6e9e591684be053078477/Analysis/rate_time_series_auto_kernel/rate_time_series_auto_kernel_V4.npy'" ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "<Figure size 864x762.831 with 7 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" } ], "source": [ diff --git a/multiarea_model/data_multiarea/viscortex_processed_data.json b/multiarea_model/data_multiarea/viscortex_processed_data.json index b7692fa566555a9d07d87088f2a855cad07d5259..b4705ee484ba5d2e65039de05d790c484d569098 100644 --- a/multiarea_model/data_multiarea/viscortex_processed_data.json +++ b/multiarea_model/data_multiarea/viscortex_processed_data.json @@ -1 +1 @@ -{"cocomac_completed": {"V1": {"7a": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", "0", "3"], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "LIP": {"source_pattern": ["0", "0", "0", "0", "0", "2"], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "TH": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", "3", "3"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": ["3", 2.0, 2.0, "0", 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}}, "V2": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", "2", "2", 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "FEF": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, 2, 2, 2, "0"], "target_pattern": ["3", "3", 2.0, 2.0, "3", "3"]}, "LIP": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PITd": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STPa": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["3", "0", "0", "0", "1", "1"]}, "TH": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "V1": {"source_pattern": [2, 2, "0", "0", "0", "0"], "target_pattern": ["0", 2.0, 2.0, "3", "3", "3"]}, "V2": {"source_pattern": [2, 2, "3", "3", "0", "0"], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V3": {"source_pattern": ["0", "0", 2, "0", "0", 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["3", "3", 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VIP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}}, "VP": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4v": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"target_pattern": null, "source_pattern": null}}, "V3": {"7a": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "PIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MT": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"target_pattern": null, "source_pattern": null}}, "V3A": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V3A": {"target_pattern": null, "source_pattern": null}}, "MT": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "V4t": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V4t": {"target_pattern": null, "source_pattern": null}}, "V4": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "AIT": {"source_pattern": null, "target_pattern": null}, "AITv": {"source_pattern": null, "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITv": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PO": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}}, "PO": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}}, "VOT": {"V2": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VOT": {"target_pattern": null, "source_pattern": null}}, "DP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "1", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}}, "MIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}}, "MDP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "MDP": {"target_pattern": null, "source_pattern": null}}, "MSTd": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TH": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}}, "VIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "LIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}}, "PITv": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", "0", 2, 2, -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "PITd": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "AITv": {"CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, -1]}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}}, "MSTl": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}}, "FST": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FST": {"target_pattern": null, "source_pattern": null}}, "CITv": {"35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TH": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "7a": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}}, "CITd": {"V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CITd": {"target_pattern": null, "source_pattern": null}}, "7a": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "AIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "AITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", "3", "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": [2, "0", "0", 2, "0", 2], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "STPa": {"source_pattern": ["3", "3", "3", "3", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "V4d": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V4t": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}}, "STPp": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPa": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}}, "STPa": {"7a": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "V2": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "FEF": {"1": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "3a": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "4": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "5": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}}, "46": {"1": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "2": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "7a": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": ["0", "0", "3", "0", "3", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "IT": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "STPa": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "TF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "3", "0", 2, 2], "target_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "TF": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "46": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITv": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "STPa": {"source_pattern": ["3", "3", "0", 2, 2, "0"], "target_pattern": null}, "STPp": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "TF": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "TH": {"6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "36": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": [2, "0", "0", "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "AITv": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "IT": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": [2.0, "3", "3", "3", 2.0, 2.0]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "TH": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "AITd": {"7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STPa": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": null, "target_pattern": null}, "TH": {"source_pattern": null, "target_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}}}, "architecture_completed": {"FEF": 5, "7a": 4, "STPp": 4, "CITv": 5, "PITv": 5, "VP": 7, "V3A": 6, "TF": 5, "LIP": 5, "V4t": 6, "MIP": 5, "CITd": 5, "MSTd": 5, "DP": 5, "STPa": 4, "MSTl": 5, "MT": 6, "46": 4, "AITv": 4, "VIP": 5, "PITd": 5, "VOT": 6, "V1": 8, "V2": 7, "V3": 7, "V4": 6, "TH": 2, "PIP": 5, "FST": 4, "MDP": 5, "PO": 5, "AITd": 4}, "hierarchy_completed": {"7a": 0.6622, "PITv": 0.6048, "V3A": 0.3345, "LIP": 0.5677, "MIP": 0.5, "PITd": 0.6115, "DP": 0.4864, "STPa": 0.7162, "MSTl": 0.6216, "V1": 0.0, "46": 0.8649, "STPp": 0.6757, "V2": 0.1115, "V3": 0.1993, "V4": 0.4054, "TH": 0.9222, "TF": 0.8615, "MDP": 0.5, "PO": 0.4189, "FEF": 0.8177, "CITv": 0.625, "VP": 0.1993, "PIP": 0.2972, "V4t": 0.4054, "CITd": 0.6284, "AITv": 0.6149, "VOT": 0.4628, "MT": 0.4054, "VIP": 0.5677, "MSTd": 0.5473, "FST": 0.6216, "AITd": 1.0}, "SLN_completed": {"V1": {"7a": 0.13194421498048362, "LIP": 0.001953125, "MT": 0.17512874899425246, "PIP": 0.00676816232675885, "PO": 0.404565065, "STPp": 0.03868900250000001, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "V2": 0.4007722176652155, "V3": 0.38394614661004506, "V3A": 0.006840776179282866, "V4": 0.22741361375468427, "V4t": 0.181545865, "VIP": 0.001953125, "MSTd": 0.10606161761701319, "AITv": 0.01173693, "PITd": 0.11926319973629251, "MSTl": 0.015780545587622773, "FST": 0.017777577500000002, "PITv": 0.06536264773862561, "46": 0.023962599915093682, "STPa": 0.025645547576816728, "DP": 0.06666331317758761, "VOT": 0.13606147826236337, "CITd": 0.017777577500000002, "AITd": 0.01173693, "VP": 0.2411506010095163, "FEF": 0.12220022250000001, "CITv": 0.01173693}, "V2": {"7a": 0.2473485547389337, "46": 0.09611216182822098, "CITv": 0.03237627, "DP": 0.11861750167939675, "FEF": 0.20729421976778806, "FST": 0.07046779333333333, "LIP": 0.04916585999999999, "MIP": 0.1647674456125005, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "PIP": 0.21467556119098472, "PITd": 0.22234497210587106, "PO": 0.1647674456125005, "STPa": 0.1011489004860832, "STPp": 0.0, "TF": 0.25254592441901647, "TH": 0.010029086666666668, "V1": 0.7359601200000001, "V3": 0.31951689276600775, "V3A": 0.2159478233405306, "V4": 0.2541399406855286, "V4t": 0.26864967000000006, "VIP": 0.04916586000000001, "VOT": 0.22762425945260104, "VP": 0.25842434280049886, "MDP": 0.1647674456125005, "AITv": 0.03237627, "PITv": 0.07596815828333246, "CITd": 0.07046779333333335, "AITd": 0.03237627}, "VP": {"7a": 0.09442586553850892, "DP": 0.15571353140142427, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "VIP": 0.1647674456125005, "VOT": 0.24423035492494716}, "V3": {"7a": 0.09442586553850892, "FST": 0.1011489004860832, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V1": 0.6993004977911257, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "V4t": 0.2572732264020294, "VIP": 0.1647674456125005, "VP": 0.4397456164544487}, "PIP": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V4": 0.6080369758634977, "VP": 0.749151726197644}, "V3A": {"7a": 0.2306470411405071, "DP": 0.3317934753804855, "FST": 0.24266165394773911, "LIP": 0.3791343871826437, "MIP": 0.345394264212165, "MSTd": 0.345394264212165, "MSTl": 0.345394264212165, "MT": 0.4741086898197289, "V1": 0.8642589131334557, "V2": 0.664819185499987, "V3": 0.664819185499987, "V4": 0.511183022022283, "VIP": 0.345394264212165, "VP": 0.664819185499987}, "MT": {"7a": 0.20514417151891692, "46": 0.2079858130256918, "CITv": 0.2262644296613191, "DP": 0.3009622802995952, "FEF": 0.2762308513985713, "FST": 0.2163924357522115, "LIP": 0.34663413513815555, "MIP": 0.31403189331661385, "MSTd": 0.31403189331661385, "MSTl": 0.31403189331661385, "PIP": 0.31403189331661385, "PO": 0.31403189331661385, "STPp": 0.2163924357522115, "V1": 0.8444668131657768, "V2": 0.6326887550282241, "V3": 0.6326887550282241, "V3A": 0.4058308482690615, "V4": 0.47662208079615176, "V4t": 0.4359767813039983, "VIP": 0.31403189331661385, "VP": 0.6326887550282241}, "V4t": {"7a": 0.2078731885766554, "46": 0.2107370269407612, "FST": 0.21920773435266425, "MSTd": 0.31743250009665086, "MT": 0.44351992011019076, "V2": 0.6362850677254202, "V3": 0.6362850677254202, "V4": 0.4804317628197222}, "V4": {"7a": 0.4232641237436804, "46": 0.1823592393657686, "AITv": 0.29966645, "CITd": 0.23457694666666673, "CITv": 0.2996664499999999, "DP": 0.2538615627727568, "FEF": 0.6525620966666666, "FST": 0.2345769466666667, "LIP": 0.24640913666666664, "MT": 0.4203839134858612, "PIP": 0.6991783852090286, "PITd": 0.29129667122990904, "PITv": 0.29280809982084094, "PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "V1": 0.8605949687186175, "V2": 0.8946774848445085, "V3": 0.8106335742703666, "V3A": 0.6995602901668315, "V4t": 0.44856999000000003, "VIP": 0.24640913666666667, "VOT": 0.29207236355152044, "VP": 0.39992316913597753, "MSTd": 0.4352943409457222, "MDP": 0.28182290248104663, "MIP": 0.28182290248104663, "MSTl": 0.233633950099824, "STPp": 0.0, "STPa": 0.1901303816478059, "AITd": 0.2996664499999999}, "PO": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487, "VP": 0.749151726197644}, "VOT": {"V2": 0.6515582171973071, "VP": 0.6515582171973071}, "DP": {"7a": 0.3569152409933993, "46": 0.32873489289592567, "FEF": 0.5164609, "LIP": 0.36808971, "MSTd": 0.359307158192874, "PIP": 0.7224508243801265, "PO": 0.91499421, "STPp": 0.0, "V2": 0.8284911256892572, "V3A": 0.7225151175175789, "V4": 0.502791527151495, "VP": 0.5036956237929567, "TH": 0.47371497212186886, "VIP": 0.36808971, "MDP": 0.4544472048222968, "AITv": 0.16666665999999997, "MIP": 0.4544472048222968, "PITd": 0.4306777609068619, "MT": 0.4764831936322133, "MSTl": 0.2919336871009218, "FST": 0.26638557999999996, "PITv": 0.16385097434860155, "TF": 0.4477395966573806, "STPa": 0.33928533532425265, "VOT": 0.4978915580368853, "CITd": 0.26638558, "AITd": 0.16666665999999994, "V4t": 0.4812295, "V1": 0.91499421, "CITv": 0.16666665999999997, "V3": 0.887729957296875}, "MIP": {"7a": 0.31187356990740184, "LIP": 0.4754470637035422, "PO": 0.4397456164544487, "V2": 0.749151726197644, "V3A": 0.5376665672762394}, "MDP": {}, "MSTd": {"7a": 0.44486240562524343, "46": 0.3154038868555226, "DP": 0.8352353799814716, "FEF": 0.6273571799011722, "FST": 0.28586558000000006, "LIP": 0.52910535, "MT": 0.285560720530831, "PO": 0.94168235, "STPp": 0.05016722, "TF": 0.6059730506644079, "V2": 0.8875577521323456, "V3": 0.9072129777530921, "V3A": 0.8681135828616146, "VIP": 0.52910535, "VP": 0.6210356415152859, "TH": 0.6589031753555138, "MDP": 0.4397456164544487, "AITv": 0.2078664, "MIP": 0.4397456164544487, "PITd": 0.31125558595064046, "MSTl": 0.2812370526681836, "PITv": 0.2981900252191592, "PIP": 0.8680375753748741, "STPa": 0.3257802492365629, "VOT": 0.48008040500394433, "CITd": 0.28586558, "V4": 0.6120145117230196, "AITd": 0.20786640000000003, "V1": 0.9097885214665646, "CITv": 0.20786640000000003}, "VIP": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4": 0.6080369758634977, "V4t": 0.5681484209786033, "VP": 0.749151726197644}, "LIP": {"7a": 0.28076284141826424, "46": 0.2841284860076212, "DP": 0.390189400203489, "FEF": 0.362694437412613, "FST": 0.29403822928836465, "MDP": 0.40452785345081144, "MIP": 0.40452785345081144, "MSTd": 0.40452785345081144, "MT": 0.5363312838211267, "PIP": 0.40452785345081144, "PO": 0.40452785345081144, "STPp": 0.29403822928836465, "V2": 0.7196467830007919, "V3": 0.7196467830007919, "V3A": 0.5018058412911562, "V4": 0.573062361443146, "V4t": 0.5325302918019821, "VIP": 0.40452785345081144, "VP": 0.7196467830007919}, "PITv": {"7a": 0.21980894609736484, "AITd": 0.24175822798053087, "AITv": 0.24175822798053087, "CITd": 0.24175822798053087, "CITv": 0.24175822798053087, "FST": 0.23150869224939957, "LIP": 0.365469778336114, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "TF": 0.3027748504611968, "TH": 0.19454931004337409, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "PITd": {"7a": 0.21980894609736484, "FST": 0.23150869224939957, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "AITv": {"CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "TH": 0.3774407149467103, "V4": 0.7057317983155025}, "MSTl": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487}, "FST": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "DP": 0.5442655594117083, "FEF": 0.5154533480763229, "LIP": 0.594213477151346, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "V2": 0.8344259484773664, "V3": 0.8344259484773664, "V3A": 0.6534080536187905, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "VIP": 0.5589734213408636, "VP": 0.8344259484773664}, "CITv": {"AITd": 0.4397456164544487, "AITv": 0.4397456164544487, "MT": 0.6729152169546991, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "V2": 0.826025395583821, "V4": 0.7057317983155025, "TH": 0.3774407149467103, "MSTd": 0.5458319856708994, "V3A": 0.6410656305130789, "VIP": 0.5458319856708994, "7a": 0.4114584896417437, "PO": 0.5458319856708994, "MSTl": 0.5458319856708994, "STPp": 0.4266758765307271, "FST": 0.4266758765307271, "46": 0.4153365490462339, "PIP": 0.5458319856708994, "STPa": 0.4266758765307271, "DP": 0.531068720161679, "VOT": 0.6544746643053295, "CITd": 0.4397456164544487, "VP": 0.826025395583821, "FEF": 0.5022006131674926, "V4t": 0.669456888813816, "V1": 0.9465819449520904, "LIP": 0.5812795053424596, "V3": 0.826025395583821}, "CITd": {"V4": 0.7057317983155025}, "7a": {"46": 0.443675163086642, "AITd": 0.46834387056913884, "CITv": 0.46834387056913884, "DP": 0.5596718210193434, "FEF": 0.5309653576659095, "FST": 0.45514888874900034, "LIP": 0.6092437172723907, "MDP": 0.5742944358234963, "MIP": 0.5742944358234963, "MSTd": 0.5742944358234963, "MSTl": 0.5742944358234963, "MT": 0.6985232422376585, "PIP": 0.5742944358234963, "PO": 0.5742944358234963, "STPa": 0.45514888874900034, "STPp": 0.45514888874900034, "TF": 0.5417280230142912, "TH": 0.40515398450884493, "V2": 0.8439331894156354, "V3": 0.8439331894156354, "V3A": 0.6676703062854825, "V4": 0.7301077109056936, "V4t": 0.6951825087343344, "VIP": 0.5742944358234963, "VP": 0.8439331894156354, "AITv": 0.46834387056913884, "PITd": 0.6806832403963549, "PITv": 0.6806832403963549, "VOT": 0.6806832403963549, "CITd": 0.46834387056913884, "V1": 0.9539824713073445}, "STPp": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "FEF": 0.5154533480763229, "FST": 0.4397456164544487, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPa": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V2": 0.8344259484773664, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "VIP": 0.5589734213408636, "MDP": 0.5589734213408636, "AITv": 0.45288136231295556, "MIP": 0.5589734213408636, "PO": 0.5589734213408636, "PITd": 0.6666418222423477, "V3": 0.8344259484773664, "PITv": 0.6666418222423477, "PIP": 0.5589734213408636, "DP": 0.5442655594117083, "VOT": 0.6666418222423477, "CITd": 0.45288136231295556, "AITd": 0.45288136231295556, "VP": 0.8344259484773664, "V1": 0.9500983377771388, "LIP": 0.594213477151346, "V3A": 0.6534080536187905}, "STPa": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "MSTd": 0.5589734213408636, "VIP": 0.5589734213408636, "AITv": 0.45288136231295556, "PO": 0.5589734213408636, "PITd": 0.6666418222423477, "MT": 0.6848151869041003, "MSTl": 0.5589734213408636, "FST": 0.4397456164544487, "PITv": 0.6666418222423477, "LIP": 0.594213477151346, "V2": 0.8344259484773664, "DP": 0.5442655594117083, "VOT": 0.6666418222423477, "CITd": 0.45288136231295556, "V4": 0.7170795468774352, "AITd": 0.45288136231295556, "VP": 0.8344259484773664, "FEF": 0.5154533480763229, "V4t": 0.6814092972055, "V1": 0.9500983377771388, "CITv": 0.45288136231295556, "V3": 0.8344259484773664}, "FEF": {"7a": 0.3516293974131231, "46": 0.35533041409939803, "AITd": 0.3787579272123091, "CITv": 0.3787579272123091, "FST": 0.3661852703855369, "LIP": 0.5191568217929547, "MSTd": 0.48325225451521486, "MSTl": 0.48325225451521486, "MT": 0.6144158201881944, "PO": 0.48325225451521486, "STPp": 0.3661852703855369, "V2": 0.7827293680977521, "V3": 0.7827293680977521, "V3A": 0.5808929113039869, "V4": 0.6494469737044479, "V4t": 0.6107535641856292, "VIP": 0.48325225451521486, "VP": 0.7827293680977521, "TH": 0.319413423745837, "MDP": 0.48325225451521486, "AITv": 0.3787579272123091, "MIP": 0.48325225451521486, "PITd": 0.5949508734340588, "PITv": 0.5949508734340588, "TF": 0.45045065681875274, "PIP": 0.48325225451521486, "STPa": 0.3661852703855369, "DP": 0.4684472210714786, "VOT": 0.5949508734340588, "CITd": 0.3787579272123091, "V1": 0.9272273846670287}, "46": {"7a": 0.4358219970859884, "AITd": 0.46438597533050835, "CITv": 0.46438597533050835, "DP": 0.5557414275321807, "FEF": 0.5270038247288525, "LIP": 0.6054163293692177, "MT": 0.6950448469649315, "STPa": 0.45120425795166497, "STPp": 0.45120425795166497, "TF": 0.5377757373505233, "TH": 0.4012994082965777, "V2": 0.8415379443445309, "V4": 0.7268063099411157, "VIP": 0.5703878991437041, "MSTd": 0.5703878991437041, "V3A": 0.6640467174085998, "MDP": 0.5703878991437041, "AITv": 0.46438597533050835, "MIP": 0.5703878991437041, "PO": 0.5703878991437041, "PITd": 0.6771176328311563, "MSTl": 0.5703878991437041, "FST": 0.45120425795166497, "PITv": 0.6771176328311563, "PIP": 0.5703878991437041, "VOT": 0.6771176328311563, "CITd": 0.46438597533050835, "VP": 0.8415379443445309, "V4t": 0.6916870936512598, "V1": 0.953013524197034, "V3": 0.8415379443445309}, "TF": {"7a": 0.3416307811243306, "46": 0.3452929507529249, "AITv": 0.3684973073841186, "CITv": 0.3684973073841186, "FEF": 0.42908445348136853, "FST": 0.35603954622911427, "LIP": 0.5083556917571386, "MT": 0.6040158814464341, "STPa": 0.35603954622911427, "STPp": 0.35603954622911427, "TH": 0.3097951619855184, "V2": 0.7746813206878705, "V3": 0.7746813206878705, "V3A": 0.5702799471915022, "V4": 0.6393554551781233, "VP": 0.7746813206878705}, "TH": {"7a": 0.47480376159200716, "46": 0.47876905627078103, "AITv": 0.5035828308582835, "FEF": 0.5659653164601144, "STPa": 0.4903272366306628, "STPp": 0.4903272366306628, "TF": 0.5765998675976063, "V2": 0.86415297954125, "V4": 0.7585211182027408}, "AITd": {"7a": 0.4114584896417437, "46": 0.4153365490462339, "CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "FEF": 0.5022006131674926, "PITd": 0.6544746643053295, "STPa": 0.4266758765307271, "TF": 0.5130062065154856, "TH": 0.3774407149467103}}, "SLN_Data_FV91": {"MSTd": {"V1": 0.9097885214665646, "V2": 0.8875577521323456, "PO": 0.94168235, "TF": 0.6059730506644079, "TH": 0.6589031753555138, "PIP": 0.8680375753748741, "V4": 0.6120145117230196, "V3": 0.9072129777530921, "MSTd": 0.16862906228337676, "V3A": 0.8681135828616146, "VP": 0.6210356415152859, "DP": 0.8352353799814716, "7a": 0.44486240562524343, "PITd": 0.31125558595064046, "VOT": 0.48008040500394433, "VIP": 0.52910535, "LIP": 0.52910535, "STPp": 0.05016722, "MSTl": 0.2812370526681836, "MT": 0.285560720530831, "FST": 0.28586558000000006, "CITd": 0.28586558, "PITv": 0.2981900252191592, "AITd": 0.20786640000000003, "CITv": 0.20786640000000003, "AITv": 0.2078664, "FEF": 0.6273571799011722}, "V4": {"PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "PIP": 0.6991783852090286, "V4": 0.35531495687884207, "V1": 0.8605949687186175, "V3": 0.8106335742703666, "V2": 0.8946774848445085, "MSTd": 0.4352943409457222, "V3A": 0.6995602901668315, "VP": 0.39992316913597753, "DP": 0.2538615627727568, "7a": 0.4232641237436804, "PITd": 0.29129667122990904, "VOT": 0.29207236355152044, "VIP": 0.24640913666666667, "LIP": 0.24640913666666664, "STPp": 0.0, "MSTl": 0.233633950099824, "MT": 0.4203839134858612, "FST": 0.2345769466666667, "CITd": 0.23457694666666673, "V4t": 0.44856999000000003, "AITd": 0.2996664499999999, "CITv": 0.2996664499999999, "AITv": 0.29966645, "PITv": 0.29280809982084094, "FEF": 0.6525620966666666}, "V1": {"PO": 0.404565065, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "PIP": 0.00676816232675885, "V4": 0.22741361375468427, "V1": 0.404565065, "V3": 0.38394614661004506, "V2": 0.4007722176652155, "MSTd": 0.10606161761701319, "V3A": 0.006840776179282866, "VP": 0.2411506010095163, "DP": 0.06666331317758761, "7a": 0.13194421498048362, "PITd": 0.11926319973629251, "VOT": 0.13606147826236337, "VIP": 0.001953125, "LIP": 0.001953125, "STPp": 0.03868900250000001, "MSTl": 0.015780545587622773, "MT": 0.17512874899425246, "FST": 0.017777577500000002, "CITd": 0.017777577500000002, "V4t": 0.181545865, "PITv": 0.06536264773862561, "AITd": 0.01173693, "CITv": 0.01173693, "AITv": 0.01173693, "FEF": 0.12220022250000001}, "V2": {"V1": 0.7359601200000001, "V2": 0.5864300202496507, "TF": 0.25254592441901647, "PIP": 0.21467556119098472, "V3A": 0.2159478233405306, "VP": 0.25842434280049886, "V4": 0.2541399406855286, "V3": 0.31951689276600775, "DP": 0.11861750167939675, "7a": 0.2473485547389337, "PITd": 0.22234497210587106, "VOT": 0.22762425945260104, "VIP": 0.04916586000000001, "LIP": 0.04916585999999999, "STPp": 0.0, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "FST": 0.07046779333333333, "CITd": 0.07046779333333335, "V4t": 0.26864967000000006, "PITv": 0.07596815828333246, "AITd": 0.03237627, "CITv": 0.03237627, "AITv": 0.03237627, "TH": 0.010029086666666668, "FEF": 0.20729421976778806}, "DP": {"PO": 0.91499421, "TF": 0.4477395966573806, "TH": 0.47371497212186886, "PIP": 0.7224508243801265, "V4": 0.502791527151495, "V1": 0.91499421, "V3": 0.887729957296875, "V2": 0.8284911256892572, "MSTd": 0.359307158192874, "V3A": 0.7225151175175789, "VP": 0.5036956237929567, "DP": 0.46428641987840946, "7a": 0.3569152409933993, "PITd": 0.4306777609068619, "VOT": 0.4978915580368853, "VIP": 0.36808971, "LIP": 0.36808971, "STPp": 0.0, "MSTl": 0.2919336871009218, "MT": 0.4764831936322133, "FST": 0.26638557999999996, "CITd": 0.26638558, "V4t": 0.4812295, "PITv": 0.16385097434860155, "AITd": 0.16666665999999994, "CITv": 0.16666665999999997, "AITv": 0.16666665999999997, "FEF": 0.5164609}}, "FLN_Data_FV91": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05}, "VP": {}, "V3": {}, "PIP": {}, "V3A": {}, "MT": {}, "V4t": {}, "PO": {}, "VOT": {}, "MIP": {}, "MDP": {}, "VIP": {}, "LIP": {}, "PITv": {}, "PITd": {}, "AITv": {}, "MSTl": {}, "FST": {}, "CITd": {}, "TF": {}, "TH": {}, "AITd": {}}, "FLN_completed": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07, "external": 0.0}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668, "46": 5.056234787738941e-05, "external": 0.002769274482736845}, "VP": {"7a": 0.001966574318848339, "DP": 0.0024756461209531136, "LIP": 0.0018548814372213482, "MSTd": 0.004174892925022077, "MT": 0.008293452698284402, "PIP": 0.004530947395055978, "TF": 0.00705236411780784, "V2": 0.00717581605963354, "V3A": 0.005137466728058192, "V4": 0.008567477824525566, "VIP": 0.002442567075962061, "VOT": 0.010505902036643833, "external": 0.0}, "V3": {"7a": 0.004674246831500541, "FST": 0.001678543003493744, "LIP": 0.0049843652643756075, "MSTd": 0.004926477098009895, "MT": 0.00733451210571452, "PIP": 0.013445388063019195, "TF": 0.001972570146235144, "V1": 0.008586428591530818, "V2": 0.005900422577201198, "V3A": 0.017879918293458957, "V4": 0.005452910062762763, "V4t": 0.0064882545931690865, "VIP": 0.005743942149742755, "VP": 0.004194632953905766, "external": 0.0}, "PIP": {"7a": 0.008621057407958396, "DP": 0.011162671737969579, "LIP": 0.00953663308985513, "MT": 0.009990570858078392, "V1": 0.00527818493705959, "V2": 0.004725558994582357, "V3": 0.013445388063019195, "V4": 0.005410030671440896, "VP": 0.004530947395055978, "external": 0.006721419057747149}, "V3A": {"7a": 0.00868247987997409, "DP": 0.015543435560302327, "FST": 0.002433014251653756, "LIP": 0.008517773248403361, "MIP": 0.007032378516660398, "MSTd": 0.007795706029440842, "MSTl": 0.0052012331547735356, "MT": 0.011026528667923917, "V1": 0.006635229529771761, "V2": 0.005672463185317145, "V3": 0.017879918293458957, "V4": 0.007596844403044716, "VIP": 0.009396080130381014, "VP": 0.005137466728058192, "external": 0.0}, "MT": {"7a": 0.007668578783559499, "46": 0.0002982264907871621, "CITv": 0.0038163017519338253, "DP": 0.0067985734994770045, "FEF": 0.0005936836670590779, "FST": 0.008971528370378384, "LIP": 0.007256401869854357, "MIP": 0.004627972542024091, "MSTd": 0.01449135961835989, "MSTl": 0.017852332108062183, "PIP": 0.009990570858078392, "PO": 0.005124127489289287, "STPp": 0.005741274636653619, "V1": 0.0034419775555150226, "V2": 0.004610708369380301, "V3": 0.00733451210571452, "V3A": 0.011026528667923917, "V4": 0.012266466578010995, "V4t": 0.022905029760814703, "VIP": 0.00941716871058578, "VP": 0.008293452698284402, "external": 0.010053373851418083}, "V4t": {"7a": 0.005758077370591879, "46": 0.0002258161213703737, "FST": 0.0075262122160688, "MSTd": 0.011356730621151199, "MT": 0.022905029760814703, "V2": 0.004346258427304073, "V3": 0.0064882545931690865, "V4": 0.014563486215169221, "external": 0.0}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06, "external": 0.0}, "PO": {"7a": 0.004144248657410051, "DP": 0.005220646508186041, "FEF": 0.0001886114098855978, "LIP": 0.0048842515280058535, "MDP": 0.014405320247417218, "MIP": 0.020617646941670047, "MSTd": 0.004321736159726882, "MSTl": 0.0029108328936136986, "MT": 0.005124127489289287, "PIP": 0.015334961576419863, "V1": 0.003897505308584523, "V2": 0.002979802254013754, "V3": 0.008521681404942045, "V3A": 0.008186751962556745, "V4t": 0.003978868012995961, "VIP": 0.007279513913864154, "VP": 0.0025287698806870013, "external": 0.006542796226354337}, "VOT": {"V2": 0.00275414110376441, "VP": 0.010505902036643833, "external": 0.0}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999, "external": 0.004211451692517544}, "MIP": {"7a": 0.004628073242481961, "LIP": 0.005628643453612285, "PO": 0.020617646941670047, "V2": 0.002317741117550906, "V3A": 0.007032378516660398, "external": 0.010374993985500259}, "MDP": {"external": 0.011419607784729701}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05, "external": 0.0072490129352875}, "VIP": {"7a": 0.015446422673293946, "46": 0.0003458110186325523, "FEF": 0.0006773108120469758, "FST": 0.002979432398247835, "LIP": 0.019527396424842813, "MDP": 0.006218843583134815, "MIP": 0.00854479275972444, "MSTd": 0.012160526096505421, "MSTl": 0.006600939858094132, "MT": 0.00941716871058578, "PIP": 0.012547211081402667, "PO": 0.007279513913864154, "STPp": 0.0028081138130298814, "V2": 0.0023722199828714475, "V3": 0.005743942149742755, "V3A": 0.009396080130381014, "V4": 0.003911943716196138, "V4t": 0.006957528571384772, "VP": 0.002442567075962061, "external": 0.025685025786337367}, "LIP": {"7a": 0.0200256002116261, "46": 0.0002602252700827285, "DP": 0.014354121318509222, "FEF": 0.000521760134974346, "FST": 0.002253883895344027, "MDP": 0.0040408631174151345, "MIP": 0.005628643453612285, "MSTd": 0.010960695690248752, "MT": 0.007256401869854357, "PIP": 0.00953663308985513, "PO": 0.0048842515280058535, "STPp": 0.00244222691917776, "V2": 0.0019352055971065822, "V3": 0.0049843652643756075, "V3A": 0.008517773248403361, "V4": 0.0031585061105836834, "V4t": 0.005430465611173537, "VIP": 0.019527396424842813, "VP": 0.0018548814372213482, "external": 0.02010122555511015}, "PITv": {"7a": 0.001519128953463658, "AITd": 0.006359379280575416, "AITv": 0.007758145814052114, "CITd": 0.017478643524974677, "CITv": 0.015691806311089743, "FST": 0.01263496858298248, "LIP": 0.001285789125409984, "MT": 0.007004200569019747, "STPp": 0.003829466462804577, "TF": 0.009068192149592905, "TH": 0.005708336359028609, "V2": 0.0018379391047956878, "V4": 0.007007339925830216, "V4t": 0.0083415091788602, "VOT": 0.019379857366420852, "VP": 0.006643210862858017, "external": 0.0}, "PITd": {"7a": 0.002196946592552967, "FST": 0.012982843785615662, "MT": 0.010136691826050192, "STPp": 0.004493623560965627, "V2": 0.0019962868813370362, "V4": 0.009015562729701311, "V4t": 0.011986441343393476, "VOT": 0.016997572679928255, "VP": 0.0059050722299335764, "external": 0.0}, "AITv": {"CITd": 0.013892253195462468, "CITv": 0.015709600532818804, "PITd": 0.005118145751195346, "PITv": 0.007758145814052114, "TF": 0.006947301047502546, "TH": 0.005486718323377269, "V4": 0.0016643210932731807, "external": 0.0}, "MSTl": {"7a": 0.0063626815273536775, "46": 0.0005595505371621943, "DP": 0.0033814076993188254, "FEF": 0.0011101970110222973, "FST": 0.016643198599736588, "LIP": 0.005335978271267846, "MT": 0.017852332108062183, "PO": 0.0029108328936136986, "STPp": 0.011601763981185209, "V1": 0.0017709112924698136, "V2": 0.0027725710447628854, "V3A": 0.0052012331547735356, "V4t": 0.014647861481879191, "VIP": 0.006600939858094132, "external": 0.0072734106207775415}, "FST": {"7a": 0.002689233899127888, "46": 0.0007407465799992857, "CITv": 0.011714210291935324, "DP": 0.0015307752733108727, "FEF": 0.0013885197573829428, "LIP": 0.002253883895344027, "MSTd": 0.006848877340960466, "MSTl": 0.016643198599736588, "MT": 0.008971528370378384, "STPp": 0.011041563402888874, "TF": 0.01059563824406266, "V2": 0.0016679794532344961, "V3": 0.001678543003493744, "V3A": 0.002433014251653756, "V4": 0.005061550773625565, "V4t": 0.0075262122160688, "VIP": 0.002979432398247835, "VP": 0.004466681106251745, "external": 0.010332209959069458}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002, "external": 0.00981041654023485}, "CITd": {"V4": 0.0041777466613098085, "external": 0.0}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999, "external": 0.02938506023105533}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06, "external": 0.0169218564119172}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001, "external": 0.021379975066850528}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667, "external": 0.030348245801991393}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06, "external": 0.01948363363231367}, "TF": {"7a": 0.0018622862875994476, "46": 0.00027263187118762135, "AITv": 0.006947301047502546, "CITv": 0.008573111392548783, "FEF": 0.0004737508884470768, "FST": 0.01059563824406266, "LIP": 0.0016647514007397735, "MT": 0.0074104934764019845, "STPa": 0.005175064786224525, "STPp": 0.0037752777782433336, "TH": 0.014963255350597525, "V2": 0.0026546500269299987, "V3": 0.001972570146235144, "V3A": 0.002689205669205606, "V4": 0.004553843722667349, "VP": 0.00705236411780784, "external": 0.015077445206487964}, "TH": {"7a": 0.0019360577800537108, "46": 0.00027677638429352176, "AITv": 0.005486718323377269, "FEF": 0.0004782252441620275, "STPa": 0.004275371779150058, "STPp": 0.0031604962683527966, "TF": 0.014963255350597525, "V2": 0.0022492167248699692, "V4": 0.0034039285639701463, "external": 0.01308305567128213}, "AITd": {"7a": 0.00046777517280729655, "46": 0.0005676113571555957, "CITd": 0.01329368143561811, "CITv": 0.012994646677276813, "FEF": 0.0008085031348249742, "PITd": 0.004758288424810753, "STPa": 0.014133181809193483, "TF": 0.004811523947655359, "TH": 0.0037689211883690063, "external": 0.0}}, "neuronal_densities": {"FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "STPp": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VP": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "V4t": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "MIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "MSTd": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "STPa": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MSTl": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "VIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "PIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "FST": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MDP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PO": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}}, "neuronal_density_data_FV91_4layers": {"V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}}, "realistic_neuronal_numbers": {"FEF": {"23E": 7116258.062416201, "23I": 2007264.3976278158, "4E": 3738560.648779402, "4I": 934682.8106165795, "5E": 2737096.7132908967, "5I": 601032.5772484133, "6E": 2605291.6369981444, "6I": 533546.3526134444, "total": 20273733.199590895}, "7a": {"23E": 7785533.377762723, "23I": 2196045.144605121, "4E": 2089479.7746036942, "4I": 522393.7798336135, "5E": 2488782.555412475, "5I": 546505.8601060383, "6E": 2988894.9338910277, "6I": 612105.7495735153, "total": 19229741.175788205}, "STPp": {"23E": 10231171.547963874, "23I": 2885879.9405705766, "4E": 3214014.74148318, "4I": 803540.3499240858, "5E": 3490372.4822190227, "5I": 766442.6172295379, "6E": 4191750.945380641, "6I": 858442.6389011556, "total": 26441615.263672072}, "CITv": {"23E": 4781074.136115523, "23I": 1348585.1428756928, "4E": 1754777.4509003817, "4I": 438714.3807202003, "5E": 1649485.19100076, "5I": 362206.541941404, "6E": 1980943.6224906985, "6I": 405684.0430081682, "total": 12721470.509052828}, "PITv": {"23E": 4546866.169615768, "23I": 1282522.7110930902, "4E": 3774053.5763523397, "4I": 943556.447402896, "5E": 1588254.3632775452, "5I": 348761.009668162, "6E": 1907408.6684699608, "6I": 390624.5748280269, "total": 14782047.520707788}, "VP": {"23E": 6917343.194842176, "23I": 1951156.998438778, "4E": 6436579.782354831, "4I": 1609218.3722346388, "5E": 2080057.8770850257, "5I": 456754.9771331035, "6E": 2498038.4234448234, "6I": 511581.6097475055, "total": 22460731.235280883}, "V3A": {"23E": 3964407.8216861454, "23I": 1118230.2002473997, "4E": 2306615.689972856, "4I": 576680.2356998073, "5E": 1228675.3686414948, "5I": 269801.91084601893, "6E": 1475573.499477787, "6I": 302187.6121195219, "total": 11242172.338691032}, "TF": {"23E": 6074732.165699517, "23I": 1713483.8976304682, "4E": 3384007.2514310316, "4I": 846040.4166365786, "5E": 2187728.4571476975, "5I": 480398.1045076902, "6E": 2627345.0398780513, "6I": 538062.7424494962, "total": 17851798.07538053}, "LIP": {"23E": 2913160.3478207462, "23I": 821707.5602758899, "4E": 1126140.8103144537, "4I": 281548.0492682131, "5E": 651795.5065530408, "5I": 143126.22978948214, "6E": 1575617.9037778564, "6I": 322676.0389258161, "total": 7835772.446725499}, "V4t": {"23E": 1360184.0182880426, "23I": 383663.56731095293, "4E": 980714.0653507396, "4I": 245189.70404091728, "5E": 419495.6041320673, "5I": 92116.04503106218, "6E": 503791.8171087833, "6I": 103173.20436517496, "total": 4088328.02562774}, "MIP": {"23E": 1861055.129421214, "23I": 524942.9785351913, "4E": 715830.5384720211, "4I": 178965.80060635193, "5E": 346345.2234161966, "5I": 76053.12637902048, "6E": 1560161.9034535293, "6I": 319510.75313518627, "total": 5582865.453418711}, "CITd": {"23E": 2399105.600172807, "23I": 676709.4749991855, "4E": 880533.5976096117, "4I": 220143.44427575002, "5E": 827698.765271022, "5I": 181752.40928116255, "6E": 994022.0132635923, "6I": 203569.0792011859, "total": 6383534.384074317}, "MSTd": {"23E": 5346732.588457302, "23I": 1508138.950880428, "4E": 2715843.8559756237, "4I": 678991.9455574008, "5E": 1777557.624205953, "5I": 390329.6638720288, "6E": 2134751.7749729697, "6I": 437182.9268926931, "total": 14989529.330814399}, "DP": {"23E": 5001221.312264808, "23I": 1410681.4841054436, "4E": 2151023.612566881, "4I": 537780.4413987652, "5E": 1614053.3029574256, "5I": 354426.13765972335, "6E": 1938391.8172152215, "6I": 396969.71706498606, "total": 13404547.825233255}, "STPa": {"23E": 3280648.3045655773, "23I": 925363.9321585639, "4E": 1030581.0984660854, "4I": 257657.03118848646, "5E": 1119195.8332839224, "5I": 245761.55926750044, "6E": 1344094.424343897, "6I": 275261.5743637242, "total": 8478563.757637756}, "MSTl": {"23E": 1294223.7740036394, "23I": 365058.33281135384, "4E": 657393.9554174577, "4I": 164355.98821502394, "5E": 430273.4985989926, "5I": 94482.73732122207, "6E": 516735.4927626279, "6I": 105823.9828179387, "total": 3628347.761948256}, "MT": {"23E": 3387941.185455547, "23I": 955627.755932295, "4E": 1576557.5125129828, "4I": 394157.3630416898, "5E": 792485.0871952683, "5I": 174019.92120885785, "6E": 885309.68110297, "6I": 181305.51857530785, "total": 8347404.025024918}, "46": {"23E": 6032896.419270735, "23I": 1701683.3974774193, "4E": 1971206.910649511, "4I": 492824.21462234406, "5E": 2194273.9158227458, "5I": 481835.4062579843, "6E": 2933147.6012706426, "6I": 600689.0676308342, "total": 16408556.933002219}, "AITv": {"23E": 4583767.781081143, "23I": 1292931.4526339208, "4E": 1682360.9325874117, "4I": 420609.4250352009, "5E": 1581413.8954186402, "5I": 347258.92755069106, "6E": 1899193.6318913486, "6I": 388942.19012266054, "total": 12196478.236321017}, "VIP": {"23E": 4821635.686107228, "23I": 1360026.2337547531, "4E": 2235064.080697643, "4I": 558791.51714088, "5E": 859117.3541222662, "5I": 188651.54270932236, "6E": 668974.5483609311, "6I": 137001.52612490626, "total": 10829262.48901793}, "PITd": {"23E": 6587774.377258495, "23I": 1858196.3794868276, "4E": 5468076.807458739, "4I": 1367081.580107982, "5E": 2301158.866053231, "5I": 505306.0190405548, "6E": 2763568.903143899, "6I": 565960.4811718109, "total": 21417123.41372154}, "VOT": {"23E": 3176820.440084732, "23I": 896077.4765485821, "4E": 2636869.0205685482, "4I": 659247.335783485, "5E": 1109687.1421091869, "5I": 243673.56831882143, "6E": 1332674.9940612898, "6I": 272922.9511978245, "total": 10327972.928672472}, "V1": {"23E": 70351649.31455898, "23I": 19843906.691540737, "4E": 104498963.79693717, "4I": 26125933.043277144, "5E": 30792502.779850837, "5I": 6761652.672276523, "6E": 29454725.608150266, "6I": 6032131.371505871, "total": 293861465.2780975}, "V2": {"23E": 60291657.94579554, "23I": 17006311.09876571, "4E": 43780517.995760456, "4I": 10945628.934463676, "5E": 22768869.615967955, "5I": 4999762.090929045, "6E": 22970833.698674805, "6I": 4704273.549405582, "total": 187467854.92976275}, "V3": {"23E": 7050338.08337958, "23I": 1988670.5206419022, "4E": 5718439.590182145, "4I": 1429675.1318552576, "5E": 1453678.9582375523, "5I": 319209.91557175113, "6E": 1751820.7797907297, "6I": 358761.21283939376, "total": 20070594.19249831}, "V4": {"23E": 36181631.72328601, "23I": 10205658.72811732, "4E": 19007157.695427947, "4I": 4752006.252030559, "5E": 7854280.51218247, "5I": 1724702.8341184186, "6E": 7950727.398374058, "6I": 1628255.9479268312, "total": 89304421.09146364}, "TH": {"23E": 1102237.244142804, "23I": 310905.1918159415, "4E": 0.0, "4I": 0.0, "5E": 1041658.381430335, "5I": 228735.29406666115, "6E": 484476.77823009423, "6I": 99217.61321447158, "total": 3267230.502900307}, "PIP": {"23E": 4707159.180232314, "23I": 1327736.1435708222, "4E": 2390976.007726943, "4I": 597771.2774965055, "5E": 1564927.093461991, "5I": 343638.62980144745, "6E": 1879393.8632305118, "6I": 384887.3295452276, "total": 13196489.525065761}, "FST": {"23E": 2228633.7959837206, "23I": 628624.9367001414, "4E": 766864.0534953041, "4I": 191724.76153779466, "5E": 774255.1693285241, "5I": 170016.85677007798, "6E": 929839.1087289786, "6I": 190424.84838715038, "total": 5880383.530931692}, "MDP": {"23E": 3435994.282487219, "23I": 969181.9679945091, "4E": 1745294.6835990446, "4I": 436343.58071819134, "5E": 1142319.6751505157, "5I": 250839.26887325756, "6E": 1371864.9234808546, "6I": 280948.7873860063, "total": 9632787.169689598}, "PO": {"23E": 3342251.0816976735, "23I": 942740.0672351314, "4E": 1697678.3325487978, "4I": 424438.9497620289, "5E": 1111154.11028934, "5I": 243995.69638312308, "6E": 1334436.7445012, "6I": 273283.7459388356, "total": 9369978.72835613}, "AITd": {"23E": 4508601.451957001, "23I": 1271729.4817346197, "4E": 1654772.952217552, "4I": 413712.1152270119, "5E": 1555481.2821141132, "5I": 341564.44648485165, "6E": 1868049.9482618198, "6I": 382564.1714120074, "total": 11996475.849408979}}, "total_thicknesses": {"V1": 1240.0, "V2": 1460.0, "VP": 1585.342273262686, "V3": 1585.342273262686, "PIP": 2070.561486887418, "V3A": 1660.0, "MT": 1960.0, "V4t": 1880.0673770928606, "V4": 1890.0, "PO": 2070.561486887418, "VOT": 1904.2178479221384, "DP": 2060.0, "MIP": 2070.561486887418, "MDP": 2070.561486887418, "MSTd": 2070.561486887418, "VIP": 2070.561486887418, "LIP": 2300.0, "PITv": 1904.2178479221384, "PITd": 1904.2178479221384, "AITv": 2630.0, "MSTl": 2070.561486887418, "FST": 2247.328674211474, "CITv": 2227.7479202457143, "CITd": 2227.7479202457143, "7a": 2680.0, "STPp": 2247.328674211474, "STPa": 2247.328674211474, "FEF": 2210.0, "46": 1860.0, "TF": 1620.0, "TH": 1870.0, "AITd": 2630.0}, "laminar_thicknesses": {"V1": {"1": 0.08967005445322952, "23": 0.3653998098401042, "4": 0.4614890241689768, "5": 0.16629777405727372, "6": 0.1571433374804157}, "V2": {"1": 0.1206349760574621, "23": 0.6040487829209896, "4": 0.23883030726256985, "5": 0.24866171189146055, "6": 0.24782422186751799}, "VP": {"1": 0.17714878802273043, "23": 0.6333760829470785, "4": 0.3209011312779164, "5": 0.20761102756029734, "6": 0.24630524345466334}, "V3": {"1": 0.23320824408280585, "23": 0.6991547059583443, "4": 0.30876967047500165, "5": 0.1571391892973308, "6": 0.18707046344920336}, "PIP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "V3A": {"1": 0.19886503693743082, "23": 0.7110201516839858, "4": 0.24055402347012478, "5": 0.2330615700238317, "6": 0.27649921788462695}, "MT": {"1": 0.203395600676819, "23": 0.9454429780033843, "4": 0.2615654822335026, "5": 0.2612670050761422, "6": 0.28832893401015236}, "V4t": {"1": 0.2230803724680116, "23": 0.7975994308131237, "4": 0.2877787474825529, "5": 0.26144093828446113, "6": 0.3101678880447115}, "V4": {"1": 0.1771875, "23": 1.0040625, "4": 0.23625000000000002, "5": 0.23625000000000002, "6": 0.23625000000000002}, "PO": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VOT": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "DP": {"1": 0.25583852489499187, "23": 0.9147226157943377, "4": 0.23389235234048408, "5": 0.29983213340496956, "6": 0.3557143735652168}, "MIP": {"1": 0.19533598932900173, "23": 0.8516649134744475, "4": 0.17189567060952152, "5": 0.15626879146320138, "6": 0.6953961220112461}, "MDP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "MSTd": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VIP": {"1": 0.25289300603205106, "23": 1.1696301528982362, "4": 0.2845046317860575, "5": 0.2054755674010415, "6": 0.15805812877003192}, "LIP": {"1": 0.2523199861163701, "23": 1.0042360848163574, "4": 0.239843388447137, "5": 0.23718840716900164, "6": 0.5664121334511337}, "PITv": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "PITd": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "AITv": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}, "MSTl": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "FST": {"1": 0.5126175393099899, "23": 0.9007008741548409, "4": 0.17666480168310383, "5": 0.30065493337157506, "6": 0.35669052569196447}, "CITv": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "CITd": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "7a": {"1": 0.34637158771533116, "23": 1.2384136630003206, "4": 0.20769132202217178, "5": 0.4059331257408577, "6": 0.4815903015213188}, "STPp": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "STPa": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "FEF": {"1": 0.21710327455919398, "23": 0.9240806045340052, "4": 0.3451385390428212, "5": 0.37297229219143585, "6": 0.3507052896725441}, "46": {"1": 0.2195874325610917, "23": 0.8222722945096794, "4": 0.17708663916217074, "5": 0.2762551570929863, "6": 0.36479847667407167}, "TF": {"1": 0.2334764331779098, "23": 0.6571929230193017, "4": 0.20753460726925316, "5": 0.23865769578911442, "6": 0.28313834074442085}, "TH": {"1": 0.27703703703703697, "23": 0.6464197530864197, "4": 0.11543209876543209, "5": 0.5694650205761316, "6": 0.2616460905349794}, "AITd": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}}, "category_density": {"1": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "2": {"overall": 49446.0, "23": 49012.54441576494, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "3": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "4": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "5": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "6": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "7": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "8": {"overall": 173360.0, "23": 166264.25225183976, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}}} \ No newline at end of file +{"cocomac_completed": {"V1": {"7a": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", "0", "3"], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "LIP": {"source_pattern": ["0", "0", "0", "0", "0", "2"], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", "0", "1"], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": [2.0, "0", "0", "0", "0", "0"]}, "TH": {"source_pattern": ["0", "0", "0", "0", "0", 2], "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", "3", "3"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": ["3", 2.0, 2.0, "0", 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", "3", "3"], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "V2": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", "2", "2", 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "FEF": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, 2, 2, 2, "0"], "target_pattern": ["3", "3", 2.0, 2.0, "3", "3"]}, "LIP": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PITd": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STPa": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["3", "0", "0", "0", "1", "1"]}, "TH": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "V1": {"source_pattern": [2, 2, "0", "0", "0", "0"], "target_pattern": ["0", 2.0, 2.0, "3", "3", "3"]}, "V2": {"source_pattern": [2, 2, "3", "3", "0", "0"], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V3": {"source_pattern": ["0", "0", 2, "0", "0", 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V3A": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["3", "3", 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VIP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "VP": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4v": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"target_pattern": null, "source_pattern": null}}, "V3": {"7a": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}}, "PIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MT": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"target_pattern": null, "source_pattern": null}}, "V3A": {"7a": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "V1": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V3A": {"target_pattern": null, "source_pattern": null}}, "MT": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "V4t": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "V4t": {"target_pattern": null, "source_pattern": null}}, "V4": {"7a": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "AIT": {"source_pattern": null, "target_pattern": null}, "AITv": {"source_pattern": null, "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FEF": {"source_pattern": null, "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PITv": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "PO": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VOT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MDP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}}, "PO": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}}, "VOT": {"V2": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VOT": {"target_pattern": null, "source_pattern": null}}, "DP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "PIP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "1", 2.0, 2.0]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}}, "MIP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}}, "MDP": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "MDP": {"target_pattern": null, "source_pattern": null}}, "MSTd": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}}, "VIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "LIP": {"4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "46": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, 2.0]}, "DP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "IT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": null, "target_pattern": null}, "MDP": {"source_pattern": null, "target_pattern": null}, "MIP": {"source_pattern": null, "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIP": {"source_pattern": null, "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": null}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V2d": {"source_pattern": null, "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "VIP": {"source_pattern": null, "target_pattern": null}, "VP": {"source_pattern": null, "target_pattern": null}}, "PITv": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", "0", 2, 2, -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}}, "PITd": {"7a": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "IT": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "STP": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "STPp": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V2": {"source_pattern": ["3", "3", 2, 2, "0", -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2d": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V2v": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "V4": {"source_pattern": ["0", "3", "3", "0", "1", "1"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4d": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4t": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "V4v": {"source_pattern": ["3", "3", "0", "1", "1", -1], "target_pattern": null}, "VOT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}}, "AITv": {"CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, -1]}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}}, "MSTl": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PO": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V1": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}}, "FST": {"5": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, "0", "0", "0", "0", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "IT": {"source_pattern": null, "target_pattern": null}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "STPp": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FST": {"target_pattern": null, "source_pattern": null}}, "CITv": {"35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "AIT": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITd": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "AITv": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": null, "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "7a": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "46": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "STPp": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}}, "CITd": {"V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CITd": {"target_pattern": null, "source_pattern": null}}, "7a": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "6": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "AIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "AITd": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "DP": {"source_pattern": ["0", "3", "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MDP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "MST": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTd": {"source_pattern": [2, 2, 2, "3", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MSTl": {"source_pattern": [2, "0", "0", 2, "0", 2], "target_pattern": null}, "MT": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "PIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PO": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "STPa": {"source_pattern": ["3", "3", "3", "3", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": [2, "3", "3", "3", "3", "3"], "target_pattern": [2.0, 2.0, -1, -1, -1, -1]}, "TF": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": [2, 2, 2, "3", "3", "3"], "target_pattern": null}, "V2v": {"source_pattern": null, "target_pattern": null}, "V3": {"source_pattern": null, "target_pattern": null}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "V4d": {"source_pattern": [2, 2, "0", 2, 2, -1], "target_pattern": null}, "V4t": {"source_pattern": [2, 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VP": {"source_pattern": [2, 2, "0", "0", "0", -1], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "STPp": {"5": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "7a": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "FST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": [2.0, "3", 2.0, 2.0, 2.0, 2.0]}, "MST": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": null, "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "STP": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPa": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "V2": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": null}, "V4t": {"source_pattern": null, "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "STPa": {"7a": {"source_pattern": [2, 2, -1, 0, -1, -1], "target_pattern": null}, "35": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "36": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "46": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "TF": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", "0", "0", 2, 2], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "VIP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "LIP": {"target_pattern": null, "source_pattern": null}, "MT": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "V4": {"target_pattern": null, "source_pattern": null}, "CITv": {"target_pattern": null, "source_pattern": null}, "V2": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}, "FEF": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "FEF": {"1": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "3a": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "4": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "5": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "7a": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": null, "target_pattern": null}, "35": {"source_pattern": null, "target_pattern": null}, "36": {"source_pattern": null, "target_pattern": null}, "46": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "FST": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": null, "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MST": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTd": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MSTl": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "PO": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "Ri": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "SEF": {"source_pattern": null, "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "V2": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V3": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V3A": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "V4t": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "VIP": {"source_pattern": [2, "3", "1", "2", "2", "0"], "target_pattern": null}, "VP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "TF": {"target_pattern": null, "source_pattern": null}, "STPa": {"target_pattern": null, "source_pattern": null}, "TH": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "DP": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "46": {"1": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "2": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "4": {"source_pattern": null, "target_pattern": null}, "5": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "6": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", 2.0, "3", 2.0]}, "7a": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "7b": {"source_pattern": ["0", "0", "3", "0", "3", "0"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "35": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "AITd": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "CIT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "CITv": {"source_pattern": ["0", "0", 2, "0", 2, 2], "target_pattern": null}, "DP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "FEF": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "IT": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, "0", 2.0, 2.0]}, "Ig": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "LIP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "MT": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "Ri": {"source_pattern": null, "target_pattern": null}, "SEF": {"source_pattern": [2, 2, "3", 2, 2, 2], "target_pattern": ["3", 2.0, "3", "3", 2.0, -1]}, "SII": {"source_pattern": [2, "3", "3", 2, 2, 2], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "STPa": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "STPp": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "TF": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "0", 2, 2, -1, -1], "target_pattern": null}, "V2": {"source_pattern": ["0", 2, "3", "0", 2, 2], "target_pattern": null}, "V4": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "VIP": {"source_pattern": ["0", "0", "3", "0", 2, 2], "target_pattern": null}, "PITv": {"target_pattern": null, "source_pattern": null}, "MDP": {"target_pattern": null, "source_pattern": null}, "V4t": {"target_pattern": null, "source_pattern": null}, "V1": {"target_pattern": null, "source_pattern": null}, "V3A": {"target_pattern": null, "source_pattern": null}, "VP": {"target_pattern": null, "source_pattern": null}, "MSTd": {"target_pattern": null, "source_pattern": null}, "MIP": {"target_pattern": null, "source_pattern": null}, "PO": {"target_pattern": null, "source_pattern": null}, "AITv": {"target_pattern": null, "source_pattern": null}, "PIP": {"target_pattern": null, "source_pattern": null}, "FST": {"target_pattern": null, "source_pattern": null}, "MSTl": {"target_pattern": null, "source_pattern": null}, "V3": {"target_pattern": null, "source_pattern": null}, "VOT": {"target_pattern": null, "source_pattern": null}, "PITd": {"target_pattern": null, "source_pattern": null}, "CITd": {"target_pattern": null, "source_pattern": null}}, "TF": {"5": {"source_pattern": null, "target_pattern": null}, "6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "36": {"source_pattern": [2, 2, "0", 2, 2, "0"], "target_pattern": null}, "46": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, -1]}, "AIT": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "AITv": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "CIT": {"source_pattern": null, "target_pattern": null}, "CITv": {"source_pattern": null, "target_pattern": null}, "FEF": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "FST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "IT": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "LIP": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "MST": {"source_pattern": null, "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "MT": {"source_pattern": [2, 2, 2, 2, "0", -1], "target_pattern": null}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "STPa": {"source_pattern": ["3", "3", "0", 2, 2, "0"], "target_pattern": null}, "STPp": {"source_pattern": ["3", "3", "3", "3", 2, "0"], "target_pattern": null}, "TF": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": null}, "TH": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": [2, 2, 2, 2, "0", "0"], "target_pattern": [2.0, 2.0, 2.0, "3", 2.0, 2.0]}, "V3": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "V3A": {"source_pattern": null, "target_pattern": null}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "VP": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "TH": {"6": {"source_pattern": ["0", "0", 2, "0", "3", "3"], "target_pattern": null}, "7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "35": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "36": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": null}, "46": {"source_pattern": [2, "0", "0", "0", "3", "3"], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "AIT": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "AITv": {"source_pattern": null, "target_pattern": [2.0, -1, -1, -1, -1, -1]}, "FEF": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "IT": {"source_pattern": [2, "0", "1", "0", 2, 2], "target_pattern": [2.0, "3", "3", "3", 2.0, 2.0]}, "Id": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "Ig": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "SII": {"source_pattern": [2, 2, 2, 2, 2, -1], "target_pattern": null}, "STP": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": null}, "STPa": {"source_pattern": null, "target_pattern": null}, "STPp": {"source_pattern": null, "target_pattern": null}, "TF": {"source_pattern": [2, 2, 2, 2, 2, 2], "target_pattern": ["3", "3", "3", 2.0, 2.0, 2.0]}, "TH": {"source_pattern": [2, -1, -1, 0, -1, -1], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V2": {"source_pattern": ["0", "1", 2, "0", 2, 2], "target_pattern": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0]}, "V4": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}}, "AITd": {"7a": {"source_pattern": null, "target_pattern": ["0", "0", "0", 2.0, "0", "0"]}, "46": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "CIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "CITv": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "FEF": {"source_pattern": ["0", 2, 2, "0", "0", "0"], "target_pattern": null}, "IT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PIT": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "PITd": {"source_pattern": ["0", 2, 2, "0", -1, -1], "target_pattern": null}, "STP": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "STPa": {"source_pattern": ["0", 2, 2, "0", 2, 2], "target_pattern": null}, "TF": {"source_pattern": null, "target_pattern": null}, "TH": {"source_pattern": null, "target_pattern": null}, "AITd": {"target_pattern": null, "source_pattern": null}}}, "architecture_completed": {"FEF": 5, "7a": 4, "STPp": 4, "CITv": 5, "PITv": 5, "VP": 7, "V3A": 6, "TF": 5, "LIP": 5, "V4t": 6, "MIP": 5, "CITd": 5, "MSTd": 5, "DP": 5, "STPa": 4, "MSTl": 5, "MT": 6, "46": 4, "AITv": 4, "VIP": 5, "PITd": 5, "VOT": 6, "V1": 8, "V2": 7, "V3": 7, "V4": 6, "TH": 2, "PIP": 5, "FST": 4, "MDP": 5, "PO": 5, "AITd": 4}, "hierarchy_completed": {"7a": 0.6622, "PITv": 0.6048, "V3A": 0.3345, "LIP": 0.5677, "MIP": 0.5, "PITd": 0.6115, "DP": 0.4864, "STPa": 0.7162, "MSTl": 0.6216, "V1": 0.0, "46": 0.8649, "STPp": 0.6757, "V2": 0.1115, "V3": 0.1993, "V4": 0.4054, "TH": 0.9222, "TF": 0.8615, "MDP": 0.5, "PO": 0.4189, "FEF": 0.8177, "CITv": 0.625, "VP": 0.1993, "PIP": 0.2972, "V4t": 0.4054, "CITd": 0.6284, "AITv": 0.6149, "VOT": 0.4628, "MT": 0.4054, "VIP": 0.5677, "MSTd": 0.5473, "FST": 0.6216, "AITd": 1.0}, "SLN_completed": {"V1": {"7a": 0.13194421498048362, "LIP": 0.001953125, "MT": 0.17512874899425246, "PIP": 0.00676816232675885, "PO": 0.404565065, "STPp": 0.03868900250000001, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "V2": 0.4007722176652155, "V3": 0.38394614661004506, "V3A": 0.006840776179282866, "V4": 0.22741361375468427, "V4t": 0.181545865, "VIP": 0.001953125, "PITv": 0.06536264773862561, "VP": 0.2411506010095163, "MSTd": 0.10606161761701319, "AITv": 0.01173693, "46": 0.023962599915093682, "FST": 0.017777577500000002, "MSTl": 0.015780545587622773, "CITv": 0.01173693, "STPa": 0.025645547576816728, "VOT": 0.13606147826236337, "AITd": 0.01173693, "FEF": 0.12220022250000001, "DP": 0.06666331317758761, "PITd": 0.11926319973629251, "CITd": 0.017777577500000002}, "V2": {"7a": 0.2473485547389337, "46": 0.09611216182822098, "CITv": 0.03237627, "DP": 0.11861750167939675, "FEF": 0.20729421976778806, "FST": 0.07046779333333333, "LIP": 0.04916585999999999, "MIP": 0.1647674456125005, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "PIP": 0.21467556119098472, "PITd": 0.22234497210587106, "PO": 0.1647674456125005, "STPa": 0.1011489004860832, "STPp": 0.0, "TF": 0.25254592441901647, "TH": 0.010029086666666668, "V1": 0.7359601200000001, "V3": 0.31951689276600775, "V3A": 0.2159478233405306, "V4": 0.2541399406855286, "V4t": 0.26864967000000006, "VIP": 0.04916586000000001, "VOT": 0.22762425945260104, "VP": 0.25842434280049886, "PITv": 0.07596815828333246, "MDP": 0.1647674456125005, "AITv": 0.03237627, "AITd": 0.03237627, "CITd": 0.07046779333333335}, "VP": {"7a": 0.09442586553850892, "DP": 0.15571353140142427, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "VIP": 0.1647674456125005, "VOT": 0.24423035492494716}, "V3": {"7a": 0.09442586553850892, "FST": 0.1011489004860832, "LIP": 0.18807267059796445, "MSTd": 0.1647674456125005, "MT": 0.2603679458405936, "PIP": 0.1647674456125005, "TF": 0.1451231907954106, "V1": 0.6993004977911257, "V2": 0.4397456164544487, "V3A": 0.23303749052194725, "V4": 0.2914236057357094, "V4t": 0.2572732264020294, "VIP": 0.1647674456125005, "VP": 0.4397456164544487}, "PIP": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V4": 0.6080369758634977, "VP": 0.749151726197644}, "V3A": {"7a": 0.2306470411405071, "DP": 0.3317934753804855, "FST": 0.24266165394773911, "LIP": 0.3791343871826437, "MIP": 0.345394264212165, "MSTd": 0.345394264212165, "MSTl": 0.345394264212165, "MT": 0.4741086898197289, "V1": 0.8642589131334557, "V2": 0.664819185499987, "V3": 0.664819185499987, "V4": 0.511183022022283, "VIP": 0.345394264212165, "VP": 0.664819185499987}, "MT": {"7a": 0.20514417151891692, "46": 0.2079858130256918, "CITv": 0.2262644296613191, "DP": 0.3009622802995952, "FEF": 0.2762308513985713, "FST": 0.2163924357522115, "LIP": 0.34663413513815555, "MIP": 0.31403189331661385, "MSTd": 0.31403189331661385, "MSTl": 0.31403189331661385, "PIP": 0.31403189331661385, "PO": 0.31403189331661385, "STPp": 0.2163924357522115, "V1": 0.8444668131657768, "V2": 0.6326887550282241, "V3": 0.6326887550282241, "V3A": 0.4058308482690615, "V4": 0.47662208079615176, "V4t": 0.4359767813039983, "VIP": 0.31403189331661385, "VP": 0.6326887550282241}, "V4t": {"7a": 0.2078731885766554, "46": 0.2107370269407612, "FST": 0.21920773435266425, "MSTd": 0.31743250009665086, "MT": 0.44351992011019076, "V2": 0.6362850677254202, "V3": 0.6362850677254202, "V4": 0.4804317628197222}, "V4": {"7a": 0.4232641237436804, "46": 0.1823592393657686, "AITv": 0.29966645, "CITd": 0.23457694666666673, "CITv": 0.2996664499999999, "DP": 0.2538615627727568, "FEF": 0.6525620966666666, "FST": 0.2345769466666667, "LIP": 0.24640913666666664, "MT": 0.4203839134858612, "PIP": 0.6991783852090286, "PITd": 0.29129667122990904, "PITv": 0.29280809982084094, "PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "V1": 0.8605949687186175, "V2": 0.8946774848445085, "V3": 0.8106335742703666, "V3A": 0.6995602901668315, "V4t": 0.44856999000000003, "VIP": 0.24640913666666667, "VOT": 0.29207236355152044, "VP": 0.39992316913597753, "MDP": 0.28182290248104663, "MSTd": 0.4352943409457222, "MIP": 0.28182290248104663, "MSTl": 0.233633950099824, "STPp": 0.0, "STPa": 0.1901303816478059, "AITd": 0.2996664499999999}, "PO": {"7a": 0.31187356990740184, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487, "VP": 0.749151726197644}, "VOT": {"V2": 0.6515582171973071, "VP": 0.6515582171973071}, "DP": {"7a": 0.3569152409933993, "46": 0.32873489289592567, "FEF": 0.5164609, "LIP": 0.36808971, "MSTd": 0.359307158192874, "PIP": 0.7224508243801265, "PO": 0.91499421, "STPp": 0.0, "V2": 0.8284911256892572, "V3A": 0.7225151175175789, "V4": 0.502791527151495, "VP": 0.5036956237929567, "PITv": 0.16385097434860155, "MDP": 0.4544472048222968, "V4t": 0.4812295, "V1": 0.91499421, "MIP": 0.4544472048222968, "AITv": 0.16666665999999997, "VIP": 0.36808971, "FST": 0.26638557999999996, "MT": 0.4764831936322133, "MSTl": 0.2919336871009218, "TF": 0.4477395966573806, "V3": 0.887729957296875, "CITv": 0.16666665999999997, "STPa": 0.33928533532425265, "TH": 0.47371497212186886, "VOT": 0.4978915580368853, "AITd": 0.16666665999999994, "PITd": 0.4306777609068619, "CITd": 0.26638558}, "MIP": {"7a": 0.31187356990740184, "LIP": 0.4754470637035422, "PO": 0.4397456164544487, "V2": 0.749151726197644, "V3A": 0.5376665672762394}, "MDP": {}, "MSTd": {"7a": 0.44486240562524343, "46": 0.3154038868555226, "DP": 0.8352353799814716, "FEF": 0.6273571799011722, "FST": 0.28586558000000006, "LIP": 0.52910535, "MT": 0.285560720530831, "PO": 0.94168235, "STPp": 0.05016722, "TF": 0.6059730506644079, "V2": 0.8875577521323456, "V3": 0.9072129777530921, "V3A": 0.8681135828616146, "VIP": 0.52910535, "VP": 0.6210356415152859, "PITv": 0.2981900252191592, "MDP": 0.4397456164544487, "V1": 0.9097885214665646, "MIP": 0.4397456164544487, "AITv": 0.2078664, "PIP": 0.8680375753748741, "MSTl": 0.2812370526681836, "V4": 0.6120145117230196, "CITv": 0.20786640000000003, "STPa": 0.3257802492365629, "TH": 0.6589031753555138, "VOT": 0.48008040500394433, "AITd": 0.20786640000000003, "PITd": 0.31125558595064046, "CITd": 0.28586558}, "VIP": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MDP": 0.4397456164544487, "MIP": 0.4397456164544487, "MSTd": 0.4397456164544487, "MSTl": 0.4397456164544487, "MT": 0.5719047029350985, "PIP": 0.4397456164544487, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V2": 0.749151726197644, "V3": 0.749151726197644, "V3A": 0.5376665672762394, "V4": 0.6080369758634977, "V4t": 0.5681484209786033, "VP": 0.749151726197644}, "LIP": {"7a": 0.28076284141826424, "46": 0.2841284860076212, "DP": 0.390189400203489, "FEF": 0.362694437412613, "FST": 0.29403822928836465, "MDP": 0.40452785345081144, "MIP": 0.40452785345081144, "MSTd": 0.40452785345081144, "MT": 0.5363312838211267, "PIP": 0.40452785345081144, "PO": 0.40452785345081144, "STPp": 0.29403822928836465, "V2": 0.7196467830007919, "V3": 0.7196467830007919, "V3A": 0.5018058412911562, "V4": 0.573062361443146, "V4t": 0.5325302918019821, "VIP": 0.40452785345081144, "VP": 0.7196467830007919}, "PITv": {"7a": 0.21980894609736484, "AITd": 0.24175822798053087, "AITv": 0.24175822798053087, "CITd": 0.24175822798053087, "CITv": 0.24175822798053087, "FST": 0.23150869224939957, "LIP": 0.365469778336114, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "TF": 0.3027748504611968, "TH": 0.19454931004337409, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "PITd": {"7a": 0.21980894609736484, "FST": 0.23150869224939957, "MT": 0.4597488319767691, "STPp": 0.23150869224939957, "V2": 0.6515582171973071, "V4": 0.49677433132557947, "V4t": 0.4559549345314889, "VOT": 0.4397456164544487, "VP": 0.6515582171973071}, "AITv": {"CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "TH": 0.3774407149467103, "V4": 0.7057317983155025}, "MSTl": {"7a": 0.31187356990740184, "46": 0.3154038868555226, "DP": 0.425126660792947, "FEF": 0.3969553786481969, "FST": 0.3257802492365629, "LIP": 0.4754470637035422, "MT": 0.5719047029350985, "PO": 0.4397456164544487, "STPp": 0.3257802492365629, "V1": 0.9108207897240361, "V2": 0.749151726197644, "V3A": 0.5376665672762394, "V4t": 0.5681484209786033, "VIP": 0.4397456164544487}, "FST": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "DP": 0.5442655594117083, "FEF": 0.5154533480763229, "LIP": 0.594213477151346, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "V2": 0.8344259484773664, "V3": 0.8344259484773664, "V3A": 0.6534080536187905, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "VIP": 0.5589734213408636, "VP": 0.8344259484773664}, "CITv": {"AITd": 0.4397456164544487, "AITv": 0.4397456164544487, "MT": 0.6729152169546991, "PITd": 0.6544746643053295, "PITv": 0.6544746643053295, "TF": 0.5130062065154856, "V2": 0.826025395583821, "V4": 0.7057317983155025, "V4t": 0.669456888813816, "V1": 0.9465819449520904, "V3A": 0.6410656305130789, "VP": 0.826025395583821, "MSTd": 0.5458319856708994, "PO": 0.5458319856708994, "7a": 0.4114584896417437, "VIP": 0.5458319856708994, "46": 0.4153365490462339, "PIP": 0.5458319856708994, "FST": 0.4266758765307271, "LIP": 0.5812795053424596, "MSTl": 0.5458319856708994, "V3": 0.826025395583821, "STPp": 0.4266758765307271, "STPa": 0.4266758765307271, "TH": 0.3774407149467103, "VOT": 0.6544746643053295, "FEF": 0.5022006131674926, "DP": 0.531068720161679, "CITd": 0.4397456164544487}, "CITd": {"V4": 0.7057317983155025}, "7a": {"46": 0.443675163086642, "AITd": 0.46834387056913884, "CITv": 0.46834387056913884, "DP": 0.5596718210193434, "FEF": 0.5309653576659095, "FST": 0.45514888874900034, "LIP": 0.6092437172723907, "MDP": 0.5742944358234963, "MIP": 0.5742944358234963, "MSTd": 0.5742944358234963, "MSTl": 0.5742944358234963, "MT": 0.6985232422376585, "PIP": 0.5742944358234963, "PO": 0.5742944358234963, "STPa": 0.45514888874900034, "STPp": 0.45514888874900034, "TF": 0.5417280230142912, "TH": 0.40515398450884493, "V2": 0.8439331894156354, "V3": 0.8439331894156354, "V3A": 0.6676703062854825, "V4": 0.7301077109056936, "V4t": 0.6951825087343344, "VIP": 0.5742944358234963, "VP": 0.8439331894156354, "PITv": 0.6806832403963549, "V1": 0.9539824713073445, "AITv": 0.46834387056913884, "VOT": 0.6806832403963549, "PITd": 0.6806832403963549, "CITd": 0.46834387056913884}, "STPp": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "CITv": 0.45288136231295556, "FEF": 0.5154533480763229, "FST": 0.4397456164544487, "MSTd": 0.5589734213408636, "MSTl": 0.5589734213408636, "MT": 0.6848151869041003, "STPa": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "V2": 0.8344259484773664, "V4": 0.7170795468774352, "V4t": 0.6814092972055, "PITv": 0.6666418222423477, "MDP": 0.5589734213408636, "V1": 0.9500983377771388, "V3A": 0.6534080536187905, "VP": 0.8344259484773664, "MIP": 0.5589734213408636, "PO": 0.5589734213408636, "AITv": 0.45288136231295556, "VIP": 0.5589734213408636, "PIP": 0.5589734213408636, "LIP": 0.594213477151346, "V3": 0.8344259484773664, "AITd": 0.45288136231295556, "VOT": 0.6666418222423477, "DP": 0.5442655594117083, "PITd": 0.6666418222423477, "CITd": 0.45288136231295556}, "STPa": {"7a": 0.42443302964932406, "46": 0.4283372333963633, "STPp": 0.4397456164544487, "TF": 0.5262461396949784, "TH": 0.3901300859940757, "PITv": 0.6666418222423477, "V4t": 0.6814092972055, "V1": 0.9500983377771388, "VP": 0.8344259484773664, "MSTd": 0.5589734213408636, "PO": 0.5589734213408636, "AITv": 0.45288136231295556, "VIP": 0.5589734213408636, "FST": 0.4397456164544487, "LIP": 0.594213477151346, "MT": 0.6848151869041003, "MSTl": 0.5589734213408636, "V3": 0.8344259484773664, "V4": 0.7170795468774352, "CITv": 0.45288136231295556, "V2": 0.8344259484773664, "VOT": 0.6666418222423477, "AITd": 0.45288136231295556, "FEF": 0.5154533480763229, "DP": 0.5442655594117083, "PITd": 0.6666418222423477, "CITd": 0.45288136231295556}, "FEF": {"7a": 0.3516293974131231, "46": 0.35533041409939803, "AITd": 0.3787579272123091, "CITv": 0.3787579272123091, "FST": 0.3661852703855369, "LIP": 0.5191568217929547, "MSTd": 0.48325225451521486, "MSTl": 0.48325225451521486, "MT": 0.6144158201881944, "PO": 0.48325225451521486, "STPp": 0.3661852703855369, "V2": 0.7827293680977521, "V3": 0.7827293680977521, "V3A": 0.5808929113039869, "V4": 0.6494469737044479, "V4t": 0.6107535641856292, "VIP": 0.48325225451521486, "VP": 0.7827293680977521, "PITv": 0.5949508734340588, "MDP": 0.48325225451521486, "V1": 0.9272273846670287, "MIP": 0.48325225451521486, "AITv": 0.3787579272123091, "PIP": 0.48325225451521486, "TF": 0.45045065681875274, "STPa": 0.3661852703855369, "TH": 0.319413423745837, "VOT": 0.5949508734340588, "DP": 0.4684472210714786, "PITd": 0.5949508734340588, "CITd": 0.3787579272123091}, "46": {"7a": 0.4358219970859884, "AITd": 0.46438597533050835, "CITv": 0.46438597533050835, "DP": 0.5557414275321807, "FEF": 0.5270038247288525, "LIP": 0.6054163293692177, "MT": 0.6950448469649315, "STPa": 0.45120425795166497, "STPp": 0.45120425795166497, "TF": 0.5377757373505233, "TH": 0.4012994082965777, "V2": 0.8415379443445309, "V4": 0.7268063099411157, "VIP": 0.5703878991437041, "PITv": 0.6771176328311563, "MDP": 0.5703878991437041, "V4t": 0.6916870936512598, "V1": 0.953013524197034, "V3A": 0.6640467174085998, "VP": 0.8415379443445309, "MSTd": 0.5703878991437041, "MIP": 0.5703878991437041, "PO": 0.5703878991437041, "AITv": 0.46438597533050835, "PIP": 0.5703878991437041, "FST": 0.45120425795166497, "MSTl": 0.5703878991437041, "V3": 0.8415379443445309, "VOT": 0.6771176328311563, "PITd": 0.6771176328311563, "CITd": 0.46438597533050835}, "TF": {"7a": 0.3416307811243306, "46": 0.3452929507529249, "AITv": 0.3684973073841186, "CITv": 0.3684973073841186, "FEF": 0.42908445348136853, "FST": 0.35603954622911427, "LIP": 0.5083556917571386, "MT": 0.6040158814464341, "STPa": 0.35603954622911427, "STPp": 0.35603954622911427, "TH": 0.3097951619855184, "V2": 0.7746813206878705, "V3": 0.7746813206878705, "V3A": 0.5702799471915022, "V4": 0.6393554551781233, "VP": 0.7746813206878705}, "TH": {"7a": 0.47480376159200716, "46": 0.47876905627078103, "AITv": 0.5035828308582835, "FEF": 0.5659653164601144, "STPa": 0.4903272366306628, "STPp": 0.4903272366306628, "TF": 0.5765998675976063, "V2": 0.86415297954125, "V4": 0.7585211182027408}, "AITd": {"7a": 0.4114584896417437, "46": 0.4153365490462339, "CITd": 0.4397456164544487, "CITv": 0.4397456164544487, "FEF": 0.5022006131674926, "PITd": 0.6544746643053295, "STPa": 0.4266758765307271, "TF": 0.5130062065154856, "TH": 0.3774407149467103}}, "SLN_Data_FV91": {"MSTd": {"V1": 0.9097885214665646, "V2": 0.8875577521323456, "PO": 0.94168235, "TF": 0.6059730506644079, "TH": 0.6589031753555138, "PIP": 0.8680375753748741, "V4": 0.6120145117230196, "V3": 0.9072129777530921, "MSTd": 0.16862906228337676, "V3A": 0.8681135828616146, "VP": 0.6210356415152859, "DP": 0.8352353799814716, "7a": 0.44486240562524343, "PITd": 0.31125558595064046, "VOT": 0.48008040500394433, "VIP": 0.52910535, "LIP": 0.52910535, "STPp": 0.05016722, "MSTl": 0.2812370526681836, "MT": 0.285560720530831, "FST": 0.28586558000000006, "CITd": 0.28586558, "PITv": 0.2981900252191592, "AITd": 0.20786640000000003, "CITv": 0.20786640000000003, "AITv": 0.2078664, "FEF": 0.6273571799011722}, "V4": {"PO": 0.9296867466666666, "TF": 0.41928092775890013, "TH": 0.6746721308204547, "PIP": 0.6991783852090286, "V4": 0.35531495687884207, "V1": 0.8605949687186175, "V3": 0.8106335742703666, "V2": 0.8946774848445085, "MSTd": 0.4352943409457222, "V3A": 0.6995602901668315, "VP": 0.39992316913597753, "DP": 0.2538615627727568, "7a": 0.4232641237436804, "PITd": 0.29129667122990904, "VOT": 0.29207236355152044, "VIP": 0.24640913666666667, "LIP": 0.24640913666666664, "STPp": 0.0, "MSTl": 0.233633950099824, "MT": 0.4203839134858612, "FST": 0.2345769466666667, "CITd": 0.23457694666666673, "V4t": 0.44856999000000003, "AITd": 0.2996664499999999, "CITv": 0.2996664499999999, "AITv": 0.29966645, "PITv": 0.29280809982084094, "FEF": 0.6525620966666666}, "V1": {"PO": 0.404565065, "TF": 0.2856816827665948, "TH": 0.38953751737398074, "PIP": 0.00676816232675885, "V4": 0.22741361375468427, "V1": 0.404565065, "V3": 0.38394614661004506, "V2": 0.4007722176652155, "MSTd": 0.10606161761701319, "V3A": 0.006840776179282866, "VP": 0.2411506010095163, "DP": 0.06666331317758761, "7a": 0.13194421498048362, "PITd": 0.11926319973629251, "VOT": 0.13606147826236337, "VIP": 0.001953125, "LIP": 0.001953125, "STPp": 0.03868900250000001, "MSTl": 0.015780545587622773, "MT": 0.17512874899425246, "FST": 0.017777577500000002, "CITd": 0.017777577500000002, "V4t": 0.181545865, "PITv": 0.06536264773862561, "AITd": 0.01173693, "CITv": 0.01173693, "AITv": 0.01173693, "FEF": 0.12220022250000001}, "V2": {"V1": 0.7359601200000001, "V2": 0.5864300202496507, "TF": 0.25254592441901647, "PIP": 0.21467556119098472, "V3A": 0.2159478233405306, "VP": 0.25842434280049886, "V4": 0.2541399406855286, "V3": 0.31951689276600775, "DP": 0.11861750167939675, "7a": 0.2473485547389337, "PITd": 0.22234497210587106, "VOT": 0.22762425945260104, "VIP": 0.04916586000000001, "LIP": 0.04916585999999999, "STPp": 0.0, "MSTd": 0.23701435042788077, "MSTl": 0.06238784920796942, "MT": 0.26510935220880993, "FST": 0.07046779333333333, "CITd": 0.07046779333333335, "V4t": 0.26864967000000006, "PITv": 0.07596815828333246, "AITd": 0.03237627, "CITv": 0.03237627, "AITv": 0.03237627, "TH": 0.010029086666666668, "FEF": 0.20729421976778806}, "DP": {"PO": 0.91499421, "TF": 0.4477395966573806, "TH": 0.47371497212186886, "PIP": 0.7224508243801265, "V4": 0.502791527151495, "V1": 0.91499421, "V3": 0.887729957296875, "V2": 0.8284911256892572, "MSTd": 0.359307158192874, "V3A": 0.7225151175175789, "VP": 0.5036956237929567, "DP": 0.46428641987840946, "7a": 0.3569152409933993, "PITd": 0.4306777609068619, "VOT": 0.4978915580368853, "VIP": 0.36808971, "LIP": 0.36808971, "STPp": 0.0, "MSTl": 0.2919336871009218, "MT": 0.4764831936322133, "FST": 0.26638557999999996, "CITd": 0.26638558, "V4t": 0.4812295, "PITv": 0.16385097434860155, "AITd": 0.16666665999999994, "CITv": 0.16666665999999997, "AITv": 0.16666665999999997, "FEF": 0.5164609}}, "FLN_Data_FV91": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05}, "VP": {}, "V3": {}, "PIP": {}, "V3A": {}, "MT": {}, "V4t": {}, "PO": {}, "VOT": {}, "MIP": {}, "MDP": {}, "VIP": {}, "LIP": {}, "PITv": {}, "PITd": {}, "AITv": {}, "MSTl": {}, "FST": {}, "CITd": {}, "TF": {}, "TH": {}, "AITd": {}}, "FLN_completed": {"V1": {"PO": 0.00732, "TF": 0.031515354, "TH": 0.0251198676, "PIP": 0.0011189715999999998, "V4": 0.10954549659999999, "V3": 0.023208176, "V2": 0.5977878200000001, "MSTd": 0.009428104000000001, "V3A": 0.0015919234, "VP": 0.025739616000000003, "DP": 0.0010145062, "7a": 0.0082967068, "PITd": 0.012291986738000001, "VOT": 0.011115732, "VIP": 0.0005227172, "LIP": 0.000407667, "STPa": 0.00062455239, "STPp": 0.0017661359199999996, "MSTl": 0.0018131874, "FST": 0.0024128178, "AITd": 0.0011806956020000002, "CITd": 0.0015557495139999996, "MT": 0.017819879999999993, "V4t": 0.010355839999999998, "PITv": 0.008508000268, "AITv": 0.0019543028, "CITv": 0.0031682135119999997, "FEF": 0.000192719624, "46": 6.56082e-07, "external": 0.0}, "V2": {"V1": 0.719374, "TF": 0.021752519333333328, "PIP": 0.0016004779333333335, "V3A": 0.0027763386666666665, "VP": 0.030574433333333335, "V4": 0.10780030110000002, "V3": 0.005494763999999998, "DP": 0.0006935116333333333, "7a": 0.003920323266666667, "PITd": 0.00645689953, "VOT": 0.005428937, "VIP": 0.00043936193333333335, "LIP": 0.0003024266666666667, "MDP": 7.533e-06, "PO": 9.915666666666666e-06, "MIP": 6.448e-06, "STPp": 0.0001565191266666667, "STPa": 6.775063e-05, "MSTd": 0.0035983412133333333, "MSTl": 0.0004045919666666667, "FST": 0.0005781431133333334, "AITd": 0.00011696018333333336, "CITd": 0.00015839591000000003, "MT": 0.010586940999999999, "V4t": 0.006289066666666667, "PITv": 0.0012713125800000002, "TH": 0.0004302408, "AITv": 0.0004452911, "CITv": 0.0007957710533333331, "FEF": 0.00011400506666666668, "46": 5.056234787738941e-05, "external": 0.002769274482736845}, "VP": {"7a": 0.001966574318848339, "DP": 0.0024756461209531136, "LIP": 0.0018548814372213482, "MSTd": 0.004174892925022077, "MT": 0.008293452698284402, "PIP": 0.004530947395055978, "TF": 0.00705236411780784, "V2": 0.00717581605963354, "V3A": 0.005137466728058192, "V4": 0.008567477824525566, "VIP": 0.002442567075962061, "VOT": 0.010505902036643833, "external": 0.0}, "V3": {"7a": 0.004674246831500541, "FST": 0.001678543003493744, "LIP": 0.0049843652643756075, "MSTd": 0.004926477098009895, "MT": 0.00733451210571452, "PIP": 0.013445388063019195, "TF": 0.001972570146235144, "V1": 0.008586428591530818, "V2": 0.005900422577201198, "V3A": 0.017879918293458957, "V4": 0.005452910062762763, "V4t": 0.0064882545931690865, "VIP": 0.005743942149742755, "VP": 0.004194632953905766, "external": 0.0}, "PIP": {"7a": 0.008621057407958396, "DP": 0.011162671737969579, "LIP": 0.00953663308985513, "MT": 0.009990570858078392, "V1": 0.00527818493705959, "V2": 0.004725558994582357, "V3": 0.013445388063019195, "V4": 0.005410030671440896, "VP": 0.004530947395055978, "external": 0.006721419057747149}, "V3A": {"7a": 0.00868247987997409, "DP": 0.015543435560302327, "FST": 0.002433014251653756, "LIP": 0.008517773248403361, "MIP": 0.007032378516660398, "MSTd": 0.007795706029440842, "MSTl": 0.0052012331547735356, "MT": 0.011026528667923917, "V1": 0.006635229529771761, "V2": 0.005672463185317145, "V3": 0.017879918293458957, "V4": 0.007596844403044716, "VIP": 0.009396080130381014, "VP": 0.005137466728058192, "external": 0.0}, "MT": {"7a": 0.007668578783559499, "46": 0.0002982264907871621, "CITv": 0.0038163017519338253, "DP": 0.0067985734994770045, "FEF": 0.0005936836670590779, "FST": 0.008971528370378384, "LIP": 0.007256401869854357, "MIP": 0.004627972542024091, "MSTd": 0.01449135961835989, "MSTl": 0.017852332108062183, "PIP": 0.009990570858078392, "PO": 0.005124127489289287, "STPp": 0.005741274636653619, "V1": 0.0034419775555150226, "V2": 0.004610708369380301, "V3": 0.00733451210571452, "V3A": 0.011026528667923917, "V4": 0.012266466578010995, "V4t": 0.022905029760814703, "VIP": 0.00941716871058578, "VP": 0.008293452698284402, "external": 0.010053373851418083}, "V4t": {"7a": 0.005758077370591879, "46": 0.0002258161213703737, "FST": 0.0075262122160688, "MSTd": 0.011356730621151199, "MT": 0.022905029760814703, "V2": 0.004346258427304073, "V3": 0.0064882545931690865, "V4": 0.014563486215169221, "external": 0.0}, "V4": {"V1": 0.03265630666666667, "V2": 0.25016898013333333, "PO": 0.002687799166666667, "TF": 0.052711999999999995, "TH": 0.012389706666666667, "PIP": 0.002219050266666667, "V3": 0.018678131733333336, "MSTd": 0.005856831066666667, "V3A": 0.0036355771333333336, "VP": 0.02896426666666667, "DP": 0.0010129916, "7a": 0.0070245596, "PITd": 0.05751595333333334, "VIP": 0.0017124856666666669, "LIP": 0.0013945623333333334, "STPa": 0.0020584594000000005, "STPp": 0.0006447129666666667, "MSTl": 0.005235169433333332, "FST": 0.009160531999999997, "AITd": 0.011051566, "CITd": 0.012193617333333332, "MT": 0.021604643499999996, "V4t": 0.011346133333333331, "PITv": 0.08069382666666668, "VOT": 0.04640013333333332, "AITv": 0.028120480000000003, "CITv": 0.08528930666666668, "46": 0.00020951288, "FEF": 0.0034942574533333333, "MIP": 3.755333333333333e-07, "MDP": 1.9494333333333333e-06, "external": 0.0}, "PO": {"7a": 0.004144248657410051, "DP": 0.005220646508186041, "FEF": 0.0001886114098855978, "LIP": 0.0048842515280058535, "MDP": 0.014405320247417218, "MIP": 0.020617646941670047, "MSTd": 0.004321736159726882, "MSTl": 0.0029108328936136986, "MT": 0.005124127489289287, "PIP": 0.015334961576419863, "V1": 0.003897505308584523, "V2": 0.002979802254013754, "V3": 0.008521681404942045, "V3A": 0.008186751962556745, "V4t": 0.003978868012995961, "VIP": 0.007279513913864154, "VP": 0.0025287698806870013, "external": 0.006542796226354337}, "VOT": {"V2": 0.00275414110376441, "VP": 0.010505902036643833, "external": 0.0}, "DP": {"V1": 0.007304985799999999, "V2": 0.0868778232, "PO": 0.022935904999999993, "TF": 0.06188520200000001, "TH": 0.006924548, "PIP": 0.031740154, "V4": 0.265129002, "V3": 0.00384, "MSTd": 0.044096166400000004, "V3A": 0.020889140000000004, "VP": 0.06324947, "7a": 0.12170417, "PITd": 0.027323034000000003, "VOT": 0.010269784, "VIP": 0.009584543999999999, "LIP": 0.0064203, "MIP": 0.01056964, "MDP": 0.010851755000000001, "STPa": 0.0004850526, "STPp": 0.0005674942999999999, "MSTl": 0.005852022, "FST": 0.0030646910000000005, "AITd": 0.0003074472, "CITd": 0.0007696679999999999, "MT": 0.048233399999999996, "V4t": 0.028512000000000003, "PITv": 0.0048909, "AITv": 0.0054317116, "CITv": 0.0043738349999999995, "FEF": 0.0023306253, "46": 0.0011283134999999999, "external": 0.004211451692517544}, "MIP": {"7a": 0.004628073242481961, "LIP": 0.005628643453612285, "PO": 0.020617646941670047, "V2": 0.002317741117550906, "V3A": 0.007032378516660398, "external": 0.010374993985500259}, "MDP": {"external": 0.011419607784729701}, "MSTd": {"V1": 0.02872964328, "V2": 0.14120797318999997, "PO": 0.00119106314, "TF": 0.06385009, "TH": 0.00618325579, "PIP": 0.014145930179999999, "V4": 0.34126389999999995, "V3": 0.013097999999999999, "V3A": 0.020916080000000004, "VP": 0.07663900000000001, "DP": 0.014847490000000001, "7a": 0.004676075, "PITd": 0.12423347000000001, "VOT": 0.021822499999999998, "VIP": 0.009725760000000002, "LIP": 0.007245720000000001, "MIP": 1.33392e-06, "MDP": 8.314200000000001e-07, "STPa": 0.0021726988, "STPp": 0.0026488431199999996, "MSTl": 0.01104449, "FST": 0.01762035, "AITd": 0.00425251, "CITd": 0.00940632, "MT": 0.00558822, "PITv": 0.01629822, "AITv": 0.0058828, "CITv": 0.01248798, "FEF": 0.0028822971000000003, "46": 6.20149e-05, "external": 0.0072490129352875}, "VIP": {"7a": 0.015446422673293946, "46": 0.0003458110186325523, "FEF": 0.0006773108120469758, "FST": 0.002979432398247835, "LIP": 0.019527396424842813, "MDP": 0.006218843583134815, "MIP": 0.00854479275972444, "MSTd": 0.012160526096505421, "MSTl": 0.006600939858094132, "MT": 0.00941716871058578, "PIP": 0.012547211081402667, "PO": 0.007279513913864154, "STPp": 0.0028081138130298814, "V2": 0.0023722199828714475, "V3": 0.005743942149742755, "V3A": 0.009396080130381014, "V4": 0.003911943716196138, "V4t": 0.006957528571384772, "VP": 0.002442567075962061, "external": 0.025685025786337367}, "LIP": {"7a": 0.0200256002116261, "46": 0.0002602252700827285, "DP": 0.014354121318509222, "FEF": 0.000521760134974346, "FST": 0.002253883895344027, "MDP": 0.0040408631174151345, "MIP": 0.005628643453612285, "MSTd": 0.010960695690248752, "MT": 0.007256401869854357, "PIP": 0.00953663308985513, "PO": 0.0048842515280058535, "STPp": 0.00244222691917776, "V2": 0.0019352055971065822, "V3": 0.0049843652643756075, "V3A": 0.008517773248403361, "V4": 0.0031585061105836834, "V4t": 0.005430465611173537, "VIP": 0.019527396424842813, "VP": 0.0018548814372213482, "external": 0.02010122555511015}, "PITv": {"7a": 0.001519128953463658, "AITd": 0.006359379280575416, "AITv": 0.007758145814052114, "CITd": 0.017478643524974677, "CITv": 0.015691806311089743, "FST": 0.01263496858298248, "LIP": 0.001285789125409984, "MT": 0.007004200569019747, "STPp": 0.003829466462804577, "TF": 0.009068192149592905, "TH": 0.005708336359028609, "V2": 0.0018379391047956878, "V4": 0.007007339925830216, "V4t": 0.0083415091788602, "VOT": 0.019379857366420852, "VP": 0.006643210862858017, "external": 0.0}, "PITd": {"7a": 0.002196946592552967, "FST": 0.012982843785615662, "MT": 0.010136691826050192, "STPp": 0.004493623560965627, "V2": 0.0019962868813370362, "V4": 0.009015562729701311, "V4t": 0.011986441343393476, "VOT": 0.016997572679928255, "VP": 0.0059050722299335764, "external": 0.0}, "AITv": {"CITd": 0.013892253195462468, "CITv": 0.015709600532818804, "PITd": 0.005118145751195346, "PITv": 0.007758145814052114, "TF": 0.006947301047502546, "TH": 0.005486718323377269, "V4": 0.0016643210932731807, "external": 0.0}, "MSTl": {"7a": 0.0063626815273536775, "46": 0.0005595505371621943, "DP": 0.0033814076993188254, "FEF": 0.0011101970110222973, "FST": 0.016643198599736588, "LIP": 0.005335978271267846, "MT": 0.017852332108062183, "PO": 0.0029108328936136986, "STPp": 0.011601763981185209, "V1": 0.0017709112924698136, "V2": 0.0027725710447628854, "V3A": 0.0052012331547735356, "V4t": 0.014647861481879191, "VIP": 0.006600939858094132, "external": 0.0072734106207775415}, "FST": {"7a": 0.002689233899127888, "46": 0.0007407465799992857, "CITv": 0.011714210291935324, "DP": 0.0015307752733108727, "FEF": 0.0013885197573829428, "LIP": 0.002253883895344027, "MSTd": 0.006848877340960466, "MSTl": 0.016643198599736588, "MT": 0.008971528370378384, "STPp": 0.011041563402888874, "TF": 0.01059563824406266, "V2": 0.0016679794532344961, "V3": 0.001678543003493744, "V3A": 0.002433014251653756, "V4": 0.005061550773625565, "V4t": 0.0075262122160688, "VIP": 0.002979432398247835, "VP": 0.004466681106251745, "external": 0.010332209959069458}, "CITv": {"PO": 1.77256e-06, "TF": 0.03182241, "TH": 0.0041587257, "PIP": 0.000142787, "V4": 0.0709605166, "V1": 3.07546e-05, "V3": 4.4818000000000004e-05, "V2": 0.00166803487, "MSTd": 8.492860000000002e-06, "V3A": 0.00020133600000000004, "VP": 0.012700080000000002, "DP": 0.0002021464, "7a": 0.0016731169699999997, "PITd": 0.0955115232, "VOT": 0.037845000000000004, "VIP": 0.00107708, "LIP": 0.00089439, "STPa": 0.005788337000000001, "STPp": 0.00013233991, "MSTl": 0.00023593203999999998, "FST": 0.0020013619999999996, "AITd": 0.1731416, "CITd": 0.10012099999999997, "MT": 9.8895e-05, "V4t": 2.64e-06, "PITv": 0.04409120000000001, "AITv": 0.12012400000000001, "FEF": 0.010091085640000002, "46": 0.0021442090000000002, "external": 0.00981041654023485}, "CITd": {"V4": 0.0041777466613098085, "external": 0.0}, "7a": {"V1": 2.03353e-05, "V2": 0.0004819565000000001, "PO": 0.019530515, "TF": 0.0347868766, "TH": 0.00023084030000000003, "PIP": 0.011194674, "V4": 0.0095445104, "V3": 1.7328000000000002e-06, "MSTd": 0.08197936960000002, "DP": 0.0140701901, "V3A": 5.58706e-05, "PITd": 0.007615705600000001, "VOT": 0.0008113, "VP": 0.0006863600000000001, "VIP": 0.0489402158, "LIP": 0.040764316, "MIP": 0.017571071599999995, "MDP": 0.024250399999999995, "STPa": 0.007041039999999999, "STPp": 0.0605408629, "MSTl": 0.013092799999999998, "FST": 0.00594815, "AITd": 0.001156032, "CITd": 0.0026997239999999997, "MT": 0.0011731722, "V4t": 9.539200000000002e-06, "PITv": 0.014191047999999998, "AITv": 0.015436940199999999, "CITv": 0.012528181999999999, "FEF": 0.014788873000000001, "46": 0.014181229799999999, "external": 0.02938506023105533}, "STPp": {"V4": 0.00041431336666666673, "PITd": 0.0011464076, "V2": 0.0005494173333333333, "V1": 0.0006513901333333334, "TH": 0.002792431666666667, "VIP": 0.003604891736666667, "7a": 0.03231078781333333, "DP": 0.0008150314333333333, "LIP": 0.0029458097466666675, "STPa": 0.0463087638, "MSTd": 0.07750212466666667, "MSTl": 0.008363258666666666, "FST": 0.0029582593, "AITd": 0.00045012213333333326, "CITd": 0.0007336893666666667, "MT": 0.0005119500000000001, "V4t": 4.476266666666667e-05, "AITv": 0.00024408833333333332, "CITv": 0.00028173233333333335, "VOT": 3.2250000000000005e-05, "PITv": 0.00017818766666666665, "TF": 0.0077603151333333325, "PO": 1.9194299999999993e-05, "46": 0.006187686136666667, "FEF": 0.0027500169733333333, "PIP": 0.0006357816999999999, "V3": 4.158199999999999e-06, "V3A": 0.0001946754, "VP": 8.875213333333334e-05, "MDP": 1.0888033333333335e-05, "MIP": 1.0488666666666666e-06, "external": 0.0169218564119172}, "STPa": {"PO": 1.6968e-06, "TF": 0.01044059712, "TH": 0.00370067704, "PIP": 0.0, "V4": 2.16198e-05, "V1": 2.9014879999999998e-05, "V3": 1.584e-07, "V2": 3.010232e-05, "MSTd": 0.0188856368, "PITd": 0.0033370486800000003, "VOT": 1.237424e-05, "VP": 7.814400000000001e-07, "DP": 2.9721799999999997e-05, "7a": 0.006960793999999999, "VIP": 4.5480000000000005e-05, "LIP": 3.792000000000001e-05, "STPp": 0.30555149480000005, "MSTl": 0.007341100000000001, "FST": 0.0157761, "AITd": 0.025548469999999997, "CITd": 0.00680838, "MT": 0.0002621412, "V4t": 2.3232000000000005e-06, "PITv": 0.0008363146, "AITv": 0.0024953279999999998, "CITv": 0.0014250989999999998, "46": 0.014112841500000002, "FEF": 0.0010566697000000001, "external": 0.021379975066850528}, "FEF": {"PO": 0.0019396929999999997, "TF": 0.0011607034433333333, "TH": 0.00016265508666666668, "PIP": 0.0015277950666666667, "V4": 0.004977958576666667, "V1": 0.00022920966666666672, "V3": 0.00037832696666666664, "V2": 0.0026317330000000002, "MSTd": 0.0092838776, "V3A": 0.00030441690000000004, "VP": 0.0009217902500000001, "PITd": 0.002460433963333334, "VOT": 0.00025604022, "DP": 0.0007984183666666667, "7a": 0.004013115566666667, "VIP": 0.005299874766666666, "LIP": 0.0039942541000000005, "MIP": 0.001530742066666667, "MDP": 0.0031931584000000008, "STPa": 0.0020900494333333333, "STPp": 0.027672489399999996, "MSTl": 0.001190899, "FST": 0.0016546871, "MT": 0.0022583639999999997, "CITd": 0.00028953729, "V4t": 0.0012444373333333333, "PITv": 0.00021049071, "AITd": 0.00011194493333333333, "AITv": 0.00010364666, "CITv": 0.00010565765666666668, "46": 0.1895018566666667, "external": 0.030348245801991393}, "46": {"TF": 0.00023437925, "PIP": 1.3434800000000002e-05, "V3A": 3.5756000000000005e-06, "VP": 5.0537e-06, "V4": 5.4178949999999994e-05, "V3": 4.477375e-05, "V2": 0.00099948935, "DP": 0.0005022087000000001, "7a": 0.009070648600000002, "VIP": 0.0030687705, "LIP": 0.0025490456000000004, "MDP": 0.00010807840000000002, "PO": 7.39644e-05, "MIP": 1.8074200000000004e-05, "STPa": 0.0033303452000000007, "STPp": 0.009455807400000002, "MSTd": 0.0009848546000000005, "MSTl": 0.0007123987000000001, "FST": 0.00237433, "AITd": 0.005064239399999999, "CITd": 0.0051180683, "MT": 4.3527e-06, "PITd": 0.0031302532999999996, "TH": 6.31086e-05, "AITv": 0.00015379490000000002, "CITv": 0.0013516526999999996, "VOT": 3.4511e-06, "PITv": 0.0002622428, "FEF": 0.12080655639999999, "V1": 0.00010192, "V4t": 1.4608e-06, "external": 0.01948363363231367}, "TF": {"7a": 0.0018622862875994476, "46": 0.00027263187118762135, "AITv": 0.006947301047502546, "CITv": 0.008573111392548783, "FEF": 0.0004737508884470768, "FST": 0.01059563824406266, "LIP": 0.0016647514007397735, "MT": 0.0074104934764019845, "STPa": 0.005175064786224525, "STPp": 0.0037752777782433336, "TH": 0.014963255350597525, "V2": 0.0026546500269299987, "V3": 0.001972570146235144, "V3A": 0.002689205669205606, "V4": 0.004553843722667349, "VP": 0.00705236411780784, "external": 0.015077445206487964}, "TH": {"7a": 0.0019360577800537108, "46": 0.00027677638429352176, "AITv": 0.005486718323377269, "FEF": 0.0004782252441620275, "STPa": 0.004275371779150058, "STPp": 0.0031604962683527966, "TF": 0.014963255350597525, "V2": 0.0022492167248699692, "V4": 0.0034039285639701463, "external": 0.01308305567128213}, "AITd": {"7a": 0.00046777517280729655, "46": 0.0005676113571555957, "CITd": 0.01329368143561811, "CITv": 0.012994646677276813, "FEF": 0.0008085031348249742, "PITd": 0.004758288424810753, "STPa": 0.014133181809193483, "TF": 0.004811523947655359, "TH": 0.0037689211883690063, "external": 0.0}}, "neuronal_densities": {"FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "STPp": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VP": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "V4t": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "MIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "MSTd": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "STPa": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MSTl": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "VIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V3": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "PIP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "FST": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "MDP": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "PO": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}}, "neuronal_density_data_FV91_4layers": {"V1": {"23": 166264.25225183976, "overall": 173360.0, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}, "V2": {"23": 107228.9012018876, "overall": 111730.0, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "V4": {"23": 82291.65437545427, "overall": 86223.0, "4": 179133.52509594912, "5": 72221.27249312654, "6": 72221.27249312654}, "MT": {"23": 82184.85656009504, "overall": 81153.0, "4": 134779.48312587343, "5": 66175.91653374783, "6": 66175.91653374783}, "PITd": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "PITv": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "VOT": {"23": 71548.47671840806, "overall": 78523.0, "4": 165979.4184335624, "5": 72530.66730098764, "6": 72530.66730098764}, "V3A": {"23": 73724.98018754808, "overall": 76696.0, "4": 123618.64707486573, "5": 66311.20009349921, "6": 66311.20009349921}, "LIP": {"23": 66365.33597739544, "overall": 69275.0, "4": 104732.3373288077, "5": 59804.35175881624, "6": 59804.35175881624}, "DP": {"23": 61577.99107383698, "overall": 63763.032750087405, "4": 100988.31726393124, "5": 57674.084791137735, "6": 57674.084791137735}, "TF": {"23": 60035.31107952612, "overall": 61906.0, "4": 103256.25889601017, "5": 56636.008092846845, "6": 56636.008092846845}, "FEF": {"23": 61119.24615011697, "overall": 60822.524688517195, "4": 83820.50032477839, "5": 55405.3729147243, "6": 55405.3729147243}, "AITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "AITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITd": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "CITv": {"23": 52433.88327484462, "overall": 54902.0, "4": 99406.01786182387, "5": 52498.67727839522, "6": 52498.67727839522}, "46": {"23": 50800.916845800064, "overall": 52720.0, "4": 75146.86652655818, "5": 52317.133324041286, "6": 52317.133324041286}, "7a": {"23": 51225.809080885876, "overall": 52379.0, "4": 79926.19368350341, "5": 47522.666967296806, "6": 47522.666967296806}, "TH": {"23": 49012.54441576494, "overall": 49446.0, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}}, "realistic_neuronal_numbers": {"FEF": {"23E": 7116258.062416201, "23I": 2007264.3976278158, "4E": 3738560.648779402, "4I": 934682.8106165795, "5E": 2737096.7132908967, "5I": 601032.5772484133, "6E": 2605291.6369981444, "6I": 533546.3526134444, "total": 20273733.199590895}, "7a": {"23E": 7785533.377762723, "23I": 2196045.144605121, "4E": 2089479.7746036942, "4I": 522393.7798336135, "5E": 2488782.555412475, "5I": 546505.8601060383, "6E": 2988894.9338910277, "6I": 612105.7495735153, "total": 19229741.175788205}, "STPp": {"23E": 10231171.547963874, "23I": 2885879.9405705766, "4E": 3214014.74148318, "4I": 803540.3499240858, "5E": 3490372.4822190227, "5I": 766442.6172295379, "6E": 4191750.945380641, "6I": 858442.6389011556, "total": 26441615.263672072}, "CITv": {"23E": 4781074.136115523, "23I": 1348585.1428756928, "4E": 1754777.4509003817, "4I": 438714.3807202003, "5E": 1649485.19100076, "5I": 362206.541941404, "6E": 1980943.6224906985, "6I": 405684.0430081682, "total": 12721470.509052828}, "PITv": {"23E": 4546866.169615768, "23I": 1282522.7110930902, "4E": 3774053.5763523397, "4I": 943556.447402896, "5E": 1588254.3632775452, "5I": 348761.009668162, "6E": 1907408.6684699608, "6I": 390624.5748280269, "total": 14782047.520707788}, "VP": {"23E": 6917343.194842176, "23I": 1951156.998438778, "4E": 6436579.782354831, "4I": 1609218.3722346388, "5E": 2080057.8770850257, "5I": 456754.9771331035, "6E": 2498038.4234448234, "6I": 511581.6097475055, "total": 22460731.235280883}, "V3A": {"23E": 3964407.8216861454, "23I": 1118230.2002473997, "4E": 2306615.689972856, "4I": 576680.2356998073, "5E": 1228675.3686414948, "5I": 269801.91084601893, "6E": 1475573.499477787, "6I": 302187.6121195219, "total": 11242172.338691032}, "TF": {"23E": 6074732.165699517, "23I": 1713483.8976304682, "4E": 3384007.2514310316, "4I": 846040.4166365786, "5E": 2187728.4571476975, "5I": 480398.1045076902, "6E": 2627345.0398780513, "6I": 538062.7424494962, "total": 17851798.07538053}, "LIP": {"23E": 2913160.3478207462, "23I": 821707.5602758899, "4E": 1126140.8103144537, "4I": 281548.0492682131, "5E": 651795.5065530408, "5I": 143126.22978948214, "6E": 1575617.9037778564, "6I": 322676.0389258161, "total": 7835772.446725499}, "V4t": {"23E": 1360184.0182880426, "23I": 383663.56731095293, "4E": 980714.0653507396, "4I": 245189.70404091728, "5E": 419495.6041320673, "5I": 92116.04503106218, "6E": 503791.8171087833, "6I": 103173.20436517496, "total": 4088328.02562774}, "MIP": {"23E": 1861055.129421214, "23I": 524942.9785351913, "4E": 715830.5384720211, "4I": 178965.80060635193, "5E": 346345.2234161966, "5I": 76053.12637902048, "6E": 1560161.9034535293, "6I": 319510.75313518627, "total": 5582865.453418711}, "CITd": {"23E": 2399105.600172807, "23I": 676709.4749991855, "4E": 880533.5976096117, "4I": 220143.44427575002, "5E": 827698.765271022, "5I": 181752.40928116255, "6E": 994022.0132635923, "6I": 203569.0792011859, "total": 6383534.384074317}, "MSTd": {"23E": 5346732.588457302, "23I": 1508138.950880428, "4E": 2715843.8559756237, "4I": 678991.9455574008, "5E": 1777557.624205953, "5I": 390329.6638720288, "6E": 2134751.7749729697, "6I": 437182.9268926931, "total": 14989529.330814399}, "DP": {"23E": 5001221.312264808, "23I": 1410681.4841054436, "4E": 2151023.612566881, "4I": 537780.4413987652, "5E": 1614053.3029574256, "5I": 354426.13765972335, "6E": 1938391.8172152215, "6I": 396969.71706498606, "total": 13404547.825233255}, "STPa": {"23E": 3280648.3045655773, "23I": 925363.9321585639, "4E": 1030581.0984660854, "4I": 257657.03118848646, "5E": 1119195.8332839224, "5I": 245761.55926750044, "6E": 1344094.424343897, "6I": 275261.5743637242, "total": 8478563.757637756}, "MSTl": {"23E": 1294223.7740036394, "23I": 365058.33281135384, "4E": 657393.9554174577, "4I": 164355.98821502394, "5E": 430273.4985989926, "5I": 94482.73732122207, "6E": 516735.4927626279, "6I": 105823.9828179387, "total": 3628347.761948256}, "MT": {"23E": 3387941.185455547, "23I": 955627.755932295, "4E": 1576557.5125129828, "4I": 394157.3630416898, "5E": 792485.0871952683, "5I": 174019.92120885785, "6E": 885309.68110297, "6I": 181305.51857530785, "total": 8347404.025024918}, "46": {"23E": 6032896.419270735, "23I": 1701683.3974774193, "4E": 1971206.910649511, "4I": 492824.21462234406, "5E": 2194273.9158227458, "5I": 481835.4062579843, "6E": 2933147.6012706426, "6I": 600689.0676308342, "total": 16408556.933002219}, "AITv": {"23E": 4583767.781081143, "23I": 1292931.4526339208, "4E": 1682360.9325874117, "4I": 420609.4250352009, "5E": 1581413.8954186402, "5I": 347258.92755069106, "6E": 1899193.6318913486, "6I": 388942.19012266054, "total": 12196478.236321017}, "VIP": {"23E": 4821635.686107228, "23I": 1360026.2337547531, "4E": 2235064.080697643, "4I": 558791.51714088, "5E": 859117.3541222662, "5I": 188651.54270932236, "6E": 668974.5483609311, "6I": 137001.52612490626, "total": 10829262.48901793}, "PITd": {"23E": 6587774.377258495, "23I": 1858196.3794868276, "4E": 5468076.807458739, "4I": 1367081.580107982, "5E": 2301158.866053231, "5I": 505306.0190405548, "6E": 2763568.903143899, "6I": 565960.4811718109, "total": 21417123.41372154}, "VOT": {"23E": 3176820.440084732, "23I": 896077.4765485821, "4E": 2636869.0205685482, "4I": 659247.335783485, "5E": 1109687.1421091869, "5I": 243673.56831882143, "6E": 1332674.9940612898, "6I": 272922.9511978245, "total": 10327972.928672472}, "V1": {"23E": 70351649.31455898, "23I": 19843906.691540737, "4E": 104498963.79693717, "4I": 26125933.043277144, "5E": 30792502.779850837, "5I": 6761652.672276523, "6E": 29454725.608150266, "6I": 6032131.371505871, "total": 293861465.2780975}, "V2": {"23E": 60291657.94579554, "23I": 17006311.09876571, "4E": 43780517.995760456, "4I": 10945628.934463676, "5E": 22768869.615967955, "5I": 4999762.090929045, "6E": 22970833.698674805, "6I": 4704273.549405582, "total": 187467854.92976275}, "V3": {"23E": 7050338.08337958, "23I": 1988670.5206419022, "4E": 5718439.590182145, "4I": 1429675.1318552576, "5E": 1453678.9582375523, "5I": 319209.91557175113, "6E": 1751820.7797907297, "6I": 358761.21283939376, "total": 20070594.19249831}, "V4": {"23E": 36181631.72328601, "23I": 10205658.72811732, "4E": 19007157.695427947, "4I": 4752006.252030559, "5E": 7854280.51218247, "5I": 1724702.8341184186, "6E": 7950727.398374058, "6I": 1628255.9479268312, "total": 89304421.09146364}, "TH": {"23E": 1102237.244142804, "23I": 310905.1918159415, "4E": 0.0, "4I": 0.0, "5E": 1041658.381430335, "5I": 228735.29406666115, "6E": 484476.77823009423, "6I": 99217.61321447158, "total": 3267230.502900307}, "PIP": {"23E": 4707159.180232314, "23I": 1327736.1435708222, "4E": 2390976.007726943, "4I": 597771.2774965055, "5E": 1564927.093461991, "5I": 343638.62980144745, "6E": 1879393.8632305118, "6I": 384887.3295452276, "total": 13196489.525065761}, "FST": {"23E": 2228633.7959837206, "23I": 628624.9367001414, "4E": 766864.0534953041, "4I": 191724.76153779466, "5E": 774255.1693285241, "5I": 170016.85677007798, "6E": 929839.1087289786, "6I": 190424.84838715038, "total": 5880383.530931692}, "MDP": {"23E": 3435994.282487219, "23I": 969181.9679945091, "4E": 1745294.6835990446, "4I": 436343.58071819134, "5E": 1142319.6751505157, "5I": 250839.26887325756, "6E": 1371864.9234808546, "6I": 280948.7873860063, "total": 9632787.169689598}, "PO": {"23E": 3342251.0816976735, "23I": 942740.0672351314, "4E": 1697678.3325487978, "4I": 424438.9497620289, "5E": 1111154.11028934, "5I": 243995.69638312308, "6E": 1334436.7445012, "6I": 273283.7459388356, "total": 9369978.72835613}, "AITd": {"23E": 4508601.451957001, "23I": 1271729.4817346197, "4E": 1654772.952217552, "4I": 413712.1152270119, "5E": 1555481.2821141132, "5I": 341564.44648485165, "6E": 1868049.9482618198, "6I": 382564.1714120074, "total": 11996475.849408979}}, "total_thicknesses": {"V1": 1240.0, "V2": 1460.0, "VP": 1585.342273262686, "V3": 1585.342273262686, "PIP": 2070.561486887418, "V3A": 1660.0, "MT": 1960.0, "V4t": 1880.0673770928606, "V4": 1890.0, "PO": 2070.561486887418, "VOT": 1904.2178479221384, "DP": 2060.0, "MIP": 2070.561486887418, "MDP": 2070.561486887418, "MSTd": 2070.561486887418, "VIP": 2070.561486887418, "LIP": 2300.0, "PITv": 1904.2178479221384, "PITd": 1904.2178479221384, "AITv": 2630.0, "MSTl": 2070.561486887418, "FST": 2247.328674211474, "CITv": 2227.7479202457143, "CITd": 2227.7479202457143, "7a": 2680.0, "STPp": 2247.328674211474, "STPa": 2247.328674211474, "FEF": 2210.0, "46": 1860.0, "TF": 1620.0, "TH": 1870.0, "AITd": 2630.0}, "laminar_thicknesses": {"V1": {"1": 0.08967005445322952, "23": 0.3653998098401042, "4": 0.4614890241689768, "5": 0.16629777405727372, "6": 0.1571433374804157}, "V2": {"1": 0.1206349760574621, "23": 0.6040487829209896, "4": 0.23883030726256985, "5": 0.24866171189146055, "6": 0.24782422186751799}, "VP": {"1": 0.17714878802273043, "23": 0.6333760829470785, "4": 0.3209011312779164, "5": 0.20761102756029734, "6": 0.24630524345466334}, "V3": {"1": 0.23320824408280585, "23": 0.6991547059583443, "4": 0.30876967047500165, "5": 0.1571391892973308, "6": 0.18707046344920336}, "PIP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "V3A": {"1": 0.19886503693743082, "23": 0.7110201516839858, "4": 0.24055402347012478, "5": 0.2330615700238317, "6": 0.27649921788462695}, "MT": {"1": 0.203395600676819, "23": 0.9454429780033843, "4": 0.2615654822335026, "5": 0.2612670050761422, "6": 0.28832893401015236}, "V4t": {"1": 0.2230803724680116, "23": 0.7975994308131237, "4": 0.2877787474825529, "5": 0.26144093828446113, "6": 0.3101678880447115}, "V4": {"1": 0.1771875, "23": 1.0040625, "4": 0.23625000000000002, "5": 0.23625000000000002, "6": 0.23625000000000002}, "PO": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VOT": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "DP": {"1": 0.25583852489499187, "23": 0.9147226157943377, "4": 0.23389235234048408, "5": 0.29983213340496956, "6": 0.3557143735652168}, "MIP": {"1": 0.19533598932900173, "23": 0.8516649134744475, "4": 0.17189567060952152, "5": 0.15626879146320138, "6": 0.6953961220112461}, "MDP": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "MSTd": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "VIP": {"1": 0.25289300603205106, "23": 1.1696301528982362, "4": 0.2845046317860575, "5": 0.2054755674010415, "6": 0.15805812877003192}, "LIP": {"1": 0.2523199861163701, "23": 1.0042360848163574, "4": 0.239843388447137, "5": 0.23718840716900164, "6": 0.5664121334511337}, "PITv": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "PITd": {"1": 0.2270973574098532, "23": 0.8119617203671147, "4": 0.283257043447467, "5": 0.2661486779239949, "6": 0.31575304877370874}, "AITv": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}, "MSTl": {"1": 0.25591814163985166, "23": 0.9150072767426801, "4": 0.24388555598467354, "5": 0.299925440925703, "6": 0.35582507159450977}, "FST": {"1": 0.5126175393099899, "23": 0.9007008741548409, "4": 0.17666480168310383, "5": 0.30065493337157506, "6": 0.35669052569196447}, "CITv": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "CITd": {"1": 0.28514775842325774, "23": 1.0195145691207823, "4": 0.19243872440273863, "5": 0.33418133871269773, "6": 0.39646552958623793}, "7a": {"1": 0.34637158771533116, "23": 1.2384136630003206, "4": 0.20769132202217178, "5": 0.4059331257408577, "6": 0.4815903015213188}, "STPp": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "STPa": {"1": 0.2889353100093555, "23": 1.0330565448482978, "4": 0.18498493804617222, "5": 0.33862019198120835, "6": 0.40173168932644016}, "FEF": {"1": 0.21710327455919398, "23": 0.9240806045340052, "4": 0.3451385390428212, "5": 0.37297229219143585, "6": 0.3507052896725441}, "46": {"1": 0.2195874325610917, "23": 0.8222722945096794, "4": 0.17708663916217074, "5": 0.2762551570929863, "6": 0.36479847667407167}, "TF": {"1": 0.2334764331779098, "23": 0.6571929230193017, "4": 0.20753460726925316, "5": 0.23865769578911442, "6": 0.28313834074442085}, "TH": {"1": 0.27703703703703697, "23": 0.6464197530864197, "4": 0.11543209876543209, "5": 0.5694650205761316, "6": 0.2616460905349794}, "AITd": {"1": 0.3366353068216317, "23": 1.2036026573832084, "4": 0.22718631698840488, "5": 0.3945226086071063, "6": 0.46805311019964885}}, "category_density": {"1": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "2": {"overall": 49446.0, "23": 49012.54441576494, "4": 0.0, "5": 50015.797726592515, "6": 50015.797726592515}, "3": {"overall": NaN, "23": NaN, "4": NaN, "5": NaN, "6": NaN}, "4": {"overall": 53725.75, "23": 51723.62311909379, "4": 88471.27398342734, "5": 51209.28871203213, "6": 51209.28871203213}, "5": {"overall": 65327.06967982558, "23": 62132.82553342261, "4": 115446.0358005375, "5": 59947.313339536355, "6": 59947.313339536355}, "6": {"overall": 80648.75, "23": 77437.49196037636, "4": 150877.76843256268, "5": 69309.7641053403, "6": 69309.7641053403}, "7": {"overall": 111730.0, "23": 107228.9012018876, "4": 192008.83863994436, "5": 93575.32569713097, "6": 93575.32569713097}, "8": {"overall": 173360.0, "23": 166264.25225183976, "4": 190654.31742388426, "5": 152108.54915928794, "6": 152108.54915928794}}} \ No newline at end of file