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,256 @@
1
+ 0.014333 0.077207 0.154315
2
+ 0.016066 0.082375 0.161738
3
+ 0.017163 0.087266 0.169209
4
+ 0.017605 0.091958 0.176728
5
+ 0.018031 0.096343 0.184377
6
+ 0.018549 0.100817 0.192080
7
+ 0.019060 0.105298 0.199834
8
+ 0.019566 0.109895 0.207689
9
+ 0.020068 0.114388 0.215576
10
+ 0.020568 0.119051 0.223517
11
+ 0.021065 0.123671 0.231517
12
+ 0.021563 0.128403 0.239539
13
+ 0.022064 0.133145 0.247616
14
+ 0.022570 0.137944 0.255709
15
+ 0.023084 0.142737 0.263856
16
+ 0.023609 0.147595 0.271975
17
+ 0.024149 0.152451 0.280151
18
+ 0.024707 0.157369 0.288323
19
+ 0.025289 0.162348 0.296502
20
+ 0.025898 0.167323 0.304661
21
+ 0.026541 0.172305 0.312806
22
+ 0.027221 0.177360 0.320948
23
+ 0.027946 0.182382 0.329052
24
+ 0.028722 0.187501 0.337111
25
+ 0.029555 0.192576 0.345131
26
+ 0.030452 0.197696 0.353104
27
+ 0.031420 0.202834 0.361008
28
+ 0.032472 0.208000 0.368873
29
+ 0.033584 0.213159 0.376654
30
+ 0.034998 0.218368 0.384342
31
+ 0.036362 0.223569 0.391959
32
+ 0.037818 0.228796 0.399469
33
+ 0.039389 0.234008 0.406897
34
+ 0.041091 0.239251 0.414207
35
+ 0.042777 0.244481 0.421395
36
+ 0.044747 0.249737 0.428474
37
+ 0.046692 0.255026 0.435423
38
+ 0.048810 0.260276 0.442228
39
+ 0.050899 0.265543 0.448886
40
+ 0.053131 0.270823 0.455392
41
+ 0.055521 0.276095 0.461744
42
+ 0.057908 0.281337 0.467928
43
+ 0.060514 0.286592 0.473945
44
+ 0.063159 0.291865 0.479795
45
+ 0.065796 0.297113 0.485446
46
+ 0.068614 0.302327 0.490934
47
+ 0.071439 0.307548 0.496196
48
+ 0.074303 0.312754 0.501291
49
+ 0.077195 0.317943 0.506161
50
+ 0.080231 0.323108 0.510840
51
+ 0.083283 0.328232 0.515305
52
+ 0.086365 0.333340 0.519561
53
+ 0.089515 0.338390 0.523603
54
+ 0.092626 0.343422 0.527422
55
+ 0.095807 0.348401 0.531024
56
+ 0.098986 0.353329 0.534405
57
+ 0.102166 0.358206 0.537574
58
+ 0.105335 0.363018 0.540512
59
+ 0.108499 0.367769 0.543240
60
+ 0.111708 0.372453 0.545751
61
+ 0.114794 0.377075 0.548046
62
+ 0.117960 0.381606 0.550130
63
+ 0.121007 0.386048 0.552015
64
+ 0.124070 0.390420 0.553687
65
+ 0.127088 0.394701 0.555173
66
+ 0.130136 0.398888 0.556471
67
+ 0.133047 0.402990 0.557593
68
+ 0.135910 0.406994 0.558524
69
+ 0.138795 0.410911 0.559305
70
+ 0.141628 0.414726 0.559925
71
+ 0.144399 0.418449 0.560388
72
+ 0.147119 0.422086 0.560708
73
+ 0.149835 0.425646 0.560895
74
+ 0.152449 0.429114 0.560957
75
+ 0.155080 0.432508 0.560901
76
+ 0.157656 0.435813 0.560736
77
+ 0.160187 0.439035 0.560469
78
+ 0.162750 0.442211 0.560106
79
+ 0.165205 0.445296 0.559650
80
+ 0.167696 0.448330 0.559109
81
+ 0.170148 0.451304 0.558491
82
+ 0.172558 0.454220 0.557815
83
+ 0.174983 0.457076 0.557075
84
+ 0.177375 0.459889 0.556256
85
+ 0.179726 0.462650 0.555396
86
+ 0.182072 0.465373 0.554494
87
+ 0.184438 0.468058 0.553532
88
+ 0.186773 0.470708 0.552543
89
+ 0.189106 0.473305 0.551511
90
+ 0.191417 0.475892 0.550444
91
+ 0.193753 0.478432 0.549349
92
+ 0.196058 0.480944 0.548229
93
+ 0.198346 0.483435 0.547076
94
+ 0.200640 0.485903 0.545911
95
+ 0.202961 0.488356 0.544717
96
+ 0.205266 0.490786 0.543510
97
+ 0.207581 0.493179 0.542286
98
+ 0.209884 0.495576 0.541044
99
+ 0.212215 0.497968 0.539791
100
+ 0.214520 0.500322 0.538539
101
+ 0.216860 0.502680 0.537264
102
+ 0.219189 0.505034 0.535970
103
+ 0.221528 0.507382 0.534678
104
+ 0.223876 0.509722 0.533369
105
+ 0.226267 0.512060 0.532063
106
+ 0.228648 0.514408 0.530739
107
+ 0.231034 0.516745 0.529413
108
+ 0.233423 0.519094 0.528067
109
+ 0.235880 0.521435 0.526728
110
+ 0.238308 0.523796 0.525365
111
+ 0.240769 0.526163 0.524000
112
+ 0.243256 0.528537 0.522624
113
+ 0.245766 0.530918 0.521241
114
+ 0.248326 0.533312 0.519844
115
+ 0.250866 0.535722 0.518451
116
+ 0.253449 0.538161 0.517037
117
+ 0.256041 0.540598 0.515602
118
+ 0.258688 0.543063 0.514180
119
+ 0.261348 0.545545 0.512726
120
+ 0.264051 0.548048 0.511267
121
+ 0.266758 0.550570 0.509799
122
+ 0.269528 0.553113 0.508326
123
+ 0.272289 0.555684 0.506820
124
+ 0.275127 0.558283 0.505307
125
+ 0.277985 0.560914 0.503792
126
+ 0.280858 0.563577 0.502257
127
+ 0.283800 0.566256 0.500707
128
+ 0.286760 0.568967 0.499140
129
+ 0.289779 0.571718 0.497572
130
+ 0.292824 0.574493 0.495966
131
+ 0.295918 0.577313 0.494369
132
+ 0.299065 0.580169 0.492736
133
+ 0.302227 0.583049 0.491119
134
+ 0.305477 0.585981 0.489452
135
+ 0.308753 0.588935 0.487802
136
+ 0.312051 0.591950 0.486116
137
+ 0.315447 0.594988 0.484425
138
+ 0.318872 0.598073 0.482730
139
+ 0.322361 0.601204 0.481015
140
+ 0.325884 0.604385 0.479304
141
+ 0.329506 0.607605 0.477573
142
+ 0.333162 0.610867 0.475844
143
+ 0.336877 0.614171 0.474101
144
+ 0.340666 0.617536 0.472364
145
+ 0.344515 0.620951 0.470622
146
+ 0.348450 0.624411 0.468885
147
+ 0.352449 0.627923 0.467152
148
+ 0.356536 0.631487 0.465415
149
+ 0.360680 0.635103 0.463710
150
+ 0.364934 0.638777 0.462014
151
+ 0.369274 0.642508 0.460331
152
+ 0.373704 0.646292 0.458690
153
+ 0.378227 0.650138 0.457068
154
+ 0.382860 0.654041 0.455490
155
+ 0.387590 0.658010 0.453950
156
+ 0.392444 0.662038 0.452471
157
+ 0.397414 0.666120 0.451033
158
+ 0.402504 0.670280 0.449669
159
+ 0.407733 0.674492 0.448377
160
+ 0.413101 0.678774 0.447166
161
+ 0.418592 0.683126 0.446050
162
+ 0.424246 0.687543 0.445049
163
+ 0.430056 0.692032 0.444158
164
+ 0.436025 0.696582 0.443387
165
+ 0.442163 0.701201 0.442760
166
+ 0.448464 0.705893 0.442287
167
+ 0.454953 0.710650 0.441976
168
+ 0.461617 0.715477 0.441844
169
+ 0.468469 0.720363 0.441906
170
+ 0.475526 0.725324 0.442177
171
+ 0.482763 0.730341 0.442667
172
+ 0.490209 0.735420 0.443396
173
+ 0.497863 0.740558 0.444384
174
+ 0.505691 0.745754 0.445622
175
+ 0.513753 0.751008 0.447159
176
+ 0.521990 0.756300 0.448997
177
+ 0.530446 0.761639 0.451132
178
+ 0.539088 0.767020 0.453587
179
+ 0.547921 0.772436 0.456382
180
+ 0.556938 0.777882 0.459523
181
+ 0.566120 0.783344 0.462999
182
+ 0.575476 0.788826 0.466860
183
+ 0.584982 0.794313 0.471070
184
+ 0.594624 0.799800 0.475651
185
+ 0.604401 0.805272 0.480590
186
+ 0.614273 0.810734 0.485904
187
+ 0.624256 0.816175 0.491596
188
+ 0.634306 0.821576 0.497633
189
+ 0.644399 0.826936 0.504018
190
+ 0.654536 0.832243 0.510739
191
+ 0.664684 0.837493 0.517803
192
+ 0.674828 0.842671 0.525168
193
+ 0.684938 0.847770 0.532836
194
+ 0.694993 0.852793 0.540776
195
+ 0.704979 0.857717 0.548982
196
+ 0.714866 0.862554 0.557420
197
+ 0.724644 0.867275 0.566064
198
+ 0.734284 0.871898 0.574903
199
+ 0.743772 0.876400 0.583914
200
+ 0.753088 0.880791 0.593073
201
+ 0.762227 0.885064 0.602339
202
+ 0.771175 0.889216 0.611707
203
+ 0.779904 0.893243 0.621149
204
+ 0.788423 0.897155 0.630644
205
+ 0.796712 0.900937 0.640163
206
+ 0.804776 0.904602 0.649692
207
+ 0.812597 0.908151 0.659207
208
+ 0.820182 0.911576 0.668704
209
+ 0.827530 0.914889 0.678152
210
+ 0.834637 0.918093 0.687540
211
+ 0.841502 0.921182 0.696857
212
+ 0.848128 0.924172 0.706091
213
+ 0.854525 0.927055 0.715226
214
+ 0.860692 0.929846 0.724253
215
+ 0.866632 0.932537 0.733170
216
+ 0.872360 0.935142 0.741961
217
+ 0.877870 0.937661 0.750631
218
+ 0.883175 0.940097 0.759158
219
+ 0.888285 0.942453 0.767554
220
+ 0.893201 0.944733 0.775814
221
+ 0.897938 0.946941 0.783935
222
+ 0.902501 0.949081 0.791905
223
+ 0.906895 0.951162 0.799742
224
+ 0.911129 0.953180 0.807430
225
+ 0.915209 0.955138 0.814978
226
+ 0.919149 0.957040 0.822392
227
+ 0.922957 0.958895 0.829666
228
+ 0.926628 0.960700 0.836802
229
+ 0.930182 0.962455 0.843803
230
+ 0.933614 0.964167 0.850678
231
+ 0.936947 0.965840 0.857425
232
+ 0.940169 0.967476 0.864051
233
+ 0.943291 0.969067 0.870541
234
+ 0.946318 0.970624 0.876917
235
+ 0.949261 0.972150 0.883179
236
+ 0.952117 0.973637 0.889322
237
+ 0.954898 0.975093 0.895351
238
+ 0.957599 0.976520 0.901266
239
+ 0.960228 0.977918 0.907074
240
+ 0.962786 0.979288 0.912772
241
+ 0.965276 0.980628 0.918363
242
+ 0.967711 0.981943 0.923855
243
+ 0.970076 0.983226 0.929238
244
+ 0.972390 0.984491 0.934524
245
+ 0.974641 0.985725 0.939717
246
+ 0.976844 0.986939 0.944810
247
+ 0.978994 0.988124 0.949806
248
+ 0.981097 0.989294 0.954717
249
+ 0.983151 0.990436 0.959537
250
+ 0.985166 0.991560 0.964272
251
+ 0.987138 0.992667 0.968933
252
+ 0.989069 0.993753 0.973519
253
+ 0.990966 0.994819 0.978035
254
+ 0.992835 0.995873 0.982496
255
+ 0.994669 0.996915 0.986899
256
+ 0.996481 0.997946 0.991253
@@ -0,0 +1,256 @@
1
+ 0.149398 0.049588 0.249199
2
+ 0.152919 0.054745 0.253736
3
+ 0.156496 0.059987 0.258247
4
+ 0.159969 0.065016 0.262778
5
+ 0.163525 0.070056 0.267266
6
+ 0.167008 0.075019 0.271759
7
+ 0.170456 0.079947 0.276266
8
+ 0.173900 0.084871 0.280696
9
+ 0.177342 0.089731 0.285140
10
+ 0.180717 0.094578 0.289575
11
+ 0.184111 0.099319 0.293961
12
+ 0.187501 0.104078 0.298337
13
+ 0.190813 0.108804 0.302687
14
+ 0.194165 0.113541 0.307029
15
+ 0.197447 0.118218 0.311337
16
+ 0.200706 0.122809 0.315632
17
+ 0.204011 0.127461 0.319895
18
+ 0.207248 0.132091 0.324123
19
+ 0.210466 0.136655 0.328350
20
+ 0.213679 0.141260 0.332561
21
+ 0.216886 0.145810 0.336726
22
+ 0.220068 0.150324 0.340889
23
+ 0.223230 0.154821 0.345027
24
+ 0.226384 0.159315 0.349148
25
+ 0.229493 0.163826 0.353249
26
+ 0.232627 0.168251 0.357344
27
+ 0.235749 0.172698 0.361399
28
+ 0.238826 0.177143 0.365448
29
+ 0.241922 0.181531 0.369482
30
+ 0.244975 0.185967 0.373501
31
+ 0.248066 0.190326 0.377505
32
+ 0.251108 0.194719 0.381495
33
+ 0.254144 0.199037 0.385456
34
+ 0.257167 0.203398 0.389421
35
+ 0.260180 0.207722 0.393361
36
+ 0.263192 0.212047 0.397290
37
+ 0.266185 0.216347 0.401216
38
+ 0.269177 0.220632 0.405109
39
+ 0.272120 0.224858 0.408999
40
+ 0.275103 0.229135 0.412882
41
+ 0.278059 0.233357 0.416739
42
+ 0.280986 0.237619 0.420579
43
+ 0.283931 0.241821 0.424419
44
+ 0.286850 0.246005 0.428243
45
+ 0.289779 0.250185 0.432062
46
+ 0.292684 0.254385 0.435852
47
+ 0.295585 0.258531 0.439632
48
+ 0.298479 0.262681 0.443405
49
+ 0.301363 0.266805 0.447158
50
+ 0.304253 0.270938 0.450909
51
+ 0.307134 0.275034 0.454648
52
+ 0.310028 0.279136 0.458360
53
+ 0.312894 0.283209 0.462069
54
+ 0.315795 0.287256 0.465758
55
+ 0.318680 0.291326 0.469456
56
+ 0.321583 0.295346 0.473109
57
+ 0.324509 0.299381 0.476770
58
+ 0.327465 0.303369 0.480409
59
+ 0.330457 0.307358 0.484027
60
+ 0.333497 0.311332 0.487644
61
+ 0.336569 0.315280 0.491231
62
+ 0.339728 0.319202 0.494783
63
+ 0.342946 0.323098 0.498316
64
+ 0.346231 0.326937 0.501804
65
+ 0.349639 0.330749 0.505246
66
+ 0.353141 0.334526 0.508659
67
+ 0.356761 0.338203 0.511988
68
+ 0.360478 0.341834 0.515256
69
+ 0.364344 0.345364 0.518447
70
+ 0.368336 0.348798 0.521523
71
+ 0.372436 0.352103 0.524501
72
+ 0.376680 0.355306 0.527353
73
+ 0.381021 0.358328 0.530063
74
+ 0.385449 0.361204 0.532628
75
+ 0.389980 0.363913 0.535025
76
+ 0.394591 0.366456 0.537268
77
+ 0.399249 0.368802 0.539323
78
+ 0.403968 0.370950 0.541213
79
+ 0.408703 0.372929 0.542941
80
+ 0.413460 0.374730 0.544490
81
+ 0.418210 0.376357 0.545886
82
+ 0.422963 0.377803 0.547120
83
+ 0.427720 0.379104 0.548225
84
+ 0.432452 0.380267 0.549192
85
+ 0.437163 0.381305 0.550042
86
+ 0.441861 0.382211 0.550791
87
+ 0.446534 0.383040 0.551451
88
+ 0.451205 0.383771 0.552033
89
+ 0.455862 0.384422 0.552542
90
+ 0.460509 0.385015 0.552992
91
+ 0.465166 0.385557 0.553398
92
+ 0.469835 0.386057 0.553770
93
+ 0.474496 0.386523 0.554111
94
+ 0.479169 0.386962 0.554424
95
+ 0.483853 0.387380 0.554716
96
+ 0.488567 0.387781 0.554990
97
+ 0.493288 0.388171 0.555253
98
+ 0.498054 0.388552 0.555506
99
+ 0.502812 0.388925 0.555754
100
+ 0.507621 0.389288 0.555999
101
+ 0.512442 0.389645 0.556243
102
+ 0.517305 0.390003 0.556487
103
+ 0.522175 0.390367 0.556730
104
+ 0.527097 0.390735 0.556973
105
+ 0.532035 0.391100 0.557213
106
+ 0.537010 0.391462 0.557451
107
+ 0.541999 0.391823 0.557687
108
+ 0.547031 0.392185 0.557924
109
+ 0.552093 0.392552 0.558163
110
+ 0.557182 0.392921 0.558405
111
+ 0.562299 0.393292 0.558651
112
+ 0.567440 0.393666 0.558899
113
+ 0.572616 0.394041 0.559149
114
+ 0.577808 0.394419 0.559400
115
+ 0.583041 0.394800 0.559652
116
+ 0.588298 0.395186 0.559905
117
+ 0.593592 0.395573 0.560158
118
+ 0.598907 0.395958 0.560411
119
+ 0.604255 0.396341 0.560666
120
+ 0.609620 0.396726 0.560923
121
+ 0.615013 0.397121 0.561184
122
+ 0.620449 0.397525 0.561451
123
+ 0.625894 0.397931 0.561722
124
+ 0.631378 0.398336 0.561996
125
+ 0.636886 0.398744 0.562273
126
+ 0.642418 0.399158 0.562555
127
+ 0.647973 0.399585 0.562845
128
+ 0.653563 0.400033 0.563145
129
+ 0.659176 0.400500 0.563460
130
+ 0.664815 0.400976 0.563790
131
+ 0.670490 0.401460 0.564139
132
+ 0.676175 0.401976 0.564509
133
+ 0.681882 0.402540 0.564911
134
+ 0.687621 0.403152 0.565355
135
+ 0.693373 0.403810 0.565850
136
+ 0.699135 0.404519 0.566402
137
+ 0.704915 0.405322 0.567017
138
+ 0.710697 0.406210 0.567703
139
+ 0.716476 0.407190 0.568479
140
+ 0.722232 0.408296 0.569360
141
+ 0.727976 0.409541 0.570359
142
+ 0.733683 0.410936 0.571490
143
+ 0.739343 0.412502 0.572770
144
+ 0.744923 0.414238 0.574189
145
+ 0.750429 0.416181 0.575798
146
+ 0.755829 0.418327 0.577562
147
+ 0.761106 0.420701 0.579532
148
+ 0.766241 0.423298 0.581675
149
+ 0.771219 0.426126 0.584021
150
+ 0.776012 0.429187 0.586560
151
+ 0.780614 0.432475 0.589283
152
+ 0.785014 0.435968 0.592208
153
+ 0.789194 0.439667 0.595288
154
+ 0.793152 0.443565 0.598539
155
+ 0.796880 0.447626 0.601947
156
+ 0.800395 0.451872 0.605489
157
+ 0.803685 0.456241 0.609170
158
+ 0.806770 0.460738 0.612942
159
+ 0.809652 0.465347 0.616830
160
+ 0.812347 0.470062 0.620796
161
+ 0.814874 0.474845 0.624828
162
+ 0.817246 0.479688 0.628925
163
+ 0.819477 0.484575 0.633073
164
+ 0.821594 0.489517 0.637264
165
+ 0.823596 0.494505 0.641483
166
+ 0.825509 0.499498 0.645737
167
+ 0.827347 0.504541 0.650018
168
+ 0.829122 0.509579 0.654310
169
+ 0.830838 0.514643 0.658619
170
+ 0.832510 0.519709 0.662950
171
+ 0.834152 0.524795 0.667280
172
+ 0.835759 0.529889 0.671620
173
+ 0.837350 0.534985 0.675972
174
+ 0.838917 0.540088 0.680323
175
+ 0.840479 0.545204 0.684687
176
+ 0.842027 0.550320 0.689060
177
+ 0.843562 0.555436 0.693425
178
+ 0.845101 0.560568 0.697795
179
+ 0.846629 0.565694 0.702170
180
+ 0.848157 0.570831 0.706555
181
+ 0.849687 0.575982 0.710932
182
+ 0.851204 0.581115 0.715310
183
+ 0.852732 0.586266 0.719688
184
+ 0.854247 0.591415 0.724061
185
+ 0.855767 0.596568 0.728434
186
+ 0.857278 0.601720 0.732809
187
+ 0.858790 0.606882 0.737171
188
+ 0.860301 0.612034 0.741525
189
+ 0.861805 0.617197 0.745877
190
+ 0.863305 0.622351 0.750217
191
+ 0.864794 0.627513 0.754550
192
+ 0.866283 0.632672 0.758860
193
+ 0.867765 0.637826 0.763157
194
+ 0.869237 0.642976 0.767437
195
+ 0.870696 0.648120 0.771704
196
+ 0.872155 0.653261 0.775942
197
+ 0.873596 0.658400 0.780158
198
+ 0.875029 0.663533 0.784355
199
+ 0.876448 0.668648 0.788517
200
+ 0.877860 0.673753 0.792652
201
+ 0.879254 0.678846 0.796755
202
+ 0.880638 0.683926 0.800833
203
+ 0.882009 0.689002 0.804876
204
+ 0.883365 0.694043 0.808889
205
+ 0.884708 0.699078 0.812861
206
+ 0.886039 0.704096 0.816809
207
+ 0.887350 0.709096 0.820716
208
+ 0.888655 0.714064 0.824592
209
+ 0.889941 0.719018 0.828437
210
+ 0.891217 0.723946 0.832249
211
+ 0.892483 0.728852 0.836025
212
+ 0.893731 0.733734 0.839775
213
+ 0.894974 0.738590 0.843484
214
+ 0.896200 0.743422 0.847169
215
+ 0.897419 0.748225 0.850825
216
+ 0.898621 0.752994 0.854456
217
+ 0.899821 0.757748 0.858054
218
+ 0.901005 0.762466 0.861629
219
+ 0.902184 0.767160 0.865173
220
+ 0.903354 0.771829 0.868701
221
+ 0.904511 0.776466 0.872195
222
+ 0.905666 0.781073 0.875665
223
+ 0.906806 0.785653 0.879109
224
+ 0.907943 0.790200 0.882531
225
+ 0.909064 0.794722 0.885935
226
+ 0.910187 0.799215 0.889309
227
+ 0.911295 0.803673 0.892662
228
+ 0.912398 0.808105 0.895990
229
+ 0.913495 0.812503 0.899297
230
+ 0.914580 0.816876 0.902578
231
+ 0.915655 0.821214 0.905838
232
+ 0.916731 0.825521 0.909068
233
+ 0.917797 0.829803 0.912281
234
+ 0.918846 0.834050 0.915465
235
+ 0.919896 0.838262 0.918629
236
+ 0.920932 0.842447 0.921773
237
+ 0.921969 0.846592 0.924884
238
+ 0.922991 0.850710 0.927975
239
+ 0.924005 0.854799 0.931044
240
+ 0.925008 0.858848 0.934082
241
+ 0.926008 0.862872 0.937103
242
+ 0.926993 0.866851 0.940094
243
+ 0.927973 0.870802 0.943059
244
+ 0.928943 0.874719 0.945994
245
+ 0.929907 0.878601 0.948908
246
+ 0.930860 0.882447 0.951795
247
+ 0.931799 0.886264 0.954659
248
+ 0.932730 0.890039 0.957494
249
+ 0.933653 0.893782 0.960305
250
+ 0.934567 0.897496 0.963089
251
+ 0.935473 0.901172 0.965848
252
+ 0.936370 0.904822 0.968590
253
+ 0.937254 0.908442 0.971306
254
+ 0.938129 0.912033 0.974003
255
+ 0.938996 0.915599 0.976685
256
+ 0.939858 0.919150 0.979353