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.246514 0.243518 0.229200
2
+ 0.246074 0.242433 0.232323
3
+ 0.245643 0.241447 0.235542
4
+ 0.245220 0.240524 0.238831
5
+ 0.244807 0.239744 0.242251
6
+ 0.244407 0.239052 0.245764
7
+ 0.244020 0.238467 0.249403
8
+ 0.243647 0.238019 0.253162
9
+ 0.243292 0.237693 0.257030
10
+ 0.242955 0.237488 0.261017
11
+ 0.242639 0.237411 0.265130
12
+ 0.242349 0.237472 0.269403
13
+ 0.242086 0.237675 0.273788
14
+ 0.241849 0.238020 0.278314
15
+ 0.241642 0.238522 0.282995
16
+ 0.241466 0.239214 0.287801
17
+ 0.241327 0.240053 0.292779
18
+ 0.241229 0.241086 0.297907
19
+ 0.241177 0.242294 0.303192
20
+ 0.241177 0.243679 0.308658
21
+ 0.241231 0.245267 0.314253
22
+ 0.241345 0.247068 0.320033
23
+ 0.241522 0.249063 0.325942
24
+ 0.241763 0.251268 0.332045
25
+ 0.242074 0.253668 0.338280
26
+ 0.242460 0.256274 0.344686
27
+ 0.242934 0.259134 0.351245
28
+ 0.243502 0.262175 0.357948
29
+ 0.244167 0.265445 0.364778
30
+ 0.244938 0.268948 0.371749
31
+ 0.245823 0.272631 0.378858
32
+ 0.246829 0.276565 0.386073
33
+ 0.247970 0.280669 0.393409
34
+ 0.249209 0.285009 0.400856
35
+ 0.250593 0.289561 0.408362
36
+ 0.252143 0.294281 0.415959
37
+ 0.253829 0.299221 0.423617
38
+ 0.255668 0.304315 0.431347
39
+ 0.257671 0.309611 0.439092
40
+ 0.259862 0.315041 0.446886
41
+ 0.262207 0.320662 0.454698
42
+ 0.264729 0.326392 0.462494
43
+ 0.267429 0.332303 0.470307
44
+ 0.270357 0.338305 0.478085
45
+ 0.273434 0.344444 0.485838
46
+ 0.276704 0.350708 0.493554
47
+ 0.280150 0.357054 0.501228
48
+ 0.283800 0.363476 0.508838
49
+ 0.287629 0.369992 0.516370
50
+ 0.291667 0.376594 0.523845
51
+ 0.295857 0.383243 0.531233
52
+ 0.300240 0.389936 0.538543
53
+ 0.304804 0.396690 0.545753
54
+ 0.309546 0.403494 0.552865
55
+ 0.314424 0.410324 0.559891
56
+ 0.319491 0.417174 0.566812
57
+ 0.324694 0.424036 0.573626
58
+ 0.330072 0.430932 0.580341
59
+ 0.335581 0.437835 0.586946
60
+ 0.341221 0.444739 0.593454
61
+ 0.347003 0.451643 0.599853
62
+ 0.352900 0.458545 0.606142
63
+ 0.358908 0.465438 0.612335
64
+ 0.365046 0.472343 0.618431
65
+ 0.371281 0.479226 0.624418
66
+ 0.377628 0.486093 0.630308
67
+ 0.384061 0.492947 0.636098
68
+ 0.390584 0.499790 0.641787
69
+ 0.397184 0.506620 0.647388
70
+ 0.403874 0.513434 0.652888
71
+ 0.410632 0.520214 0.658307
72
+ 0.417449 0.526995 0.663635
73
+ 0.424320 0.533730 0.668865
74
+ 0.431261 0.540462 0.674009
75
+ 0.438241 0.547164 0.679065
76
+ 0.445264 0.553843 0.684035
77
+ 0.452340 0.560501 0.688931
78
+ 0.459434 0.567135 0.693723
79
+ 0.466560 0.573736 0.698436
80
+ 0.473703 0.580317 0.703069
81
+ 0.480872 0.586864 0.707605
82
+ 0.488064 0.593390 0.712059
83
+ 0.495246 0.599883 0.716426
84
+ 0.502430 0.606341 0.720690
85
+ 0.509613 0.612768 0.724873
86
+ 0.516785 0.619175 0.728951
87
+ 0.523937 0.625527 0.732937
88
+ 0.531065 0.631850 0.736815
89
+ 0.538169 0.638130 0.740589
90
+ 0.545222 0.644364 0.744254
91
+ 0.552238 0.650561 0.747809
92
+ 0.559191 0.656708 0.751242
93
+ 0.566089 0.662799 0.754548
94
+ 0.572922 0.668831 0.757721
95
+ 0.579670 0.674803 0.760763
96
+ 0.586325 0.680708 0.763657
97
+ 0.592889 0.686552 0.766407
98
+ 0.599339 0.692323 0.768997
99
+ 0.605663 0.697998 0.771432
100
+ 0.611869 0.703598 0.773683
101
+ 0.617929 0.709106 0.775763
102
+ 0.623843 0.714500 0.777659
103
+ 0.629576 0.719802 0.779351
104
+ 0.635140 0.724985 0.780845
105
+ 0.640515 0.730041 0.782130
106
+ 0.645680 0.734968 0.783189
107
+ 0.650637 0.739758 0.784032
108
+ 0.655360 0.744391 0.784633
109
+ 0.659845 0.748872 0.784993
110
+ 0.664075 0.753187 0.785106
111
+ 0.668041 0.757333 0.784965
112
+ 0.671720 0.761291 0.784566
113
+ 0.675118 0.765063 0.783902
114
+ 0.678218 0.768624 0.782963
115
+ 0.681000 0.771988 0.781763
116
+ 0.683477 0.775130 0.780281
117
+ 0.685626 0.778055 0.778528
118
+ 0.687438 0.780747 0.776502
119
+ 0.688920 0.783206 0.774192
120
+ 0.690051 0.785428 0.771621
121
+ 0.690837 0.787403 0.768767
122
+ 0.691283 0.789134 0.765659
123
+ 0.691382 0.790608 0.762276
124
+ 0.691133 0.791836 0.758645
125
+ 0.690543 0.792812 0.754762
126
+ 0.689621 0.793537 0.750631
127
+ 0.688356 0.794008 0.746261
128
+ 0.686761 0.794227 0.741664
129
+ 0.684846 0.794201 0.736852
130
+ 0.682619 0.793931 0.731829
131
+ 0.680084 0.793419 0.726601
132
+ 0.677269 0.792669 0.721180
133
+ 0.674153 0.791690 0.715587
134
+ 0.670775 0.790487 0.709811
135
+ 0.667125 0.789069 0.703872
136
+ 0.663236 0.787430 0.697778
137
+ 0.659095 0.785590 0.691544
138
+ 0.654735 0.783546 0.685174
139
+ 0.650168 0.781310 0.678671
140
+ 0.645388 0.778884 0.672052
141
+ 0.640429 0.776282 0.665317
142
+ 0.635283 0.773500 0.658479
143
+ 0.629975 0.770559 0.651546
144
+ 0.624512 0.767448 0.644510
145
+ 0.618908 0.764188 0.637398
146
+ 0.613153 0.760777 0.630202
147
+ 0.607298 0.757219 0.622928
148
+ 0.601310 0.753521 0.615578
149
+ 0.595226 0.749687 0.608173
150
+ 0.589042 0.745730 0.600688
151
+ 0.582779 0.741641 0.593155
152
+ 0.576448 0.737434 0.585562
153
+ 0.570022 0.733108 0.577900
154
+ 0.563558 0.728661 0.570198
155
+ 0.557029 0.724106 0.562458
156
+ 0.550448 0.719443 0.554652
157
+ 0.543831 0.714663 0.546809
158
+ 0.537188 0.709790 0.538920
159
+ 0.530506 0.704805 0.530988
160
+ 0.523810 0.699719 0.523022
161
+ 0.517103 0.694532 0.515012
162
+ 0.510377 0.689260 0.506969
163
+ 0.503657 0.683872 0.498898
164
+ 0.496940 0.678401 0.490802
165
+ 0.490237 0.672836 0.482660
166
+ 0.483541 0.667169 0.474508
167
+ 0.476876 0.661418 0.466323
168
+ 0.470240 0.655574 0.458126
169
+ 0.463626 0.649645 0.449918
170
+ 0.457057 0.643620 0.441702
171
+ 0.450538 0.637522 0.433463
172
+ 0.444070 0.631339 0.425246
173
+ 0.437658 0.625071 0.417024
174
+ 0.431304 0.618736 0.408805
175
+ 0.425019 0.612311 0.400621
176
+ 0.418804 0.605822 0.392435
177
+ 0.412689 0.599277 0.384293
178
+ 0.406641 0.592664 0.376199
179
+ 0.400705 0.585986 0.368135
180
+ 0.394843 0.579258 0.360128
181
+ 0.389103 0.572481 0.352187
182
+ 0.383469 0.565651 0.344316
183
+ 0.377942 0.558794 0.336534
184
+ 0.372536 0.551916 0.328851
185
+ 0.367261 0.545000 0.321249
186
+ 0.362122 0.538076 0.313772
187
+ 0.357114 0.531130 0.306417
188
+ 0.352221 0.524187 0.299182
189
+ 0.347497 0.517255 0.292087
190
+ 0.342904 0.510320 0.285135
191
+ 0.338440 0.503410 0.278372
192
+ 0.334152 0.496530 0.271744
193
+ 0.329998 0.489688 0.265325
194
+ 0.325977 0.482890 0.259099
195
+ 0.322137 0.476144 0.253042
196
+ 0.318434 0.469457 0.247192
197
+ 0.314873 0.462810 0.241561
198
+ 0.311471 0.456259 0.236144
199
+ 0.308217 0.449781 0.230934
200
+ 0.305114 0.443385 0.225970
201
+ 0.302128 0.437078 0.221220
202
+ 0.299320 0.430861 0.216708
203
+ 0.296626 0.424744 0.212419
204
+ 0.294053 0.418722 0.208367
205
+ 0.291641 0.412827 0.204573
206
+ 0.289337 0.407019 0.200965
207
+ 0.287137 0.401336 0.197646
208
+ 0.285071 0.395767 0.194568
209
+ 0.283136 0.390300 0.191665
210
+ 0.281275 0.384960 0.189032
211
+ 0.279551 0.379745 0.186606
212
+ 0.277900 0.374647 0.184407
213
+ 0.276356 0.369657 0.182405
214
+ 0.274875 0.364791 0.180634
215
+ 0.273507 0.360044 0.179082
216
+ 0.272180 0.355427 0.177733
217
+ 0.270975 0.350908 0.176511
218
+ 0.269818 0.346493 0.175527
219
+ 0.268723 0.342210 0.174739
220
+ 0.267660 0.338018 0.174089
221
+ 0.266699 0.333959 0.173611
222
+ 0.265782 0.329992 0.173299
223
+ 0.264890 0.326111 0.173142
224
+ 0.264077 0.322366 0.173134
225
+ 0.263285 0.318697 0.173268
226
+ 0.262523 0.315126 0.173538
227
+ 0.261802 0.311647 0.173941
228
+ 0.261114 0.308275 0.174477
229
+ 0.260455 0.304989 0.175118
230
+ 0.259828 0.301770 0.175843
231
+ 0.259224 0.298661 0.176723
232
+ 0.258622 0.295621 0.177731
233
+ 0.258037 0.292666 0.178788
234
+ 0.257493 0.289794 0.179939
235
+ 0.256958 0.286984 0.181192
236
+ 0.256419 0.284266 0.182545
237
+ 0.255901 0.281623 0.183996
238
+ 0.255410 0.279056 0.185552
239
+ 0.254919 0.276550 0.187141
240
+ 0.254422 0.274108 0.188825
241
+ 0.253930 0.271726 0.190576
242
+ 0.253448 0.269457 0.192421
243
+ 0.252970 0.267202 0.194366
244
+ 0.252495 0.265049 0.196352
245
+ 0.252028 0.262972 0.198389
246
+ 0.251564 0.260945 0.200520
247
+ 0.251092 0.259004 0.202749
248
+ 0.250611 0.257113 0.205044
249
+ 0.250136 0.255307 0.207416
250
+ 0.249678 0.253559 0.209848
251
+ 0.249229 0.251897 0.212377
252
+ 0.248782 0.250279 0.214954
253
+ 0.248331 0.248790 0.217648
254
+ 0.247873 0.247344 0.220422
255
+ 0.247413 0.245975 0.223258
256
+ 0.246960 0.244699 0.226195
@@ -0,0 +1,256 @@
1
+ 0.451374 0.223459 0.341871
2
+ 0.454179 0.222444 0.336099
3
+ 0.456965 0.221584 0.330428
4
+ 0.459746 0.220902 0.324834
5
+ 0.462509 0.220346 0.319346
6
+ 0.465269 0.219936 0.313938
7
+ 0.468026 0.219680 0.308619
8
+ 0.470782 0.219577 0.303367
9
+ 0.473519 0.219624 0.298218
10
+ 0.476275 0.219821 0.293158
11
+ 0.479024 0.220172 0.288184
12
+ 0.481779 0.220673 0.283304
13
+ 0.484530 0.221302 0.278502
14
+ 0.487308 0.222079 0.273790
15
+ 0.490079 0.223041 0.269167
16
+ 0.492862 0.224106 0.264606
17
+ 0.495670 0.225363 0.260159
18
+ 0.498500 0.226770 0.255786
19
+ 0.501335 0.228325 0.251528
20
+ 0.504195 0.229992 0.247331
21
+ 0.507065 0.231880 0.243220
22
+ 0.509968 0.233866 0.239229
23
+ 0.512896 0.236050 0.235334
24
+ 0.515844 0.238350 0.231514
25
+ 0.518842 0.240823 0.227787
26
+ 0.521842 0.243453 0.224136
27
+ 0.524894 0.246246 0.220647
28
+ 0.527969 0.249200 0.217203
29
+ 0.531082 0.252307 0.213873
30
+ 0.534225 0.255563 0.210643
31
+ 0.537416 0.258987 0.207528
32
+ 0.540630 0.262549 0.204524
33
+ 0.543886 0.266281 0.201585
34
+ 0.547179 0.270169 0.198791
35
+ 0.550515 0.274192 0.196132
36
+ 0.553885 0.278386 0.193559
37
+ 0.557305 0.282735 0.191089
38
+ 0.560748 0.287203 0.188770
39
+ 0.564244 0.291860 0.186548
40
+ 0.567772 0.296649 0.184461
41
+ 0.571340 0.301568 0.182483
42
+ 0.574948 0.306664 0.180655
43
+ 0.578598 0.311864 0.178977
44
+ 0.582284 0.317240 0.177430
45
+ 0.586017 0.322749 0.175966
46
+ 0.589771 0.328376 0.174730
47
+ 0.593578 0.334152 0.173585
48
+ 0.597416 0.340051 0.172608
49
+ 0.601285 0.346065 0.171791
50
+ 0.605194 0.352226 0.171139
51
+ 0.609146 0.358507 0.170652
52
+ 0.613114 0.364912 0.170337
53
+ 0.617133 0.371432 0.170196
54
+ 0.621178 0.378080 0.170234
55
+ 0.625257 0.384833 0.170456
56
+ 0.629367 0.391713 0.170869
57
+ 0.633516 0.398692 0.171480
58
+ 0.637690 0.405793 0.172295
59
+ 0.641897 0.412993 0.173322
60
+ 0.646135 0.420290 0.174579
61
+ 0.650407 0.427708 0.176000
62
+ 0.654703 0.435222 0.177736
63
+ 0.659036 0.442831 0.179619
64
+ 0.663407 0.450539 0.181754
65
+ 0.667798 0.458344 0.184159
66
+ 0.672217 0.466246 0.186797
67
+ 0.676668 0.474246 0.189683
68
+ 0.681140 0.482334 0.192826
69
+ 0.685655 0.490514 0.196242
70
+ 0.690187 0.498775 0.199872
71
+ 0.694745 0.507119 0.203841
72
+ 0.699332 0.515544 0.208030
73
+ 0.703944 0.524059 0.212508
74
+ 0.708579 0.532648 0.217265
75
+ 0.713225 0.541296 0.222288
76
+ 0.717895 0.550029 0.227610
77
+ 0.722571 0.558812 0.233180
78
+ 0.727265 0.567668 0.239068
79
+ 0.731968 0.576577 0.245213
80
+ 0.736664 0.585526 0.251677
81
+ 0.741360 0.594511 0.258373
82
+ 0.746052 0.603542 0.265369
83
+ 0.750732 0.612587 0.272630
84
+ 0.755385 0.621656 0.280165
85
+ 0.760006 0.630745 0.287962
86
+ 0.764599 0.639821 0.296021
87
+ 0.769139 0.648887 0.304326
88
+ 0.773631 0.657933 0.312873
89
+ 0.778064 0.666936 0.321653
90
+ 0.782419 0.675905 0.330656
91
+ 0.786695 0.684810 0.339884
92
+ 0.790867 0.693646 0.349292
93
+ 0.794942 0.702400 0.358881
94
+ 0.798901 0.711061 0.368667
95
+ 0.802727 0.719608 0.378588
96
+ 0.806422 0.728028 0.388664
97
+ 0.809958 0.736314 0.398854
98
+ 0.813335 0.744458 0.409164
99
+ 0.816545 0.752436 0.419568
100
+ 0.819561 0.760246 0.430039
101
+ 0.822394 0.767865 0.440566
102
+ 0.825010 0.775295 0.451146
103
+ 0.827418 0.782521 0.461742
104
+ 0.829604 0.789531 0.472346
105
+ 0.831554 0.796313 0.482931
106
+ 0.833258 0.802869 0.493494
107
+ 0.834717 0.809192 0.504023
108
+ 0.835918 0.815263 0.514486
109
+ 0.836858 0.821087 0.524871
110
+ 0.837531 0.826662 0.535170
111
+ 0.837927 0.831978 0.545375
112
+ 0.838045 0.837031 0.555455
113
+ 0.837883 0.841824 0.565417
114
+ 0.837435 0.846348 0.575250
115
+ 0.836696 0.850614 0.584935
116
+ 0.835669 0.854618 0.594457
117
+ 0.834353 0.858353 0.603824
118
+ 0.832739 0.861831 0.613005
119
+ 0.830839 0.865039 0.622016
120
+ 0.828643 0.867997 0.630853
121
+ 0.826153 0.870685 0.639486
122
+ 0.823373 0.873124 0.647922
123
+ 0.820303 0.875309 0.656171
124
+ 0.816950 0.877238 0.664202
125
+ 0.813306 0.878922 0.672031
126
+ 0.809388 0.880359 0.679644
127
+ 0.805181 0.881555 0.687053
128
+ 0.800706 0.882504 0.694237
129
+ 0.795954 0.883220 0.701215
130
+ 0.790939 0.883702 0.707970
131
+ 0.785664 0.883948 0.714502
132
+ 0.780124 0.883963 0.720819
133
+ 0.774335 0.883750 0.726915
134
+ 0.768301 0.883309 0.732792
135
+ 0.762029 0.882644 0.738441
136
+ 0.755527 0.881765 0.743873
137
+ 0.748792 0.880661 0.749079
138
+ 0.741841 0.879343 0.754074
139
+ 0.734683 0.877813 0.758841
140
+ 0.727313 0.876068 0.763388
141
+ 0.719756 0.874113 0.767719
142
+ 0.712006 0.871955 0.771837
143
+ 0.704082 0.869584 0.775732
144
+ 0.695993 0.867012 0.779414
145
+ 0.687741 0.864247 0.782882
146
+ 0.679339 0.861273 0.786143
147
+ 0.670810 0.858109 0.789187
148
+ 0.662150 0.854755 0.792019
149
+ 0.653362 0.851204 0.794649
150
+ 0.644479 0.847473 0.797069
151
+ 0.635505 0.843557 0.799296
152
+ 0.626448 0.839467 0.801310
153
+ 0.617323 0.835195 0.803130
154
+ 0.608145 0.830754 0.804757
155
+ 0.598912 0.826142 0.806190
156
+ 0.589646 0.821370 0.807431
157
+ 0.580374 0.816441 0.808484
158
+ 0.571083 0.811354 0.809355
159
+ 0.561811 0.806120 0.810038
160
+ 0.552547 0.800742 0.810547
161
+ 0.543317 0.795225 0.810885
162
+ 0.534125 0.789579 0.811051
163
+ 0.524999 0.783805 0.811048
164
+ 0.515929 0.777906 0.810881
165
+ 0.506955 0.771892 0.810554
166
+ 0.498077 0.765771 0.810073
167
+ 0.489276 0.759536 0.809444
168
+ 0.480607 0.753210 0.808662
169
+ 0.472072 0.746795 0.807735
170
+ 0.463654 0.740290 0.806671
171
+ 0.455394 0.733701 0.805462
172
+ 0.447279 0.727034 0.804130
173
+ 0.439337 0.720299 0.802661
174
+ 0.431578 0.713497 0.801070
175
+ 0.423976 0.706638 0.799360
176
+ 0.416583 0.699711 0.797521
177
+ 0.409380 0.692747 0.795570
178
+ 0.402372 0.685723 0.793511
179
+ 0.395598 0.678655 0.791330
180
+ 0.389026 0.671549 0.789048
181
+ 0.382671 0.664406 0.786657
182
+ 0.376562 0.657236 0.784158
183
+ 0.370660 0.650026 0.781553
184
+ 0.365016 0.642789 0.778844
185
+ 0.359615 0.635525 0.776036
186
+ 0.354461 0.628244 0.773123
187
+ 0.349553 0.620936 0.770113
188
+ 0.344901 0.613599 0.766998
189
+ 0.340512 0.606253 0.763782
190
+ 0.336374 0.598893 0.760465
191
+ 0.332529 0.591514 0.757040
192
+ 0.328930 0.584115 0.753510
193
+ 0.325587 0.576714 0.749871
194
+ 0.322555 0.569280 0.746129
195
+ 0.319777 0.561855 0.742275
196
+ 0.317272 0.554406 0.738302
197
+ 0.315046 0.546949 0.734221
198
+ 0.313109 0.539477 0.730018
199
+ 0.311441 0.532009 0.725695
200
+ 0.310071 0.524525 0.721239
201
+ 0.308966 0.517042 0.716673
202
+ 0.308112 0.509546 0.711966
203
+ 0.307548 0.502054 0.707132
204
+ 0.307260 0.494561 0.702158
205
+ 0.307234 0.487065 0.697056
206
+ 0.307463 0.479578 0.691816
207
+ 0.307949 0.472098 0.686432
208
+ 0.308702 0.464628 0.680904
209
+ 0.309677 0.457161 0.675245
210
+ 0.310879 0.449728 0.669443
211
+ 0.312279 0.442319 0.663499
212
+ 0.313934 0.434930 0.657412
213
+ 0.315778 0.427577 0.651184
214
+ 0.317795 0.420253 0.644817
215
+ 0.320009 0.412992 0.638326
216
+ 0.322377 0.405774 0.631704
217
+ 0.324886 0.398606 0.624954
218
+ 0.327554 0.391516 0.618086
219
+ 0.330353 0.384484 0.611110
220
+ 0.333270 0.377545 0.604024
221
+ 0.336267 0.370682 0.596835
222
+ 0.339387 0.363923 0.589549
223
+ 0.342566 0.357280 0.582191
224
+ 0.345800 0.350728 0.574756
225
+ 0.349117 0.344276 0.567267
226
+ 0.352467 0.337970 0.559714
227
+ 0.355866 0.331794 0.552120
228
+ 0.359272 0.325743 0.544484
229
+ 0.362710 0.319862 0.536836
230
+ 0.366167 0.314106 0.529165
231
+ 0.369611 0.308515 0.521481
232
+ 0.373061 0.303063 0.513821
233
+ 0.376517 0.297796 0.506155
234
+ 0.379939 0.292691 0.498537
235
+ 0.383360 0.287752 0.490941
236
+ 0.386740 0.283009 0.483366
237
+ 0.390111 0.278418 0.475862
238
+ 0.393460 0.274009 0.468397
239
+ 0.396772 0.269784 0.460998
240
+ 0.400064 0.265728 0.453665
241
+ 0.403326 0.261851 0.446404
242
+ 0.406547 0.258146 0.439213
243
+ 0.409741 0.254658 0.432120
244
+ 0.412905 0.251321 0.425087
245
+ 0.416023 0.248166 0.418135
246
+ 0.419122 0.245150 0.411283
247
+ 0.422176 0.242352 0.404511
248
+ 0.425224 0.239720 0.397844
249
+ 0.428226 0.237276 0.391261
250
+ 0.431207 0.234977 0.384755
251
+ 0.434145 0.232820 0.378357
252
+ 0.437082 0.230864 0.372040
253
+ 0.439979 0.229066 0.365832
254
+ 0.442860 0.227428 0.359703
255
+ 0.445706 0.225957 0.353661
256
+ 0.448555 0.224596 0.347728