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.211814 0.073933 0.220614
2
+ 0.215844 0.074823 0.217413
3
+ 0.219795 0.075756 0.214237
4
+ 0.223669 0.076703 0.211066
5
+ 0.227493 0.077670 0.207907
6
+ 0.231253 0.078655 0.204765
7
+ 0.234961 0.079657 0.201607
8
+ 0.238577 0.080670 0.198491
9
+ 0.242186 0.081714 0.195392
10
+ 0.245730 0.082671 0.192303
11
+ 0.249255 0.083676 0.189233
12
+ 0.252738 0.084681 0.186185
13
+ 0.256166 0.085604 0.183121
14
+ 0.259600 0.086656 0.180103
15
+ 0.262979 0.087669 0.177114
16
+ 0.266337 0.088633 0.174124
17
+ 0.269678 0.089618 0.171150
18
+ 0.272982 0.090600 0.168192
19
+ 0.276290 0.091604 0.165243
20
+ 0.279567 0.092519 0.162366
21
+ 0.282835 0.093477 0.159435
22
+ 0.286066 0.094504 0.156576
23
+ 0.289335 0.095451 0.153667
24
+ 0.292566 0.096347 0.150813
25
+ 0.295807 0.097347 0.147964
26
+ 0.299060 0.098330 0.145142
27
+ 0.302288 0.099261 0.142275
28
+ 0.305566 0.100218 0.139400
29
+ 0.308833 0.101183 0.136575
30
+ 0.312087 0.102159 0.133762
31
+ 0.315407 0.103164 0.130930
32
+ 0.318729 0.104117 0.128073
33
+ 0.322081 0.105091 0.125200
34
+ 0.325454 0.106166 0.122295
35
+ 0.328892 0.107186 0.119441
36
+ 0.332354 0.108178 0.116561
37
+ 0.335847 0.109312 0.113645
38
+ 0.339408 0.110409 0.110707
39
+ 0.343007 0.111534 0.107710
40
+ 0.346652 0.112715 0.104686
41
+ 0.350367 0.113897 0.101701
42
+ 0.354120 0.115146 0.098667
43
+ 0.357952 0.116509 0.095593
44
+ 0.361826 0.117892 0.092462
45
+ 0.365754 0.119348 0.089337
46
+ 0.369730 0.120875 0.086106
47
+ 0.373764 0.122514 0.082919
48
+ 0.377827 0.124281 0.079656
49
+ 0.381923 0.126188 0.076360
50
+ 0.386039 0.128177 0.073124
51
+ 0.390172 0.130335 0.069771
52
+ 0.394305 0.132584 0.066344
53
+ 0.398422 0.135031 0.062973
54
+ 0.402496 0.137638 0.059485
55
+ 0.406537 0.140384 0.055873
56
+ 0.410509 0.143333 0.052208
57
+ 0.414377 0.146437 0.048631
58
+ 0.418144 0.149771 0.044938
59
+ 0.421787 0.153204 0.041226
60
+ 0.425302 0.156867 0.037499
61
+ 0.428639 0.160657 0.033747
62
+ 0.431815 0.164627 0.030454
63
+ 0.434786 0.168726 0.027345
64
+ 0.437568 0.172927 0.024453
65
+ 0.440132 0.177274 0.021779
66
+ 0.442499 0.181662 0.019323
67
+ 0.444649 0.186188 0.017081
68
+ 0.446580 0.190726 0.015046
69
+ 0.448311 0.195330 0.013206
70
+ 0.449845 0.199944 0.011537
71
+ 0.451188 0.204624 0.009905
72
+ 0.452357 0.209261 0.008614
73
+ 0.453341 0.213916 0.007473
74
+ 0.454187 0.218548 0.006468
75
+ 0.454890 0.223165 0.005589
76
+ 0.455458 0.227746 0.004819
77
+ 0.455915 0.232298 0.004146
78
+ 0.456275 0.236830 0.003556
79
+ 0.456547 0.241301 0.003037
80
+ 0.456743 0.245737 0.002576
81
+ 0.456875 0.250148 0.002164
82
+ 0.456951 0.254560 0.001806
83
+ 0.456978 0.258906 0.001513
84
+ 0.456964 0.263225 0.001280
85
+ 0.456916 0.267488 0.001104
86
+ 0.456838 0.271756 0.000983
87
+ 0.456736 0.276029 0.000916
88
+ 0.456612 0.280224 0.000906
89
+ 0.456468 0.284425 0.000954
90
+ 0.456308 0.288617 0.001065
91
+ 0.456132 0.292781 0.001245
92
+ 0.455940 0.296953 0.001504
93
+ 0.455733 0.301082 0.001850
94
+ 0.455511 0.305237 0.002298
95
+ 0.455272 0.309376 0.002863
96
+ 0.455015 0.313494 0.003561
97
+ 0.454737 0.317610 0.004415
98
+ 0.454434 0.321724 0.005445
99
+ 0.454104 0.325833 0.006679
100
+ 0.453746 0.329964 0.008144
101
+ 0.453365 0.334073 0.009869
102
+ 0.452957 0.338164 0.012123
103
+ 0.452515 0.342277 0.014455
104
+ 0.452029 0.346362 0.017184
105
+ 0.451503 0.350465 0.020328
106
+ 0.450939 0.354542 0.023928
107
+ 0.450334 0.358597 0.028028
108
+ 0.449687 0.362658 0.032682
109
+ 0.448998 0.366705 0.038112
110
+ 0.448253 0.370714 0.043789
111
+ 0.447465 0.374723 0.049799
112
+ 0.446644 0.378696 0.055892
113
+ 0.445764 0.382645 0.062145
114
+ 0.444861 0.386560 0.068579
115
+ 0.443903 0.390456 0.075044
116
+ 0.442905 0.394312 0.081754
117
+ 0.441874 0.398142 0.088480
118
+ 0.440790 0.401914 0.095363
119
+ 0.439694 0.405677 0.102296
120
+ 0.438557 0.409381 0.109386
121
+ 0.437407 0.413058 0.116496
122
+ 0.436219 0.416687 0.123648
123
+ 0.435017 0.420275 0.130954
124
+ 0.433777 0.423827 0.138270
125
+ 0.432553 0.427358 0.145642
126
+ 0.431298 0.430836 0.152996
127
+ 0.430028 0.434275 0.160429
128
+ 0.428754 0.437702 0.167910
129
+ 0.427481 0.441071 0.175407
130
+ 0.426182 0.444435 0.182909
131
+ 0.424903 0.447742 0.190446
132
+ 0.423601 0.451047 0.197986
133
+ 0.422307 0.454320 0.205544
134
+ 0.421015 0.457558 0.213087
135
+ 0.419733 0.460780 0.220685
136
+ 0.418431 0.463994 0.228242
137
+ 0.417154 0.467178 0.235803
138
+ 0.415858 0.470344 0.243343
139
+ 0.414572 0.473483 0.250924
140
+ 0.413293 0.476627 0.258477
141
+ 0.412008 0.479754 0.266048
142
+ 0.410732 0.482858 0.273605
143
+ 0.409449 0.485955 0.281137
144
+ 0.408169 0.489044 0.288701
145
+ 0.406895 0.492129 0.296246
146
+ 0.405627 0.495202 0.303785
147
+ 0.404345 0.498274 0.311333
148
+ 0.403079 0.501327 0.318875
149
+ 0.401799 0.504382 0.326401
150
+ 0.400547 0.507422 0.333953
151
+ 0.399259 0.510459 0.341481
152
+ 0.398005 0.513502 0.349009
153
+ 0.396727 0.516529 0.356539
154
+ 0.395474 0.519558 0.364050
155
+ 0.394203 0.522582 0.371565
156
+ 0.392943 0.525605 0.379084
157
+ 0.391693 0.528626 0.386586
158
+ 0.390436 0.531635 0.394093
159
+ 0.389198 0.534645 0.401588
160
+ 0.387957 0.537657 0.409080
161
+ 0.386730 0.540655 0.416564
162
+ 0.385522 0.543656 0.424032
163
+ 0.384338 0.546660 0.431510
164
+ 0.383183 0.549655 0.438953
165
+ 0.382037 0.552651 0.446408
166
+ 0.380953 0.555642 0.453852
167
+ 0.379891 0.558642 0.461292
168
+ 0.378891 0.561655 0.468726
169
+ 0.377957 0.564659 0.476156
170
+ 0.377104 0.567678 0.483576
171
+ 0.376341 0.570698 0.491019
172
+ 0.375667 0.573738 0.498444
173
+ 0.375126 0.576794 0.505857
174
+ 0.374734 0.579859 0.513301
175
+ 0.374498 0.582935 0.520736
176
+ 0.374441 0.586046 0.528180
177
+ 0.374584 0.589162 0.535623
178
+ 0.374948 0.592325 0.543082
179
+ 0.375562 0.595492 0.550532
180
+ 0.376461 0.598692 0.557980
181
+ 0.377628 0.601918 0.565423
182
+ 0.379112 0.605169 0.572873
183
+ 0.380932 0.608452 0.580293
184
+ 0.383080 0.611744 0.587688
185
+ 0.385570 0.615059 0.595065
186
+ 0.388441 0.618402 0.602403
187
+ 0.391665 0.621745 0.609699
188
+ 0.395249 0.625111 0.616945
189
+ 0.399176 0.628484 0.624130
190
+ 0.403474 0.631852 0.631245
191
+ 0.408084 0.635218 0.638285
192
+ 0.413025 0.638583 0.645243
193
+ 0.418239 0.641937 0.652124
194
+ 0.423742 0.645273 0.658904
195
+ 0.429500 0.648599 0.665600
196
+ 0.435484 0.651905 0.672199
197
+ 0.441661 0.655178 0.678695
198
+ 0.448005 0.658436 0.685102
199
+ 0.454523 0.661669 0.691408
200
+ 0.461151 0.664862 0.697624
201
+ 0.467891 0.668044 0.703754
202
+ 0.474730 0.671184 0.709796
203
+ 0.481623 0.674300 0.715758
204
+ 0.488577 0.677395 0.721630
205
+ 0.495565 0.680445 0.727440
206
+ 0.502581 0.683485 0.733182
207
+ 0.509618 0.686495 0.738859
208
+ 0.516658 0.689484 0.744470
209
+ 0.523699 0.692448 0.750028
210
+ 0.530729 0.695382 0.755540
211
+ 0.537751 0.698296 0.761000
212
+ 0.544745 0.701195 0.766413
213
+ 0.551725 0.704072 0.771787
214
+ 0.558666 0.706933 0.777122
215
+ 0.565589 0.709771 0.782411
216
+ 0.572491 0.712585 0.787664
217
+ 0.579350 0.715395 0.792886
218
+ 0.586173 0.718175 0.798067
219
+ 0.592964 0.720939 0.803217
220
+ 0.599715 0.723689 0.808335
221
+ 0.606427 0.726424 0.813415
222
+ 0.613104 0.729139 0.818466
223
+ 0.619759 0.731841 0.823490
224
+ 0.626365 0.734528 0.828485
225
+ 0.632948 0.737197 0.833453
226
+ 0.639501 0.739862 0.838395
227
+ 0.646027 0.742509 0.843317
228
+ 0.652537 0.745146 0.848224
229
+ 0.659033 0.747786 0.853119
230
+ 0.665527 0.750416 0.858005
231
+ 0.672018 0.753042 0.862894
232
+ 0.678516 0.755682 0.867780
233
+ 0.685032 0.758325 0.872676
234
+ 0.691571 0.760974 0.877587
235
+ 0.698143 0.763636 0.882519
236
+ 0.704765 0.766320 0.887483
237
+ 0.711442 0.769021 0.892487
238
+ 0.718176 0.771756 0.897528
239
+ 0.724992 0.774510 0.902618
240
+ 0.731886 0.777311 0.907767
241
+ 0.738878 0.780136 0.912972
242
+ 0.745966 0.783008 0.918247
243
+ 0.753168 0.785930 0.923597
244
+ 0.760499 0.788895 0.929016
245
+ 0.767947 0.791908 0.934521
246
+ 0.775536 0.794977 0.940113
247
+ 0.783262 0.798101 0.945781
248
+ 0.791130 0.801282 0.951537
249
+ 0.799146 0.804523 0.957376
250
+ 0.807301 0.807816 0.963297
251
+ 0.815598 0.811167 0.969294
252
+ 0.824030 0.814568 0.975362
253
+ 0.832595 0.818022 0.981503
254
+ 0.841282 0.821527 0.987699
255
+ 0.850076 0.825066 0.993947
256
+ 0.858966 0.828649 1.000000
@@ -0,0 +1,256 @@
1
+ 0.000000 0.000000 0.000000
2
+ 0.006724 0.006725 0.006725
3
+ 0.014136 0.014136 0.014136
4
+ 0.021325 0.021325 0.021325
5
+ 0.028493 0.028493 0.028493
6
+ 0.035850 0.035850 0.035850
7
+ 0.042788 0.042788 0.042788
8
+ 0.049375 0.049376 0.049376
9
+ 0.055232 0.055233 0.055233
10
+ 0.060739 0.060739 0.060739
11
+ 0.065886 0.065887 0.065887
12
+ 0.070724 0.070725 0.070725
13
+ 0.075266 0.075268 0.075267
14
+ 0.079586 0.079588 0.079588
15
+ 0.083764 0.083767 0.083766
16
+ 0.087719 0.087721 0.087721
17
+ 0.091510 0.091513 0.091513
18
+ 0.095184 0.095187 0.095186
19
+ 0.098827 0.098829 0.098828
20
+ 0.102507 0.102508 0.102508
21
+ 0.106221 0.106223 0.106223
22
+ 0.109913 0.109914 0.109914
23
+ 0.113573 0.113574 0.113574
24
+ 0.117210 0.117210 0.117210
25
+ 0.120881 0.120881 0.120881
26
+ 0.124570 0.124570 0.124570
27
+ 0.128274 0.128274 0.128274
28
+ 0.131948 0.131948 0.131948
29
+ 0.135594 0.135594 0.135594
30
+ 0.139256 0.139256 0.139256
31
+ 0.142957 0.142957 0.142957
32
+ 0.146601 0.146601 0.146601
33
+ 0.150290 0.150290 0.150290
34
+ 0.153925 0.153925 0.153925
35
+ 0.157582 0.157582 0.157582
36
+ 0.161268 0.161268 0.161268
37
+ 0.164883 0.164883 0.164883
38
+ 0.168539 0.168539 0.168539
39
+ 0.172169 0.172169 0.172169
40
+ 0.175791 0.175791 0.175791
41
+ 0.179440 0.179440 0.179440
42
+ 0.183054 0.183054 0.183054
43
+ 0.186686 0.186686 0.186686
44
+ 0.190298 0.190298 0.190298
45
+ 0.193930 0.193930 0.193930
46
+ 0.197517 0.197517 0.197517
47
+ 0.201095 0.201095 0.201095
48
+ 0.204716 0.204716 0.204716
49
+ 0.208293 0.208293 0.208293
50
+ 0.211890 0.211890 0.211890
51
+ 0.215444 0.215444 0.215444
52
+ 0.219018 0.219018 0.219018
53
+ 0.222579 0.222579 0.222579
54
+ 0.226142 0.226142 0.226142
55
+ 0.229655 0.229655 0.229655
56
+ 0.233196 0.233196 0.233196
57
+ 0.236760 0.236760 0.236760
58
+ 0.240253 0.240253 0.240253
59
+ 0.243771 0.243771 0.243771
60
+ 0.247297 0.247297 0.247297
61
+ 0.250797 0.250797 0.250797
62
+ 0.254300 0.254300 0.254300
63
+ 0.257769 0.257769 0.257769
64
+ 0.261256 0.261256 0.261256
65
+ 0.264719 0.264719 0.264719
66
+ 0.268181 0.268181 0.268181
67
+ 0.271629 0.271629 0.271629
68
+ 0.275089 0.275089 0.275089
69
+ 0.278530 0.278530 0.278530
70
+ 0.281961 0.281961 0.281961
71
+ 0.285362 0.285362 0.285362
72
+ 0.288789 0.288789 0.288789
73
+ 0.292189 0.292189 0.292189
74
+ 0.295577 0.295577 0.295577
75
+ 0.298974 0.298974 0.298974
76
+ 0.302333 0.302333 0.302333
77
+ 0.305726 0.305726 0.305726
78
+ 0.309086 0.309086 0.309086
79
+ 0.312407 0.312407 0.312407
80
+ 0.315771 0.315771 0.315771
81
+ 0.319092 0.319092 0.319092
82
+ 0.322420 0.322420 0.322420
83
+ 0.325715 0.325715 0.325715
84
+ 0.329038 0.329038 0.329038
85
+ 0.332332 0.332332 0.332332
86
+ 0.335611 0.335611 0.335611
87
+ 0.338883 0.338883 0.338883
88
+ 0.342147 0.342147 0.342147
89
+ 0.345396 0.345396 0.345396
90
+ 0.348644 0.348644 0.348644
91
+ 0.351869 0.351869 0.351869
92
+ 0.355115 0.355115 0.355115
93
+ 0.358315 0.358315 0.358315
94
+ 0.361523 0.361523 0.361523
95
+ 0.364712 0.364712 0.364712
96
+ 0.367896 0.367896 0.367896
97
+ 0.371067 0.371067 0.371067
98
+ 0.374246 0.374246 0.374246
99
+ 0.377394 0.377394 0.377394
100
+ 0.380541 0.380541 0.380541
101
+ 0.383674 0.383674 0.383674
102
+ 0.386786 0.386786 0.386786
103
+ 0.389899 0.389899 0.389899
104
+ 0.393005 0.393005 0.393005
105
+ 0.396104 0.396104 0.396104
106
+ 0.399174 0.399174 0.399174
107
+ 0.402245 0.402245 0.402245
108
+ 0.405317 0.405317 0.405317
109
+ 0.408366 0.408366 0.408366
110
+ 0.411405 0.411405 0.411405
111
+ 0.414438 0.414438 0.414438
112
+ 0.417466 0.417466 0.417466
113
+ 0.420469 0.420469 0.420469
114
+ 0.423470 0.423470 0.423470
115
+ 0.426467 0.426467 0.426467
116
+ 0.429457 0.429457 0.429457
117
+ 0.432443 0.432443 0.432443
118
+ 0.435412 0.435412 0.435412
119
+ 0.438368 0.438368 0.438368
120
+ 0.441325 0.441325 0.441325
121
+ 0.444285 0.444285 0.444285
122
+ 0.447221 0.447221 0.447221
123
+ 0.450170 0.450170 0.450170
124
+ 0.453111 0.453111 0.453111
125
+ 0.456048 0.456048 0.456048
126
+ 0.458991 0.458991 0.458991
127
+ 0.461928 0.461928 0.461928
128
+ 0.464870 0.464870 0.464870
129
+ 0.467810 0.467810 0.467810
130
+ 0.470761 0.470761 0.470761
131
+ 0.473705 0.473705 0.473705
132
+ 0.476669 0.476669 0.476669
133
+ 0.479640 0.479640 0.479640
134
+ 0.482610 0.482610 0.482610
135
+ 0.485589 0.485589 0.485589
136
+ 0.488590 0.488590 0.488590
137
+ 0.491603 0.491603 0.491603
138
+ 0.494618 0.494618 0.494618
139
+ 0.497653 0.497653 0.497653
140
+ 0.500690 0.500690 0.500690
141
+ 0.503750 0.503750 0.503750
142
+ 0.506825 0.506825 0.506825
143
+ 0.509917 0.509917 0.509917
144
+ 0.513026 0.513026 0.513026
145
+ 0.516144 0.516144 0.516144
146
+ 0.519297 0.519297 0.519297
147
+ 0.522451 0.522451 0.522451
148
+ 0.525633 0.525633 0.525633
149
+ 0.528834 0.528834 0.528834
150
+ 0.532044 0.532044 0.532044
151
+ 0.535271 0.535271 0.535271
152
+ 0.538533 0.538533 0.538533
153
+ 0.541792 0.541792 0.541792
154
+ 0.545088 0.545088 0.545088
155
+ 0.548402 0.548402 0.548402
156
+ 0.551728 0.551728 0.551728
157
+ 0.555070 0.555070 0.555070
158
+ 0.558432 0.558432 0.558432
159
+ 0.561831 0.561831 0.561831
160
+ 0.565226 0.565226 0.565226
161
+ 0.568656 0.568656 0.568656
162
+ 0.572108 0.572108 0.572108
163
+ 0.575577 0.575577 0.575577
164
+ 0.579062 0.579062 0.579062
165
+ 0.582563 0.582563 0.582563
166
+ 0.586097 0.586097 0.586097
167
+ 0.589636 0.589636 0.589636
168
+ 0.593213 0.593213 0.593213
169
+ 0.596801 0.596801 0.596801
170
+ 0.600406 0.600406 0.600406
171
+ 0.604043 0.604043 0.604043
172
+ 0.607694 0.607694 0.607694
173
+ 0.611363 0.611363 0.611363
174
+ 0.615049 0.615049 0.615049
175
+ 0.618774 0.618774 0.618774
176
+ 0.622500 0.622500 0.622500
177
+ 0.626258 0.626258 0.626258
178
+ 0.630038 0.630038 0.630038
179
+ 0.633841 0.633841 0.633841
180
+ 0.637658 0.637658 0.637658
181
+ 0.641496 0.641496 0.641496
182
+ 0.645361 0.645361 0.645361
183
+ 0.649255 0.649255 0.649255
184
+ 0.653154 0.653154 0.653154
185
+ 0.657094 0.657094 0.657094
186
+ 0.661040 0.661040 0.661040
187
+ 0.665015 0.665015 0.665015
188
+ 0.669017 0.669017 0.669017
189
+ 0.673039 0.673039 0.673039
190
+ 0.677083 0.677083 0.677083
191
+ 0.681139 0.681139 0.681139
192
+ 0.685235 0.685235 0.685235
193
+ 0.689349 0.689349 0.689349
194
+ 0.693479 0.693479 0.693479
195
+ 0.697634 0.697634 0.697634
196
+ 0.701814 0.701814 0.701814
197
+ 0.706025 0.706025 0.706025
198
+ 0.710253 0.710253 0.710253
199
+ 0.714501 0.714501 0.714501
200
+ 0.718779 0.718779 0.718779
201
+ 0.723078 0.723078 0.723078
202
+ 0.727404 0.727404 0.727404
203
+ 0.731755 0.731755 0.731755
204
+ 0.736123 0.736123 0.736123
205
+ 0.740524 0.740524 0.740524
206
+ 0.744946 0.744946 0.744946
207
+ 0.749389 0.749389 0.749389
208
+ 0.753866 0.753866 0.753866
209
+ 0.758365 0.758365 0.758365
210
+ 0.762882 0.762882 0.762882
211
+ 0.767429 0.767429 0.767429
212
+ 0.772006 0.772006 0.772006
213
+ 0.776606 0.776606 0.776606
214
+ 0.781229 0.781229 0.781229
215
+ 0.785880 0.785880 0.785880
216
+ 0.790553 0.790553 0.790553
217
+ 0.795255 0.795255 0.795255
218
+ 0.799988 0.799988 0.799988
219
+ 0.804740 0.804740 0.804740
220
+ 0.809523 0.809523 0.809523
221
+ 0.814327 0.814327 0.814327
222
+ 0.819160 0.819160 0.819160
223
+ 0.824024 0.824024 0.824024
224
+ 0.828918 0.828918 0.828918
225
+ 0.833835 0.833835 0.833835
226
+ 0.838774 0.838774 0.838774
227
+ 0.843744 0.843744 0.843744
228
+ 0.848747 0.848747 0.848747
229
+ 0.853770 0.853770 0.853770
230
+ 0.858827 0.858827 0.858827
231
+ 0.863916 0.863916 0.863916
232
+ 0.869027 0.869027 0.869027
233
+ 0.874163 0.874163 0.874163
234
+ 0.879331 0.879331 0.879331
235
+ 0.884532 0.884532 0.884532
236
+ 0.889757 0.889757 0.889757
237
+ 0.895016 0.895016 0.895016
238
+ 0.900298 0.900298 0.900298
239
+ 0.905616 0.905616 0.905616
240
+ 0.910957 0.910957 0.910957
241
+ 0.916327 0.916327 0.916327
242
+ 0.921733 0.921733 0.921733
243
+ 0.927160 0.927160 0.927160
244
+ 0.932621 0.932621 0.932621
245
+ 0.938115 0.938115 0.938115
246
+ 0.943634 0.943634 0.943634
247
+ 0.949180 0.949180 0.949180
248
+ 0.954758 0.954758 0.954758
249
+ 0.960362 0.960362 0.960362
250
+ 0.965988 0.965988 0.965988
251
+ 0.971645 0.971645 0.971645
252
+ 0.977326 0.977326 0.977326
253
+ 0.983029 0.983029 0.983029
254
+ 0.988756 0.988756 0.988756
255
+ 0.994502 0.994502 0.994502
256
+ 1.000000 1.000000 1.000000