bsplot 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. bsplot/__init__.py +23 -0
  2. bsplot/anat.py +55 -0
  3. bsplot/animate.py +194 -0
  4. bsplot/bioicons.py +777 -0
  5. bsplot/brain.py +188 -0
  6. bsplot/colors.py +1935 -0
  7. bsplot/data/HCP_avg-SC.txt +379 -0
  8. bsplot/data/MNI152.rh.pial +0 -0
  9. bsplot/data/STN_lh.nii.gz +0 -0
  10. bsplot/data/STN_rh.nii.gz +0 -0
  11. bsplot/data/__init__.py +22 -0
  12. bsplot/data/left_electrode.ply +257270 -0
  13. bsplot/data/parcellations/HCP-MMP1.L.label.gii +442 -0
  14. bsplot/data/parcellations/HCP-MMP1.R.label.gii +442 -0
  15. bsplot/data/parcellations/code/split_hcpmmp1.sh +4 -0
  16. bsplot/data/right_electrode.ply +257270 -0
  17. bsplot/data/surface.py +112 -0
  18. bsplot/data/tpl-MNI152NLin2009b_atlas-hcpmmp1_desc-ordered_dseg.nii.gz +0 -0
  19. bsplot/figure.py +177 -0
  20. bsplot/graph/__init__.py +31 -0
  21. bsplot/graph/edges.py +312 -0
  22. bsplot/graph/flowchart.py +762 -0
  23. bsplot/graph/layout.py +201 -0
  24. bsplot/graph/network.py +974 -0
  25. bsplot/graph/nodes.py +452 -0
  26. bsplot/panels.py +110 -0
  27. bsplot/scientific_color_maps/__init__.py +0 -0
  28. bsplot/scientific_color_maps/_sync_from_zenodo_download.sh +1 -0
  29. bsplot/scientific_color_maps/batlowK.txt +256 -0
  30. bsplot/scientific_color_maps/batlowW.txt +256 -0
  31. bsplot/scientific_color_maps/cyclic/bamO.txt +256 -0
  32. bsplot/scientific_color_maps/cyclic/brocO.txt +256 -0
  33. bsplot/scientific_color_maps/cyclic/corkO.txt +256 -0
  34. bsplot/scientific_color_maps/cyclic/romaO.txt +256 -0
  35. bsplot/scientific_color_maps/cyclic/vikO.txt +256 -0
  36. bsplot/scientific_color_maps/diverging/bam.txt +256 -0
  37. bsplot/scientific_color_maps/diverging/berlin.txt +256 -0
  38. bsplot/scientific_color_maps/diverging/broc.txt +256 -0
  39. bsplot/scientific_color_maps/diverging/cork.txt +256 -0
  40. bsplot/scientific_color_maps/diverging/lisbon.txt +256 -0
  41. bsplot/scientific_color_maps/diverging/managua.txt +256 -0
  42. bsplot/scientific_color_maps/diverging/roma.txt +256 -0
  43. bsplot/scientific_color_maps/diverging/tofino.txt +256 -0
  44. bsplot/scientific_color_maps/diverging/vanimo.txt +256 -0
  45. bsplot/scientific_color_maps/diverging/vik.txt +256 -0
  46. bsplot/scientific_color_maps/multisequential/bukavu.txt +256 -0
  47. bsplot/scientific_color_maps/multisequential/fes.txt +256 -0
  48. bsplot/scientific_color_maps/multisequential/oleron.txt +256 -0
  49. bsplot/scientific_color_maps/naviaW.txt +256 -0
  50. bsplot/scientific_color_maps/sequential/acton.txt +256 -0
  51. bsplot/scientific_color_maps/sequential/bamako.txt +256 -0
  52. bsplot/scientific_color_maps/sequential/batlow.txt +256 -0
  53. bsplot/scientific_color_maps/sequential/bilbao.txt +256 -0
  54. bsplot/scientific_color_maps/sequential/buda.txt +256 -0
  55. bsplot/scientific_color_maps/sequential/davos.txt +256 -0
  56. bsplot/scientific_color_maps/sequential/devon.txt +256 -0
  57. bsplot/scientific_color_maps/sequential/glasgow.txt +256 -0
  58. bsplot/scientific_color_maps/sequential/grayC.txt +256 -0
  59. bsplot/scientific_color_maps/sequential/hawaii.txt +256 -0
  60. bsplot/scientific_color_maps/sequential/imola.txt +256 -0
  61. bsplot/scientific_color_maps/sequential/lajolla.txt +256 -0
  62. bsplot/scientific_color_maps/sequential/lapaz.txt +256 -0
  63. bsplot/scientific_color_maps/sequential/lipari.txt +256 -0
  64. bsplot/scientific_color_maps/sequential/navia.txt +256 -0
  65. bsplot/scientific_color_maps/sequential/nuuk.txt +256 -0
  66. bsplot/scientific_color_maps/sequential/oslo.txt +256 -0
  67. bsplot/scientific_color_maps/sequential/tokyo.txt +256 -0
  68. bsplot/scientific_color_maps/sequential/turku.txt +256 -0
  69. bsplot/streamlines.py +314 -0
  70. bsplot/style.py +791 -0
  71. bsplot/styles/black.mplstyle +78 -0
  72. bsplot/styles/bss.mplstyle +50 -0
  73. bsplot/styles/bwcomp.mplstyle +30 -0
  74. bsplot/styles/nature.mplstyle +57 -0
  75. bsplot/styles/transparent.mplstyle +16 -0
  76. bsplot/styles/tvbo.mplstyle +57 -0
  77. bsplot/surface.py +2370 -0
  78. bsplot/templates.py +270 -0
  79. bsplot/text.py +199 -0
  80. bsplot/text2obj.py +59 -0
  81. bsplot/timeseries.py +10 -0
  82. bsplot/utils.py +13 -0
  83. bsplot/volume.py +958 -0
  84. bsplot-0.0.2.dist-info/METADATA +60 -0
  85. bsplot-0.0.2.dist-info/RECORD +89 -0
  86. bsplot-0.0.2.dist-info/WHEEL +5 -0
  87. bsplot-0.0.2.dist-info/entry_points.txt +2 -0
  88. bsplot-0.0.2.dist-info/licenses/LICENSE +193 -0
  89. bsplot-0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,442 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <GIFTI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="http://brainvis.wustl.edu/caret6/xml_schemas/GIFTI_Caret.xsd"
4
+ Version="1"
5
+ NumberOfDataArrays="1">
6
+ <MetaData>
7
+ <MD>
8
+ <Name><![CDATA[AnatomicalStructurePrimary]]></Name>
9
+ <Value><![CDATA[CortexLeft]]></Value>
10
+ </MD>
11
+ <MD>
12
+ <Name><![CDATA[ParentProvenance]]></Name>
13
+ <Value><![CDATA[Q1-Q6_RelatedValidation210.CorticalAreas_dil_Final_Final_Areas_Group_Colors_with_Atlas_ROIs2.32k_fs_LR.dlabel.nii:
14
+ /home/brainmappers/workbench/fetchdir/wb_command.13192 -cifti-label-import 210V_MPM_with_Atlas_ROIs2.32k_fs_LR.dscalar.nii labels.txt 210V_MPM_with_Atlas_ROIs2.32k_fs_LR.dlabel.nii
15
+
16
+ ]]></Value>
17
+ </MD>
18
+ <MD>
19
+ <Name><![CDATA[ProgramProvenance]]></Name>
20
+ <Value><![CDATA[Connectome Workbench
21
+ Type: Command Line Application
22
+ Version: 1.5.0
23
+ Qt Compiled Version: 5.7.0
24
+ Qt Runtime Version: 5.7.0
25
+ Commit: 76441605d20536d81034a64c9d34ec393aa528b9
26
+ Commit Date: 2021-02-16 13:46:47 -0600
27
+ Compiled with OpenMP: YES
28
+ Compiler: clang++ (/usr/local/clang/4.0.0/bin)
29
+ Compiler Version: 4.0.0
30
+ Compiled Debug: NO
31
+ Operating System: Apple OSX
32
+ ]]></Value>
33
+ </MD>
34
+ <MD>
35
+ <Name><![CDATA[Provenance]]></Name>
36
+ <Value><![CDATA[/Applications/workbench/bin_macosx64/../macosx64_apps/wb_command.app/Contents/MacOS/wb_command -cifti-separate Q1-Q6_RelatedValidation210.CorticalAreas_dil_Final_Final_Areas_Group_Colors_with_Atlas_ROIs2.32k_fs_LR.dlabel.nii COLUMN -label CORTEX_LEFT HCP-MMP1.L.label.gii -label CORTEX_RIGHT HCP-MMP1.R.label.gii]]></Value>
37
+ </MD>
38
+ <MD>
39
+ <Name><![CDATA[WorkingDirectory]]></Name>
40
+ <Value><![CDATA[/Users/leonmartin_bih/Downloads/Glasser_et_al_2016_HCP_MMP1.0_v6_RVVG/Q1-Q6_RelatedValidation210/MNINonLinear/fsaverage_LR32k]]></Value>
41
+ </MD>
42
+ </MetaData>
43
+ <LabelTable>
44
+ <Label Key="0" Red="1" Green="1" Blue="1" Alpha="0"><![CDATA[???]]></Label>
45
+ <Label Key="1" Red="0.298039" Green="0.0196078" Blue="1" Alpha="1"><![CDATA[R_V1_ROI]]></Label>
46
+ <Label Key="2" Red="0.203922" Green="0.423529" Blue="0.517647" Alpha="1"><![CDATA[R_MST_ROI]]></Label>
47
+ <Label Key="3" Red="0.262745" Green="0.368627" Blue="0.670588" Alpha="1"><![CDATA[R_V6_ROI]]></Label>
48
+ <Label Key="4" Red="0.101961" Green="0.211765" Blue="0.937255" Alpha="1"><![CDATA[R_V2_ROI]]></Label>
49
+ <Label Key="5" Red="0.0705882" Green="0.12549" Blue="0.941176" Alpha="1"><![CDATA[R_V3_ROI]]></Label>
50
+ <Label Key="6" Red="0.0784314" Green="0.141176" Blue="0.87451" Alpha="1"><![CDATA[R_V4_ROI]]></Label>
51
+ <Label Key="7" Red="0.117647" Green="0.243137" Blue="0.815686" Alpha="1"><![CDATA[R_V8_ROI]]></Label>
52
+ <Label Key="8" Red="0.152941" Green="0.686275" Blue="0.109804" Alpha="1"><![CDATA[R_4_ROI]]></Label>
53
+ <Label Key="9" Red="0.156863" Green="0.760784" Blue="0.0901961" Alpha="1"><![CDATA[R_3b_ROI]]></Label>
54
+ <Label Key="10" Red="0.537255" Green="0.564706" Blue="0.580392" Alpha="1"><![CDATA[R_FEF_ROI]]></Label>
55
+ <Label Key="11" Red="0.65098" Green="0.701961" Blue="0.662745" Alpha="1"><![CDATA[R_PEF_ROI]]></Label>
56
+ <Label Key="12" Red="0.435294" Green="0.411765" Blue="0.301961" Alpha="1"><![CDATA[R_55b_ROI]]></Label>
57
+ <Label Key="13" Red="0.0941176" Green="0.27451" Blue="0.992157" Alpha="1"><![CDATA[R_V3A_ROI]]></Label>
58
+ <Label Key="14" Red="0.615686" Green="0.258824" Blue="0.498039" Alpha="1"><![CDATA[R_RSC_ROI]]></Label>
59
+ <Label Key="15" Red="0.823529" Green="0.45098" Blue="0.792157" Alpha="1"><![CDATA[R_POS2_ROI]]></Label>
60
+ <Label Key="16" Red="0.101961" Green="0.360784" Blue="0.756863" Alpha="1"><![CDATA[R_V7_ROI]]></Label>
61
+ <Label Key="17" Red="0.223529" Green="0.482353" Blue="0.67451" Alpha="1"><![CDATA[R_IPS1_ROI]]></Label>
62
+ <Label Key="18" Red="0.223529" Green="0.368627" Blue="0.47451" Alpha="1"><![CDATA[R_FFC_ROI]]></Label>
63
+ <Label Key="19" Red="0.160784" Green="0.286275" Blue="0.870588" Alpha="1"><![CDATA[R_V3B_ROI]]></Label>
64
+ <Label Key="20" Red="0.0666667" Green="0.262745" Blue="0.811765" Alpha="1"><![CDATA[R_LO1_ROI]]></Label>
65
+ <Label Key="21" Red="0.0823529" Green="0.207843" Blue="0.713726" Alpha="1"><![CDATA[R_LO2_ROI]]></Label>
66
+ <Label Key="22" Red="0.129412" Green="0.211765" Blue="0.733333" Alpha="1"><![CDATA[R_PIT_ROI]]></Label>
67
+ <Label Key="23" Red="0.133333" Green="0.364706" Blue="0.415686" Alpha="1"><![CDATA[R_MT_ROI]]></Label>
68
+ <Label Key="24" Red="0.909804" Green="0.0470588" Blue="0.168627" Alpha="1"><![CDATA[R_A1_ROI]]></Label>
69
+ <Label Key="25" Red="0.737255" Green="0.564706" Blue="0.529412" Alpha="1"><![CDATA[R_PSL_ROI]]></Label>
70
+ <Label Key="26" Red="0.254902" Green="0.223529" Blue="0.2" Alpha="1"><![CDATA[R_SFL_ROI]]></Label>
71
+ <Label Key="27" Red="0.521569" Green="0.556863" Blue="0.607843" Alpha="1"><![CDATA[R_PCV_ROI]]></Label>
72
+ <Label Key="28" Red="0.564706" Green="0.439216" Blue="0.423529" Alpha="1"><![CDATA[R_STV_ROI]]></Label>
73
+ <Label Key="29" Red="0.619608" Green="0.803922" Blue="0.74902" Alpha="1"><![CDATA[R_7Pm_ROI]]></Label>
74
+ <Label Key="30" Red="0.192157" Green="0.180392" Blue="0.192157" Alpha="1"><![CDATA[R_7m_ROI]]></Label>
75
+ <Label Key="31" Red="0.368627" Green="0.321569" Blue="0.419608" Alpha="1"><![CDATA[R_POS1_ROI]]></Label>
76
+ <Label Key="32" Red="0.52549" Green="0.203922" Blue="0.341176" Alpha="1"><![CDATA[R_23d_ROI]]></Label>
77
+ <Label Key="33" Red="0.113725" Green="0.0235294" Blue="0.0784314" Alpha="1"><![CDATA[R_v23ab_ROI]]></Label>
78
+ <Label Key="34" Red="0.333333" Green="0.109804" Blue="0.211765" Alpha="1"><![CDATA[R_d23ab_ROI]]></Label>
79
+ <Label Key="35" Red="0.27451" Green="0.0784314" Blue="0.203922" Alpha="1"><![CDATA[R_31pv_ROI]]></Label>
80
+ <Label Key="36" Red="0.188235" Green="0.670588" Blue="0.196078" Alpha="1"><![CDATA[R_5m_ROI]]></Label>
81
+ <Label Key="37" Red="0.552941" Green="0.619608" Blue="0.505882" Alpha="1"><![CDATA[R_5mv_ROI]]></Label>
82
+ <Label Key="38" Red="0.843137" Green="0.74902" Blue="0.764706" Alpha="1"><![CDATA[R_23c_ROI]]></Label>
83
+ <Label Key="39" Red="0.258824" Green="0.627451" Blue="0.282353" Alpha="1"><![CDATA[R_5L_ROI]]></Label>
84
+ <Label Key="40" Red="0.282353" Green="0.627451" Blue="0.176471" Alpha="1"><![CDATA[R_24dd_ROI]]></Label>
85
+ <Label Key="41" Red="0.466667" Green="0.603922" Blue="0.262745" Alpha="1"><![CDATA[R_24dv_ROI]]></Label>
86
+ <Label Key="42" Red="0.470588" Green="0.74902" Blue="0.509804" Alpha="1"><![CDATA[R_7AL_ROI]]></Label>
87
+ <Label Key="43" Red="0.533333" Green="0.584314" Blue="0.411765" Alpha="1"><![CDATA[R_SCEF_ROI]]></Label>
88
+ <Label Key="44" Red="0.596078" Green="0.662745" Blue="0.537255" Alpha="1"><![CDATA[R_6ma_ROI]]></Label>
89
+ <Label Key="45" Red="0.666667" Green="0.964706" Blue="0.862745" Alpha="1"><![CDATA[R_7Am_ROI]]></Label>
90
+ <Label Key="46" Red="0.654902" Green="1" Blue="0.909804" Alpha="1"><![CDATA[R_7PL_ROI]]></Label>
91
+ <Label Key="47" Red="0.294118" Green="0.698039" Blue="0.411765" Alpha="1"><![CDATA[R_7PC_ROI]]></Label>
92
+ <Label Key="48" Red="0.254902" Green="0.505882" Blue="0.690196" Alpha="1"><![CDATA[R_LIPv_ROI]]></Label>
93
+ <Label Key="49" Red="0.235294" Green="0.588235" Blue="0.588235" Alpha="1"><![CDATA[R_VIP_ROI]]></Label>
94
+ <Label Key="50" Red="0.505882" Green="0.792157" Blue="0.772549" Alpha="1"><![CDATA[R_MIP_ROI]]></Label>
95
+ <Label Key="51" Red="0.109804" Green="0.760784" Blue="0.164706" Alpha="1"><![CDATA[R_1_ROI]]></Label>
96
+ <Label Key="52" Red="0.227451" Green="0.701961" Blue="0.282353" Alpha="1"><![CDATA[R_2_ROI]]></Label>
97
+ <Label Key="53" Red="0.207843" Green="0.870588" Blue="0.109804" Alpha="1"><![CDATA[R_3a_ROI]]></Label>
98
+ <Label Key="54" Red="0.145098" Green="0.635294" Blue="0.164706" Alpha="1"><![CDATA[R_6d_ROI]]></Label>
99
+ <Label Key="55" Red="0.301961" Green="0.623529" Blue="0.196078" Alpha="1"><![CDATA[R_6mp_ROI]]></Label>
100
+ <Label Key="56" Red="0.34902" Green="0.709804" Blue="0.262745" Alpha="1"><![CDATA[R_6v_ROI]]></Label>
101
+ <Label Key="57" Red="0.596078" Green="0.564706" Blue="0.439216" Alpha="1"><![CDATA[R_p24pr_ROI]]></Label>
102
+ <Label Key="58" Red="0.47451" Green="0.364706" Blue="0.356863" Alpha="1"><![CDATA[R_33pr_ROI]]></Label>
103
+ <Label Key="59" Red="0.686275" Green="0.486275" Blue="0.490196" Alpha="1"><![CDATA[R_a24pr_ROI]]></Label>
104
+ <Label Key="60" Red="0.670588" Green="0.560784" Blue="0.505882" Alpha="1"><![CDATA[R_p32pr_ROI]]></Label>
105
+ <Label Key="61" Red="0.313726" Green="0.0431373" Blue="0.137255" Alpha="1"><![CDATA[R_a24_ROI]]></Label>
106
+ <Label Key="62" Red="0.454902" Green="0.160784" Blue="0.25098" Alpha="1"><![CDATA[R_d32_ROI]]></Label>
107
+ <Label Key="63" Red="0.521569" Green="0.313726" Blue="0.360784" Alpha="1"><![CDATA[R_8BM_ROI]]></Label>
108
+ <Label Key="64" Red="0.47451" Green="0.2" Blue="0.309804" Alpha="1"><![CDATA[R_p32_ROI]]></Label>
109
+ <Label Key="65" Red="0.105882" Green="0" Blue="0.0235294" Alpha="1"><![CDATA[R_10r_ROI]]></Label>
110
+ <Label Key="66" Red="0.364706" Green="0.207843" Blue="0.235294" Alpha="1"><![CDATA[R_47m_ROI]]></Label>
111
+ <Label Key="67" Red="0.356863" Green="0.266667" Blue="0.262745" Alpha="1"><![CDATA[R_8Av_ROI]]></Label>
112
+ <Label Key="68" Red="0.25098" Green="0.235294" Blue="0.188235" Alpha="1"><![CDATA[R_8Ad_ROI]]></Label>
113
+ <Label Key="69" Red="0.196078" Green="0.105882" Blue="0.0941176" Alpha="1"><![CDATA[R_9m_ROI]]></Label>
114
+ <Label Key="70" Red="0.160784" Green="0.12549" Blue="0.0941176" Alpha="1"><![CDATA[R_8BL_ROI]]></Label>
115
+ <Label Key="71" Red="0.258824" Green="0.2" Blue="0.2" Alpha="1"><![CDATA[R_9p_ROI]]></Label>
116
+ <Label Key="72" Red="0.164706" Green="0.105882" Blue="0.0980392" Alpha="1"><![CDATA[R_10d_ROI]]></Label>
117
+ <Label Key="73" Red="0.482353" Green="0.329412" Blue="0.360784" Alpha="1"><![CDATA[R_8C_ROI]]></Label>
118
+ <Label Key="74" Red="0.529412" Green="0.368627" Blue="0.356863" Alpha="1"><![CDATA[R_44_ROI]]></Label>
119
+ <Label Key="75" Red="0.32549" Green="0.243137" Blue="0.219608" Alpha="1"><![CDATA[R_45_ROI]]></Label>
120
+ <Label Key="76" Red="0.227451" Green="0.105882" Blue="0.121569" Alpha="1"><![CDATA[R_47l_ROI]]></Label>
121
+ <Label Key="77" Red="0.388235" Green="0.258824" Blue="0.282353" Alpha="1"><![CDATA[R_a47r_ROI]]></Label>
122
+ <Label Key="78" Red="0.729412" Green="0.784314" Blue="0.607843" Alpha="1"><![CDATA[R_6r_ROI]]></Label>
123
+ <Label Key="79" Red="0.545098" Green="0.447059" Blue="0.396078" Alpha="1"><![CDATA[R_IFJa_ROI]]></Label>
124
+ <Label Key="80" Red="0.513726" Green="0.545098" Blue="0.501961" Alpha="1"><![CDATA[R_IFJp_ROI]]></Label>
125
+ <Label Key="81" Red="0.517647" Green="0.411765" Blue="0.458824" Alpha="1"><![CDATA[R_IFSp_ROI]]></Label>
126
+ <Label Key="82" Red="0.827451" Green="0.776471" Blue="0.737255" Alpha="1"><![CDATA[R_IFSa_ROI]]></Label>
127
+ <Label Key="83" Red="0.6" Green="0.533333" Blue="0.533333" Alpha="1"><![CDATA[R_p9-46v_ROI]]></Label>
128
+ <Label Key="84" Red="0.768627" Green="0.780392" Blue="0.729412" Alpha="1"><![CDATA[R_46_ROI]]></Label>
129
+ <Label Key="85" Red="0.690196" Green="0.470588" Blue="0.588235" Alpha="1"><![CDATA[R_a9-46v_ROI]]></Label>
130
+ <Label Key="86" Red="0.631373" Green="0.482353" Blue="0.572549" Alpha="1"><![CDATA[R_9-46d_ROI]]></Label>
131
+ <Label Key="87" Red="0.278431" Green="0.223529" Blue="0.235294" Alpha="1"><![CDATA[R_9a_ROI]]></Label>
132
+ <Label Key="88" Red="0" Green="0.0313726" Blue="0.00392157" Alpha="1"><![CDATA[R_10v_ROI]]></Label>
133
+ <Label Key="89" Red="0.501961" Green="0.333333" Blue="0.435294" Alpha="1"><![CDATA[R_a10p_ROI]]></Label>
134
+ <Label Key="90" Red="0.231373" Green="0.172549" Blue="0.211765" Alpha="1"><![CDATA[R_10pp_ROI]]></Label>
135
+ <Label Key="91" Red="0.494118" Green="0.368627" Blue="0.435294" Alpha="1"><![CDATA[R_11l_ROI]]></Label>
136
+ <Label Key="92" Red="0.462745" Green="0.341176" Blue="0.388235" Alpha="1"><![CDATA[R_13l_ROI]]></Label>
137
+ <Label Key="93" Red="0.207843" Green="0.145098" Blue="0.156863" Alpha="1"><![CDATA[R_OFC_ROI]]></Label>
138
+ <Label Key="94" Red="0.270588" Green="0.12549" Blue="0.141176" Alpha="1"><![CDATA[R_47s_ROI]]></Label>
139
+ <Label Key="95" Red="0.584314" Green="0.694118" Blue="0.772549" Alpha="1"><![CDATA[R_LIPd_ROI]]></Label>
140
+ <Label Key="96" Red="0.501961" Green="0.772549" Blue="0.564706" Alpha="1"><![CDATA[R_6a_ROI]]></Label>
141
+ <Label Key="97" Red="0.482353" Green="0.458824" Blue="0.415686" Alpha="1"><![CDATA[R_i6-8_ROI]]></Label>
142
+ <Label Key="98" Red="0.407843" Green="0.34902" Blue="0.321569" Alpha="1"><![CDATA[R_s6-8_ROI]]></Label>
143
+ <Label Key="99" Red="0.588235" Green="0.533333" Blue="0.258824" Alpha="1"><![CDATA[R_43_ROI]]></Label>
144
+ <Label Key="100" Red="0.396078" Green="0.615686" Blue="0.168627" Alpha="1"><![CDATA[R_OP4_ROI]]></Label>
145
+ <Label Key="101" Red="0.364706" Green="0.560784" Blue="0.141176" Alpha="1"><![CDATA[R_OP1_ROI]]></Label>
146
+ <Label Key="102" Red="0.568627" Green="0.462745" Blue="0.239216" Alpha="1"><![CDATA[R_OP2-3_ROI]]></Label>
147
+ <Label Key="103" Red="0.792157" Green="0.266667" Blue="0.219608" Alpha="1"><![CDATA[R_52_ROI]]></Label>
148
+ <Label Key="104" Red="0.643137" Green="0.329412" Blue="0.168627" Alpha="1"><![CDATA[R_RI_ROI]]></Label>
149
+ <Label Key="105" Red="0.67451" Green="0.572549" Blue="0.34902" Alpha="1"><![CDATA[R_PFcm_ROI]]></Label>
150
+ <Label Key="106" Red="0.517647" Green="0.486275" Blue="0.32549" Alpha="1"><![CDATA[R_PoI2_ROI]]></Label>
151
+ <Label Key="107" Red="0.533333" Green="0.141176" Blue="0.117647" Alpha="1"><![CDATA[R_TA2_ROI]]></Label>
152
+ <Label Key="108" Red="0.780392" Green="0.580392" Blue="0.556863" Alpha="1"><![CDATA[R_FOP4_ROI]]></Label>
153
+ <Label Key="109" Red="0.65098" Green="0.466667" Blue="0.447059" Alpha="1"><![CDATA[R_MI_ROI]]></Label>
154
+ <Label Key="110" Red="0.419608" Green="0.309804" Blue="0.282353" Alpha="1"><![CDATA[R_Pir_ROI]]></Label>
155
+ <Label Key="111" Red="0.596078" Green="0.290196" Blue="0.356863" Alpha="1"><![CDATA[R_AVI_ROI]]></Label>
156
+ <Label Key="112" Red="0.380392" Green="0.156863" Blue="0.184314" Alpha="1"><![CDATA[R_AAIC_ROI]]></Label>
157
+ <Label Key="113" Red="0.580392" Green="0.490196" Blue="0.321569" Alpha="1"><![CDATA[R_FOP1_ROI]]></Label>
158
+ <Label Key="114" Red="0.72549" Green="0.521569" Blue="0.419608" Alpha="1"><![CDATA[R_FOP3_ROI]]></Label>
159
+ <Label Key="115" Red="0.388235" Green="0.611765" Blue="0.219608" Alpha="1"><![CDATA[R_FOP2_ROI]]></Label>
160
+ <Label Key="116" Red="0.423529" Green="0.792157" Blue="0.45098" Alpha="1"><![CDATA[R_PFt_ROI]]></Label>
161
+ <Label Key="117" Red="0.513726" Green="0.843137" Blue="0.635294" Alpha="1"><![CDATA[R_AIP_ROI]]></Label>
162
+ <Label Key="118" Red="0.219608" Green="0.196078" Blue="0.156863" Alpha="1"><![CDATA[R_EC_ROI]]></Label>
163
+ <Label Key="119" Red="0.403922" Green="0.266667" Blue="0.380392" Alpha="1"><![CDATA[R_PreS_ROI]]></Label>
164
+ <Label Key="120" Red="0.258824" Green="0.247059" Blue="0.180392" Alpha="1"><![CDATA[R_H_ROI]]></Label>
165
+ <Label Key="121" Red="0.388235" Green="0.32549" Blue="0.694118" Alpha="1"><![CDATA[R_ProS_ROI]]></Label>
166
+ <Label Key="122" Red="0.25098" Green="0.235294" Blue="0.211765" Alpha="1"><![CDATA[R_PeEc_ROI]]></Label>
167
+ <Label Key="123" Red="0.227451" Green="0.176471" Blue="0.105882" Alpha="1"><![CDATA[R_STGa_ROI]]></Label>
168
+ <Label Key="124" Red="0.772549" Green="0.0862745" Blue="0.0509804" Alpha="1"><![CDATA[R_PBelt_ROI]]></Label>
169
+ <Label Key="125" Red="0.439216" Green="0.160784" Blue="0.0235294" Alpha="1"><![CDATA[R_A5_ROI]]></Label>
170
+ <Label Key="126" Red="0.290196" Green="0.239216" Blue="0.337255" Alpha="1"><![CDATA[R_PHA1_ROI]]></Label>
171
+ <Label Key="127" Red="0.372549" Green="0.419608" Blue="0.494118" Alpha="1"><![CDATA[R_PHA3_ROI]]></Label>
172
+ <Label Key="128" Red="0.282353" Green="0.219608" Blue="0.164706" Alpha="1"><![CDATA[R_STSda_ROI]]></Label>
173
+ <Label Key="129" Red="0.376471" Green="0.254902" Blue="0.211765" Alpha="1"><![CDATA[R_STSdp_ROI]]></Label>
174
+ <Label Key="130" Red="0.368627" Green="0.207843" Blue="0.25098" Alpha="1"><![CDATA[R_STSvp_ROI]]></Label>
175
+ <Label Key="131" Red="0.145098" Green="0.133333" Blue="0.105882" Alpha="1"><![CDATA[R_TGd_ROI]]></Label>
176
+ <Label Key="132" Red="0.0352941" Green="0.027451" Blue="0" Alpha="1"><![CDATA[R_TE1a_ROI]]></Label>
177
+ <Label Key="133" Red="0.443137" Green="0.407843" Blue="0.403922" Alpha="1"><![CDATA[R_TE1p_ROI]]></Label>
178
+ <Label Key="134" Red="0.282353" Green="0.223529" Blue="0.223529" Alpha="1"><![CDATA[R_TE2a_ROI]]></Label>
179
+ <Label Key="135" Red="0.266667" Green="0.290196" Blue="0.247059" Alpha="1"><![CDATA[R_TF_ROI]]></Label>
180
+ <Label Key="136" Red="0.427451" Green="0.545098" Blue="0.501961" Alpha="1"><![CDATA[R_TE2p_ROI]]></Label>
181
+ <Label Key="137" Red="0.811765" Green="0.964706" Blue="0.839216" Alpha="1"><![CDATA[R_PHT_ROI]]></Label>
182
+ <Label Key="138" Red="0.294118" Green="0.501961" Blue="0.631373" Alpha="1"><![CDATA[R_PH_ROI]]></Label>
183
+ <Label Key="139" Red="0.490196" Green="0.368627" Blue="0.305882" Alpha="1"><![CDATA[R_TPOJ1_ROI]]></Label>
184
+ <Label Key="140" Red="0.52549" Green="0.619608" Blue="0.545098" Alpha="1"><![CDATA[R_TPOJ2_ROI]]></Label>
185
+ <Label Key="141" Red="0.4" Green="0.54902" Blue="0.560784" Alpha="1"><![CDATA[R_TPOJ3_ROI]]></Label>
186
+ <Label Key="142" Red="0.486275" Green="0.517647" Blue="0.776471" Alpha="1"><![CDATA[R_DVT_ROI]]></Label>
187
+ <Label Key="143" Red="0.596078" Green="0.788235" Blue="0.866667" Alpha="1"><![CDATA[R_PGp_ROI]]></Label>
188
+ <Label Key="144" Red="0.745098" Green="0.690196" Blue="0.698039" Alpha="1"><![CDATA[R_IP2_ROI]]></Label>
189
+ <Label Key="145" Red="0.513726" Green="0.454902" Blue="0.505882" Alpha="1"><![CDATA[R_IP1_ROI]]></Label>
190
+ <Label Key="146" Red="0.431373" Green="0.643137" Blue="0.823529" Alpha="1"><![CDATA[R_IP0_ROI]]></Label>
191
+ <Label Key="147" Red="0.643137" Green="0.745098" Blue="0.509804" Alpha="1"><![CDATA[R_PFop_ROI]]></Label>
192
+ <Label Key="148" Red="1" Green="0.968627" Blue="0.847059" Alpha="1"><![CDATA[R_PF_ROI]]></Label>
193
+ <Label Key="149" Red="0.670588" Green="0.482353" Blue="0.529412" Alpha="1"><![CDATA[R_PFm_ROI]]></Label>
194
+ <Label Key="150" Red="0.239216" Green="0.247059" Blue="0.219608" Alpha="1"><![CDATA[R_PGi_ROI]]></Label>
195
+ <Label Key="151" Red="0.411765" Green="0.321569" Blue="0.321569" Alpha="1"><![CDATA[R_PGs_ROI]]></Label>
196
+ <Label Key="152" Red="0.203922" Green="0.4" Blue="0.701961" Alpha="1"><![CDATA[R_V6A_ROI]]></Label>
197
+ <Label Key="153" Red="0.235294" Green="0.27451" Blue="0.682353" Alpha="1"><![CDATA[R_VMV1_ROI]]></Label>
198
+ <Label Key="154" Red="0.2" Green="0.258824" Blue="0.643137" Alpha="1"><![CDATA[R_VMV3_ROI]]></Label>
199
+ <Label Key="155" Red="0.345098" Green="0.376471" Blue="0.392157" Alpha="1"><![CDATA[R_PHA2_ROI]]></Label>
200
+ <Label Key="156" Red="0.0705882" Green="0.364706" Blue="0.517647" Alpha="1"><![CDATA[R_V4t_ROI]]></Label>
201
+ <Label Key="157" Red="0.294118" Green="0.627451" Blue="0.576471" Alpha="1"><![CDATA[R_FST_ROI]]></Label>
202
+ <Label Key="158" Red="0.109804" Green="0.278431" Blue="0.796078" Alpha="1"><![CDATA[R_V3CD_ROI]]></Label>
203
+ <Label Key="159" Red="0.254902" Green="0.4" Blue="0.686275" Alpha="1"><![CDATA[R_LO3_ROI]]></Label>
204
+ <Label Key="160" Red="0.266667" Green="0.290196" Blue="0.690196" Alpha="1"><![CDATA[R_VMV2_ROI]]></Label>
205
+ <Label Key="161" Red="0.392157" Green="0.172549" Blue="0.321569" Alpha="1"><![CDATA[R_31pd_ROI]]></Label>
206
+ <Label Key="162" Red="0.576471" Green="0.388235" Blue="0.490196" Alpha="1"><![CDATA[R_31a_ROI]]></Label>
207
+ <Label Key="163" Red="0.231373" Green="0.262745" Blue="0.486275" Alpha="1"><![CDATA[R_VVC_ROI]]></Label>
208
+ <Label Key="164" Red="0.141176" Green="0.0745098" Blue="0.0509804" Alpha="1"><![CDATA[R_25_ROI]]></Label>
209
+ <Label Key="165" Red="0.129412" Green="0.0392157" Blue="0.027451" Alpha="1"><![CDATA[R_s32_ROI]]></Label>
210
+ <Label Key="166" Red="0.396078" Green="0.223529" Blue="0.27451" Alpha="1"><![CDATA[R_pOFC_ROI]]></Label>
211
+ <Label Key="167" Red="0.713726" Green="0.443137" Blue="0.415686" Alpha="1"><![CDATA[R_PoI1_ROI]]></Label>
212
+ <Label Key="168" Red="0.415686" Green="0.501961" Blue="0.156863" Alpha="1"><![CDATA[R_Ig_ROI]]></Label>
213
+ <Label Key="169" Red="0.682353" Green="0.368627" Blue="0.431373" Alpha="1"><![CDATA[R_FOP5_ROI]]></Label>
214
+ <Label Key="170" Red="0.411765" Green="0.286275" Blue="0.34902" Alpha="1"><![CDATA[R_p10p_ROI]]></Label>
215
+ <Label Key="171" Red="0.635294" Green="0.443137" Blue="0.494118" Alpha="1"><![CDATA[R_p47r_ROI]]></Label>
216
+ <Label Key="172" Red="0.247059" Green="0.25098" Blue="0.215686" Alpha="1"><![CDATA[R_TGv_ROI]]></Label>
217
+ <Label Key="173" Red="0.741176" Green="0.0392157" Blue="0.0901961" Alpha="1"><![CDATA[R_MBelt_ROI]]></Label>
218
+ <Label Key="174" Red="0.835294" Green="0.0901961" Blue="0.117647" Alpha="1"><![CDATA[R_LBelt_ROI]]></Label>
219
+ <Label Key="175" Red="0.607843" Green="0.137255" Blue="0.0352941" Alpha="1"><![CDATA[R_A4_ROI]]></Label>
220
+ <Label Key="176" Red="0.168627" Green="0.141176" Blue="0.109804" Alpha="1"><![CDATA[R_STSva_ROI]]></Label>
221
+ <Label Key="177" Red="0.360784" Green="0.207843" Blue="0.239216" Alpha="1"><![CDATA[R_TE1m_ROI]]></Label>
222
+ <Label Key="178" Red="0.498039" Green="0.207843" Blue="0.219608" Alpha="1"><![CDATA[R_PI_ROI]]></Label>
223
+ <Label Key="179" Red="0.619608" Green="0.301961" Blue="0.415686" Alpha="1"><![CDATA[R_a32pr_ROI]]></Label>
224
+ <Label Key="180" Red="0.494118" Green="0.14902" Blue="0.294118" Alpha="1"><![CDATA[R_p24_ROI]]></Label>
225
+ <Label Key="181" Red="0.262745" Green="0.0392157" Blue="1" Alpha="1"><![CDATA[L_V1_ROI]]></Label>
226
+ <Label Key="182" Red="0.192157" Green="0.356863" Blue="0.498039" Alpha="1"><![CDATA[L_MST_ROI]]></Label>
227
+ <Label Key="183" Red="0.192157" Green="0.333333" Blue="0.658824" Alpha="1"><![CDATA[L_V6_ROI]]></Label>
228
+ <Label Key="184" Red="0.0509804" Green="0.2" Blue="0.929412" Alpha="1"><![CDATA[L_V2_ROI]]></Label>
229
+ <Label Key="185" Red="0.0196078" Green="0.133333" Blue="0.913725" Alpha="1"><![CDATA[L_V3_ROI]]></Label>
230
+ <Label Key="186" Red="0.0352941" Green="0.0784314" Blue="0.835294" Alpha="1"><![CDATA[L_V4_ROI]]></Label>
231
+ <Label Key="187" Red="0.0705882" Green="0.160784" Blue="0.74902" Alpha="1"><![CDATA[L_V8_ROI]]></Label>
232
+ <Label Key="188" Red="0.109804" Green="0.682353" Blue="0.0823529" Alpha="1"><![CDATA[L_4_ROI]]></Label>
233
+ <Label Key="189" Red="0.113725" Green="0.8" Blue="0.0745098" Alpha="1"><![CDATA[L_3b_ROI]]></Label>
234
+ <Label Key="190" Red="0.517647" Green="0.560784" Blue="0.537255" Alpha="1"><![CDATA[L_FEF_ROI]]></Label>
235
+ <Label Key="191" Red="0.541176" Green="0.611765" Blue="0.580392" Alpha="1"><![CDATA[L_PEF_ROI]]></Label>
236
+ <Label Key="192" Red="0.235294" Green="0.341176" Blue="0.192157" Alpha="1"><![CDATA[L_55b_ROI]]></Label>
237
+ <Label Key="193" Red="0.00784314" Green="0.235294" Blue="0.968627" Alpha="1"><![CDATA[L_V3A_ROI]]></Label>
238
+ <Label Key="194" Red="0.592157" Green="0.25098" Blue="0.486275" Alpha="1"><![CDATA[L_RSC_ROI]]></Label>
239
+ <Label Key="195" Red="0.733333" Green="0.368627" Blue="0.733333" Alpha="1"><![CDATA[L_POS2_ROI]]></Label>
240
+ <Label Key="196" Red="0.0352941" Green="0.286275" Blue="0.737255" Alpha="1"><![CDATA[L_V7_ROI]]></Label>
241
+ <Label Key="197" Red="0.184314" Green="0.419608" Blue="0.647059" Alpha="1"><![CDATA[L_IPS1_ROI]]></Label>
242
+ <Label Key="198" Red="0.223529" Green="0.333333" Blue="0.462745" Alpha="1"><![CDATA[L_FFC_ROI]]></Label>
243
+ <Label Key="199" Red="0.0784314" Green="0.188235" Blue="0.792157" Alpha="1"><![CDATA[L_V3B_ROI]]></Label>
244
+ <Label Key="200" Red="0" Green="0.160784" Blue="0.721569" Alpha="1"><![CDATA[L_LO1_ROI]]></Label>
245
+ <Label Key="201" Red="0.0352941" Green="0.113725" Blue="0.713726" Alpha="1"><![CDATA[L_LO2_ROI]]></Label>
246
+ <Label Key="202" Red="0.105882" Green="0.12549" Blue="0.678431" Alpha="1"><![CDATA[L_PIT_ROI]]></Label>
247
+ <Label Key="203" Red="0.0941176" Green="0.317647" Blue="0.380392" Alpha="1"><![CDATA[L_MT_ROI]]></Label>
248
+ <Label Key="204" Red="0.886275" Green="0.0901961" Blue="0.164706" Alpha="1"><![CDATA[L_A1_ROI]]></Label>
249
+ <Label Key="205" Red="0.388235" Green="0.286275" Blue="0.184314" Alpha="1"><![CDATA[L_PSL_ROI]]></Label>
250
+ <Label Key="206" Red="0.0784314" Green="0.192157" Blue="0.0862745" Alpha="1"><![CDATA[L_SFL_ROI]]></Label>
251
+ <Label Key="207" Red="0.509804" Green="0.521569" Blue="0.603922" Alpha="1"><![CDATA[L_PCV_ROI]]></Label>
252
+ <Label Key="208" Red="0.521569" Green="0.32549" Blue="0.290196" Alpha="1"><![CDATA[L_STV_ROI]]></Label>
253
+ <Label Key="209" Red="0.596078" Green="0.721569" Blue="0.733333" Alpha="1"><![CDATA[L_7Pm_ROI]]></Label>
254
+ <Label Key="210" Red="0.133333" Green="0.141176" Blue="0.145098" Alpha="1"><![CDATA[L_7m_ROI]]></Label>
255
+ <Label Key="211" Red="0.309804" Green="0.223529" Blue="0.345098" Alpha="1"><![CDATA[L_POS1_ROI]]></Label>
256
+ <Label Key="212" Red="0.435294" Green="0.219608" Blue="0.317647" Alpha="1"><![CDATA[L_23d_ROI]]></Label>
257
+ <Label Key="213" Red="0.0745098" Green="0" Blue="0.0313726" Alpha="1"><![CDATA[L_v23ab_ROI]]></Label>
258
+ <Label Key="214" Red="0.262745" Green="0.109804" Blue="0.196078" Alpha="1"><![CDATA[L_d23ab_ROI]]></Label>
259
+ <Label Key="215" Red="0.188235" Green="0.0666667" Blue="0.160784" Alpha="1"><![CDATA[L_31pv_ROI]]></Label>
260
+ <Label Key="216" Red="0.14902" Green="0.65098" Blue="0.192157" Alpha="1"><![CDATA[L_5m_ROI]]></Label>
261
+ <Label Key="217" Red="0.564706" Green="0.67451" Blue="0.517647" Alpha="1"><![CDATA[L_5mv_ROI]]></Label>
262
+ <Label Key="218" Red="0.811765" Green="0.737255" Blue="0.74902" Alpha="1"><![CDATA[L_23c_ROI]]></Label>
263
+ <Label Key="219" Red="0.207843" Green="0.619608" Blue="0.258824" Alpha="1"><![CDATA[L_5L_ROI]]></Label>
264
+ <Label Key="220" Red="0.231373" Green="0.627451" Blue="0.14902" Alpha="1"><![CDATA[L_24dd_ROI]]></Label>
265
+ <Label Key="221" Red="0.466667" Green="0.607843" Blue="0.262745" Alpha="1"><![CDATA[L_24dv_ROI]]></Label>
266
+ <Label Key="222" Red="0.411765" Green="0.772549" Blue="0.533333" Alpha="1"><![CDATA[L_7AL_ROI]]></Label>
267
+ <Label Key="223" Red="0.392157" Green="0.564706" Blue="0.32549" Alpha="1"><![CDATA[L_SCEF_ROI]]></Label>
268
+ <Label Key="224" Red="0.54902" Green="0.682353" Blue="0.52549" Alpha="1"><![CDATA[L_6ma_ROI]]></Label>
269
+ <Label Key="225" Red="0.694118" Green="0.956863" Blue="0.87451" Alpha="1"><![CDATA[L_7Am_ROI]]></Label>
270
+ <Label Key="226" Red="0.678431" Green="1" Blue="0.937255" Alpha="1"><![CDATA[L_7PL_ROI]]></Label>
271
+ <Label Key="227" Red="0.243137" Green="0.690196" Blue="0.423529" Alpha="1"><![CDATA[L_7PC_ROI]]></Label>
272
+ <Label Key="228" Red="0.247059" Green="0.439216" Blue="0.643137" Alpha="1"><![CDATA[L_LIPv_ROI]]></Label>
273
+ <Label Key="229" Red="0.180392" Green="0.556863" Blue="0.545098" Alpha="1"><![CDATA[L_VIP_ROI]]></Label>
274
+ <Label Key="230" Red="0.509804" Green="0.8" Blue="0.784314" Alpha="1"><![CDATA[L_MIP_ROI]]></Label>
275
+ <Label Key="231" Red="0.0431373" Green="0.760784" Blue="0.137255" Alpha="1"><![CDATA[L_1_ROI]]></Label>
276
+ <Label Key="232" Red="0.172549" Green="0.690196" Blue="0.247059" Alpha="1"><![CDATA[L_2_ROI]]></Label>
277
+ <Label Key="233" Red="0.172549" Green="0.866667" Blue="0.0862745" Alpha="1"><![CDATA[L_3a_ROI]]></Label>
278
+ <Label Key="234" Red="0.0862745" Green="0.631373" Blue="0.137255" Alpha="1"><![CDATA[L_6d_ROI]]></Label>
279
+ <Label Key="235" Red="0.243137" Green="0.631373" Blue="0.164706" Alpha="1"><![CDATA[L_6mp_ROI]]></Label>
280
+ <Label Key="236" Red="0.262745" Green="0.670588" Blue="0.207843" Alpha="1"><![CDATA[L_6v_ROI]]></Label>
281
+ <Label Key="237" Red="0.521569" Green="0.513726" Blue="0.388235" Alpha="1"><![CDATA[L_p24pr_ROI]]></Label>
282
+ <Label Key="238" Red="0.505882" Green="0.439216" Blue="0.396078" Alpha="1"><![CDATA[L_33pr_ROI]]></Label>
283
+ <Label Key="239" Red="0.623529" Green="0.482353" Blue="0.462745" Alpha="1"><![CDATA[L_a24pr_ROI]]></Label>
284
+ <Label Key="240" Red="0.592157" Green="0.541176" Blue="0.454902" Alpha="1"><![CDATA[L_p32pr_ROI]]></Label>
285
+ <Label Key="241" Red="0.254902" Green="0.0431373" Blue="0.0823529" Alpha="1"><![CDATA[L_a24_ROI]]></Label>
286
+ <Label Key="242" Red="0.356863" Green="0.160784" Blue="0.184314" Alpha="1"><![CDATA[L_d32_ROI]]></Label>
287
+ <Label Key="243" Red="0.423529" Green="0.317647" Blue="0.321569" Alpha="1"><![CDATA[L_8BM_ROI]]></Label>
288
+ <Label Key="244" Red="0.364706" Green="0.129412" Blue="0.203922" Alpha="1"><![CDATA[L_p32_ROI]]></Label>
289
+ <Label Key="245" Red="0.0784314" Green="0.0196078" Blue="0" Alpha="1"><![CDATA[L_10r_ROI]]></Label>
290
+ <Label Key="246" Red="0.392157" Green="0.321569" Blue="0.301961" Alpha="1"><![CDATA[L_47m_ROI]]></Label>
291
+ <Label Key="247" Red="0.215686" Green="0.223529" Blue="0.184314" Alpha="1"><![CDATA[L_8Av_ROI]]></Label>
292
+ <Label Key="248" Red="0.243137" Green="0.243137" Blue="0.184314" Alpha="1"><![CDATA[L_8Ad_ROI]]></Label>
293
+ <Label Key="249" Red="0.145098" Green="0.152941" Blue="0.0862745" Alpha="1"><![CDATA[L_9m_ROI]]></Label>
294
+ <Label Key="250" Red="0.0941176" Green="0.14902" Blue="0.0705882" Alpha="1"><![CDATA[L_8BL_ROI]]></Label>
295
+ <Label Key="251" Red="0.145098" Green="0.160784" Blue="0.109804" Alpha="1"><![CDATA[L_9p_ROI]]></Label>
296
+ <Label Key="252" Red="0.12549" Green="0.137255" Blue="0.105882" Alpha="1"><![CDATA[L_10d_ROI]]></Label>
297
+ <Label Key="253" Red="0.388235" Green="0.309804" Blue="0.32549" Alpha="1"><![CDATA[L_8C_ROI]]></Label>
298
+ <Label Key="254" Red="0.282353" Green="0.32549" Blue="0.219608" Alpha="1"><![CDATA[L_44_ROI]]></Label>
299
+ <Label Key="255" Red="0.180392" Green="0.25098" Blue="0.160784" Alpha="1"><![CDATA[L_45_ROI]]></Label>
300
+ <Label Key="256" Red="0.152941" Green="0.196078" Blue="0.117647" Alpha="1"><![CDATA[L_47l_ROI]]></Label>
301
+ <Label Key="257" Red="0.317647" Green="0.290196" Blue="0.270588" Alpha="1"><![CDATA[L_a47r_ROI]]></Label>
302
+ <Label Key="258" Red="0.67451" Green="0.803922" Blue="0.576471" Alpha="1"><![CDATA[L_6r_ROI]]></Label>
303
+ <Label Key="259" Red="0.45098" Green="0.419608" Blue="0.360784" Alpha="1"><![CDATA[L_IFJa_ROI]]></Label>
304
+ <Label Key="260" Red="0.501961" Green="0.552941" Blue="0.478431" Alpha="1"><![CDATA[L_IFJp_ROI]]></Label>
305
+ <Label Key="261" Red="0.396078" Green="0.384314" Blue="0.360784" Alpha="1"><![CDATA[L_IFSp_ROI]]></Label>
306
+ <Label Key="262" Red="0.729412" Green="0.741176" Blue="0.686275" Alpha="1"><![CDATA[L_IFSa_ROI]]></Label>
307
+ <Label Key="263" Red="0.54902" Green="0.564706" Blue="0.533333" Alpha="1"><![CDATA[L_p9-46v_ROI]]></Label>
308
+ <Label Key="264" Red="0.792157" Green="0.827451" Blue="0.768627" Alpha="1"><![CDATA[L_46_ROI]]></Label>
309
+ <Label Key="265" Red="0.54902" Green="0.431373" Blue="0.509804" Alpha="1"><![CDATA[L_a9-46v_ROI]]></Label>
310
+ <Label Key="266" Red="0.505882" Green="0.439216" Blue="0.498039" Alpha="1"><![CDATA[L_9-46d_ROI]]></Label>
311
+ <Label Key="267" Red="0.184314" Green="0.211765" Blue="0.184314" Alpha="1"><![CDATA[L_9a_ROI]]></Label>
312
+ <Label Key="268" Red="0.0117647" Green="0.121569" Blue="0.0431373" Alpha="1"><![CDATA[L_10v_ROI]]></Label>
313
+ <Label Key="269" Red="0.360784" Green="0.262745" Blue="0.321569" Alpha="1"><![CDATA[L_a10p_ROI]]></Label>
314
+ <Label Key="270" Red="0.211765" Green="0.2" Blue="0.219608" Alpha="1"><![CDATA[L_10pp_ROI]]></Label>
315
+ <Label Key="271" Red="0.505882" Green="0.415686" Blue="0.466667" Alpha="1"><![CDATA[L_11l_ROI]]></Label>
316
+ <Label Key="272" Red="0.345098" Green="0.247059" Blue="0.290196" Alpha="1"><![CDATA[L_13l_ROI]]></Label>
317
+ <Label Key="273" Red="0.156863" Green="0.152941" Blue="0.137255" Alpha="1"><![CDATA[L_OFC_ROI]]></Label>
318
+ <Label Key="274" Red="0.243137" Green="0.14902" Blue="0.137255" Alpha="1"><![CDATA[L_47s_ROI]]></Label>
319
+ <Label Key="275" Red="0.607843" Green="0.67451" Blue="0.796078" Alpha="1"><![CDATA[L_LIPd_ROI]]></Label>
320
+ <Label Key="276" Red="0.478431" Green="0.752941" Blue="0.533333" Alpha="1"><![CDATA[L_6a_ROI]]></Label>
321
+ <Label Key="277" Red="0.384314" Green="0.396078" Blue="0.352941" Alpha="1"><![CDATA[L_i6-8_ROI]]></Label>
322
+ <Label Key="278" Red="0.364706" Green="0.352941" Blue="0.298039" Alpha="1"><![CDATA[L_s6-8_ROI]]></Label>
323
+ <Label Key="279" Red="0.52549" Green="0.537255" Blue="0.239216" Alpha="1"><![CDATA[L_43_ROI]]></Label>
324
+ <Label Key="280" Red="0.384314" Green="0.592157" Blue="0.164706" Alpha="1"><![CDATA[L_OP4_ROI]]></Label>
325
+ <Label Key="281" Red="0.368627" Green="0.6" Blue="0.14902" Alpha="1"><![CDATA[L_OP1_ROI]]></Label>
326
+ <Label Key="282" Red="0.52549" Green="0.466667" Blue="0.196078" Alpha="1"><![CDATA[L_OP2-3_ROI]]></Label>
327
+ <Label Key="283" Red="0.815686" Green="0.298039" Blue="0.239216" Alpha="1"><![CDATA[L_52_ROI]]></Label>
328
+ <Label Key="284" Red="0.65098" Green="0.270588" Blue="0.0980392" Alpha="1"><![CDATA[L_RI_ROI]]></Label>
329
+ <Label Key="285" Red="0.698039" Green="0.568627" Blue="0.352941" Alpha="1"><![CDATA[L_PFcm_ROI]]></Label>
330
+ <Label Key="286" Red="0.482353" Green="0.498039" Blue="0.317647" Alpha="1"><![CDATA[L_PoI2_ROI]]></Label>
331
+ <Label Key="287" Red="0.494118" Green="0.156863" Blue="0.0901961" Alpha="1"><![CDATA[L_TA2_ROI]]></Label>
332
+ <Label Key="288" Red="0.662745" Green="0.541176" Blue="0.478431" Alpha="1"><![CDATA[L_FOP4_ROI]]></Label>
333
+ <Label Key="289" Red="0.584314" Green="0.435294" Blue="0.407843" Alpha="1"><![CDATA[L_MI_ROI]]></Label>
334
+ <Label Key="290" Red="0.356863" Green="0.278431" Blue="0.254902" Alpha="1"><![CDATA[L_Pir_ROI]]></Label>
335
+ <Label Key="291" Red="0.521569" Green="0.27451" Blue="0.32549" Alpha="1"><![CDATA[L_AVI_ROI]]></Label>
336
+ <Label Key="292" Red="0.333333" Green="0.133333" Blue="0.156863" Alpha="1"><![CDATA[L_AAIC_ROI]]></Label>
337
+ <Label Key="293" Red="0.556863" Green="0.564706" Blue="0.305882" Alpha="1"><![CDATA[L_FOP1_ROI]]></Label>
338
+ <Label Key="294" Red="0.678431" Green="0.521569" Blue="0.392157" Alpha="1"><![CDATA[L_FOP3_ROI]]></Label>
339
+ <Label Key="295" Red="0.384314" Green="0.611765" Blue="0.223529" Alpha="1"><![CDATA[L_FOP2_ROI]]></Label>
340
+ <Label Key="296" Red="0.533333" Green="0.87451" Blue="0.552941" Alpha="1"><![CDATA[L_PFt_ROI]]></Label>
341
+ <Label Key="297" Red="0.541176" Green="0.858824" Blue="0.647059" Alpha="1"><![CDATA[L_AIP_ROI]]></Label>
342
+ <Label Key="298" Red="0.184314" Green="0.196078" Blue="0.152941" Alpha="1"><![CDATA[L_EC_ROI]]></Label>
343
+ <Label Key="299" Red="0.376471" Green="0.239216" Blue="0.34902" Alpha="1"><![CDATA[L_PreS_ROI]]></Label>
344
+ <Label Key="300" Red="0.247059" Green="0.223529" Blue="0.176471" Alpha="1"><![CDATA[L_H_ROI]]></Label>
345
+ <Label Key="301" Red="0.360784" Green="0.278431" Blue="0.690196" Alpha="1"><![CDATA[L_ProS_ROI]]></Label>
346
+ <Label Key="302" Red="0.243137" Green="0.254902" Blue="0.223529" Alpha="1"><![CDATA[L_PeEc_ROI]]></Label>
347
+ <Label Key="303" Red="0.184314" Green="0.180392" Blue="0.0941176" Alpha="1"><![CDATA[L_STGa_ROI]]></Label>
348
+ <Label Key="304" Red="0.737255" Green="0.101961" Blue="0.0313726" Alpha="1"><![CDATA[L_PBelt_ROI]]></Label>
349
+ <Label Key="305" Red="0.352941" Green="0.172549" Blue="0.0392157" Alpha="1"><![CDATA[L_A5_ROI]]></Label>
350
+ <Label Key="306" Red="0.278431" Green="0.207843" Blue="0.329412" Alpha="1"><![CDATA[L_PHA1_ROI]]></Label>
351
+ <Label Key="307" Red="0.415686" Green="0.407843" Blue="0.486275" Alpha="1"><![CDATA[L_PHA3_ROI]]></Label>
352
+ <Label Key="308" Red="0.247059" Green="0.207843" Blue="0.137255" Alpha="1"><![CDATA[L_STSda_ROI]]></Label>
353
+ <Label Key="309" Red="0.223529" Green="0.227451" Blue="0.137255" Alpha="1"><![CDATA[L_STSdp_ROI]]></Label>
354
+ <Label Key="310" Red="0.25098" Green="0.207843" Blue="0.203922" Alpha="1"><![CDATA[L_STSvp_ROI]]></Label>
355
+ <Label Key="311" Red="0.109804" Green="0.145098" Blue="0.0941176" Alpha="1"><![CDATA[L_TGd_ROI]]></Label>
356
+ <Label Key="312" Red="0.0117647" Green="0.0588235" Blue="0.00392157" Alpha="1"><![CDATA[L_TE1a_ROI]]></Label>
357
+ <Label Key="313" Red="0.407843" Green="0.392157" Blue="0.380392" Alpha="1"><![CDATA[L_TE1p_ROI]]></Label>
358
+ <Label Key="314" Red="0.266667" Green="0.25098" Blue="0.235294" Alpha="1"><![CDATA[L_TE2a_ROI]]></Label>
359
+ <Label Key="315" Red="0.239216" Green="0.278431" Blue="0.219608" Alpha="1"><![CDATA[L_TF_ROI]]></Label>
360
+ <Label Key="316" Red="0.447059" Green="0.552941" Blue="0.501961" Alpha="1"><![CDATA[L_TE2p_ROI]]></Label>
361
+ <Label Key="317" Red="0.913725" Green="0.984314" Blue="0.894118" Alpha="1"><![CDATA[L_PHT_ROI]]></Label>
362
+ <Label Key="318" Red="0.329412" Green="0.470588" Blue="0.631373" Alpha="1"><![CDATA[L_PH_ROI]]></Label>
363
+ <Label Key="319" Red="0.462745" Green="0.360784" Blue="0.270588" Alpha="1"><![CDATA[L_TPOJ1_ROI]]></Label>
364
+ <Label Key="320" Red="0.596078" Green="0.603922" Blue="0.545098" Alpha="1"><![CDATA[L_TPOJ2_ROI]]></Label>
365
+ <Label Key="321" Red="0.462745" Green="0.533333" Blue="0.572549" Alpha="1"><![CDATA[L_TPOJ3_ROI]]></Label>
366
+ <Label Key="322" Red="0.447059" Green="0.478431" Blue="0.756863" Alpha="1"><![CDATA[L_DVT_ROI]]></Label>
367
+ <Label Key="323" Red="0.635294" Green="0.737255" Blue="0.901961" Alpha="1"><![CDATA[L_PGp_ROI]]></Label>
368
+ <Label Key="324" Red="0.721569" Green="0.65098" Blue="0.705882" Alpha="1"><![CDATA[L_IP2_ROI]]></Label>
369
+ <Label Key="325" Red="0.478431" Green="0.482353" Blue="0.533333" Alpha="1"><![CDATA[L_IP1_ROI]]></Label>
370
+ <Label Key="326" Red="0.447059" Green="0.603922" Blue="0.807843" Alpha="1"><![CDATA[L_IP0_ROI]]></Label>
371
+ <Label Key="327" Red="0.690196" Green="0.792157" Blue="0.54902" Alpha="1"><![CDATA[L_PFop_ROI]]></Label>
372
+ <Label Key="328" Red="1" Green="0.976471" Blue="0.87451" Alpha="1"><![CDATA[L_PF_ROI]]></Label>
373
+ <Label Key="329" Red="0.541176" Green="0.403922" Blue="0.45098" Alpha="1"><![CDATA[L_PFm_ROI]]></Label>
374
+ <Label Key="330" Red="0.2" Green="0.25098" Blue="0.2" Alpha="1"><![CDATA[L_PGi_ROI]]></Label>
375
+ <Label Key="331" Red="0.266667" Green="0.27451" Blue="0.235294" Alpha="1"><![CDATA[L_PGs_ROI]]></Label>
376
+ <Label Key="332" Red="0.109804" Green="0.360784" Blue="0.65098" Alpha="1"><![CDATA[L_V6A_ROI]]></Label>
377
+ <Label Key="333" Red="0.239216" Green="0.247059" Blue="0.694118" Alpha="1"><![CDATA[L_VMV1_ROI]]></Label>
378
+ <Label Key="334" Red="0.192157" Green="0.223529" Blue="0.65098" Alpha="1"><![CDATA[L_VMV3_ROI]]></Label>
379
+ <Label Key="335" Red="0.356863" Green="0.333333" Blue="0.352941" Alpha="1"><![CDATA[L_PHA2_ROI]]></Label>
380
+ <Label Key="336" Red="0.0431373" Green="0.298039" Blue="0.505882" Alpha="1"><![CDATA[L_V4t_ROI]]></Label>
381
+ <Label Key="337" Red="0.32549" Green="0.584314" Blue="0.588235" Alpha="1"><![CDATA[L_FST_ROI]]></Label>
382
+ <Label Key="338" Red="0.0588235" Green="0.184314" Blue="0.705882" Alpha="1"><![CDATA[L_V3CD_ROI]]></Label>
383
+ <Label Key="339" Red="0.207843" Green="0.352941" Blue="0.666667" Alpha="1"><![CDATA[L_LO3_ROI]]></Label>
384
+ <Label Key="340" Red="0.270588" Green="0.239216" Blue="0.662745" Alpha="1"><![CDATA[L_VMV2_ROI]]></Label>
385
+ <Label Key="341" Red="0.215686" Green="0.133333" Blue="0.215686" Alpha="1"><![CDATA[L_31pd_ROI]]></Label>
386
+ <Label Key="342" Red="0.568627" Green="0.396078" Blue="0.490196" Alpha="1"><![CDATA[L_31a_ROI]]></Label>
387
+ <Label Key="343" Red="0.2" Green="0.223529" Blue="0.486275" Alpha="1"><![CDATA[L_VVC_ROI]]></Label>
388
+ <Label Key="344" Red="0.117647" Green="0.0941176" Blue="0.0392157" Alpha="1"><![CDATA[L_25_ROI]]></Label>
389
+ <Label Key="345" Red="0.176471" Green="0.137255" Blue="0.0745098" Alpha="1"><![CDATA[L_s32_ROI]]></Label>
390
+ <Label Key="346" Red="0.321569" Green="0.227451" Blue="0.258824" Alpha="1"><![CDATA[L_pOFC_ROI]]></Label>
391
+ <Label Key="347" Red="0.662745" Green="0.45098" Blue="0.4" Alpha="1"><![CDATA[L_PoI1_ROI]]></Label>
392
+ <Label Key="348" Red="0.360784" Green="0.545098" Blue="0.145098" Alpha="1"><![CDATA[L_Ig_ROI]]></Label>
393
+ <Label Key="349" Red="0.596078" Green="0.380392" Blue="0.4" Alpha="1"><![CDATA[L_FOP5_ROI]]></Label>
394
+ <Label Key="350" Red="0.364706" Green="0.25098" Blue="0.329412" Alpha="1"><![CDATA[L_p10p_ROI]]></Label>
395
+ <Label Key="351" Red="0.52549" Green="0.462745" Blue="0.454902" Alpha="1"><![CDATA[L_p47r_ROI]]></Label>
396
+ <Label Key="352" Red="0.14902" Green="0.207843" Blue="0.160784" Alpha="1"><![CDATA[L_TGv_ROI]]></Label>
397
+ <Label Key="353" Red="0.713726" Green="0.0784314" Blue="0.0705882" Alpha="1"><![CDATA[L_MBelt_ROI]]></Label>
398
+ <Label Key="354" Red="0.901961" Green="0.0784314" Blue="0.105882" Alpha="1"><![CDATA[L_LBelt_ROI]]></Label>
399
+ <Label Key="355" Red="0.572549" Green="0.145098" Blue="0.0156863" Alpha="1"><![CDATA[L_A4_ROI]]></Label>
400
+ <Label Key="356" Red="0.0980392" Green="0.121569" Blue="0.0705882" Alpha="1"><![CDATA[L_STSva_ROI]]></Label>
401
+ <Label Key="357" Red="0.262745" Green="0.188235" Blue="0.192157" Alpha="1"><![CDATA[L_TE1m_ROI]]></Label>
402
+ <Label Key="358" Red="0.478431" Green="0.207843" Blue="0.196078" Alpha="1"><![CDATA[L_PI_ROI]]></Label>
403
+ <Label Key="359" Red="0.501961" Green="0.258824" Blue="0.337255" Alpha="1"><![CDATA[L_a32pr_ROI]]></Label>
404
+ <Label Key="360" Red="0.462745" Green="0.14902" Blue="0.27451" Alpha="1"><![CDATA[L_p24_ROI]]></Label>
405
+ <Label Key="361" Red="0.901961" Green="0.580392" Blue="0.133333" Alpha="1"><![CDATA[CEREBELLUM_LEFT]]></Label>
406
+ <Label Key="362" Red="0" Green="0.462745" Blue="0.054902" Alpha="1"><![CDATA[THALAMUS_LEFT]]></Label>
407
+ <Label Key="363" Red="0.478431" Green="0.729412" Blue="0.862745" Alpha="1"><![CDATA[CAUDATE_LEFT]]></Label>
408
+ <Label Key="364" Red="0.92549" Green="0.0509804" Blue="0.690196" Alpha="1"><![CDATA[PUTAMEN_LEFT]]></Label>
409
+ <Label Key="365" Red="0.0470588" Green="0.188235" Blue="1" Alpha="1"><![CDATA[PALLIDUM_LEFT]]></Label>
410
+ <Label Key="366" Red="0.466667" Green="0.623529" Blue="0.690196" Alpha="1"><![CDATA[BRAIN_STEM]]></Label>
411
+ <Label Key="367" Red="0.862745" Green="0.847059" Blue="0.0784314" Alpha="1"><![CDATA[HIPPOCAMPUS_LEFT]]></Label>
412
+ <Label Key="368" Red="0.403922" Green="1" Blue="1" Alpha="1"><![CDATA[AMYGDALA_LEFT]]></Label>
413
+ <Label Key="369" Red="1" Green="0.647059" Blue="0" Alpha="1"><![CDATA[ACCUMBENS_LEFT]]></Label>
414
+ <Label Key="370" Red="0.647059" Green="0.164706" Blue="0.164706" Alpha="1"><![CDATA[DIENCEPHALON_VENTRAL_LEFT]]></Label>
415
+ <Label Key="371" Red="0.901961" Green="0.580392" Blue="0.133333" Alpha="1"><![CDATA[CEREBELLUM_RIGHT]]></Label>
416
+ <Label Key="372" Red="0" Green="0.462745" Blue="0.054902" Alpha="1"><![CDATA[THALAMUS_RIGHT]]></Label>
417
+ <Label Key="373" Red="0.478431" Green="0.729412" Blue="0.862745" Alpha="1"><![CDATA[CAUDATE_RIGHT]]></Label>
418
+ <Label Key="374" Red="0.92549" Green="0.0509804" Blue="0.690196" Alpha="1"><![CDATA[PUTAMEN_RIGHT]]></Label>
419
+ <Label Key="375" Red="0.0509804" Green="0.188235" Blue="1" Alpha="1"><![CDATA[PALLIDUM_RIGHT]]></Label>
420
+ <Label Key="376" Red="0.862745" Green="0.847059" Blue="0.0784314" Alpha="1"><![CDATA[HIPPOCAMPUS_RIGHT]]></Label>
421
+ <Label Key="377" Red="0.403922" Green="1" Blue="1" Alpha="1"><![CDATA[AMYGDALA_RIGHT]]></Label>
422
+ <Label Key="378" Red="1" Green="0.647059" Blue="0" Alpha="1"><![CDATA[ACCUMBENS_RIGHT]]></Label>
423
+ <Label Key="379" Red="0.647059" Green="0.164706" Blue="0.164706" Alpha="1"><![CDATA[DIENCEPHALON_VENTRAL_RIGHT]]></Label>
424
+ </LabelTable>
425
+ <DataArray Intent="NIFTI_INTENT_LABEL"
426
+ DataType="NIFTI_TYPE_INT32"
427
+ ArrayIndexingOrder="RowMajorOrder"
428
+ Dimensionality="1"
429
+ Dim0="32492"
430
+ Encoding="GZipBase64Binary"
431
+ Endian="LittleEndian"
432
+ ExternalFileName=""
433
+ ExternalFileOffset="0">
434
+ <MetaData>
435
+ <MD>
436
+ <Name><![CDATA[Name]]></Name>
437
+ <Value><![CDATA[vertex areas]]></Value>
438
+ </MD>
439
+ </MetaData>
440
+ <Data>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</Data>
441
+ </DataArray>
442
+ </GIFTI>