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.098791 0.099669 0.000088
2
+ 0.102398 0.100814 0.002016
3
+ 0.105856 0.102014 0.003932
4
+ 0.109170 0.103273 0.005840
5
+ 0.112474 0.104439 0.007746
6
+ 0.115773 0.105695 0.009656
7
+ 0.119086 0.106937 0.011760
8
+ 0.122370 0.108079 0.013670
9
+ 0.125765 0.109344 0.015595
10
+ 0.129083 0.110536 0.017532
11
+ 0.132479 0.111731 0.019486
12
+ 0.135832 0.112947 0.021462
13
+ 0.139249 0.114096 0.023462
14
+ 0.142721 0.115314 0.025492
15
+ 0.146188 0.116556 0.027555
16
+ 0.149714 0.117765 0.029655
17
+ 0.153215 0.119010 0.031796
18
+ 0.156820 0.120223 0.033961
19
+ 0.160419 0.121466 0.036412
20
+ 0.164141 0.122736 0.038709
21
+ 0.167834 0.124034 0.041058
22
+ 0.171613 0.125365 0.043253
23
+ 0.175448 0.126668 0.045600
24
+ 0.179347 0.128031 0.047889
25
+ 0.183292 0.129370 0.050218
26
+ 0.187338 0.130777 0.052456
27
+ 0.191398 0.132157 0.054749
28
+ 0.195552 0.133574 0.057052
29
+ 0.199759 0.135025 0.059373
30
+ 0.204093 0.136445 0.061524
31
+ 0.208438 0.137979 0.063852
32
+ 0.212867 0.139428 0.066100
33
+ 0.217399 0.141015 0.068401
34
+ 0.221979 0.142548 0.070615
35
+ 0.226668 0.144129 0.072894
36
+ 0.231424 0.145750 0.075110
37
+ 0.236255 0.147356 0.077324
38
+ 0.241152 0.148993 0.079626
39
+ 0.246126 0.150675 0.082053
40
+ 0.251203 0.152365 0.084452
41
+ 0.256313 0.154101 0.086925
42
+ 0.261529 0.155889 0.089444
43
+ 0.266808 0.157647 0.092067
44
+ 0.272159 0.159456 0.094750
45
+ 0.277620 0.161336 0.097443
46
+ 0.283142 0.163196 0.100219
47
+ 0.288738 0.165057 0.103107
48
+ 0.294406 0.167020 0.106026
49
+ 0.300173 0.168975 0.108981
50
+ 0.306035 0.170932 0.112027
51
+ 0.311930 0.172936 0.115071
52
+ 0.317951 0.174991 0.118267
53
+ 0.324033 0.177046 0.121403
54
+ 0.330210 0.179135 0.124669
55
+ 0.336449 0.181231 0.127997
56
+ 0.342792 0.183380 0.131345
57
+ 0.349191 0.185585 0.134755
58
+ 0.355681 0.187779 0.138191
59
+ 0.362234 0.189962 0.141663
60
+ 0.368872 0.192199 0.145203
61
+ 0.375570 0.194487 0.148714
62
+ 0.382348 0.196763 0.152311
63
+ 0.389208 0.199025 0.155973
64
+ 0.396126 0.201339 0.159588
65
+ 0.403111 0.203702 0.163305
66
+ 0.410167 0.206055 0.167007
67
+ 0.417279 0.208396 0.170707
68
+ 0.424448 0.210766 0.174453
69
+ 0.431694 0.213130 0.178213
70
+ 0.438972 0.215530 0.181919
71
+ 0.446327 0.217923 0.185715
72
+ 0.453734 0.220327 0.189437
73
+ 0.461197 0.222709 0.193178
74
+ 0.468712 0.225073 0.196918
75
+ 0.476277 0.227476 0.200586
76
+ 0.483887 0.229823 0.204310
77
+ 0.491568 0.232214 0.207943
78
+ 0.499268 0.234569 0.211570
79
+ 0.507032 0.236904 0.215121
80
+ 0.514841 0.239198 0.218665
81
+ 0.522691 0.241494 0.222129
82
+ 0.530585 0.243739 0.225557
83
+ 0.538526 0.245982 0.228915
84
+ 0.546498 0.248220 0.232200
85
+ 0.554505 0.250369 0.235417
86
+ 0.562556 0.252534 0.238525
87
+ 0.570622 0.254658 0.241596
88
+ 0.578732 0.256723 0.244541
89
+ 0.586863 0.258774 0.247442
90
+ 0.595019 0.260780 0.250209
91
+ 0.603195 0.262762 0.252927
92
+ 0.611383 0.264701 0.255529
93
+ 0.619582 0.266626 0.258022
94
+ 0.627779 0.268526 0.260449
95
+ 0.635979 0.270408 0.262772
96
+ 0.644165 0.272236 0.264987
97
+ 0.652346 0.274100 0.267119
98
+ 0.660500 0.275957 0.269192
99
+ 0.668632 0.277791 0.271140
100
+ 0.676724 0.279653 0.273014
101
+ 0.684764 0.281520 0.274801
102
+ 0.692762 0.283434 0.276532
103
+ 0.700683 0.285371 0.278167
104
+ 0.708537 0.287376 0.279741
105
+ 0.716305 0.289458 0.281228
106
+ 0.723970 0.291602 0.282691
107
+ 0.731535 0.293812 0.284053
108
+ 0.738987 0.296143 0.285370
109
+ 0.746299 0.298576 0.286641
110
+ 0.753474 0.301124 0.287867
111
+ 0.760502 0.303810 0.289058
112
+ 0.767360 0.306647 0.290172
113
+ 0.774048 0.309620 0.291279
114
+ 0.780555 0.312723 0.292319
115
+ 0.786871 0.316022 0.293327
116
+ 0.792976 0.319454 0.294303
117
+ 0.798871 0.323061 0.295249
118
+ 0.804548 0.326810 0.296165
119
+ 0.809995 0.330734 0.297055
120
+ 0.815214 0.334831 0.297889
121
+ 0.820195 0.339049 0.298716
122
+ 0.824940 0.343407 0.299513
123
+ 0.829449 0.347900 0.300265
124
+ 0.833714 0.352506 0.300996
125
+ 0.837741 0.357235 0.301703
126
+ 0.841532 0.362040 0.302385
127
+ 0.845096 0.366931 0.303044
128
+ 0.848438 0.371886 0.303681
129
+ 0.851566 0.376920 0.304295
130
+ 0.854494 0.381975 0.304888
131
+ 0.857225 0.387073 0.305464
132
+ 0.859779 0.392203 0.306015
133
+ 0.862161 0.397340 0.306537
134
+ 0.864380 0.402483 0.307036
135
+ 0.866454 0.407633 0.307521
136
+ 0.868402 0.412782 0.308001
137
+ 0.870213 0.417898 0.308478
138
+ 0.871931 0.423001 0.308939
139
+ 0.873540 0.428101 0.309379
140
+ 0.875064 0.433164 0.309804
141
+ 0.876507 0.438212 0.310225
142
+ 0.877887 0.443229 0.310636
143
+ 0.879200 0.448215 0.311034
144
+ 0.880462 0.453182 0.311418
145
+ 0.881681 0.458116 0.311798
146
+ 0.882852 0.463019 0.312180
147
+ 0.883997 0.467910 0.312564
148
+ 0.885105 0.472767 0.312945
149
+ 0.886191 0.477603 0.313322
150
+ 0.887249 0.482417 0.313691
151
+ 0.888294 0.487206 0.314051
152
+ 0.889321 0.491971 0.314404
153
+ 0.890332 0.496706 0.314759
154
+ 0.891333 0.501443 0.315120
155
+ 0.892326 0.506138 0.315483
156
+ 0.893303 0.510831 0.315840
157
+ 0.894281 0.515501 0.316190
158
+ 0.895249 0.520158 0.316534
159
+ 0.896210 0.524808 0.316878
160
+ 0.897169 0.529444 0.317222
161
+ 0.898117 0.534052 0.317567
162
+ 0.899069 0.538669 0.317912
163
+ 0.900015 0.543262 0.318255
164
+ 0.900957 0.547848 0.318598
165
+ 0.901898 0.552429 0.318940
166
+ 0.902840 0.557003 0.319282
167
+ 0.903774 0.561563 0.319625
168
+ 0.904711 0.566120 0.319970
169
+ 0.905648 0.570671 0.320313
170
+ 0.906580 0.575224 0.320652
171
+ 0.907514 0.579777 0.320985
172
+ 0.908445 0.584316 0.321317
173
+ 0.909375 0.588853 0.321654
174
+ 0.910310 0.593404 0.321998
175
+ 0.911239 0.597943 0.322345
176
+ 0.912171 0.602489 0.322690
177
+ 0.913105 0.607042 0.323029
178
+ 0.914040 0.611586 0.323367
179
+ 0.914970 0.616139 0.323706
180
+ 0.915902 0.620702 0.324049
181
+ 0.916845 0.625260 0.324396
182
+ 0.917784 0.629830 0.324746
183
+ 0.918718 0.634415 0.325101
184
+ 0.919662 0.638998 0.325460
185
+ 0.920604 0.643592 0.325826
186
+ 0.921555 0.648201 0.326200
187
+ 0.922507 0.652822 0.326584
188
+ 0.923462 0.657468 0.326981
189
+ 0.924416 0.662121 0.327392
190
+ 0.925379 0.666780 0.327822
191
+ 0.926347 0.671471 0.328275
192
+ 0.927318 0.676184 0.328757
193
+ 0.928297 0.680911 0.329270
194
+ 0.929285 0.685678 0.329814
195
+ 0.930283 0.690460 0.330396
196
+ 0.931285 0.695281 0.331033
197
+ 0.932296 0.700132 0.331753
198
+ 0.933319 0.705021 0.332557
199
+ 0.934357 0.709951 0.333431
200
+ 0.935409 0.714920 0.334417
201
+ 0.936478 0.719941 0.335521
202
+ 0.937557 0.725011 0.336755
203
+ 0.938655 0.730132 0.338153
204
+ 0.939775 0.735308 0.339755
205
+ 0.940913 0.740544 0.341539
206
+ 0.942077 0.745845 0.343556
207
+ 0.943262 0.751218 0.345825
208
+ 0.944473 0.756645 0.348394
209
+ 0.945709 0.762144 0.351264
210
+ 0.946974 0.767714 0.354472
211
+ 0.948266 0.773354 0.358043
212
+ 0.949586 0.779063 0.362002
213
+ 0.950938 0.784838 0.366377
214
+ 0.952312 0.790667 0.371170
215
+ 0.953719 0.796554 0.376445
216
+ 0.955147 0.802494 0.382156
217
+ 0.956597 0.808479 0.388366
218
+ 0.958072 0.814491 0.395050
219
+ 0.959559 0.820530 0.402205
220
+ 0.961064 0.826587 0.409861
221
+ 0.962575 0.832640 0.417961
222
+ 0.964092 0.838685 0.426519
223
+ 0.965612 0.844713 0.435518
224
+ 0.967132 0.850700 0.444911
225
+ 0.968639 0.856648 0.454686
226
+ 0.970133 0.862544 0.464801
227
+ 0.971612 0.868368 0.475238
228
+ 0.973070 0.874110 0.485938
229
+ 0.974498 0.879773 0.496891
230
+ 0.975902 0.885348 0.508061
231
+ 0.977278 0.890823 0.519386
232
+ 0.978614 0.896200 0.530851
233
+ 0.979924 0.901469 0.542424
234
+ 0.981192 0.906636 0.554064
235
+ 0.982426 0.911693 0.565746
236
+ 0.983617 0.916646 0.577452
237
+ 0.984777 0.921492 0.589147
238
+ 0.985893 0.926235 0.600822
239
+ 0.986977 0.930880 0.612445
240
+ 0.988017 0.935424 0.624015
241
+ 0.989027 0.939877 0.635493
242
+ 0.989999 0.944235 0.646891
243
+ 0.990934 0.948505 0.658185
244
+ 0.991836 0.952694 0.669370
245
+ 0.992705 0.956799 0.680431
246
+ 0.993538 0.960832 0.691381
247
+ 0.994334 0.964785 0.702202
248
+ 0.995098 0.968676 0.712897
249
+ 0.995829 0.972501 0.723465
250
+ 0.996528 0.976256 0.733910
251
+ 0.997193 0.979964 0.744228
252
+ 0.997826 0.983613 0.754434
253
+ 0.998426 0.987220 0.764524
254
+ 0.998993 0.990779 0.774513
255
+ 0.999523 0.994303 0.784423
256
+ 1.000000 0.997796 0.794247
@@ -0,0 +1,256 @@
1
+ 0.103516 0.047787 0.393530
2
+ 0.104891 0.053521 0.396743
3
+ 0.106384 0.059148 0.399962
4
+ 0.107720 0.064483 0.403185
5
+ 0.109104 0.069760 0.406401
6
+ 0.110449 0.074827 0.409614
7
+ 0.111749 0.079829 0.412831
8
+ 0.113050 0.084796 0.416030
9
+ 0.114243 0.089643 0.419241
10
+ 0.115510 0.094446 0.422431
11
+ 0.116730 0.099126 0.425637
12
+ 0.117933 0.103813 0.428830
13
+ 0.119106 0.108384 0.432027
14
+ 0.120235 0.113025 0.435205
15
+ 0.121361 0.117507 0.438371
16
+ 0.122480 0.121983 0.441541
17
+ 0.123592 0.126483 0.444704
18
+ 0.124696 0.130936 0.447839
19
+ 0.125807 0.135324 0.450989
20
+ 0.126828 0.139672 0.454121
21
+ 0.127907 0.144071 0.457236
22
+ 0.128916 0.148382 0.460341
23
+ 0.129993 0.152699 0.463441
24
+ 0.130992 0.157010 0.466534
25
+ 0.131988 0.161319 0.469615
26
+ 0.132983 0.165534 0.472664
27
+ 0.133979 0.169826 0.475718
28
+ 0.134969 0.174047 0.478744
29
+ 0.135893 0.178292 0.481764
30
+ 0.136892 0.182461 0.484757
31
+ 0.137889 0.186673 0.487756
32
+ 0.138819 0.190854 0.490726
33
+ 0.139754 0.195043 0.493668
34
+ 0.140766 0.199185 0.496597
35
+ 0.141712 0.203360 0.499513
36
+ 0.142665 0.207508 0.502416
37
+ 0.143626 0.211653 0.505290
38
+ 0.144593 0.215776 0.508162
39
+ 0.145575 0.219893 0.510990
40
+ 0.146497 0.223982 0.513817
41
+ 0.147494 0.228107 0.516608
42
+ 0.148441 0.232196 0.519386
43
+ 0.149461 0.236283 0.522132
44
+ 0.150439 0.240331 0.524870
45
+ 0.151423 0.244401 0.527578
46
+ 0.152426 0.248494 0.530265
47
+ 0.153444 0.252535 0.532927
48
+ 0.154482 0.256572 0.535558
49
+ 0.155540 0.260614 0.538183
50
+ 0.156604 0.264639 0.540764
51
+ 0.157646 0.268677 0.543330
52
+ 0.158755 0.272676 0.545871
53
+ 0.159813 0.276698 0.548383
54
+ 0.160964 0.280675 0.550863
55
+ 0.162111 0.284675 0.553315
56
+ 0.163261 0.288671 0.555744
57
+ 0.164432 0.292642 0.558150
58
+ 0.165586 0.296623 0.560533
59
+ 0.166843 0.300573 0.562887
60
+ 0.168054 0.304534 0.565194
61
+ 0.169354 0.308487 0.567495
62
+ 0.170614 0.312410 0.569751
63
+ 0.171920 0.316363 0.571989
64
+ 0.173261 0.320291 0.574188
65
+ 0.174648 0.324189 0.576375
66
+ 0.176006 0.328102 0.578508
67
+ 0.177479 0.332008 0.580625
68
+ 0.178923 0.335895 0.582704
69
+ 0.180394 0.339788 0.584762
70
+ 0.181911 0.343652 0.586779
71
+ 0.183476 0.347530 0.588765
72
+ 0.185095 0.351381 0.590726
73
+ 0.186704 0.355244 0.592662
74
+ 0.188390 0.359065 0.594548
75
+ 0.190072 0.362901 0.596411
76
+ 0.191813 0.366733 0.598235
77
+ 0.193613 0.370536 0.600036
78
+ 0.195424 0.374356 0.601796
79
+ 0.197303 0.378144 0.603531
80
+ 0.199191 0.381929 0.605220
81
+ 0.201145 0.385703 0.606888
82
+ 0.203166 0.389479 0.608518
83
+ 0.205211 0.393235 0.610101
84
+ 0.207319 0.396980 0.611662
85
+ 0.209453 0.400739 0.613179
86
+ 0.211665 0.404450 0.614666
87
+ 0.213901 0.408173 0.616123
88
+ 0.216213 0.411881 0.617536
89
+ 0.218546 0.415577 0.618923
90
+ 0.220963 0.419268 0.620264
91
+ 0.223407 0.422932 0.621560
92
+ 0.225926 0.426601 0.622832
93
+ 0.228495 0.430255 0.624066
94
+ 0.231110 0.433884 0.625253
95
+ 0.233772 0.437528 0.626406
96
+ 0.236537 0.441129 0.627522
97
+ 0.239324 0.444741 0.628602
98
+ 0.242179 0.448322 0.629632
99
+ 0.245082 0.451902 0.630636
100
+ 0.248092 0.455457 0.631588
101
+ 0.251124 0.459003 0.632503
102
+ 0.254223 0.462523 0.633378
103
+ 0.257378 0.466038 0.634215
104
+ 0.260601 0.469550 0.635000
105
+ 0.263901 0.473016 0.635749
106
+ 0.267221 0.476488 0.636460
107
+ 0.270662 0.479939 0.637121
108
+ 0.274124 0.483358 0.637738
109
+ 0.277664 0.486772 0.638314
110
+ 0.281249 0.490161 0.638845
111
+ 0.284909 0.493528 0.639333
112
+ 0.288645 0.496877 0.639778
113
+ 0.292426 0.500203 0.640175
114
+ 0.296276 0.503508 0.640524
115
+ 0.300180 0.506793 0.640826
116
+ 0.304147 0.510052 0.641084
117
+ 0.308175 0.513289 0.641296
118
+ 0.312252 0.516494 0.641462
119
+ 0.316418 0.519677 0.641582
120
+ 0.320626 0.522837 0.641654
121
+ 0.324864 0.525966 0.641679
122
+ 0.329198 0.529070 0.641656
123
+ 0.333561 0.532136 0.641585
124
+ 0.337970 0.535170 0.641466
125
+ 0.342455 0.538188 0.641300
126
+ 0.346979 0.541154 0.641087
127
+ 0.351541 0.544103 0.640829
128
+ 0.356170 0.547014 0.640524
129
+ 0.360819 0.549891 0.640171
130
+ 0.365541 0.552731 0.639769
131
+ 0.370290 0.555531 0.639318
132
+ 0.375088 0.558300 0.638823
133
+ 0.379928 0.561035 0.638283
134
+ 0.384797 0.563739 0.637697
135
+ 0.389709 0.566390 0.637069
136
+ 0.394658 0.569000 0.636397
137
+ 0.399630 0.571580 0.635673
138
+ 0.404644 0.574114 0.634914
139
+ 0.409695 0.576622 0.634116
140
+ 0.414760 0.579073 0.633268
141
+ 0.419859 0.581482 0.632384
142
+ 0.424982 0.583855 0.631463
143
+ 0.430122 0.586191 0.630505
144
+ 0.435295 0.588472 0.629501
145
+ 0.440469 0.590724 0.628476
146
+ 0.445670 0.592938 0.627405
147
+ 0.450901 0.595097 0.626305
148
+ 0.456135 0.597226 0.625177
149
+ 0.461391 0.599309 0.624023
150
+ 0.466657 0.601347 0.622832
151
+ 0.471940 0.603355 0.621614
152
+ 0.477222 0.605313 0.620388
153
+ 0.482525 0.607248 0.619130
154
+ 0.487841 0.609136 0.617842
155
+ 0.493147 0.610986 0.616551
156
+ 0.498489 0.612795 0.615232
157
+ 0.503819 0.614576 0.613904
158
+ 0.509165 0.616333 0.612569
159
+ 0.514519 0.618048 0.611232
160
+ 0.519869 0.619742 0.609876
161
+ 0.525243 0.621396 0.608531
162
+ 0.530620 0.623035 0.607177
163
+ 0.536002 0.624643 0.605815
164
+ 0.541393 0.626229 0.604481
165
+ 0.546807 0.627800 0.603143
166
+ 0.552224 0.629346 0.601817
167
+ 0.557650 0.630889 0.600512
168
+ 0.563095 0.632409 0.599231
169
+ 0.568544 0.633927 0.597963
170
+ 0.574017 0.635428 0.596735
171
+ 0.579518 0.636939 0.595529
172
+ 0.585029 0.638440 0.594365
173
+ 0.590556 0.639951 0.593245
174
+ 0.596118 0.641459 0.592171
175
+ 0.601704 0.642989 0.591137
176
+ 0.607328 0.644526 0.590163
177
+ 0.612966 0.646088 0.589253
178
+ 0.618659 0.647671 0.588412
179
+ 0.624377 0.649288 0.587646
180
+ 0.630138 0.650926 0.586960
181
+ 0.635943 0.652601 0.586361
182
+ 0.641792 0.654323 0.585856
183
+ 0.647693 0.656096 0.585447
184
+ 0.653648 0.657914 0.585142
185
+ 0.659659 0.659784 0.584952
186
+ 0.665727 0.661724 0.584884
187
+ 0.671854 0.663726 0.584946
188
+ 0.678048 0.665796 0.585146
189
+ 0.684298 0.667952 0.585491
190
+ 0.690623 0.670187 0.585987
191
+ 0.697019 0.672507 0.586641
192
+ 0.703483 0.674915 0.587468
193
+ 0.710016 0.677433 0.588473
194
+ 0.716622 0.680035 0.589666
195
+ 0.723287 0.682758 0.591058
196
+ 0.730033 0.685590 0.592654
197
+ 0.736837 0.688533 0.594444
198
+ 0.743708 0.691588 0.596458
199
+ 0.750639 0.694763 0.598689
200
+ 0.757620 0.698063 0.601149
201
+ 0.764653 0.701485 0.603849
202
+ 0.771730 0.705033 0.606775
203
+ 0.778837 0.708706 0.609936
204
+ 0.785977 0.712489 0.613340
205
+ 0.793132 0.716409 0.616996
206
+ 0.800292 0.720435 0.620887
207
+ 0.807448 0.724584 0.625012
208
+ 0.814587 0.728840 0.629376
209
+ 0.821705 0.733207 0.633983
210
+ 0.828779 0.737670 0.638805
211
+ 0.835797 0.742236 0.643850
212
+ 0.842753 0.746885 0.649121
213
+ 0.849627 0.751621 0.654582
214
+ 0.856405 0.756422 0.660250
215
+ 0.863083 0.761293 0.666100
216
+ 0.869635 0.766222 0.672129
217
+ 0.876063 0.771202 0.678318
218
+ 0.882346 0.776217 0.684656
219
+ 0.888482 0.781266 0.691134
220
+ 0.894454 0.786340 0.697742
221
+ 0.900253 0.791422 0.704464
222
+ 0.905879 0.796513 0.711290
223
+ 0.911317 0.801607 0.718196
224
+ 0.916568 0.806696 0.725189
225
+ 0.921627 0.811765 0.732241
226
+ 0.926488 0.816815 0.739352
227
+ 0.931155 0.821841 0.746497
228
+ 0.935622 0.826833 0.753683
229
+ 0.939894 0.831794 0.760897
230
+ 0.943965 0.836710 0.768122
231
+ 0.947844 0.841589 0.775364
232
+ 0.951530 0.846418 0.782609
233
+ 0.955031 0.851205 0.789852
234
+ 0.958348 0.855950 0.797083
235
+ 0.961481 0.860641 0.804310
236
+ 0.964444 0.865281 0.811517
237
+ 0.967245 0.869874 0.818701
238
+ 0.969877 0.874421 0.825872
239
+ 0.972359 0.878918 0.833018
240
+ 0.974685 0.883371 0.840145
241
+ 0.976874 0.887774 0.847236
242
+ 0.978925 0.892139 0.854310
243
+ 0.980850 0.896458 0.861358
244
+ 0.982652 0.900735 0.868388
245
+ 0.984338 0.904979 0.875383
246
+ 0.985912 0.909180 0.882357
247
+ 0.987387 0.913355 0.889315
248
+ 0.988763 0.917498 0.896251
249
+ 0.990052 0.921606 0.903168
250
+ 0.991256 0.925692 0.910067
251
+ 0.992385 0.929753 0.916951
252
+ 0.993443 0.933791 0.923821
253
+ 0.994431 0.937817 0.930680
254
+ 0.995360 0.941823 0.937528
255
+ 0.996235 0.945814 0.944370
256
+ 0.997061 0.949794 0.951206