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.001328 0.069836 0.379529
2
+ 0.002366 0.076475 0.383518
3
+ 0.003304 0.083083 0.387487
4
+ 0.004146 0.089590 0.391477
5
+ 0.004897 0.095948 0.395453
6
+ 0.005563 0.102274 0.399409
7
+ 0.006151 0.108500 0.403388
8
+ 0.006668 0.114686 0.407339
9
+ 0.007119 0.120845 0.411288
10
+ 0.007512 0.126958 0.415230
11
+ 0.007850 0.133068 0.419166
12
+ 0.008141 0.139092 0.423079
13
+ 0.008391 0.145171 0.427006
14
+ 0.008606 0.151144 0.430910
15
+ 0.008790 0.157140 0.434809
16
+ 0.008947 0.163152 0.438691
17
+ 0.009080 0.169142 0.442587
18
+ 0.009193 0.175103 0.446459
19
+ 0.009290 0.181052 0.450337
20
+ 0.009372 0.187051 0.454212
21
+ 0.009443 0.193028 0.458077
22
+ 0.009506 0.198999 0.461951
23
+ 0.009564 0.205011 0.465816
24
+ 0.009619 0.211021 0.469707
25
+ 0.009675 0.217047 0.473571
26
+ 0.009735 0.223084 0.477461
27
+ 0.009802 0.229123 0.481352
28
+ 0.009881 0.235206 0.485250
29
+ 0.009977 0.241277 0.489161
30
+ 0.010098 0.247386 0.493080
31
+ 0.010254 0.253516 0.497020
32
+ 0.010463 0.259675 0.500974
33
+ 0.010755 0.265853 0.504938
34
+ 0.011176 0.272037 0.508925
35
+ 0.011716 0.278296 0.512923
36
+ 0.012286 0.284554 0.516953
37
+ 0.012934 0.290865 0.520998
38
+ 0.013790 0.297214 0.525074
39
+ 0.014838 0.303577 0.529184
40
+ 0.016131 0.310015 0.533308
41
+ 0.017711 0.316474 0.537485
42
+ 0.019630 0.322986 0.541677
43
+ 0.021948 0.329550 0.545931
44
+ 0.024730 0.336144 0.550210
45
+ 0.028047 0.342826 0.554538
46
+ 0.031980 0.349543 0.558906
47
+ 0.036812 0.356332 0.563341
48
+ 0.042229 0.363171 0.567811
49
+ 0.048008 0.370086 0.572345
50
+ 0.054292 0.377080 0.576933
51
+ 0.060963 0.384129 0.581571
52
+ 0.068081 0.391265 0.586280
53
+ 0.075457 0.398460 0.591042
54
+ 0.083246 0.405740 0.595868
55
+ 0.091425 0.413088 0.600754
56
+ 0.099832 0.420499 0.605697
57
+ 0.108595 0.428000 0.610711
58
+ 0.117694 0.435566 0.615770
59
+ 0.127042 0.443194 0.620895
60
+ 0.136702 0.450888 0.626062
61
+ 0.146607 0.458643 0.631289
62
+ 0.156787 0.466457 0.636560
63
+ 0.167187 0.474324 0.641866
64
+ 0.177807 0.482238 0.647218
65
+ 0.188606 0.490191 0.652599
66
+ 0.199580 0.498193 0.658021
67
+ 0.210783 0.506201 0.663465
68
+ 0.222120 0.514263 0.668924
69
+ 0.233602 0.522322 0.674403
70
+ 0.245231 0.530414 0.679894
71
+ 0.256999 0.538517 0.685405
72
+ 0.268867 0.546617 0.690908
73
+ 0.280797 0.554717 0.696428
74
+ 0.292852 0.562822 0.701935
75
+ 0.304985 0.570907 0.707448
76
+ 0.317174 0.578997 0.712950
77
+ 0.329438 0.587064 0.718447
78
+ 0.341729 0.595123 0.723934
79
+ 0.354067 0.603164 0.729412
80
+ 0.366459 0.611186 0.734877
81
+ 0.378862 0.619189 0.740325
82
+ 0.391305 0.627159 0.745757
83
+ 0.403760 0.635114 0.751183
84
+ 0.416227 0.643046 0.756582
85
+ 0.428711 0.650956 0.761968
86
+ 0.441199 0.658836 0.767341
87
+ 0.453697 0.666696 0.772699
88
+ 0.466195 0.674537 0.778044
89
+ 0.478697 0.682349 0.783369
90
+ 0.491208 0.690143 0.788682
91
+ 0.503691 0.697910 0.793980
92
+ 0.516178 0.705661 0.799260
93
+ 0.528677 0.713387 0.804525
94
+ 0.541149 0.721090 0.809775
95
+ 0.553624 0.728778 0.815010
96
+ 0.566096 0.736441 0.820229
97
+ 0.578557 0.744089 0.825435
98
+ 0.591014 0.751718 0.830626
99
+ 0.603468 0.759314 0.835793
100
+ 0.615908 0.766896 0.840941
101
+ 0.628351 0.774452 0.846058
102
+ 0.640779 0.781988 0.851147
103
+ 0.653203 0.789485 0.856206
104
+ 0.665631 0.796945 0.861214
105
+ 0.678051 0.804371 0.866172
106
+ 0.690457 0.811742 0.871059
107
+ 0.702868 0.819048 0.875866
108
+ 0.715265 0.826290 0.880567
109
+ 0.727646 0.833439 0.885146
110
+ 0.740019 0.840479 0.889570
111
+ 0.752354 0.847380 0.893807
112
+ 0.764662 0.854125 0.897821
113
+ 0.776918 0.860678 0.901565
114
+ 0.789096 0.866991 0.904992
115
+ 0.801170 0.873031 0.908043
116
+ 0.813110 0.878738 0.910653
117
+ 0.824870 0.884062 0.912761
118
+ 0.836396 0.888934 0.914302
119
+ 0.847617 0.893289 0.915195
120
+ 0.858470 0.897074 0.915385
121
+ 0.868874 0.900206 0.914812
122
+ 0.878729 0.902636 0.913418
123
+ 0.887965 0.904303 0.911164
124
+ 0.896497 0.905178 0.908034
125
+ 0.904242 0.905221 0.904013
126
+ 0.911151 0.904422 0.899132
127
+ 0.917175 0.902800 0.893409
128
+ 0.922285 0.900367 0.886911
129
+ 0.926482 0.897173 0.879687
130
+ 0.929789 0.893256 0.871826
131
+ 0.932236 0.888698 0.863396
132
+ 0.933880 0.883552 0.854476
133
+ 0.934782 0.877893 0.845152
134
+ 0.935013 0.871795 0.835493
135
+ 0.934644 0.865313 0.825561
136
+ 0.933752 0.858522 0.815421
137
+ 0.932408 0.851469 0.805112
138
+ 0.930682 0.844208 0.794685
139
+ 0.928622 0.836778 0.784169
140
+ 0.926298 0.829215 0.773579
141
+ 0.923752 0.821545 0.762958
142
+ 0.921017 0.813795 0.752313
143
+ 0.918147 0.805997 0.741659
144
+ 0.915156 0.798157 0.731008
145
+ 0.912080 0.790294 0.720370
146
+ 0.908933 0.782421 0.709752
147
+ 0.905741 0.774540 0.699150
148
+ 0.902506 0.766670 0.688588
149
+ 0.899249 0.758812 0.678051
150
+ 0.895973 0.750973 0.667550
151
+ 0.892690 0.743148 0.657086
152
+ 0.889402 0.735345 0.646657
153
+ 0.886118 0.727569 0.636274
154
+ 0.882831 0.719826 0.625923
155
+ 0.879556 0.712106 0.615618
156
+ 0.876289 0.704419 0.605357
157
+ 0.873033 0.696764 0.595141
158
+ 0.869784 0.689144 0.584972
159
+ 0.866551 0.681541 0.574832
160
+ 0.863333 0.673985 0.564746
161
+ 0.860121 0.666453 0.554708
162
+ 0.856920 0.658957 0.544709
163
+ 0.853732 0.651500 0.534753
164
+ 0.850562 0.644061 0.524842
165
+ 0.847402 0.636670 0.514974
166
+ 0.844258 0.629296 0.505146
167
+ 0.841125 0.621957 0.495369
168
+ 0.838005 0.614653 0.485627
169
+ 0.834895 0.607392 0.475941
170
+ 0.831802 0.600144 0.466284
171
+ 0.828715 0.592938 0.456675
172
+ 0.825639 0.585758 0.447109
173
+ 0.822582 0.578600 0.437595
174
+ 0.819528 0.571478 0.428106
175
+ 0.816496 0.564388 0.418657
176
+ 0.813463 0.557328 0.409260
177
+ 0.810446 0.550285 0.399892
178
+ 0.807443 0.543274 0.390575
179
+ 0.804446 0.536288 0.381299
180
+ 0.801454 0.529329 0.372040
181
+ 0.798475 0.522380 0.362835
182
+ 0.795500 0.515460 0.353660
183
+ 0.792535 0.508575 0.344523
184
+ 0.789573 0.501692 0.335435
185
+ 0.786617 0.494827 0.326343
186
+ 0.783657 0.487977 0.317312
187
+ 0.780695 0.481123 0.308300
188
+ 0.777737 0.474295 0.299327
189
+ 0.774763 0.467464 0.290352
190
+ 0.771788 0.460620 0.281424
191
+ 0.768787 0.453783 0.272508
192
+ 0.765776 0.446929 0.263640
193
+ 0.762724 0.440055 0.254764
194
+ 0.759638 0.433147 0.245872
195
+ 0.756510 0.426200 0.237047
196
+ 0.753316 0.419216 0.228190
197
+ 0.750051 0.412163 0.219330
198
+ 0.746698 0.405028 0.210470
199
+ 0.743239 0.397819 0.201593
200
+ 0.739651 0.390493 0.192739
201
+ 0.735899 0.383060 0.183852
202
+ 0.731988 0.375473 0.174977
203
+ 0.727865 0.367743 0.166045
204
+ 0.723516 0.359852 0.157131
205
+ 0.718915 0.351766 0.148211
206
+ 0.714028 0.343503 0.139282
207
+ 0.708841 0.335048 0.130458
208
+ 0.703318 0.326354 0.121545
209
+ 0.697448 0.317502 0.112841
210
+ 0.691227 0.308462 0.104132
211
+ 0.684653 0.299264 0.095633
212
+ 0.677734 0.289916 0.087350
213
+ 0.670476 0.280477 0.079197
214
+ 0.662904 0.271015 0.071510
215
+ 0.655048 0.261520 0.064079
216
+ 0.646969 0.252081 0.057104
217
+ 0.638686 0.242711 0.050618
218
+ 0.630261 0.233488 0.044750
219
+ 0.621722 0.224449 0.039414
220
+ 0.613135 0.215657 0.034829
221
+ 0.604539 0.207086 0.031072
222
+ 0.595947 0.198741 0.028212
223
+ 0.587403 0.190700 0.026019
224
+ 0.578937 0.182918 0.024396
225
+ 0.570545 0.175423 0.023257
226
+ 0.562268 0.168171 0.022523
227
+ 0.554076 0.161202 0.022110
228
+ 0.546007 0.154400 0.021861
229
+ 0.538043 0.147854 0.021737
230
+ 0.530182 0.141491 0.021722
231
+ 0.522424 0.135276 0.021800
232
+ 0.514776 0.129209 0.021957
233
+ 0.507213 0.123272 0.022179
234
+ 0.499733 0.117487 0.022455
235
+ 0.492348 0.111818 0.022775
236
+ 0.485034 0.106209 0.023130
237
+ 0.477801 0.100607 0.023513
238
+ 0.470639 0.095156 0.023916
239
+ 0.463530 0.089668 0.024336
240
+ 0.456494 0.084258 0.024766
241
+ 0.449521 0.078741 0.025203
242
+ 0.442603 0.073404 0.025644
243
+ 0.435737 0.067904 0.026084
244
+ 0.428918 0.062415 0.026522
245
+ 0.422146 0.056832 0.026954
246
+ 0.415437 0.051116 0.027378
247
+ 0.408768 0.045352 0.027790
248
+ 0.402132 0.039448 0.028189
249
+ 0.395562 0.033385 0.028570
250
+ 0.389015 0.027844 0.028932
251
+ 0.382496 0.022586 0.029271
252
+ 0.376028 0.017608 0.029583
253
+ 0.369578 0.012890 0.029866
254
+ 0.363161 0.008243 0.030115
255
+ 0.356785 0.004035 0.030327
256
+ 0.350423 0.000061 0.030499
@@ -0,0 +1,256 @@
1
+ 0.100212 0.200031 0.200060
2
+ 0.101191 0.203272 0.207592
3
+ 0.102143 0.206539 0.215142
4
+ 0.103092 0.209783 0.222796
5
+ 0.103985 0.213077 0.230487
6
+ 0.104850 0.216454 0.238291
7
+ 0.105813 0.219832 0.246192
8
+ 0.106760 0.223269 0.254224
9
+ 0.107644 0.226757 0.262353
10
+ 0.108569 0.230280 0.270634
11
+ 0.109598 0.233891 0.279034
12
+ 0.110555 0.237584 0.287565
13
+ 0.111547 0.241301 0.296277
14
+ 0.112568 0.245083 0.305146
15
+ 0.113600 0.248979 0.314176
16
+ 0.114599 0.252929 0.323400
17
+ 0.115734 0.256969 0.332836
18
+ 0.116832 0.261101 0.342479
19
+ 0.117992 0.265341 0.352366
20
+ 0.119158 0.269718 0.362542
21
+ 0.120346 0.274202 0.373019
22
+ 0.121586 0.278850 0.383845
23
+ 0.122882 0.283639 0.395030
24
+ 0.124236 0.288607 0.406609
25
+ 0.125661 0.293741 0.418586
26
+ 0.127051 0.299083 0.430983
27
+ 0.128553 0.304588 0.443756
28
+ 0.130118 0.310301 0.456863
29
+ 0.131660 0.316185 0.470253
30
+ 0.133278 0.322251 0.483789
31
+ 0.134970 0.328505 0.497373
32
+ 0.136682 0.334957 0.510815
33
+ 0.138534 0.341564 0.523987
34
+ 0.140459 0.348357 0.536745
35
+ 0.142490 0.355321 0.548980
36
+ 0.144640 0.362403 0.560654
37
+ 0.146848 0.369604 0.571790
38
+ 0.149180 0.376901 0.582435
39
+ 0.151539 0.384231 0.592690
40
+ 0.153947 0.391601 0.602616
41
+ 0.156413 0.398956 0.612318
42
+ 0.158840 0.406316 0.621860
43
+ 0.161284 0.413636 0.631298
44
+ 0.163712 0.420921 0.640640
45
+ 0.166093 0.428185 0.649921
46
+ 0.168507 0.435409 0.659140
47
+ 0.170899 0.442592 0.668325
48
+ 0.173277 0.449741 0.677466
49
+ 0.175644 0.456863 0.686565
50
+ 0.178065 0.463979 0.695632
51
+ 0.180422 0.471073 0.704648
52
+ 0.182859 0.478161 0.713600
53
+ 0.185425 0.485257 0.722435
54
+ 0.188104 0.492374 0.731088
55
+ 0.190987 0.499506 0.739448
56
+ 0.194285 0.506669 0.747347
57
+ 0.197982 0.513858 0.754635
58
+ 0.202274 0.521048 0.761138
59
+ 0.207225 0.528251 0.766736
60
+ 0.212780 0.535444 0.771369
61
+ 0.218964 0.542634 0.775033
62
+ 0.225640 0.549788 0.777836
63
+ 0.232684 0.556913 0.779901
64
+ 0.239996 0.563996 0.781409
65
+ 0.247484 0.571025 0.782510
66
+ 0.255043 0.578015 0.783346
67
+ 0.262599 0.584970 0.784026
68
+ 0.270167 0.591867 0.784609
69
+ 0.277685 0.598710 0.785142
70
+ 0.285153 0.605508 0.785651
71
+ 0.292600 0.612263 0.786152
72
+ 0.299999 0.618983 0.786650
73
+ 0.307345 0.625642 0.787141
74
+ 0.314656 0.632271 0.787628
75
+ 0.321937 0.638860 0.788116
76
+ 0.329190 0.645413 0.788605
77
+ 0.336382 0.651946 0.789089
78
+ 0.343567 0.658439 0.789569
79
+ 0.350732 0.664908 0.790046
80
+ 0.357860 0.671358 0.790523
81
+ 0.364955 0.677788 0.790999
82
+ 0.372036 0.684183 0.791473
83
+ 0.379106 0.690567 0.791945
84
+ 0.386142 0.696933 0.792417
85
+ 0.393169 0.703279 0.792888
86
+ 0.400176 0.709604 0.793358
87
+ 0.407155 0.715911 0.793826
88
+ 0.414119 0.722188 0.794290
89
+ 0.421057 0.728460 0.794752
90
+ 0.427995 0.734717 0.795214
91
+ 0.434921 0.740950 0.795680
92
+ 0.441861 0.747188 0.796155
93
+ 0.448844 0.753416 0.796651
94
+ 0.455922 0.759657 0.797187
95
+ 0.463180 0.765932 0.797793
96
+ 0.470755 0.772248 0.798515
97
+ 0.478756 0.778641 0.799408
98
+ 0.487370 0.785141 0.800529
99
+ 0.496724 0.791765 0.801946
100
+ 0.506968 0.798543 0.803713
101
+ 0.518143 0.805473 0.805851
102
+ 0.530218 0.812557 0.808363
103
+ 0.543111 0.819768 0.811211
104
+ 0.556666 0.827086 0.814340
105
+ 0.570715 0.834467 0.817689
106
+ 0.585107 0.841883 0.821192
107
+ 0.599679 0.849307 0.824785
108
+ 0.614327 0.856715 0.828432
109
+ 0.628998 0.864106 0.832098
110
+ 0.643623 0.871454 0.835758
111
+ 0.658195 0.878761 0.839411
112
+ 0.672685 0.886031 0.843041
113
+ 0.687080 0.893247 0.846647
114
+ 0.701389 0.900424 0.850237
115
+ 0.715620 0.907557 0.853797
116
+ 0.729753 0.914639 0.857340
117
+ 0.743801 0.921679 0.860861
118
+ 0.757765 0.928671 0.864361
119
+ 0.771646 0.935628 0.867837
120
+ 0.785445 0.942543 0.871291
121
+ 0.799166 0.949410 0.874724
122
+ 0.812805 0.956246 0.878142
123
+ 0.826380 0.963041 0.881540
124
+ 0.839886 0.969802 0.884919
125
+ 0.853317 0.976533 0.888284
126
+ 0.866697 0.983238 0.891633
127
+ 0.880020 0.989920 0.894972
128
+ 0.893294 0.996576 0.898292
129
+ 0.003238 0.252045 0.149354
130
+ 0.007019 0.256307 0.145763
131
+ 0.010799 0.260687 0.142058
132
+ 0.014794 0.265160 0.138304
133
+ 0.018683 0.269781 0.134456
134
+ 0.022712 0.274507 0.130529
135
+ 0.026950 0.279416 0.126478
136
+ 0.031482 0.284449 0.122349
137
+ 0.036599 0.289678 0.118255
138
+ 0.042054 0.295059 0.114007
139
+ 0.047635 0.300623 0.109822
140
+ 0.053619 0.306379 0.105514
141
+ 0.060099 0.312256 0.101269
142
+ 0.066906 0.318335 0.097065
143
+ 0.074310 0.324537 0.092956
144
+ 0.082337 0.330875 0.089057
145
+ 0.090972 0.337335 0.085272
146
+ 0.100262 0.343849 0.081885
147
+ 0.110317 0.350438 0.078683
148
+ 0.120944 0.357022 0.076034
149
+ 0.132315 0.363561 0.073986
150
+ 0.144252 0.370041 0.072442
151
+ 0.156732 0.376420 0.071703
152
+ 0.169691 0.382616 0.071689
153
+ 0.182997 0.388631 0.072425
154
+ 0.196674 0.394401 0.074055
155
+ 0.210507 0.399912 0.076332
156
+ 0.224465 0.405144 0.079395
157
+ 0.238494 0.410080 0.083096
158
+ 0.252488 0.414691 0.087378
159
+ 0.266362 0.419003 0.092025
160
+ 0.280061 0.423005 0.096959
161
+ 0.293551 0.426733 0.102245
162
+ 0.306807 0.430180 0.107676
163
+ 0.319777 0.433368 0.113262
164
+ 0.332457 0.436338 0.118843
165
+ 0.344814 0.439083 0.124409
166
+ 0.356885 0.441663 0.130047
167
+ 0.368642 0.444069 0.135530
168
+ 0.380100 0.446322 0.141034
169
+ 0.391284 0.448464 0.146382
170
+ 0.402174 0.450492 0.151674
171
+ 0.412839 0.452436 0.156891
172
+ 0.423228 0.454289 0.162020
173
+ 0.433405 0.456071 0.167034
174
+ 0.443377 0.457801 0.171937
175
+ 0.453142 0.459488 0.176782
176
+ 0.462719 0.461123 0.181540
177
+ 0.472152 0.462721 0.186262
178
+ 0.481412 0.464317 0.190881
179
+ 0.490552 0.465857 0.195464
180
+ 0.499549 0.467411 0.199986
181
+ 0.508467 0.468951 0.204530
182
+ 0.517277 0.470491 0.209003
183
+ 0.526008 0.472050 0.213491
184
+ 0.534678 0.473620 0.218014
185
+ 0.543306 0.475259 0.222568
186
+ 0.551904 0.476935 0.227193
187
+ 0.560481 0.478701 0.231925
188
+ 0.569058 0.480571 0.236788
189
+ 0.577652 0.482582 0.241812
190
+ 0.586281 0.484751 0.247059
191
+ 0.594937 0.487140 0.252583
192
+ 0.603644 0.489753 0.258407
193
+ 0.612383 0.492658 0.264604
194
+ 0.621172 0.495891 0.271214
195
+ 0.629985 0.499486 0.278276
196
+ 0.638807 0.503485 0.285804
197
+ 0.647608 0.507925 0.293868
198
+ 0.656364 0.512800 0.302451
199
+ 0.665013 0.518153 0.311569
200
+ 0.673537 0.523965 0.321206
201
+ 0.681870 0.530237 0.331312
202
+ 0.689988 0.536951 0.341891
203
+ 0.697835 0.544056 0.352859
204
+ 0.705394 0.551536 0.364166
205
+ 0.712628 0.559334 0.375775
206
+ 0.719546 0.567414 0.387613
207
+ 0.726124 0.575723 0.399636
208
+ 0.732383 0.584209 0.411808
209
+ 0.738327 0.592854 0.424069
210
+ 0.743995 0.601596 0.436406
211
+ 0.749400 0.610428 0.448784
212
+ 0.754593 0.619320 0.461182
213
+ 0.759575 0.628240 0.473598
214
+ 0.764407 0.637180 0.486042
215
+ 0.769098 0.646127 0.498511
216
+ 0.773686 0.655073 0.510983
217
+ 0.778197 0.664020 0.523503
218
+ 0.782643 0.672946 0.536052
219
+ 0.787052 0.681840 0.548666
220
+ 0.791426 0.690717 0.561324
221
+ 0.795790 0.699560 0.574057
222
+ 0.800153 0.708366 0.586871
223
+ 0.804511 0.717119 0.599769
224
+ 0.808874 0.725805 0.612736
225
+ 0.813236 0.734416 0.625787
226
+ 0.817606 0.742940 0.638902
227
+ 0.821977 0.751357 0.652066
228
+ 0.826332 0.759638 0.665252
229
+ 0.830673 0.767783 0.678442
230
+ 0.834985 0.775766 0.691599
231
+ 0.839261 0.783567 0.704691
232
+ 0.843484 0.791163 0.717687
233
+ 0.847652 0.798548 0.730537
234
+ 0.851753 0.805703 0.743222
235
+ 0.855778 0.812628 0.755699
236
+ 0.859717 0.819315 0.767947
237
+ 0.863572 0.825769 0.779955
238
+ 0.867330 0.831996 0.791702
239
+ 0.871005 0.837996 0.803186
240
+ 0.874595 0.843788 0.814415
241
+ 0.878108 0.849404 0.825404
242
+ 0.881552 0.854851 0.836182
243
+ 0.884938 0.860163 0.846777
244
+ 0.888283 0.865366 0.857243
245
+ 0.891602 0.870499 0.867627
246
+ 0.894916 0.875597 0.877980
247
+ 0.898229 0.880679 0.888357
248
+ 0.901570 0.885786 0.898808
249
+ 0.904946 0.890933 0.909378
250
+ 0.908364 0.896151 0.920105
251
+ 0.911830 0.901447 0.931020
252
+ 0.915349 0.906839 0.942140
253
+ 0.918924 0.912328 0.953474
254
+ 0.922553 0.917920 0.965016
255
+ 0.926219 0.923605 0.976769
256
+ 0.929921 0.929373 0.988709