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.000000 0.019685 0.292012
2
+ 0.000000 0.027123 0.297477
3
+ 0.000000 0.034324 0.302951
4
+ 0.000770 0.041437 0.308474
5
+ 0.002313 0.047559 0.313999
6
+ 0.004389 0.053102 0.319541
7
+ 0.006607 0.058541 0.325077
8
+ 0.008875 0.063928 0.330632
9
+ 0.011304 0.069327 0.336184
10
+ 0.013761 0.074551 0.341745
11
+ 0.016190 0.079806 0.347302
12
+ 0.018680 0.085081 0.352845
13
+ 0.021233 0.090352 0.358380
14
+ 0.023852 0.095588 0.363915
15
+ 0.026540 0.100793 0.369445
16
+ 0.029301 0.106057 0.374962
17
+ 0.032137 0.111271 0.380473
18
+ 0.035259 0.116485 0.385952
19
+ 0.038250 0.121646 0.391441
20
+ 0.041347 0.126873 0.396885
21
+ 0.044338 0.132118 0.402322
22
+ 0.047327 0.137341 0.407744
23
+ 0.050291 0.142545 0.413143
24
+ 0.053198 0.147767 0.418496
25
+ 0.056204 0.152957 0.423834
26
+ 0.059130 0.158207 0.429146
27
+ 0.061980 0.163436 0.434417
28
+ 0.064890 0.168643 0.439659
29
+ 0.067805 0.173857 0.444866
30
+ 0.070681 0.179084 0.450023
31
+ 0.073639 0.184301 0.455148
32
+ 0.076446 0.189523 0.460213
33
+ 0.079370 0.194759 0.465243
34
+ 0.082366 0.199937 0.470235
35
+ 0.085246 0.205166 0.475168
36
+ 0.088241 0.210376 0.480040
37
+ 0.091235 0.215583 0.484851
38
+ 0.094218 0.220797 0.489612
39
+ 0.097192 0.225978 0.494324
40
+ 0.100232 0.231150 0.498959
41
+ 0.103329 0.236321 0.503527
42
+ 0.106425 0.241472 0.508043
43
+ 0.109535 0.246604 0.512469
44
+ 0.112653 0.251752 0.516836
45
+ 0.115797 0.256857 0.521122
46
+ 0.118980 0.261953 0.525335
47
+ 0.122142 0.267021 0.529472
48
+ 0.125424 0.272075 0.533513
49
+ 0.128672 0.277136 0.537493
50
+ 0.131984 0.282158 0.541364
51
+ 0.135297 0.287128 0.545169
52
+ 0.138646 0.292108 0.548881
53
+ 0.142022 0.297056 0.552495
54
+ 0.145450 0.301948 0.556010
55
+ 0.148829 0.306845 0.559451
56
+ 0.152280 0.311683 0.562792
57
+ 0.155788 0.316519 0.566024
58
+ 0.159269 0.321297 0.569164
59
+ 0.162813 0.326038 0.572213
60
+ 0.166349 0.330755 0.575152
61
+ 0.169931 0.335449 0.577990
62
+ 0.173506 0.340082 0.580735
63
+ 0.177131 0.344670 0.583369
64
+ 0.180742 0.349231 0.585911
65
+ 0.184408 0.353736 0.588331
66
+ 0.188103 0.358214 0.590660
67
+ 0.191756 0.362638 0.592890
68
+ 0.195459 0.367021 0.595001
69
+ 0.199163 0.371349 0.597019
70
+ 0.202906 0.375643 0.598924
71
+ 0.206677 0.379888 0.600726
72
+ 0.210407 0.384082 0.602428
73
+ 0.214180 0.388229 0.604032
74
+ 0.217953 0.392326 0.605517
75
+ 0.221726 0.396375 0.606919
76
+ 0.225527 0.400383 0.608211
77
+ 0.229314 0.404323 0.609400
78
+ 0.233109 0.408227 0.610490
79
+ 0.236951 0.412082 0.611486
80
+ 0.240730 0.415879 0.612378
81
+ 0.244543 0.419636 0.613178
82
+ 0.248394 0.423328 0.613885
83
+ 0.252201 0.426993 0.614500
84
+ 0.256005 0.430594 0.615024
85
+ 0.259841 0.434141 0.615458
86
+ 0.263667 0.437664 0.615805
87
+ 0.267452 0.441112 0.616066
88
+ 0.271284 0.444537 0.616242
89
+ 0.275101 0.447889 0.616335
90
+ 0.278917 0.451219 0.616346
91
+ 0.282728 0.454499 0.616278
92
+ 0.286504 0.457721 0.616132
93
+ 0.290305 0.460909 0.615910
94
+ 0.294100 0.464065 0.615615
95
+ 0.297890 0.467167 0.615250
96
+ 0.301669 0.470229 0.614817
97
+ 0.305467 0.473240 0.614316
98
+ 0.309243 0.476234 0.613751
99
+ 0.312991 0.479181 0.613125
100
+ 0.316755 0.482093 0.612438
101
+ 0.320518 0.484958 0.611695
102
+ 0.324245 0.487812 0.610895
103
+ 0.327989 0.490619 0.610032
104
+ 0.331721 0.493382 0.609131
105
+ 0.335462 0.496123 0.608170
106
+ 0.339182 0.498847 0.607163
107
+ 0.342896 0.501536 0.606097
108
+ 0.346594 0.504196 0.605004
109
+ 0.350304 0.506820 0.603868
110
+ 0.353988 0.509431 0.602681
111
+ 0.357695 0.512011 0.601461
112
+ 0.361368 0.514581 0.600207
113
+ 0.365046 0.517123 0.598919
114
+ 0.368732 0.519637 0.597597
115
+ 0.372390 0.522136 0.596244
116
+ 0.376068 0.524629 0.594862
117
+ 0.379726 0.527104 0.593457
118
+ 0.383393 0.529559 0.592028
119
+ 0.387038 0.531999 0.590563
120
+ 0.390702 0.534426 0.589083
121
+ 0.394350 0.536854 0.587588
122
+ 0.398010 0.539255 0.586082
123
+ 0.401651 0.541653 0.584549
124
+ 0.405309 0.544055 0.583000
125
+ 0.408958 0.546451 0.581444
126
+ 0.412620 0.548836 0.579883
127
+ 0.416266 0.551214 0.578297
128
+ 0.419924 0.553589 0.576723
129
+ 0.423577 0.555966 0.575124
130
+ 0.427255 0.558349 0.573533
131
+ 0.430920 0.560739 0.571936
132
+ 0.434592 0.563134 0.570334
133
+ 0.438275 0.565516 0.568739
134
+ 0.441970 0.567921 0.567154
135
+ 0.445653 0.570324 0.565555
136
+ 0.449372 0.572751 0.563984
137
+ 0.453088 0.575172 0.562413
138
+ 0.456815 0.577609 0.560839
139
+ 0.460554 0.580071 0.559289
140
+ 0.464329 0.582532 0.557753
141
+ 0.468090 0.585025 0.556224
142
+ 0.471892 0.587521 0.554727
143
+ 0.475701 0.590045 0.553237
144
+ 0.479531 0.592602 0.551784
145
+ 0.483376 0.595163 0.550343
146
+ 0.487262 0.597758 0.548937
147
+ 0.491171 0.600379 0.547547
148
+ 0.495092 0.603030 0.546205
149
+ 0.499048 0.605705 0.544882
150
+ 0.503033 0.608430 0.543601
151
+ 0.507063 0.611175 0.542362
152
+ 0.511121 0.613951 0.541157
153
+ 0.515221 0.616784 0.540005
154
+ 0.519365 0.619650 0.538906
155
+ 0.523549 0.622551 0.537856
156
+ 0.527774 0.625506 0.536859
157
+ 0.532056 0.628513 0.535909
158
+ 0.536386 0.631562 0.535035
159
+ 0.540767 0.634669 0.534222
160
+ 0.545210 0.637827 0.533480
161
+ 0.549713 0.641042 0.532824
162
+ 0.554280 0.644322 0.532239
163
+ 0.558908 0.647668 0.531735
164
+ 0.563623 0.651081 0.531322
165
+ 0.568393 0.654556 0.531005
166
+ 0.573256 0.658113 0.530786
167
+ 0.578185 0.661741 0.530673
168
+ 0.583210 0.665439 0.530670
169
+ 0.588318 0.669224 0.530785
170
+ 0.593527 0.673092 0.531021
171
+ 0.598823 0.677045 0.531388
172
+ 0.604224 0.681075 0.531891
173
+ 0.609715 0.685212 0.532538
174
+ 0.615313 0.689437 0.533324
175
+ 0.621028 0.693747 0.534274
176
+ 0.626842 0.698160 0.535385
177
+ 0.632773 0.702676 0.536678
178
+ 0.638815 0.707284 0.538138
179
+ 0.644968 0.711994 0.539769
180
+ 0.651246 0.716808 0.541600
181
+ 0.657637 0.721708 0.543636
182
+ 0.664134 0.726720 0.545874
183
+ 0.670753 0.731827 0.548316
184
+ 0.677482 0.737028 0.550966
185
+ 0.684308 0.742324 0.553837
186
+ 0.691252 0.747712 0.556942
187
+ 0.698295 0.753176 0.560263
188
+ 0.705437 0.758734 0.563820
189
+ 0.712660 0.764363 0.567601
190
+ 0.719976 0.770062 0.571615
191
+ 0.727356 0.775826 0.575875
192
+ 0.734808 0.781649 0.580351
193
+ 0.742309 0.787514 0.585065
194
+ 0.749848 0.793424 0.589994
195
+ 0.757429 0.799359 0.595157
196
+ 0.765029 0.805308 0.600533
197
+ 0.772627 0.811276 0.606116
198
+ 0.780223 0.817237 0.611908
199
+ 0.787797 0.823187 0.617890
200
+ 0.795338 0.829118 0.624063
201
+ 0.802828 0.835007 0.630403
202
+ 0.810254 0.840854 0.636905
203
+ 0.817606 0.846639 0.643551
204
+ 0.824867 0.852369 0.650346
205
+ 0.832029 0.858008 0.657267
206
+ 0.839067 0.863572 0.664290
207
+ 0.845978 0.869034 0.671417
208
+ 0.852758 0.874388 0.678630
209
+ 0.859382 0.879634 0.685918
210
+ 0.865852 0.884764 0.693264
211
+ 0.872158 0.889765 0.700656
212
+ 0.878287 0.894641 0.708082
213
+ 0.884242 0.899378 0.715538
214
+ 0.890009 0.903974 0.722994
215
+ 0.895594 0.908436 0.730465
216
+ 0.900987 0.912750 0.737920
217
+ 0.906192 0.916925 0.745366
218
+ 0.911203 0.920947 0.752783
219
+ 0.916019 0.924832 0.760177
220
+ 0.920649 0.928573 0.767527
221
+ 0.925092 0.932174 0.774837
222
+ 0.929348 0.935638 0.782106
223
+ 0.933419 0.938962 0.789317
224
+ 0.937317 0.942154 0.796469
225
+ 0.941033 0.945214 0.803571
226
+ 0.944583 0.948144 0.810609
227
+ 0.947963 0.950955 0.817589
228
+ 0.951184 0.953646 0.824507
229
+ 0.954248 0.956221 0.831368
230
+ 0.957160 0.958686 0.838158
231
+ 0.959932 0.961044 0.844890
232
+ 0.962561 0.963300 0.851556
233
+ 0.965056 0.965457 0.858165
234
+ 0.967430 0.967528 0.864717
235
+ 0.969674 0.969503 0.871210
236
+ 0.971806 0.971398 0.877646
237
+ 0.973823 0.973215 0.884030
238
+ 0.975734 0.974951 0.890356
239
+ 0.977550 0.976620 0.896639
240
+ 0.979267 0.978221 0.902870
241
+ 0.980894 0.979764 0.909052
242
+ 0.982438 0.981243 0.915193
243
+ 0.983897 0.982669 0.921295
244
+ 0.985283 0.984042 0.927356
245
+ 0.986597 0.985368 0.933382
246
+ 0.987842 0.986651 0.939379
247
+ 0.989028 0.987890 0.945342
248
+ 0.990154 0.989097 0.951274
249
+ 0.991225 0.990266 0.957179
250
+ 0.992248 0.991406 0.963063
251
+ 0.993225 0.992520 0.968924
252
+ 0.994154 0.993608 0.974764
253
+ 0.995046 0.994670 0.980593
254
+ 0.995902 0.995716 0.986405
255
+ 0.996726 0.996746 0.992202
256
+ 0.997520 0.997764 0.997988
@@ -0,0 +1,256 @@
1
+ 0.171032 0.100402 0.299782
2
+ 0.170868 0.104144 0.303372
3
+ 0.170677 0.107856 0.306989
4
+ 0.170463 0.111594 0.310614
5
+ 0.170227 0.115240 0.314216
6
+ 0.169972 0.118939 0.317840
7
+ 0.169698 0.122543 0.321462
8
+ 0.169404 0.126240 0.325088
9
+ 0.169084 0.129892 0.328738
10
+ 0.168737 0.133501 0.332383
11
+ 0.168373 0.137129 0.336012
12
+ 0.168007 0.140767 0.339673
13
+ 0.167646 0.144378 0.343319
14
+ 0.167278 0.147990 0.346977
15
+ 0.166888 0.151600 0.350639
16
+ 0.166476 0.155235 0.354294
17
+ 0.166051 0.158875 0.357969
18
+ 0.165623 0.162508 0.361639
19
+ 0.165203 0.166121 0.365312
20
+ 0.164797 0.169787 0.369002
21
+ 0.164391 0.173411 0.372682
22
+ 0.163968 0.177075 0.376391
23
+ 0.163527 0.180716 0.380085
24
+ 0.163081 0.184398 0.383795
25
+ 0.162637 0.188101 0.387502
26
+ 0.162198 0.191754 0.391238
27
+ 0.161760 0.195449 0.394962
28
+ 0.161310 0.199141 0.398700
29
+ 0.160837 0.202866 0.402443
30
+ 0.160362 0.206620 0.406214
31
+ 0.159908 0.210329 0.409984
32
+ 0.159471 0.214084 0.413758
33
+ 0.159039 0.217839 0.417555
34
+ 0.158601 0.221601 0.421349
35
+ 0.158144 0.225384 0.425181
36
+ 0.157676 0.229179 0.429013
37
+ 0.157228 0.232977 0.432870
38
+ 0.156806 0.236829 0.436744
39
+ 0.156386 0.240632 0.440631
40
+ 0.155952 0.244485 0.444564
41
+ 0.155517 0.248387 0.448507
42
+ 0.155097 0.252261 0.452491
43
+ 0.154694 0.256148 0.456492
44
+ 0.154309 0.260084 0.460536
45
+ 0.153943 0.264033 0.464642
46
+ 0.153600 0.267966 0.468777
47
+ 0.153286 0.271942 0.472958
48
+ 0.153005 0.275975 0.477209
49
+ 0.152762 0.279975 0.481516
50
+ 0.152563 0.284007 0.485886
51
+ 0.152415 0.288059 0.490337
52
+ 0.152323 0.292137 0.494857
53
+ 0.152295 0.296219 0.499444
54
+ 0.152339 0.300310 0.504136
55
+ 0.152463 0.304414 0.508899
56
+ 0.152674 0.308529 0.513749
57
+ 0.152981 0.312618 0.518688
58
+ 0.153392 0.316727 0.523706
59
+ 0.153915 0.320817 0.528817
60
+ 0.154555 0.324864 0.533993
61
+ 0.155323 0.328919 0.539260
62
+ 0.156229 0.332926 0.544598
63
+ 0.157206 0.336879 0.549998
64
+ 0.158378 0.340797 0.555448
65
+ 0.159616 0.344655 0.560957
66
+ 0.161055 0.348463 0.566511
67
+ 0.162589 0.352195 0.572090
68
+ 0.164258 0.355879 0.577689
69
+ 0.166003 0.359470 0.583313
70
+ 0.167904 0.362993 0.588941
71
+ 0.169932 0.366457 0.594581
72
+ 0.172025 0.369823 0.600212
73
+ 0.174249 0.373130 0.605830
74
+ 0.176531 0.376379 0.611449
75
+ 0.178949 0.379540 0.617045
76
+ 0.181403 0.382648 0.622622
77
+ 0.183976 0.385696 0.628190
78
+ 0.186619 0.388711 0.633736
79
+ 0.189341 0.391669 0.639262
80
+ 0.192134 0.394587 0.644771
81
+ 0.195027 0.397481 0.650276
82
+ 0.197982 0.400359 0.655767
83
+ 0.201030 0.403213 0.661243
84
+ 0.204231 0.406065 0.666711
85
+ 0.207483 0.408906 0.672184
86
+ 0.210863 0.411761 0.677651
87
+ 0.214378 0.414631 0.683108
88
+ 0.218033 0.417528 0.688571
89
+ 0.221826 0.420436 0.694021
90
+ 0.225816 0.423384 0.699481
91
+ 0.229930 0.426373 0.704939
92
+ 0.234292 0.429408 0.710390
93
+ 0.238813 0.432492 0.715836
94
+ 0.243553 0.435617 0.721257
95
+ 0.248547 0.438782 0.726672
96
+ 0.253725 0.442028 0.732066
97
+ 0.259152 0.445303 0.737422
98
+ 0.264778 0.448649 0.742750
99
+ 0.270677 0.452043 0.748029
100
+ 0.276773 0.455480 0.753250
101
+ 0.283095 0.458971 0.758422
102
+ 0.289622 0.462495 0.763516
103
+ 0.296351 0.466068 0.768535
104
+ 0.303257 0.469688 0.773474
105
+ 0.310367 0.473307 0.778324
106
+ 0.317597 0.476974 0.783072
107
+ 0.324970 0.480647 0.787721
108
+ 0.332494 0.484334 0.792267
109
+ 0.340093 0.488042 0.796701
110
+ 0.347786 0.491739 0.801030
111
+ 0.355555 0.495425 0.805247
112
+ 0.363359 0.499108 0.809363
113
+ 0.371217 0.502778 0.813363
114
+ 0.379113 0.506438 0.817267
115
+ 0.387014 0.510082 0.821072
116
+ 0.394935 0.513709 0.824780
117
+ 0.402847 0.517310 0.828402
118
+ 0.410758 0.520881 0.831943
119
+ 0.418634 0.524436 0.835398
120
+ 0.426504 0.527966 0.838782
121
+ 0.434346 0.531477 0.842105
122
+ 0.442172 0.534964 0.845359
123
+ 0.449948 0.538437 0.848559
124
+ 0.457695 0.541872 0.851707
125
+ 0.465406 0.545307 0.854810
126
+ 0.473085 0.548724 0.857863
127
+ 0.480729 0.552119 0.860879
128
+ 0.488341 0.555493 0.863862
129
+ 0.495894 0.558869 0.866797
130
+ 0.503414 0.562249 0.869705
131
+ 0.510895 0.565597 0.872582
132
+ 0.518335 0.568956 0.875424
133
+ 0.525716 0.572320 0.878233
134
+ 0.533049 0.575682 0.881008
135
+ 0.540328 0.579042 0.883754
136
+ 0.547548 0.582405 0.886461
137
+ 0.554710 0.585792 0.889130
138
+ 0.561804 0.589169 0.891760
139
+ 0.568813 0.592583 0.894351
140
+ 0.575760 0.595989 0.896895
141
+ 0.582600 0.599423 0.899390
142
+ 0.589354 0.602864 0.901830
143
+ 0.596014 0.606322 0.904217
144
+ 0.602558 0.609800 0.906550
145
+ 0.608993 0.613288 0.908815
146
+ 0.615285 0.616803 0.911017
147
+ 0.621456 0.620324 0.913150
148
+ 0.627490 0.623854 0.915206
149
+ 0.633377 0.627389 0.917197
150
+ 0.639110 0.630941 0.919099
151
+ 0.644686 0.634493 0.920929
152
+ 0.650114 0.638043 0.922685
153
+ 0.655374 0.641594 0.924355
154
+ 0.660476 0.645145 0.925951
155
+ 0.665423 0.648695 0.927463
156
+ 0.670216 0.652234 0.928904
157
+ 0.674845 0.655767 0.930274
158
+ 0.679329 0.659281 0.931567
159
+ 0.683675 0.662794 0.932793
160
+ 0.687888 0.666281 0.933957
161
+ 0.691973 0.669769 0.935062
162
+ 0.695936 0.673235 0.936114
163
+ 0.699783 0.676690 0.937110
164
+ 0.703538 0.680123 0.938058
165
+ 0.707197 0.683555 0.938964
166
+ 0.710775 0.686972 0.939834
167
+ 0.714271 0.690376 0.940666
168
+ 0.717713 0.693771 0.941466
169
+ 0.721083 0.697160 0.942246
170
+ 0.724414 0.700543 0.942999
171
+ 0.727695 0.703915 0.943730
172
+ 0.730940 0.707284 0.944446
173
+ 0.734158 0.710651 0.945148
174
+ 0.737345 0.714009 0.945832
175
+ 0.740512 0.717375 0.946509
176
+ 0.743663 0.720725 0.947182
177
+ 0.746797 0.724085 0.947844
178
+ 0.749918 0.727443 0.948500
179
+ 0.753034 0.730802 0.949152
180
+ 0.756148 0.734165 0.949802
181
+ 0.759251 0.737524 0.950450
182
+ 0.762355 0.740887 0.951095
183
+ 0.765464 0.744257 0.951736
184
+ 0.768558 0.747631 0.952378
185
+ 0.771667 0.751005 0.953024
186
+ 0.774765 0.754380 0.953665
187
+ 0.777876 0.757757 0.954305
188
+ 0.780981 0.761139 0.954947
189
+ 0.784096 0.764526 0.955591
190
+ 0.787207 0.767912 0.956232
191
+ 0.790319 0.771312 0.956872
192
+ 0.793444 0.774703 0.957517
193
+ 0.796559 0.778108 0.958163
194
+ 0.799691 0.781515 0.958806
195
+ 0.802814 0.784924 0.959450
196
+ 0.805948 0.788334 0.960097
197
+ 0.809088 0.791749 0.960744
198
+ 0.812223 0.795169 0.961389
199
+ 0.815367 0.798594 0.962035
200
+ 0.818510 0.802020 0.962686
201
+ 0.821666 0.805450 0.963336
202
+ 0.824815 0.808891 0.963984
203
+ 0.827972 0.812327 0.964634
204
+ 0.831138 0.815773 0.965286
205
+ 0.834302 0.819214 0.965939
206
+ 0.837470 0.822670 0.966593
207
+ 0.840640 0.826123 0.967249
208
+ 0.843810 0.829585 0.967905
209
+ 0.846989 0.833043 0.968558
210
+ 0.850174 0.836510 0.969212
211
+ 0.853356 0.839984 0.969868
212
+ 0.856547 0.843451 0.970526
213
+ 0.859742 0.846929 0.971184
214
+ 0.862940 0.850412 0.971844
215
+ 0.866137 0.853895 0.972506
216
+ 0.869340 0.857386 0.973165
217
+ 0.872548 0.860879 0.973823
218
+ 0.875758 0.864379 0.974484
219
+ 0.878969 0.867881 0.975146
220
+ 0.882187 0.871384 0.975809
221
+ 0.885409 0.874890 0.976473
222
+ 0.888635 0.878403 0.977140
223
+ 0.891863 0.881920 0.977804
224
+ 0.895095 0.885439 0.978468
225
+ 0.898326 0.888964 0.979137
226
+ 0.901566 0.892492 0.979807
227
+ 0.904809 0.896022 0.980474
228
+ 0.908057 0.899559 0.981142
229
+ 0.911303 0.903098 0.981813
230
+ 0.914556 0.906639 0.982484
231
+ 0.917813 0.910187 0.983151
232
+ 0.921066 0.913737 0.983823
233
+ 0.924330 0.917292 0.984498
234
+ 0.927593 0.920843 0.985170
235
+ 0.930866 0.924406 0.985842
236
+ 0.934133 0.927970 0.986516
237
+ 0.937412 0.931540 0.987191
238
+ 0.940689 0.935113 0.987862
239
+ 0.943968 0.938690 0.988536
240
+ 0.947251 0.942272 0.989213
241
+ 0.950534 0.945851 0.989888
242
+ 0.953821 0.949437 0.990561
243
+ 0.957106 0.953030 0.991236
244
+ 0.960399 0.956621 0.991911
245
+ 0.963687 0.960219 0.992587
246
+ 0.966981 0.963815 0.993262
247
+ 0.970273 0.967421 0.993933
248
+ 0.973568 0.971024 0.994603
249
+ 0.976862 0.974631 0.995274
250
+ 0.980158 0.978242 0.995945
251
+ 0.983450 0.981861 0.996615
252
+ 0.986748 0.985477 0.997285
253
+ 0.990040 0.989098 0.997954
254
+ 0.993335 0.992721 0.998623
255
+ 0.996621 0.996340 0.999290
256
+ 0.999916 0.999970 0.999952