Skip to content

Instantly share code, notes, and snippets.

@steveharoz
Last active June 13, 2023 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steveharoz/594f4f52571a0e7b65eb733210bca598 to your computer and use it in GitHub Desktop.
Save steveharoz/594f4f52571a0e7b65eb733210bca598 to your computer and use it in GitHub Desktop.
Example data for analysis

Sample output

Raw data with linear fit per subject*condition

image

Scaled by subject

image

Data dictionary

  • subject: Subject ID
  • color: Color of stimulus. Values: red, green, blue.
  • shape: Shape of stimulus. Values: circle, triangle.
  • size: Size of stimulus. Values: small, large
  • response: Dependent variable

ANOVA output

Type III Analysis of Variance Table with Kenward-Roger's method
                 Sum Sq Mean Sq NumDF DenDF  F value    Pr(>F)    
color            162.89   81.45     2     8  77.4008 5.831e-06 ***
size             689.89  689.89     1     4 655.6223 1.382e-05 ***
shape            778.51  778.51     1     4 739.8398 1.086e-05 ***
color:size         0.87    0.43     2     8   0.4126    0.6753    
color:shape        3.85    1.92     2     8   1.8277    0.2219    
size:shape       662.96  662.96     1     4 630.0301 1.496e-05 ***
color:size:shape   0.91    0.45     2     8   0.4308    0.6642    
library(tidyverse)
library(lmerTest)
# subject count
COUNT = 5
set.seed(8675309)
# generate a unique intercept per subject
data = tibble(
subject = paste0("S", 1:COUNT),
intercept = rnorm(COUNT, 0, 2)
) %>%
# fully cross with all combinations of factors
expand_grid(
color = factor(c("red", "green", "blue"), levels=c("red", "green", "blue")),
shape = c("circle", "triangle"),
size = factor(c("small", "large"), levels=c("small", "large")),
# repeat each condition
rep = 1:50
) %>%
# simulate noisy responses
mutate(response = intercept + (color=="blue")/2 + (shape=="triangle") * (size=="large")*2 + rnorm(n()))
# typically trials are in shuffled order grouped by subject
data = data %>%
split(.$subject) %>%
map( ~sample_frac(.) ) %>%
bind_rows()
# output
data %>%
select(-intercept, -rep) %>%
mutate(response = round(response, 3)) %>%
write_csv("~/dummydata3_factor.csv")
#raw data
ggplot(data) +
aes(x=size, y=response, color=color, group=paste(subject, shape, color)) +
geom_point(size=2, alpha=0.5, aes(shape=shape)) +
geom_smooth(se=FALSE, method="lm", aes(linetype=shape), alpha=0.5) +
facet_grid(. ~ shape) +
theme_classic(16)
# scaled by subject
data %>%
mutate(.by = subject, response = scale(response)) %>%
ggplot() +
aes(x=size, y=response, color=color, group=paste(subject, shape, color)) +
geom_smooth(se=FALSE, method="lm", aes(linetype=shape), alpha=0.5) +
theme_classic(16)
# model it
model = lmer(response ~ color*size*shape +
(1|subject) +
(1|color:subject) + (1|shape:subject) + (1|size:subject) +
(1|subject:shape:color) + (1|subject:shape:size) + (1|subject:color:size) +
(1|subject:color:size:shape), data)
# ANOVA with df calculated by Kenward-Roger
anova(model, ddf = "Kenward-Roger")
subject color shape size response
S1 red circle small -1.31
S1 red triangle small -1.46
S1 blue triangle small -4.273
S1 red triangle large 0.923
S1 green triangle small -1.996
S1 blue circle large -2.926
S1 red circle large -1.862
S1 green triangle large -0.567
S1 red circle small -0.007
S1 green triangle small -1.592
S1 green triangle small -4.398
S1 blue triangle small -1.942
S1 blue triangle small -1.103
S1 blue triangle small -2.447
S1 blue circle large -1.884
S1 red circle small -1.089
S1 green circle large -3.854
S1 red circle large -0.332
S1 red triangle large 1.013
S1 green triangle large 0.055
S1 green circle large -4.383
S1 red circle large -2.341
S1 green circle small -2.503
S1 green circle large -1.13
S1 red circle large -2.915
S1 red circle large -0.396
S1 red triangle small -2.699
S1 blue triangle small -1.211
S1 red triangle small -2.488
S1 green triangle large 1.008
S1 red triangle large -2.106
S1 blue circle large -1.764
S1 red circle large -1.402
S1 green triangle large -0.181
S1 blue triangle large 1.552
S1 green circle small -2.28
S1 red circle small -1.756
S1 green triangle large 0.334
S1 green circle large -2.204
S1 blue circle small -2.764
S1 red circle large -2.645
S1 blue triangle large 0.62
S1 green triangle small -2.036
S1 green triangle small -3.028
S1 blue circle large -2.056
S1 green triangle small -2.451
S1 red triangle large 0.598
S1 green circle small -2.181
S1 blue circle small -3.227
S1 red triangle large 1.016
S1 green triangle large 1.536
S1 green triangle small -3.281
S1 red circle small -1.61
S1 blue circle small -1.935
S1 green circle large -0.957
S1 green circle small -2.911
S1 blue triangle large -1.249
S1 blue circle large 0.732
S1 blue circle small 0.517
S1 red triangle small -1.729
S1 green triangle small -1.597
S1 green triangle small -0.113
S1 blue circle small -2.048
S1 red circle small -2.242
S1 blue triangle small -1.965
S1 red triangle small -0.788
S1 blue triangle small -0.321
S1 red triangle large -1.076
S1 green circle large -2.121
S1 red circle small -1.957
S1 blue triangle large 1.246
S1 green circle large -0.39
S1 red triangle large 0.718
S1 green triangle large 0.419
S1 blue circle large -1.271
S1 red circle large -1.249
S1 green triangle large 0.485
S1 red circle large -2.386
S1 blue circle large -2.178
S1 blue triangle large 1.63
S1 red circle large -1.663
S1 green triangle small -1.312
S1 green circle large -2.391
S1 blue circle small -0.066
S1 green triangle large -0.809
S1 blue circle large -1.491
S1 blue circle small -2.308
S1 green triangle small -1.764
S1 green circle large -0.993
S1 green triangle small -2.228
S1 green triangle small -2.386
S1 red circle large -1.406
S1 red triangle large -0.904
S1 blue circle large -4.153
S1 green triangle small -1.016
S1 red triangle small -1.998
S1 red circle small -3.543
S1 blue circle small -3.105
S1 green circle large -1.469
S1 blue circle small 0.554
S1 green circle small -3.114
S1 red triangle large -0.392
S1 blue triangle large 1.286
S1 blue circle large -3.22
S1 green triangle small -3.229
S1 red triangle large -2.084
S1 green triangle small -1.621
S1 red circle small -1.858
S1 red triangle large -0.927
S1 red circle small -2.144
S1 red triangle large 0.843
S1 green circle large -1.721
S1 green circle small 0.876
S1 red triangle small -1.57
S1 green circle large -2.707
S1 blue circle large -2.263
S1 blue circle small -1.422
S1 green circle large -3.13
S1 blue circle small -2.235
S1 green triangle large 0.288
S1 red triangle small -0.838
S1 red triangle large 0.088
S1 blue triangle small 0.264
S1 blue circle large -2.149
S1 blue circle small -1.988
S1 green triangle small -1.254
S1 blue triangle large -0.024
S1 green circle small -2.741
S1 red circle large -2.912
S1 red triangle large 0.568
S1 red circle large -2.149
S1 blue triangle large 1.443
S1 blue circle small -1.011
S1 red circle small -1.843
S1 red circle small -1.948
S1 green triangle small -1.579
S1 blue triangle large 0.303
S1 blue triangle large 0.403
S1 red triangle large -1.027
S1 blue triangle small -1.262
S1 green circle large -0.181
S1 green triangle small -1.802
S1 green triangle small -2.202
S1 red triangle small -0.305
S1 green triangle large 1.407
S1 green circle large -2.823
S1 green circle small -1.895
S1 blue circle small -1.422
S1 red triangle large 0.453
S1 blue triangle large 0.268
S1 green circle large -2.089
S1 red triangle large 1.447
S1 red triangle large 1.492
S1 red triangle small -1.002
S1 green triangle small -2.235
S1 red circle small -2.307
S1 green triangle large -0.103
S1 blue triangle large 1.232
S1 blue triangle small -0.986
S1 red circle small -0.84
S1 blue triangle small 0.745
S1 green circle small -3.547
S1 green circle small -2.398
S1 red circle large -1.454
S1 red circle large -1.223
S1 green triangle small -3.178
S1 red triangle large -1.896
S1 blue circle small -1.604
S1 red circle large -3.351
S1 blue circle large -0.102
S1 green triangle large -1.197
S1 red triangle large 0.173
S1 blue circle large -2.592
S1 red circle large -2.218
S1 red triangle large 1.921
S1 green circle small -2.724
S1 red circle large -2.781
S1 blue triangle large 0.115
S1 green circle large -2.024
S1 green triangle small -1.254
S1 green circle small -1.347
S1 blue triangle small -2.183
S1 green triangle small -3.03
S1 blue triangle large -0.469
S1 blue circle large -3.419
S1 green circle small -2.138
S1 green triangle large -1.198
S1 green triangle small -1.387
S1 green circle small -3.022
S1 blue circle large -3.341
S1 blue circle large -1.783
S1 blue circle large -1.523
S1 red circle large -1.271
S1 red triangle large 1.395
S1 blue triangle small -1.231
S1 red triangle large -1.013
S1 green triangle large 1.45
S1 blue triangle large 1.36
S1 red circle small -2.147
S1 red circle large -1.635
S1 red triangle small -0.57
S1 red circle small -1.006
S1 blue circle small -0.682
S1 blue triangle small -1.068
S1 red triangle large -0.255
S1 green triangle large -1.267
S1 red triangle small -2.951
S1 green circle small -2.067
S1 blue circle large -0.242
S1 red triangle large 0.303
S1 green triangle large -1.051
S1 red triangle large -0.082
S1 red triangle small -0.824
S1 blue circle large -0.342
S1 green triangle large 0.346
S1 blue circle large -2.2
S1 red triangle small -1.691
S1 blue circle large -2.269
S1 green circle small -0.573
S1 red triangle small -2.704
S1 green triangle small -2.416
S1 red circle small -2.819
S1 green circle small -1.581
S1 blue circle large -1.887
S1 red triangle large 1.499
S1 blue circle large -3.639
S1 red triangle small -2.75
S1 green circle small -2.274
S1 green triangle large 1.875
S1 red triangle large 0.618
S1 red circle small -2.653
S1 green circle large -3.045
S1 blue circle large -0.842
S1 red triangle large -1.221
S1 green circle large -2.12
S1 blue circle small -1.849
S1 green triangle small -4.136
S1 green circle large -1.728
S1 blue triangle large 1.379
S1 green circle large -2.348
S1 green triangle large -0.518
S1 red triangle small -1.277
S1 red circle small -2.894
S1 blue triangle small -1.716
S1 green circle large -2.023
S1 blue triangle small -1.109
S1 red circle small -1.405
S1 blue triangle small -1.936
S1 blue circle large -0.981
S1 red circle large -2.94
S1 blue circle small -0.469
S1 green circle small -0.622
S1 red circle large -0.692
S1 green triangle large -0.462
S1 blue triangle large -1.064
S1 blue triangle small -0.224
S1 red circle small -0.971
S1 green circle large -1.379
S1 green circle large -1.934
S1 blue circle large 0.332
S1 red circle large -1.891
S1 red triangle small -2.149
S1 green circle large -2.186
S1 blue triangle small -1.041
S1 red triangle small -0.613
S1 blue circle large -1.55
S1 red triangle small -1.223
S1 red triangle small -1.529
S1 blue circle large -1.204
S1 green circle large -2.987
S1 blue triangle small 0.035
S1 red circle small -0.418
S1 green triangle large 1.606
S1 blue triangle large -0.507
S1 blue triangle small 0.644
S1 red triangle small -2.522
S1 blue triangle large -0.918
S1 blue triangle small -1.902
S1 red triangle small -2.691
S1 red circle large -0.966
S1 green triangle small -3.067
S1 red circle small -1.997
S1 green triangle large 1.301
S1 green circle large -0.083
S1 green triangle large -0.672
S1 red circle large -1.92
S1 green circle large -2.478
S1 blue triangle large 1.189
S1 red circle large -1.765
S1 green triangle small -0.766
S1 red triangle large 0.219
S1 blue triangle large 0.427
S1 green triangle large -0.898
S1 green circle small -1.741
S1 red triangle large -2.592
S1 blue triangle small -2.48
S1 red circle large -1.973
S1 blue triangle small -1.038
S1 green triangle small -4.377
S1 blue triangle large 0.964
S1 blue triangle large 1.051
S1 green triangle small -1.894
S1 blue circle large 0.6
S1 red triangle large 0.42
S1 red circle small -2.222
S1 blue circle small -2.479
S1 red triangle large 0.153
S1 blue triangle large -0.32
S1 blue triangle large 2.273
S1 red triangle small -0.675
S1 green circle small -1.121
S1 green circle small -2.884
S1 red circle large -2.919
S1 green triangle large -0.563
S1 red triangle small -1.788
S1 green circle large -1.953
S1 red circle large -1.092
S1 red circle small -2.245
S1 green circle large -2.769
S1 blue circle large -1.719
S1 green triangle large -0.577
S1 green triangle large -1.717
S1 red triangle small -1.397
S1 green circle large -0.977
S1 blue circle small -1.887
S1 red triangle small -2.105
S1 green circle small -2.597
S1 green triangle large 0.247
S1 blue triangle small -0.231
S1 green triangle small -2.683
S1 red circle large -3.315
S1 red triangle small -2.256
S1 red triangle small -2.312
S1 blue circle small -1.384
S1 red circle small -3.97
S1 red circle large -2.844
S1 blue triangle large 1.285
S1 red circle large -3.102
S1 red circle small -2.179
S1 blue triangle small -1.227
S1 red triangle large 0.008
S1 red circle small -1.303
S1 red triangle large -0.539
S1 red circle small -1.949
S1 green circle large -2.462
S1 green circle large -2.521
S1 red circle small -2.435
S1 green triangle small -2.319
S1 blue circle small -2.01
S1 green triangle large 0.156
S1 green triangle large -1.228
S1 blue triangle large -0.446
S1 green triangle small -0.992
S1 green circle small -0.963
S1 red circle small -2.868
S1 green circle large -2.16
S1 green circle large -1.267
S1 red triangle small -1.125
S1 red circle large -2.135
S1 red circle large -0.742
S1 blue triangle small -1.833
S1 green triangle large 0.838
S1 blue triangle large 0.191
S1 green circle small -1.066
S1 green triangle small -1.28
S1 blue circle small -1.909
S1 blue triangle large -0.344
S1 blue circle small -1.862
S1 blue triangle small 0.047
S1 green triangle small -1.985
S1 blue circle large -2.942
S1 green circle small -2.326
S1 red triangle small -3.013
S1 red circle large -2.457
S1 red triangle small -1.717
S1 red triangle small -3.059
S1 red circle small -0.021
S1 blue triangle small -2.669
S1 blue circle small -0.566
S1 blue circle large 0.72
S1 blue triangle large 0.353
S1 red triangle large 0.994
S1 blue triangle small -2.86
S1 blue triangle large 0.02
S1 blue triangle small -1.647
S1 blue triangle large -0.382
S1 green circle large -2.478
S1 green circle small -4.196
S1 red triangle small -0.498
S1 green circle small -2.007
S1 blue circle large -1.837
S1 green triangle small -1.076
S1 red circle large -1.429
S1 green circle small -4.716
S1 red circle large -1.264
S1 green triangle large 1.184
S1 blue triangle small -1.187
S1 red triangle large -0.82
S1 red triangle large 0.247
S1 green triangle large 0.743
S1 red circle small -1.421
S1 red triangle small -3.668
S1 green circle large -0.318
S1 blue triangle small -0.083
S1 blue circle large -2.348
S1 blue circle small -1.845
S1 blue triangle large -0.091
S1 green triangle large 0.847
S1 blue triangle large 0.52
S1 blue circle small -2.579
S1 blue circle small -3.582
S1 green circle small -2.602
S1 red triangle large 0.997
S1 green triangle large 0.133
S1 green circle large -1.967
S1 blue circle large -1.086
S1 green triangle large 0.171
S1 green circle small -0.879
S1 green circle small -1.787
S1 blue triangle large -1.159
S1 blue triangle large 1.336
S1 blue triangle small -1.066
S1 blue triangle small -0.773
S1 red circle small -1.779
S1 blue triangle small 0.205
S1 blue triangle large 0.187
S1 red circle small -2.144
S1 red circle large -1.383
S1 red circle large -3.169
S1 blue triangle large -1.724
S1 red circle large -4.59
S1 green circle large -1.775
S1 blue circle large -2.835
S1 green triangle large -0.817
S1 red circle small -2.608
S1 blue circle small -1.614
S1 blue circle large -1.126
S1 blue triangle large 0.889
S1 green triangle small -2.456
S1 red circle small -2.466
S1 red circle large -2.006
S1 red triangle small -1.593
S1 blue circle small -1.808
S1 blue circle small -3.241
S1 green circle small -3.654
S1 green circle large -1.663
S1 red circle small -2.988
S1 red circle small -1.46
S1 red circle small -1.929
S1 blue circle small -1.081
S1 red circle large -0.524
S1 green circle large -1.772
S1 green circle small -0.762
S1 blue triangle small -2.988
S1 blue circle small -1.809
S1 red triangle large 0.437
S1 red triangle large -2.482
S1 blue triangle small -2.519
S1 blue circle large -3.056
S1 red circle large -2.933
S1 blue triangle large 0.448
S1 red triangle small -3.092
S1 green circle small -1.938
S1 green circle large -2.712
S1 blue triangle large 0.567
S1 blue circle small -0.485
S1 green triangle small -2.098
S1 green triangle small -1.557
S1 green triangle small -1.94
S1 green circle small 0.124
S1 green triangle large 0.44
S1 blue triangle small -1.936
S1 green circle small -0.403
S1 blue triangle large 0.817
S1 green circle large -3.819
S1 red circle small -2.821
S1 red triangle large 0.463
S1 red triangle small -2.045
S1 green circle large -1.667
S1 green circle small -2.066
S1 blue triangle large 1.213
S1 red triangle large -1.762
S1 blue triangle small -0.477
S1 blue triangle small -0.43
S1 blue triangle large -0.114
S1 green triangle small -2.28
S1 blue circle large -0.868
S1 blue circle large -0.549
S1 blue circle small -1.255
S1 green circle small -2.183
S1 blue triangle large -0.146
S1 red circle small -2.397
S1 red triangle large -1.599
S1 green triangle large -1.77
S1 blue triangle large 1.643
S1 blue circle large -1.786
S1 blue circle large -0.09
S1 blue circle small 1.034
S1 red triangle small -2.063
S1 green circle large -0.98
S1 green triangle small -2.506
S1 red circle large -3.34
S1 blue triangle small -1.45
S1 red triangle large -1.238
S1 red circle small -1.32
S1 blue circle large -1.368
S1 red triangle large 0.736
S1 blue circle large -1.544
S1 red triangle small -1.335
S1 red circle small -1.876
S1 blue triangle large -0.025
S1 blue circle small -2.019
S1 green circle small -3.196
S1 red triangle small -2.598
S1 red triangle small -2.48
S1 blue circle large 1.92
S1 green triangle small -2.467
S1 red triangle small -1.079
S1 blue circle small -2.49
S1 blue circle small -2.809
S1 blue circle large -1.494
S1 blue circle large -2.644
S1 red circle small -2.408
S1 green circle small -3.199
S1 green circle large -1.46
S1 blue triangle large 0.345
S1 red triangle small -3.161
S1 blue circle small -2.259
S1 green circle small -1.606
S1 blue circle small -1.685
S1 blue circle small -0.393
S1 green triangle large 0.006
S1 green circle large -1.475
S1 red triangle small -2.498
S1 red triangle small -2.469
S1 red circle small -1.966
S1 red triangle large -0.061
S1 blue triangle small 1.629
S1 red circle small -1.309
S1 blue triangle small 0.156
S1 blue triangle large 0.334
S1 red circle large -0.943
S1 green triangle large -1.234
S1 green triangle large -0.001
S1 green triangle small -2.326
S1 green circle small -2.167
S1 red triangle large -0.017
S1 green circle small -0.656
S1 blue circle large -1.135
S1 green circle small -3.365
S1 green circle large -1.526
S1 green triangle small -0.967
S1 green triangle small -2.621
S1 green triangle large -1.058
S1 red triangle small -2.213
S1 blue triangle small -4.227
S1 blue circle small -1.787
S1 green circle small -2.931
S1 red circle large -1.907
S1 blue triangle small -1.105
S1 blue triangle small -2.535
S1 blue triangle small -2.569
S1 red triangle large 0.416
S1 blue circle small -0.207
S1 red circle large -0.906
S1 red circle large 0.028
S1 green circle large -2.151
S1 green triangle large -1.113
S1 green circle small -0.837
S1 red circle small -2.628
S1 red triangle small -1.955
S1 green triangle large 0.247
S1 green triangle small -1.444
S1 blue circle small -2.871
S1 blue circle small -1.376
S1 red triangle small -3.692
S1 blue circle large -2.048
S1 blue triangle large -0.728
S1 green triangle large 0.502
S1 blue circle small -1.235
S1 blue circle small -1.403
S1 green circle small -1.477
S1 green triangle large -1.143
S1 red circle small -4.128
S1 green triangle large -2.601
S1 blue circle small -1.318
S1 red triangle small -2.683
S1 blue circle small -2.233
S1 green circle small -1.508
S1 red circle large -1.798
S1 red circle large -3.308
S1 red triangle large -0.433
S1 red circle small -1.617
S1 green triangle large -3.231
S1 green circle small -0.964
S1 blue triangle small -1.983
S1 blue triangle small -1.421
S1 green circle large -3.671
S1 green triangle small -0.701
S1 green triangle small -1.326
S2 blue triangle large 5.335
S2 green triangle large 2.929
S2 green circle small 0.899
S2 red circle small 0.319
S2 blue circle large 2.919
S2 blue triangle small 1.695
S2 red triangle large 2.512
S2 red circle large 2.41
S2 green circle small 1.755
S2 blue triangle large 4.127
S2 blue triangle large 3.692
S2 green circle large 2.73
S2 green circle large 1.739
S2 green circle small 2.376
S2 red triangle large 1.567
S2 blue triangle large 3.704
S2 blue circle small 3.429
S2 blue circle small 2.642
S2 red circle large 3.311
S2 red triangle large 3.666
S2 green circle small 2.655
S2 red triangle small 1.978
S2 blue triangle small 2.081
S2 green triangle large 2.979
S2 blue circle small 0.972
S2 green triangle small 1.692
S2 blue triangle large 2.702
S2 red triangle small 2.283
S2 red circle small 1.208
S2 blue circle large 2.073
S2 blue triangle small 2.436
S2 blue circle large 1.62
S2 red circle large 3.201
S2 green circle small 2.631
S2 green triangle large 3.017
S2 green triangle small -0.589
S2 green triangle large 2.458
S2 green triangle small 1.359
S2 blue circle small 1.565
S2 red triangle large 2.882
S2 green triangle small 0.149
S2 green circle large 2.002
S2 green triangle small 2.221
S2 blue triangle small 2.424
S2 red circle large 0.824
S2 green triangle small 1.817
S2 green circle small 0.307
S2 green circle small 0.426
S2 blue triangle small 2.488
S2 blue circle large 0.918
S2 blue circle large 2.79
S2 blue triangle small 2.592
S2 green circle small 1.119
S2 red triangle large 3.659
S2 red triangle small 3.461
S2 blue triangle small 2.952
S2 blue circle small 2.66
S2 blue circle large 0.448
S2 blue triangle large 1.224
S2 red triangle large 4.618
S2 green triangle small 1.798
S2 red circle small 3.998
S2 green triangle small 1.065
S2 blue triangle large 4.849
S2 blue circle large 1.327
S2 red triangle large 4.787
S2 green triangle small 2.365
S2 blue triangle large 4.147
S2 green triangle small 0.737
S2 green triangle large 3.207
S2 green circle small 0.7
S2 blue triangle large 3.409
S2 green circle large 2.187
S2 red triangle small 1.722
S2 blue circle large 2.576
S2 red triangle small 0.211
S2 green triangle large 3.176
S2 green triangle small 1.129
S2 blue triangle small 1.388
S2 green circle large -0.429
S2 blue triangle large 4.193
S2 red circle small 0.194
S2 red triangle large 4.586
S2 red triangle large 3.558
S2 blue circle small 1.974
S2 red triangle small 3.439
S2 red triangle large 4.177
S2 red circle large 0.939
S2 red circle large 2.011
S2 red circle large 2.767
S2 blue triangle large 4.03
S2 blue circle large 3.601
S2 green triangle large 3.187
S2 green triangle small 0.833
S2 blue triangle small 1.064
S2 red circle small 3.091
S2 blue triangle small 2.695
S2 blue triangle small 2.645
S2 green triangle large 4.994
S2 green triangle large 3.813
S2 green triangle large 5.049
S2 blue triangle large 6.318
S2 blue circle small 0.744
S2 red circle large 2.726
S2 red circle large 2.297
S2 red triangle large 3.54
S2 green triangle small 2.901
S2 red triangle large 3.931
S2 red circle small -0.782
S2 red circle small 0.038
S2 blue circle large 1.872
S2 green circle small 2.075
S2 red triangle small 1.807
S2 red triangle small 3.508
S2 red circle small 1.961
S2 blue circle large 2.085
S2 green triangle small 2.035
S2 red circle large 1.31
S2 green triangle large 2.315
S2 red triangle small 0.187
S2 blue triangle large 2.156
S2 green circle large 0.582
S2 green circle small 0.752
S2 blue triangle small 3.289
S2 green triangle large 3.64
S2 blue triangle small 1.31
S2 blue triangle small 1.754
S2 green triangle large 1.845
S2 blue circle large 2.349
S2 red triangle large 2.951
S2 red triangle large 3.04
S2 green circle large 1.21
S2 red circle large 0.712
S2 green triangle small 0.669
S2 red triangle small 0.486
S2 red triangle large 4.473
S2 green circle small 0.337
S2 blue circle large 2.773
S2 green circle large 0.636
S2 blue triangle large 4.207
S2 green triangle small 1.71
S2 green circle small 1.526
S2 green triangle large 3.943
S2 green circle large 2.449
S2 blue circle small 2.469
S2 red triangle small 1.966
S2 red triangle small 0.737
S2 green circle large 3.219
S2 green triangle small 1.454
S2 red triangle large 2.413
S2 green circle large 1.787
S2 green triangle large 1.627
S2 red triangle small 0.125
S2 blue circle large 0.017
S2 blue circle small 2.371
S2 blue circle large 2.437
S2 blue triangle small 2.945
S2 red circle small 0.884
S2 red triangle small -1.025
S2 blue triangle large 4.926
S2 red triangle small 2.681
S2 blue circle large 1.123
S2 green triangle large 3.049
S2 green circle large 1.681
S2 blue triangle large 2.296
S2 blue circle large 1.452
S2 blue triangle large 4.063
S2 red circle small 0.308
S2 blue circle large 1.046
S2 blue circle small 1.149
S2 red triangle large 4.442
S2 green circle small 2.183
S2 blue circle large 2.655
S2 red circle large 2.466
S2 blue triangle large 3.088
S2 red triangle large 2.455
S2 red triangle large 2.515
S2 red triangle large 5.09
S2 blue circle small 3.124
S2 blue triangle small 2.307
S2 red triangle small 0.608
S2 green circle large 0.943
S2 red triangle small 2.131
S2 green triangle small 0.611
S2 green circle small 2.889
S2 red triangle large 3.936
S2 blue circle large -0.046
S2 green triangle small -0.264
S2 green circle small 1.262
S2 red triangle large 3.885
S2 red circle large 2.241
S2 red triangle small 2.661
S2 red circle large 0.95
S2 red circle large 3.146
S2 red circle large 2.041
S2 red triangle large 4.429
S2 red triangle large 2.41
S2 green triangle small 0.205
S2 red circle small 1.535
S2 red circle small 0.877
S2 green triangle small 0.816
S2 red circle small 1.416
S2 blue triangle large 6.11
S2 red triangle large 1.532
S2 blue circle small 2.469
S2 blue triangle small 2.809
S2 green triangle large 4.077
S2 green circle large -0.627
S2 green triangle small 1.023
S2 blue triangle large 3.841
S2 blue circle large 1.116
S2 red circle small 1.547
S2 green circle large -0.176
S2 green triangle large 3.687
S2 blue triangle large 3.544
S2 green circle small 0.542
S2 red triangle small 2.321
S2 blue circle large 2.819
S2 green circle large 2.52
S2 green circle large 3.138
S2 green triangle small 1.276
S2 green circle large 0.463
S2 green triangle large 4.691
S2 green triangle small 1.456
S2 green circle small 1.94
S2 blue circle large 2.558
S2 red circle large 2.38
S2 red triangle small 2.207
S2 green triangle small 0.271
S2 green triangle large 3.38
S2 green triangle small 1.89
S2 red triangle large 4.129
S2 red triangle large 2.862
S2 green triangle small -1.167
S2 red triangle small 1.859
S2 blue circle small 3.528
S2 blue circle large 1.278
S2 green triangle small 3.125
S2 blue circle large 1.814
S2 blue triangle large 3.174
S2 green triangle large 3.029
S2 blue circle large 2.41
S2 blue triangle small 0.314
S2 red circle small 1.221
S2 red triangle large 1.858
S2 blue triangle large 3.671
S2 red circle small 2.435
S2 blue triangle small 2.78
S2 green triangle small -0.002
S2 green circle small 0.157
S2 green triangle large 4.368
S2 red circle small 1.605
S2 green triangle small 1.595
S2 green circle large 1.833
S2 green circle large -2.006
S2 green circle large 0.506
S2 red circle small -0.351
S2 red triangle small 1.085
S2 red circle large 0.892
S2 red triangle small 1.366
S2 blue circle large 1.464
S2 red triangle small 1.935
S2 red circle small 0.084
S2 green triangle small 2.722
S2 red circle large -0.598
S2 red triangle large 3.003
S2 green triangle small 0.467
S2 blue circle large 1.741
S2 blue triangle large 3.441
S2 blue circle small 2.105
S2 green circle small 1.695
S2 blue circle large 2.533
S2 red triangle small 0.472
S2 green triangle large 2.41
S2 red circle small -0.441
S2 blue circle small 2.134
S2 blue circle small 1.705
S2 blue triangle small 2.463
S2 green circle small 1.688
S2 blue circle small 3.365
S2 red triangle large 2.318
S2 blue triangle large 1.4
S2 red circle large 0.898
S2 red circle large 1.42
S2 blue triangle small 1.221
S2 blue triangle small 1.895
S2 blue circle small 0.894
S2 red circle large 1.356
S2 red triangle large 2.25
S2 green triangle large 2.69
S2 blue triangle large 4.338
S2 red circle small 1.471
S2 green triangle large 2.86
S2 green circle large 3.896
S2 blue triangle large 4.596
S2 blue circle small 1.36
S2 blue circle small 0.832
S2 green circle small 0.162
S2 blue circle small 1.798
S2 green circle small 0.39
S2 red circle large 2.129
S2 red circle large 1.572
S2 blue circle large 2.489
S2 green triangle small 2.192
S2 blue triangle small 1.782
S2 blue triangle large 2.629
S2 blue circle large 0.401
S2 blue triangle small 1.92
S2 red circle small -0.738
S2 red triangle large 2.22
S2 red triangle large 2.691
S2 red circle large -1.024
S2 blue triangle small 0.647
S2 green circle large 2.463
S2 red circle small 1.653
S2 red triangle large 3.46
S2 green triangle small 1.597
S2 red circle small -0.318
S2 blue circle small 2.351
S2 green triangle large 3.274
S2 green circle large 1.566
S2 blue circle small -0.751
S2 blue circle large 2.636
S2 red triangle large 3.687
S2 red circle small 0.775
S2 blue circle large 2.556
S2 red triangle small 3.618
S2 blue triangle small 3.576
S2 blue triangle small 1.815
S2 red circle small 0.763
S2 red triangle small 1.907
S2 red triangle small 1.865
S2 blue triangle small 1.966
S2 green triangle small 3.775
S2 blue triangle small 3.075
S2 green triangle small 0.903
S2 blue triangle large 3.042
S2 blue triangle large 4.514
S2 red triangle small 0.518
S2 green circle large 2.645
S2 red circle large 1.259
S2 green triangle large 1.67
S2 red triangle large 3.667
S2 red circle large 2.697
S2 blue triangle small 1.315
S2 red circle small 1.612
S2 green circle small 3.083
S2 red triangle large 3.792
S2 green circle small 1.743
S2 red circle large 3.048
S2 green circle large 1.876
S2 red circle large 1.83
S2 blue triangle small 3.106
S2 green triangle large 2.565
S2 red triangle small 2.954
S2 blue circle small 2.592
S2 red triangle small 2.104
S2 red circle small 1.058
S2 red triangle small 1.881
S2 green circle small 1.484
S2 blue circle small 3.969
S2 blue circle large 0.989
S2 blue triangle small 1.581
S2 green triangle large 2.274
S2 red circle large 0.621
S2 red circle small 1.98
S2 green triangle large 1.939
S2 green triangle large 3.426
S2 green triangle large 3.703
S2 red circle small 3.94
S2 green circle large 0.255
S2 red triangle small 2.625
S2 green triangle small 1.678
S2 red circle small 1.603
S2 red triangle small 1.577
S2 blue circle small 1.339
S2 green circle large 2.336
S2 blue circle large 1.098
S2 green triangle large 2.18
S2 blue triangle large 4.566
S2 green circle large 1.179
S2 blue circle large 1.628
S2 green triangle large 3.686
S2 green circle small 1.947
S2 red circle large 2.446
S2 green circle small 0.025
S2 blue circle small 2.805
S2 green triangle small -1.056
S2 blue triangle large 4.045
S2 blue circle large 1.706
S2 blue triangle large 4.872
S2 red circle small 1.985
S2 red circle large 1.219
S2 green circle small 0.788
S2 green triangle small 1.828
S2 blue circle small 2.566
S2 blue circle small 2.471
S2 green circle large 1.253
S2 green circle small 1.577
S2 green triangle large 4.113
S2 blue circle small 2.049
S2 green triangle large 4.145
S2 red circle small 1.797
S2 blue triangle large 5.916
S2 blue triangle large 4.479
S2 green circle small 2.009
S2 red triangle small 2.014
S2 green circle large 2.803
S2 green circle small 1.816
S2 green triangle small 2.026
S2 red circle large 1.004
S2 blue circle large 2.688
S2 blue triangle small 3.303
S2 blue circle large 2.931
S2 green circle large 2.94
S2 blue triangle small 2.018
S2 blue triangle large 3.894
S2 red triangle small 0.798
S2 blue circle large 2.958
S2 green triangle small 3.257
S2 blue circle large 2.695
S2 green circle small 2.881
S2 red circle small 1.161
S2 red circle small 0.466
S2 blue circle small 3.528
S2 green triangle large 2.523
S2 red triangle small 2.643
S2 blue triangle small 0.137
S2 red circle large 1.008
S2 red circle large 0.345
S2 blue triangle large 3.284
S2 green triangle small 1.332
S2 green circle small 1.729
S2 green triangle small -1.081
S2 green triangle large 4.398
S2 red triangle small 3.748
S2 red circle large 2.246
S2 red circle small 1.3
S2 blue triangle small 0.693
S2 red triangle small 1.899
S2 green circle large 0.796
S2 blue triangle large 4.423
S2 green triangle large 4.577
S2 red circle small 1.929
S2 green circle small 0.414
S2 blue triangle small 4.059
S2 red circle large 1.518
S2 red triangle small 2.226
S2 red circle small 2.153
S2 blue circle small 0.798
S2 red circle large 0.868
S2 blue triangle large 3.604
S2 blue triangle large 5.178
S2 blue circle small 2.112
S2 blue circle small 2.666
S2 blue triangle small 0.274
S2 red circle small 0.071
S2 red triangle small 2.203
S2 red triangle small 2.63
S2 blue triangle small 3.065
S2 red circle large 1.606
S2 blue triangle small 2.319
S2 red circle large 0.236
S2 blue circle small 0.612
S2 red triangle small 0.747
S2 blue triangle large 5.619
S2 green circle small 1.813
S2 red circle small 0.257
S2 green circle large 1.139
S2 red triangle large 5.112
S2 red triangle small 1.833
S2 blue circle small 1.093
S2 blue triangle small 0.949
S2 green triangle large 3.121
S2 red circle small 0.452
S2 red triangle large 2.519
S2 blue triangle small 1.925
S2 red circle large 1.382
S2 blue triangle small 2.905
S2 red triangle large 1.647
S2 blue circle large 3.701
S2 green circle small 2.15
S2 red circle small 0.257
S2 green triangle small 1.72
S2 blue circle large 2.184
S2 green circle large 2.286
S2 blue circle large 0.839
S2 green triangle large 2.063
S2 blue circle small 1.709
S2 red circle small 2.339
S2 red circle large 0.508
S2 red circle small 0.933
S2 green circle large -0.008
S2 red triangle small 1.422
S2 blue circle small 1.405
S2 red circle large 2.518
S2 green triangle large 3.677
S2 green circle large 1.236
S2 red triangle large 3.634
S2 red circle small 2.664
S2 blue triangle large 4.198
S2 blue triangle large 3.535
S2 red triangle small 1.081
S2 green circle small 2.104
S2 green circle large 0.663
S2 blue triangle large 4.53
S2 green triangle small 1.469
S2 red triangle large 2.611
S2 red triangle small -0.155
S2 blue circle small 2.141
S2 green circle large 1.492
S2 red circle large 0.054
S2 green circle small 1.45
S2 blue triangle large 3.354
S2 blue triangle small 2.22
S2 green circle small -0.135
S2 blue circle small 2.903
S2 green triangle small 0.739
S2 red triangle small 2.6
S2 green triangle large 5.075
S2 green circle large 2.323
S2 green triangle large 3.125
S2 red triangle large 3.008
S2 red circle large 3.161
S2 blue triangle large 6.402
S2 blue circle small 2.228
S2 red triangle large 3.796
S2 red triangle large 1.922
S2 red circle small 1.81
S2 blue circle small 2.489
S2 green circle small 2.238
S2 blue triangle small 0.054
S2 blue circle small 2.884
S2 green circle large 1.121
S2 blue circle small 0.29
S2 red circle small 1.436
S2 blue circle large 1.605
S2 blue triangle large 2.783
S2 green circle large 2.194
S2 green circle large 2.402
S2 blue circle large 0.772
S2 green circle small 1.017
S2 red circle large 2.65
S2 blue triangle large 3.909
S2 green triangle small 1.618
S2 green circle small 1.824
S2 green triangle small 0.999
S2 green triangle large 3.372
S2 blue circle small 0.993
S2 green circle large -0.265
S2 blue circle large 0.427
S2 blue circle large 1.389
S2 green triangle large 5.681
S2 green circle small 2.68
S2 blue triangle small 2.376
S2 green triangle large 3.641
S2 green triangle large 3.48
S2 green circle small 0.469
S2 green circle large 1.818
S2 blue triangle small 2.977
S2 blue circle small 2.693
S2 blue circle small 1.841
S2 red triangle large 2.395
S2 blue triangle small 2.44
S2 green circle large 0.923
S2 green circle large 2.336
S2 red circle large 0.565
S2 red circle large 1.881
S2 blue triangle large 3.452
S2 green circle large 2.255
S2 blue circle small 1.985
S2 blue circle small 3.208
S2 red triangle small 0.565
S2 red circle small 1.227
S2 red triangle large 5.578
S2 green circle small 2.857
S2 blue circle large 2.737
S2 blue triangle large 3.586
S2 red circle small -0.183
S2 green triangle small 2.05
S2 green triangle large 4.474
S2 red circle small 0.924
S2 green circle small 2.419
S2 green circle large 1.43
S2 green circle small 0.724
S2 blue triangle small 3.032
S2 blue triangle small 1.653
S2 red triangle large 3.425
S2 blue circle large 1.011
S2 red triangle large 3.813
S2 green triangle small 0.312
S2 blue circle small 1.465
S2 red circle large 1.85
S2 red circle large 0.913
S2 green circle large 2.346
S2 red triangle small 0.497
S2 green circle small 2.635
S2 green triangle large 3.082
S2 green circle small 0.269
S2 red triangle large 3.404
S3 red triangle large 1.619
S3 blue triangle small 0.2
S3 red triangle small -0.511
S3 green circle small -0.722
S3 blue circle small -2.698
S3 blue circle large -0.584
S3 red circle large -1.983
S3 red triangle large 1.327
S3 blue circle large -0.603
S3 red triangle large 2.199
S3 red triangle small -0.01
S3 red circle large -1.359
S3 red triangle large 1.117
S3 green circle large -0.799
S3 blue triangle small -2.083
S3 green circle large -0.741
S3 red triangle large 0.981
S3 blue triangle large 1.341
S3 red circle large -1.764
S3 blue triangle large 0.488
S3 green circle large -2.242
S3 green circle small 0.329
S3 blue circle large -1.276
S3 blue triangle small -1.296
S3 red triangle large 2.659
S3 blue circle small 1.056
S3 green triangle small -1.094
S3 red triangle large 1.498
S3 green circle small -1.855
S3 blue triangle large 2.519
S3 green circle small -1.638
S3 green triangle small 0.803
S3 blue circle small 0.349
S3 red circle large -0.797
S3 red circle large -0.63
S3 green circle large -2.214
S3 green circle small -0.004
S3 blue circle small -0.163
S3 green circle small -1.939
S3 green circle large -2.265
S3 red circle small -1.309
S3 red triangle large 0.927
S3 blue triangle large 1.935
S3 blue triangle small -1.254
S3 blue circle small 0.527
S3 blue circle small -2.666
S3 green circle small -0.733
S3 green circle large -1.082
S3 blue circle small -0.278
S3 red circle large -1.688
S3 green circle small -1.889
S3 red circle small -0.314
S3 blue circle small 1.098
S3 blue triangle small -0.236
S3 green triangle large 2.404
S3 blue circle large 0.448
S3 blue triangle small -0.026
S3 red triangle large 1.623
S3 red circle large -0.223
S3 red triangle small 0.411
S3 blue circle small -0.944
S3 green triangle small -0.889
S3 red triangle large 1.494
S3 blue circle large -0.561
S3 red circle small -2.211
S3 red triangle large -0.771
S3 red triangle large -1.049
S3 green triangle large -0.052
S3 blue circle small -0.456
S3 green circle small -1.041
S3 red circle large -2.666
S3 green circle small 0.053
S3 green circle small -2.424
S3 red circle large -1.05
S3 green circle large 0.648
S3 red triangle small -0.821
S3 blue triangle small -0.717
S3 blue triangle large 0.645
S3 green circle large -1.357
S3 red circle large -2.91
S3 blue triangle small -2.045
S3 blue circle large -0.756
S3 red triangle large 0.378
S3 green circle large -1.884
S3 green triangle small 0.026
S3 red triangle small -1.406
S3 blue triangle small -1.376
S3 blue triangle large 0.264
S3 green triangle large 1.778
S3 green triangle small -0.355
S3 red circle small -1.158
S3 blue circle large -0.884
S3 blue circle small -2.346
S3 green triangle small -1.635
S3 red triangle small -1.445
S3 red circle small -2.777
S3 red triangle large -0.423
S3 red circle large -0.378
S3 green circle small -2.098
S3 red circle large -0.539
S3 red circle large 0.672
S3 blue circle small 0.984
S3 green triangle large 1.203
S3 green triangle small -1.75
S3 red triangle large 0.149
S3 red triangle small -0.404
S3 blue circle small -0.659
S3 green triangle small 0.694
S3 blue circle large -2.68
S3 red circle small -1.467
S3 red circle large -2.134
S3 blue triangle large 2.98
S3 red triangle small -0.359
S3 green circle small -1.563
S3 blue triangle large 0.606
S3 blue triangle small -1.355
S3 green circle small -0.572
S3 green circle small -0.868
S3 blue triangle large 1.161
S3 green triangle small 0.154
S3 green triangle small -3.141
S3 red circle small -1.947
S3 blue triangle small 0.954
S3 blue circle small -2.608
S3 green circle large -0.877
S3 blue circle small 0.259
S3 red triangle small -0.173
S3 blue circle small -1.65
S3 green circle large -1.285
S3 blue triangle large 0.836
S3 red circle small -0.97
S3 blue circle large -0.859
S3 green triangle small -2.543
S3 green triangle large 0.089
S3 red circle small -1.641
S3 blue triangle small -1.313
S3 red circle large -0.599
S3 blue circle large 0.465
S3 red triangle large 1.364
S3 green triangle large -1.033
S3 red triangle large 0.684
S3 red triangle small -1.169
S3 red triangle small -1.641
S3 blue triangle small -0.419
S3 blue triangle large 0.159
S3 red circle large -2.048
S3 blue triangle small 0.889
S3 red triangle small 0.183
S3 blue circle small -1.074
S3 green circle small 0.056
S3 blue circle large -1.275
S3 green circle large -0.679
S3 green circle large -0.95
S3 red triangle small 1.258
S3 green triangle small -3.157
S3 green circle large -0.552
S3 blue triangle large 1.801
S3 red triangle large 1.95
S3 blue circle small -1.055
S3 green circle large -0.848
S3 red triangle large 0.149
S3 blue circle small -1.691
S3 green triangle large 0.8
S3 blue circle small -1.828
S3 blue circle large -1.538
S3 red circle small -1.747
S3 green triangle large 1.782
S3 green triangle large 1.307
S3 red triangle small -1.168
S3 blue triangle small 0.448
S3 red triangle large 0.365
S3 green triangle large 0.723
S3 blue circle large -1.488
S3 red triangle small -1.024
S3 blue triangle large -2.558
S3 red circle large 0.562
S3 blue circle large 1.743
S3 green circle large -2.736
S3 green triangle small -1.63
S3 blue triangle large 1.27
S3 green circle small -1.307
S3 red triangle small -1.591
S3 green triangle small -2.106
S3 green triangle large 0.447
S3 red circle small -0.598
S3 red circle large -0.215
S3 blue triangle small -1.054
S3 blue circle large -0.015
S3 green circle small -2.184
S3 green triangle large -1.03
S3 green circle large -2.106
S3 green triangle large -0.243
S3 red circle large 0.343
S3 blue circle large -0.924
S3 red triangle large -0.222
S3 green circle small -1.986
S3 blue circle large -1.194
S3 green circle small 0.457
S3 green triangle small -0.845
S3 red circle small -1.359
S3 green triangle small -0.732
S3 blue triangle large 1.573
S3 green circle large -1.195
S3 red triangle small -0.578
S3 green circle small -1.007
S3 blue circle small -1.943
S3 green circle small 0.064
S3 blue circle small -1.151
S3 blue triangle small -0.1
S3 red circle small -0.52
S3 red triangle large 2.53
S3 red circle small -1.509
S3 green circle small -1.629
S3 blue triangle small -0.712
S3 red triangle small -0.747
S3 red triangle large 1.322
S3 red triangle large 0.669
S3 green triangle large 0.883
S3 red triangle large 1.61
S3 red triangle small -1.272
S3 red triangle small -0.933
S3 blue triangle large 0.739
S3 blue circle large -1.688
S3 green circle small 1.532
S3 blue circle large 0.241
S3 blue triangle small 0.598
S3 red triangle large -0.097
S3 red circle small -0.775
S3 green triangle large 1.744
S3 green triangle small -0.822
S3 green circle small -1.989
S3 red circle small 0.548
S3 green triangle small -2.83
S3 green circle large -1.412
S3 red circle large -3.604
S3 green triangle large 0.845
S3 green circle small -1.617
S3 blue triangle large 2.333
S3 red triangle large 0.942
S3 red triangle small -1.43
S3 green triangle large 0.652
S3 blue triangle small -0.806
S3 red triangle large 0.113
S3 red circle large 0.261
S3 green triangle small 0.123
S3 green triangle small 0.409
S3 green triangle small -2.42
S3 blue triangle large 2.173
S3 red triangle large 0.481
S3 blue circle small -0.926
S3 blue circle small -1.907
S3 blue triangle large 1.766
S3 red triangle large -0.941
S3 green circle small -1.654
S3 red circle large -1.868
S3 red circle small -0.863
S3 red triangle small -1.588
S3 green circle small -1.92
S3 blue triangle large 1.293
S3 blue circle large -0.717
S3 green triangle small -2.101
S3 blue circle large -2.048
S3 green circle small -1.718
S3 green triangle large 0.987
S3 red circle small -1.093
S3 red circle large -1.028
S3 red circle small -2.628
S3 blue triangle small 0.569
S3 blue circle small -0.998
S3 green triangle large -1.592
S3 red circle small -0.873
S3 green triangle small -1.36
S3 blue triangle small -0.538
S3 blue triangle small 1.908
S3 blue triangle large 2.15
S3 blue triangle small 0.434
S3 green triangle large 0.104
S3 red circle small -1.054
S3 red triangle large 0.799
S3 green triangle large 4.101
S3 blue circle large -1.225
S3 red circle small -1.622
S3 red circle small -1.384
S3 green circle small -1.322
S3 red triangle small -0.493
S3 red circle large -1.439
S3 red circle small -2.562
S3 red triangle large 1.977
S3 green circle large -0.491
S3 blue triangle small -1.734
S3 blue triangle large 1.229
S3 green circle large 1.53
S3 red triangle small -1.673
S3 green triangle small -0.373
S3 green circle small -1.023
S3 blue circle large -2.695
S3 green circle large 0.513
S3 red circle large -2.309
S3 green circle small 0.507
S3 red circle small -0.689
S3 blue triangle large -0.46
S3 blue triangle small -3.496
S3 red circle large -1.285
S3 blue triangle small -1.378
S3 blue circle large -0.902
S3 green triangle large 1.946
S3 blue circle small -1.465
S3 green triangle small -2.282
S3 blue triangle small -0.753
S3 blue triangle small -0.222
S3 green circle large -1.149
S3 blue circle small -0.621
S3 green triangle small -0.691
S3 red triangle large 0.446
S3 blue circle small -1.785
S3 red circle small 0.367
S3 red circle small -0.748
S3 blue triangle large 2.159
S3 red circle small -1.306
S3 red triangle small -2.191
S3 blue triangle large 0.415
S3 red triangle large 0.264
S3 blue circle small -0.978
S3 green triangle large 0.415
S3 red triangle small -1.363
S3 blue circle small 0.364
S3 red triangle small -1.65
S3 green circle large -0.529
S3 green triangle small 0.82
S3 blue triangle small 0.67
S3 red triangle small -1.279
S3 green triangle large 1.577
S3 green circle large -0.338
S3 red triangle large -0.023
S3 blue circle small 0.464
S3 red circle large -0.735
S3 blue triangle small -0.27
S3 red circle small -2.355
S3 green triangle small -1.286
S3 green triangle large 0.163
S3 blue circle large -0.854
S3 green circle small -2.653
S3 green triangle small 0.632
S3 green circle small -1.067
S3 green triangle small -0.878
S3 green circle small -1.68
S3 blue circle large -1.366
S3 blue circle small 0.534
S3 blue triangle small -0.057
S3 red triangle small -1.125
S3 blue triangle small -0.487
S3 blue triangle large -0.219
S3 green triangle large 1.577
S3 red circle small -2.68
S3 green circle large -2.241
S3 red triangle small -2.227
S3 green triangle large 2.305
S3 green triangle large 1.388
S3 blue circle small -0.035
S3 green triangle small -0.963
S3 green triangle large 0.799
S3 blue triangle small -0.412
S3 blue triangle large 0.67
S3 green triangle large 1.772
S3 red triangle large 1.819
S3 red circle large -0.534
S3 green circle large -0.305
S3 green circle small -0.405
S3 green circle large -1.39
S3 blue triangle large 2.38
S3 red circle small -2.458
S3 green triangle small -2.843
S3 red triangle small -0.383
S3 green circle large 0.007
S3 green circle large -2.515
S3 red triangle large 2.113
S3 green triangle small -1.938
S3 blue circle large 0.866
S3 red circle small 1.325
S3 red circle small -1.006
S3 green triangle small 0.581
S3 blue triangle large 3.175
S3 green circle large 0.263
S3 red triangle small -2.675
S3 blue triangle large 1.771
S3 blue triangle small -0.47
S3 red triangle large 1.384
S3 blue triangle small -0.818
S3 green circle large -1.45
S3 red triangle large 0.2
S3 blue circle large -2.603
S3 red circle small -3.172
S3 green triangle small -0.303
S3 blue triangle small 0.084
S3 red triangle large 1.537
S3 red triangle small 0.749
S3 blue circle small -0.993
S3 green triangle large 1.889
S3 red circle large -2.396
S3 red circle small -0.98
S3 red triangle small -1.768
S3 red triangle small -0.339
S3 blue triangle large 0.726
S3 blue circle large 0.899
S3 green circle small -2.409
S3 blue triangle large 1.365
S3 green triangle large 1.258
S3 green triangle large 0.377
S3 blue triangle large 0.63
S3 red circle small -1.449
S3 green circle large -2.205
S3 red triangle small -1.093
S3 green circle small -2.097
S3 green triangle large 2.445
S3 blue circle large -1.362
S3 red triangle large -0.394
S3 green triangle small -0.935
S3 red circle small 0.092
S3 blue triangle large 1.168
S3 green circle large -2.955
S3 red circle small -2.428
S3 green circle large -3.216
S3 red circle large -2.104
S3 green circle small 0.331
S3 green circle small -0.268
S3 red triangle small -1.768
S3 red triangle large 0.285
S3 red triangle small 0.478
S3 blue circle large -1.747
S3 green triangle small -1.888
S3 green circle large -2.626
S3 green triangle large 0.407
S3 blue triangle large 0.556
S3 blue triangle large 2.446
S3 green circle large -1.603
S3 blue circle small -0.788
S3 blue circle small 0.875
S3 green circle large -0.476
S3 blue circle large -2.188
S3 green triangle large 0.39
S3 red circle small 1.64
S3 green triangle large -0.185
S3 blue triangle large 1.748
S3 blue circle large -1.366
S3 green triangle small -1.297
S3 blue triangle large 3.647
S3 red triangle large 1.465
S3 green triangle large 2.605
S3 blue triangle large 4.134
S3 green circle large -1.675
S3 green triangle large -0.2
S3 blue triangle small -1.571
S3 red circle large -2.666
S3 red circle small -2.919
S3 green triangle small -1.04
S3 green circle small -1.643
S3 red circle small 0.373
S3 red triangle small -1.44
S3 blue circle large -0.491
S3 green circle large -1.21
S3 green triangle large 0.873
S3 green circle small -2.781
S3 blue triangle small -1.268
S3 green circle large -1.643
S3 green triangle large 1.874
S3 blue circle large -0.975
S3 green triangle small -1.184
S3 red circle large -2.428
S3 blue triangle large 1.021
S3 blue circle small 0.58
S3 blue circle small -1.943
S3 green circle small 2.27
S3 red triangle large 2.264
S3 blue circle large -2.593
S3 green circle large -1.167
S3 green circle small -2.101
S3 blue circle small -0.077
S3 green triangle small -2.494
S3 blue circle large -0.024
S3 green triangle large 1.165
S3 green circle large 0.352
S3 red circle large -1.095
S3 green triangle small -1.903
S3 red triangle small -0.096
S3 red triangle small 0.461
S3 green triangle large 1.481
S3 blue triangle small -1.865
S3 green circle large -1.952
S3 blue triangle small 0.39
S3 red triangle small -1.905
S3 red triangle small -1.658
S3 blue triangle large -2.228
S3 blue triangle small 0.411
S3 green circle large -0.247
S3 red triangle large 0.574
S3 blue circle small -1.551
S3 red circle large -0.182
S3 red circle small -1.656
S3 blue circle large -1.802
S3 blue triangle small 0.7
S3 blue triangle large 1.171
S3 blue triangle large 0.128
S3 red triangle large 1.377
S3 blue circle small -2.165
S3 red circle small -0.388
S3 blue circle large -0.872
S3 blue triangle small -1.403
S3 blue circle small -0.309
S3 blue circle small -2.174
S3 red circle large -2.95
S3 red triangle small 0.778
S3 green triangle large 0.337
S3 red circle large -0.866
S3 red circle large -2.715
S3 blue triangle large 0.334
S3 red triangle large -0.789
S3 green circle small -0.868
S3 red circle large -0.521
S3 blue circle large 0.233
S3 blue triangle small -0.774
S3 red circle large -2.095
S3 green circle large -1.814
S3 red circle large -1.216
S3 green circle small -2.902
S3 blue triangle small -1.382
S3 red circle large 0.181
S3 green triangle large 0.916
S3 blue circle large -1.386
S3 green circle large 0.164
S3 blue circle large -0.34
S3 blue circle small -0.942
S3 green circle small -1.809
S3 green circle large -2.524
S3 green triangle small -0.766
S3 red circle small -0.311
S3 green triangle small -1.969
S3 blue triangle large 1.864
S3 red circle small -0.45
S3 green triangle small -1.863
S3 green triangle large -1.498
S3 green triangle small -2.113
S3 blue circle small 0.587
S3 green triangle small -2.186
S3 blue circle large 0.562
S3 blue triangle small -1.712
S3 green circle large -1.536
S3 red circle small -1.362
S3 red circle small -1.32
S3 blue circle small -1.16
S3 blue triangle large 2.993
S3 green triangle large -1.535
S3 blue circle large -0.462
S3 blue circle large -1.391
S3 red circle large -1.103
S3 blue circle large -2.113
S3 red triangle small -0.844
S3 blue triangle small -2.421
S3 red circle large -1.487
S3 blue circle large -0.267
S3 green circle small -0.286
S3 red circle large 0.442
S3 red circle small -1.604
S3 red circle small -1.374
S3 red triangle small -0.904
S3 green triangle large -0.269
S3 red triangle small -0.744
S3 red circle small -1.305
S3 red circle large -1.722
S3 blue triangle large 1.373
S3 blue circle large 0.526
S3 blue circle small -1.016
S3 red circle large -0.446
S3 green circle small -1.189
S3 blue circle large 0.598
S3 blue triangle small 0.706
S3 red circle large -2.104
S3 green circle large -0.149
S3 green circle small -0.746
S3 red triangle large 0.589
S3 red triangle large -0.502
S3 red triangle small -2.088
S3 red triangle small 0.362
S3 green triangle small -1.925
S3 green triangle small -2.078
S3 blue triangle large 0.896
S3 blue triangle large 1.293
S3 red circle large -2.815
S3 red circle large -0.987
S3 green triangle large 0.973
S3 blue circle large -1.27
S3 blue triangle large 1.189
S3 blue triangle small -1.189
S3 blue circle small -2.048
S3 red circle large -1.921
S3 red triangle large -0.503
S3 red triangle small -1.336
S3 green triangle small -1.706
S3 green triangle large -0.192
S3 blue circle small -2.809
S3 blue circle small -1.276
S4 blue circle small 4.31
S4 green circle large 4.427
S4 green triangle small 4.417
S4 red circle small 4.775
S4 green triangle large 5.865
S4 blue circle small 3.06
S4 blue triangle large 7.144
S4 blue triangle large 7.694
S4 green circle small 3.17
S4 green circle large 4.939
S4 green circle small 4.568
S4 blue circle small 5.182
S4 red triangle large 5.826
S4 green triangle small 3.737
S4 red triangle small 3.681
S4 blue triangle small 4.765
S4 blue triangle large 5.479
S4 green triangle small 4.67
S4 blue triangle large 3.96
S4 red circle large 2.854
S4 red triangle small 3.936
S4 green circle small 1.958
S4 green triangle large 5.394
S4 red circle large 3.487
S4 red circle small 6.98
S4 green triangle small 3.963
S4 red triangle large 5.656
S4 blue triangle small 4.147
S4 red circle small 4.644
S4 green triangle small 4.215
S4 red triangle large 7.126
S4 blue triangle large 7.1
S4 green triangle small 5.999
S4 green circle large 4.447
S4 red circle small 5.871
S4 blue circle large 5.036
S4 red circle large 3.383
S4 blue circle large 3.359
S4 blue circle large 5.659
S4 red circle large 4.415
S4 red triangle large 4.097
S4 green circle large 4.799
S4 red triangle large 6.854
S4 blue triangle large 6.484
S4 green triangle large 6.014
S4 green circle large 5.568
S4 blue circle small 4.836
S4 green triangle small 4.009
S4 blue triangle large 6.917
S4 red circle large 3.243
S4 red circle small 2.593
S4 green triangle large 7.045
S4 blue circle small 5.317
S4 blue circle large 5.19
S4 green triangle large 6.937
S4 red circle large 3.044
S4 red triangle small 3.604
S4 blue triangle small 3.999
S4 blue circle large 4.265
S4 green circle small 3.137
S4 red circle small 3.942
S4 green triangle small 5.102
S4 blue triangle large 5.927
S4 blue triangle large 7.001
S4 green triangle large 7.243
S4 green triangle small 5.332
S4 red circle small 4.262
S4 red circle small 2.384
S4 red triangle large 8.044
S4 green circle small 4.428
S4 green triangle large 6.533
S4 green circle small 2.032
S4 green triangle large 5.567
S4 green triangle large 6.321
S4 green triangle small 3.814
S4 green circle large 3.407
S4 red circle small 2.923
S4 green triangle small 4.385
S4 green circle small 3.207
S4 red circle large 4.282
S4 red triangle small 2.395
S4 red triangle small 5.361
S4 red circle small 3.436
S4 blue triangle small 4.968
S4 green circle small 3.129
S4 red triangle large 6.306
S4 red triangle small 3.909
S4 red circle large 4.747
S4 green circle small 3.582
S4 green triangle small 3.816
S4 blue circle small 5.829
S4 blue triangle large 5.791
S4 blue triangle small 3.685
S4 green circle small 2.592
S4 green circle large 5.375
S4 green circle large 5.056
S4 red circle large 4.039
S4 red triangle large 6.015
S4 red triangle large 6.597
S4 blue triangle small 5.124
S4 green circle small 1.84
S4 green triangle large 6.699
S4 red triangle large 7.263
S4 green circle large 4.507
S4 red triangle small 5.258
S4 green circle large 4.061
S4 blue triangle small 5.055
S4 red triangle small 3.043
S4 blue circle large 4.025
S4 red triangle small 4.103
S4 green triangle small 2.243
S4 green triangle small 3.686
S4 blue triangle small 6.332
S4 blue circle small 6.19
S4 blue triangle large 5.864
S4 blue triangle large 6.366
S4 red circle small 4.167
S4 red circle large 3.643
S4 blue circle large 5.386
S4 red triangle small 2.666
S4 blue circle small 5.717
S4 red circle small 5.446
S4 blue circle large 5.198
S4 blue triangle small 4.296
S4 red circle large 3.653
S4 green circle large 4.689
S4 green triangle large 7.958
S4 green triangle small 3.681
S4 red circle small 3.852
S4 red circle large 3.16
S4 blue circle small 4.109
S4 blue triangle small 3.719
S4 green triangle small 4.537
S4 blue circle large 3.88
S4 blue circle small 4.896
S4 green triangle large 5.378
S4 green circle large 5.554
S4 red triangle large 6.14
S4 blue circle small 3.222
S4 green triangle small 4.979
S4 red circle large 6.057
S4 blue circle small 5.401
S4 blue triangle small 4.081
S4 blue circle small 3.941
S4 green circle small 3.283
S4 red triangle small 3.066
S4 green triangle small 4.638
S4 red triangle small 5.558
S4 red circle large 3.327
S4 blue circle small 3.787
S4 blue circle large 5.81
S4 blue circle large 5.07
S4 red circle small 2.829
S4 blue triangle large 4.734
S4 blue circle small 3.295
S4 red circle small 3.342
S4 blue circle large 4.484
S4 blue triangle large 7.541
S4 green circle small 6.06
S4 green triangle large 6.72
S4 blue triangle small 5.16
S4 blue circle small 6.186
S4 red triangle large 7.005
S4 green triangle small 2.635
S4 green triangle large 5.881
S4 blue circle small 3.431
S4 green circle small 3.407
S4 red triangle small 3.335
S4 blue circle large 4.391
S4 green triangle large 6.715
S4 blue triangle small 4.228
S4 green triangle large 7.188
S4 green circle large 5.389
S4 blue triangle large 8.042
S4 green circle small 3.029
S4 green triangle large 8.558
S4 blue triangle large 6.021
S4 blue circle small 6.063
S4 red triangle small 3.043
S4 red circle small 4.475
S4 red circle small 4.418
S4 blue circle small 5.036
S4 green circle small 5.998
S4 red circle small 4.085
S4 green circle large 1.913
S4 red triangle small 5.76
S4 red triangle small 3.457
S4 red triangle large 5.808
S4 green circle large 5.903
S4 red circle large 3.356
S4 green triangle large 6.654
S4 red triangle large 5.997
S4 red triangle small 4.671
S4 green triangle small 6.013
S4 green triangle small 5.283
S4 red triangle small 4.571
S4 blue circle large 3.957
S4 red triangle small 4.389
S4 red triangle small 4.631
S4 blue triangle small 4.711
S4 green triangle large 6.902
S4 green triangle large 5.799
S4 red circle large 4.537
S4 red circle large 3.469
S4 green triangle large 5.373
S4 blue circle large 3.346
S4 green circle small 4.127
S4 red triangle large 6.434
S4 green triangle large 6.703
S4 red circle small 5.027
S4 red triangle small 3.13
S4 green triangle large 5.06
S4 blue circle small 4.206
S4 blue circle large 5.211
S4 green circle small 5.224
S4 green circle small 5.098
S4 red circle small 4.683
S4 red circle large 6.103
S4 green triangle small 5.411
S4 red triangle small 3.986
S4 green circle small 2.765
S4 red triangle large 7.474
S4 green triangle large 6.968
S4 blue triangle large 5.486
S4 blue circle small 3.96
S4 blue triangle small 4.324
S4 green triangle large 4.076
S4 green triangle small 3.722
S4 red circle small 5.591
S4 green circle small 1.912
S4 red circle large 3.826
S4 red triangle large 5.303
S4 red circle small 3.021
S4 red circle large 3.003
S4 red circle small 4.179
S4 blue circle large 4.282
S4 green circle large 3.362
S4 red circle large 5.028
S4 blue circle small 4.526
S4 blue circle large 4.512
S4 red triangle large 5.712
S4 blue triangle large 7.322
S4 blue triangle small 5.542
S4 green circle large 3.967
S4 green triangle large 4.465
S4 blue circle large 4.727
S4 blue triangle large 3.822
S4 green circle large 3.19
S4 blue triangle large 7.704
S4 blue triangle large 6.673
S4 red circle large 2.762
S4 blue triangle small 3.241
S4 blue triangle small 4.595
S4 blue triangle small 3.864
S4 green triangle small 4.505
S4 blue triangle large 6.269
S4 red circle small 5.165
S4 green triangle small 5.038
S4 red triangle small 5.269
S4 green triangle large 7.213
S4 green triangle small 5.227
S4 red triangle small 4.447
S4 red circle large 5.681
S4 green circle large 3.115
S4 blue circle small 4.971
S4 blue circle small 4.51
S4 blue triangle large 8.443
S4 red triangle large 6.533
S4 blue circle small 3.844
S4 green circle small 3.568
S4 blue triangle large 8.876
S4 green triangle small 3.758
S4 blue circle large 4.145
S4 green circle small 3.246
S4 blue circle large 5.575
S4 red triangle small 4.807
S4 red circle large 4.397
S4 red triangle large 6.782
S4 blue triangle large 5.756
S4 green circle large 5.67
S4 blue circle small 5.63
S4 blue triangle small 4.486
S4 green triangle large 6.194
S4 green triangle large 5.829
S4 green triangle small 5.004
S4 blue circle small 4.781
S4 blue triangle small 2.872
S4 red triangle small 4.756
S4 blue triangle small 3.584
S4 green triangle large 6.304
S4 red triangle small 4.299
S4 green circle small 4.106
S4 green triangle small 5.297
S4 green circle large 4.718
S4 green triangle large 4.611
S4 red triangle small 3.986
S4 red circle small 3.658
S4 green circle small 4.277
S4 green circle large 5.453
S4 blue circle small 5.069
S4 red circle small 4.238
S4 green circle small 4.465
S4 green circle small 4.198
S4 red circle small 3.341
S4 blue triangle small 3.363
S4 green triangle large 4.92
S4 red triangle small 3.272
S4 blue triangle large 6.48
S4 green triangle large 5.505
S4 red triangle small 3.676
S4 blue triangle large 9.102
S4 blue triangle small 5.362
S4 red triangle small 4.932
S4 green triangle small 4.533
S4 red triangle large 5.275
S4 blue circle large 3.87
S4 red triangle small 5.859
S4 red triangle small 4.568
S4 green circle small 6.15
S4 blue circle large 5.962
S4 blue circle large 5.841
S4 green triangle large 7.308
S4 blue triangle large 5.503
S4 red circle large 2.904
S4 blue circle small 6.445
S4 red triangle large 6.039
S4 red circle large 3.294
S4 green triangle large 4.995
S4 red circle small 4.272
S4 blue circle large 3.707
S4 blue circle large 2.389
S4 red circle large 3.865
S4 red triangle large 5.152
S4 red circle small 2.587
S4 red circle large 3.366
S4 red triangle small 4.657
S4 blue triangle small 4.963
S4 red triangle large 6.821
S4 green circle large 5.419
S4 red circle small 4.535
S4 red circle small 5.577
S4 green triangle small 3.265
S4 blue circle small 3.521
S4 green circle small 3.961
S4 blue circle large 5.423
S4 blue triangle large 6.523
S4 red circle small 3.16
S4 blue circle small 3.846
S4 blue circle small 3.84
S4 green circle large 5.476
S4 blue triangle large 7.476
S4 red triangle small 4.692
S4 blue circle large 3.346
S4 blue circle large 3.63
S4 red circle large 5.122
S4 blue triangle large 5.683
S4 red triangle large 5.775
S4 green circle large 4.146
S4 blue circle large 4.066
S4 red circle large 4.939
S4 red triangle small 4.768
S4 green circle small 5.247
S4 green circle large 3.823
S4 red triangle large 4.9
S4 green circle large 1.742
S4 red circle small 3.285
S4 blue circle small 4.933
S4 blue circle small 5.252
S4 blue triangle large 7.625
S4 green circle large 6.154
S4 blue circle large 2.717
S4 red circle small 3.287
S4 red triangle small 4.055
S4 blue circle small 4.782
S4 green circle large 6.125
S4 red triangle small 3.554
S4 red triangle large 4.533
S4 blue circle large 4.481
S4 green triangle large 5.555
S4 red triangle large 5.326
S4 green triangle large 5.617
S4 red triangle large 5.077
S4 green triangle large 4.994
S4 blue circle large 2.779
S4 red triangle large 5.218
S4 blue triangle small 5.71
S4 red triangle small 2.631
S4 red triangle large 7.363
S4 blue triangle small 6.089
S4 blue circle small 3.084
S4 blue circle small 2.818
S4 blue triangle small 5.361
S4 blue triangle small 5.117
S4 blue circle small 5.19
S4 blue circle large 5.814
S4 blue triangle large 6.604
S4 green circle large 3.442
S4 red circle large 4.238
S4 green triangle small 3.185
S4 blue circle large 4.65
S4 blue circle large 5.387
S4 green circle small 5.017
S4 green circle large 2.895
S4 red circle large 3.321
S4 blue triangle large 7.072
S4 blue triangle small 2.5
S4 red triangle small 2.282
S4 red triangle large 5.635
S4 green triangle large 6.515
S4 green circle small 1.906
S4 blue triangle small 4.193
S4 blue triangle small 5.47
S4 blue triangle small 3.229
S4 green circle large 4.481
S4 green circle small 4.233
S4 red triangle large 5.349
S4 green triangle large 5.59
S4 red triangle large 5.149
S4 green circle small 3.787
S4 green triangle large 5.507
S4 green circle large 4.763
S4 blue triangle small 5.118
S4 green circle small 3.864
S4 green circle large 2.831
S4 red triangle large 6.262
S4 green triangle small 3.685
S4 red triangle small 5.116
S4 red triangle large 6.408
S4 green triangle small 3.412
S4 blue triangle small 4.687
S4 green triangle large 5.017
S4 green triangle small 5.076
S4 blue circle large 5.015
S4 blue triangle small 5.627
S4 green circle large 4.806
S4 red circle large 3.733
S4 blue triangle large 6.897
S4 green circle large 3.687
S4 blue triangle small 5.617
S4 blue triangle large 5.366
S4 red circle small 5.054
S4 blue circle small 5.098
S4 red triangle small 5.383
S4 blue triangle large 7.684
S4 blue circle large 4.263
S4 red circle large 5.685
S4 green circle large 3.359
S4 blue circle large 5.546
S4 green circle small 2.297
S4 red triangle large 4.909
S4 red circle small 3.631
S4 red circle small 5.155
S4 blue triangle small 3.701
S4 blue triangle large 5.766
S4 green triangle small 3.804
S4 blue triangle small 4.436
S4 green circle small 2.643
S4 red circle small 3.534
S4 green triangle small 4.743
S4 red triangle small 3.698
S4 red triangle large 3.648
S4 green circle large 2.03
S4 blue triangle large 7.048
S4 green triangle small 3.822
S4 red circle large 4.917
S4 blue circle large 4.986
S4 green triangle small 5.778
S4 blue triangle small 2.95
S4 blue triangle small 4.726
S4 green triangle small 3.685
S4 red triangle large 4.167
S4 blue triangle small 3.153
S4 red triangle large 6.234
S4 blue triangle large 8.35
S4 red circle large 2.863
S4 red circle large 2.142
S4 green circle small 5.598
S4 blue circle large 4.827
S4 red triangle large 5.951
S4 green circle small 3.933
S4 green circle small 5.399
S4 red circle large 3.396
S4 red circle large 4.993
S4 green triangle small 2.408
S4 green triangle small 4.714
S4 green triangle small 5.269
S4 blue circle small 4.704
S4 red triangle large 6.931
S4 red circle small 3.912
S4 red circle small 2.909
S4 green circle large 2.96
S4 blue circle large 4.173
S4 green circle large 2.616
S4 green circle large 4.322
S4 blue circle small 2.976
S4 blue circle large 5.23
S4 green circle large 4.511
S4 red circle small 2.517
S4 red triangle large 7.082
S4 blue circle small 3.853
S4 red triangle small 4.694
S4 blue circle large 4.053
S4 green circle small 3.718
S4 green triangle small 4.927
S4 green circle large 4.052
S4 red circle small 3.497
S4 red circle large 2.213
S4 red circle small 2.999
S4 green triangle large 7.694
S4 blue circle small 6.185
S4 green circle large 2.434
S4 blue triangle small 4.344
S4 red triangle small 4.841
S4 blue triangle small 3.872
S4 red triangle small 4.656
S4 green circle large 5.577
S4 blue circle small 4.036
S4 green circle small 5.318
S4 green circle small 1.217
S4 red circle large 2.964
S4 blue triangle large 6.668
S4 red triangle large 5.401
S4 green circle large 3.763
S4 red circle large 2.312
S4 blue triangle small 3.113
S4 red circle large 2.845
S4 green triangle small 3.78
S4 green triangle large 5.948
S4 green circle large 4.738
S4 blue circle small 4.868
S4 red circle small 3.061
S4 green triangle small 3.468
S4 green triangle large 6.761
S4 red circle large 5.446
S4 red circle small 5.969
S4 blue triangle large 6.875
S4 blue circle large 4.03
S4 red circle large 5.158
S4 blue triangle small 5.93
S4 red circle large 4.546
S4 green triangle large 7.218
S4 red circle small 2.542
S4 blue circle small 5.129
S4 red triangle large 5.935
S4 blue circle small 3.645
S4 green triangle small 5.219
S4 blue circle large 3.156
S4 green circle small 4.119
S4 blue triangle small 3.075
S4 blue circle large 4.79
S4 red circle small 4.946
S4 red circle small 1.9
S4 red circle large 4.747
S4 blue circle large 3.866
S4 green circle large 4.534
S4 green triangle large 5.774
S4 green circle small 2.976
S4 red triangle large 5.799
S4 green triangle large 7.41
S4 blue triangle small 5.19
S4 red circle large 5.799
S4 red circle small 4.59
S4 green triangle large 4.754
S4 red triangle large 6.407
S4 green triangle small 4.176
S4 blue triangle large 6.026
S4 blue triangle large 6.778
S4 red triangle small 3.828
S4 red triangle large 7.532
S4 blue triangle large 8.938
S4 green circle small 4.816
S4 red triangle small 3.415
S4 blue triangle small 4.962
S4 blue triangle large 7.845
S4 red circle small 3.403
S4 green circle small 4.167
S4 green triangle small 4.271
S4 blue circle large 3.332
S4 blue circle small 4.372
S4 blue triangle large 7.234
S4 green circle small 3.961
S4 blue triangle large 7.437
S4 red triangle small 3.548
S4 red circle large 4.708
S4 blue circle large 5.275
S4 red triangle small 5.941
S4 blue circle small 4.688
S4 blue circle small 4.778
S4 green circle small 2.215
S4 blue triangle large 7.095
S4 red triangle large 7.526
S4 blue triangle large 7.715
S4 green triangle small 4.783
S4 blue triangle small 2.435
S4 red circle large 2.288
S4 red triangle large 6.217
S4 green circle large 3.056
S4 green circle large 3.829
S4 green triangle large 6.251
S4 green circle small 5.814
S5 green triangle large 2.089
S5 blue circle small 3.242
S5 red triangle large 1.923
S5 blue triangle large 4.518
S5 green circle small 0.873
S5 blue circle large 1.924
S5 green triangle small 2.053
S5 red circle small 2.644
S5 blue triangle large 2.494
S5 green triangle small 0.868
S5 red triangle small 2.661
S5 blue triangle large 4.069
S5 green circle large 1.832
S5 green circle small 0.676
S5 blue circle large 2.836
S5 green circle large 1.738
S5 green circle small 0.276
S5 blue triangle small 2.67
S5 red triangle large 3.375
S5 blue triangle small 1.262
S5 green triangle small 1.577
S5 red circle small 1.168
S5 blue triangle large 5.138
S5 blue circle small 2.186
S5 blue circle large 1.156
S5 blue triangle small 1.07
S5 red circle large 4.146
S5 red circle large 4.51
S5 red circle small 1.634
S5 red triangle small 2.217
S5 green circle small 1.725
S5 green triangle small 0.575
S5 green triangle small 2.126
S5 blue triangle small 2.967
S5 green circle small 3.257
S5 green triangle small 1.694
S5 green circle large 2.222
S5 red circle small 1.662
S5 blue circle large 2.292
S5 red triangle small 0.904
S5 blue circle small 3.235
S5 red circle large 3.174
S5 red circle small 4.216
S5 blue circle large 3.568
S5 red circle large 1.279
S5 red triangle large 4.882
S5 green circle large 2.054
S5 red circle small 2.762
S5 red circle small 2.665
S5 green triangle small 1.067
S5 red circle large 1.866
S5 green triangle small 4.081
S5 blue triangle large 3.647
S5 green triangle large 4.808
S5 blue circle large 3.824
S5 red triangle large 4.005
S5 blue triangle small 3.104
S5 red circle small 2.023
S5 red triangle small 3.264
S5 blue circle large 2.794
S5 blue triangle large 4.985
S5 blue circle small 2.491
S5 green triangle large 5.476
S5 blue circle small 2.724
S5 blue triangle large 6.572
S5 red circle large 3.492
S5 blue triangle large 4.314
S5 red triangle large 3.363
S5 blue circle small 0.824
S5 red triangle large 5.693
S5 red circle large 2.514
S5 blue triangle small 1.656
S5 red circle large 4.46
S5 red circle large 1.704
S5 blue circle large 4.442
S5 red triangle large 5.28
S5 blue circle large 2.237
S5 red triangle small 2.673
S5 green circle small 1.513
S5 green triangle small 2.746
S5 blue triangle small 2.119
S5 green circle small 3.128
S5 red triangle small 3.176
S5 green triangle small 2.494
S5 green triangle large 3.408
S5 blue triangle large 3.261
S5 green triangle small 1.592
S5 green triangle large 3.893
S5 green triangle small 3.354
S5 blue circle large 1.945
S5 blue triangle small 0.092
S5 green triangle small 0.145
S5 blue triangle small 2.175
S5 blue triangle large 4.816
S5 red triangle small 1.15
S5 green circle small 1.331
S5 red triangle large 4.071
S5 red circle small 0.977
S5 green triangle large 5.069
S5 red circle large 1.294
S5 red circle large 1.496
S5 blue triangle large 5.303
S5 blue circle small 4.246
S5 green circle small 5.849
S5 green triangle large 3.272
S5 blue circle small 2.369
S5 blue triangle large 4.33
S5 blue circle small 1.953
S5 green circle large 0.917
S5 green circle large 2.987
S5 red triangle small 2.658
S5 green triangle large 5.292
S5 green circle small 2.99
S5 red circle large 0.321
S5 red triangle small 1.809
S5 blue circle small 3.279
S5 green triangle small 2.431
S5 blue triangle large 3.571
S5 blue triangle small 1.935
S5 red triangle large 4.599
S5 red circle small 2.523
S5 blue triangle large 3.312
S5 green triangle large 3.742
S5 green triangle large 3.598
S5 red triangle large 3.858
S5 blue triangle small 3.054
S5 green circle small 2.464
S5 red triangle small 1.877
S5 red circle small 1.072
S5 red circle small 0.581
S5 red circle large 1.786
S5 red circle large 1.492
S5 green circle large 2.438
S5 blue circle large 5.507
S5 red triangle small 1.813
S5 green circle small -0.108
S5 blue triangle small 4.116
S5 red triangle large 3.95
S5 red triangle small 2.791
S5 green circle small 3.859
S5 red triangle large 3.202
S5 blue triangle small 4.013
S5 red circle large 2.089
S5 red circle small 3.176
S5 blue circle small 0.495
S5 red triangle small 2.825
S5 green triangle small 1.65
S5 blue circle large 2.71
S5 green triangle small 0.71
S5 blue circle large 2.176
S5 red triangle small 1.276
S5 blue triangle small 2.088
S5 red triangle large 5.708
S5 green circle small 1.947
S5 green triangle large 4.915
S5 red circle large 2.192
S5 red circle large 2.128
S5 red triangle large 2.142
S5 red circle small 0.826
S5 green circle small 1.399
S5 red triangle large 3.183
S5 blue triangle large 4.172
S5 blue circle small 1.395
S5 red circle large 1.045
S5 green circle large 1.18
S5 green circle small 2.6
S5 blue circle small 2.223
S5 blue triangle large 4.66
S5 blue triangle large 5.508
S5 red triangle small 2.019
S5 green circle large 1.753
S5 blue circle large 1.885
S5 blue triangle large 5.272
S5 red circle large 4.058
S5 green triangle small 1.351
S5 blue circle large 2.651
S5 blue circle small 2.705
S5 red circle large 2.375
S5 green circle small 2.12
S5 red circle large 1.148
S5 green circle small 2.257
S5 green circle small 0.925
S5 blue triangle small 1.596
S5 blue circle large 3.731
S5 green circle large 2.35
S5 green triangle small 1.957
S5 blue circle small 4.315
S5 red circle small 0.117
S5 red triangle large 4.783
S5 blue triangle small 1.975
S5 green triangle large 3.766
S5 red triangle large 3.806
S5 red circle large 2.549
S5 blue triangle small 2.695
S5 red circle large 0.549
S5 red circle large 1.631
S5 green triangle large 4.092
S5 green circle large 1.045
S5 green triangle large 3.462
S5 blue circle small 2.943
S5 green triangle small 2.508
S5 green triangle small 2.031
S5 red triangle large 4.359
S5 green circle large 1.799
S5 red triangle small 1.836
S5 green circle small 0.985
S5 green circle large 1.427
S5 green triangle large 4.474
S5 blue triangle small 2.141
S5 red circle small 4.192
S5 blue circle large 4.036
S5 red triangle small 3.438
S5 blue circle large 2.08
S5 red triangle small 2.453
S5 green triangle small 1.828
S5 blue circle small 2.524
S5 blue circle large 1.961
S5 red triangle small 1.641
S5 red triangle large 2.935
S5 green circle small 1.559
S5 blue triangle small 2.387
S5 green circle small 3.49
S5 blue triangle large 3.858
S5 blue triangle large 4.369
S5 blue circle large 3.484
S5 blue triangle small 2.458
S5 green triangle large 4.238
S5 red triangle large 6.188
S5 blue circle small 3.543
S5 blue triangle large 5.914
S5 green circle large 2.041
S5 red circle large 2.224
S5 blue circle large 2.339
S5 red circle small 2.969
S5 green circle large 3.141
S5 green circle large 2.555
S5 blue circle large 2.005
S5 green triangle large 3.893
S5 blue triangle large 5.06
S5 blue triangle large 6.186
S5 green circle small 4.029
S5 red circle small 3.168
S5 green triangle large 3.765
S5 red triangle small 3.072
S5 green triangle small 1.557
S5 green triangle large 2.738
S5 red circle large 2.558
S5 blue triangle small 2.811
S5 blue triangle small 3.364
S5 green triangle large 4.74
S5 green circle large 0.217
S5 red circle small 2.613
S5 red circle large 0.7
S5 red triangle small 0.873
S5 blue circle small 1.591
S5 blue triangle large 4.929
S5 blue triangle large 6.295
S5 red triangle small 2.199
S5 blue triangle large 4.102
S5 red triangle small 2.75
S5 blue triangle small 2.757
S5 red circle small 1.343
S5 green triangle small 2.922
S5 red circle small 2.6
S5 blue circle large 2.706
S5 red triangle small 2.316
S5 green triangle small 3.164
S5 red triangle small 3.681
S5 blue circle large 1.547
S5 red triangle large 4.77
S5 red circle small 4.302
S5 blue circle large 4.379
S5 red circle large 2.769
S5 blue circle small 1.348
S5 red circle large 1.225
S5 red circle small 4.05
S5 blue triangle small 1.634
S5 green circle large 1.963
S5 blue circle small 2.497
S5 green triangle small 1.889
S5 green circle small 1.339
S5 green circle large 3.672
S5 blue circle large 3.979
S5 red triangle large 2.937
S5 red circle large 2.724
S5 blue triangle small 3.418
S5 red circle large 1.497
S5 red circle large 0.442
S5 blue circle large 2.348
S5 blue circle small 2.019
S5 red circle small 0.866
S5 green circle small 2.193
S5 red circle large 1.691
S5 red triangle large 2.207
S5 green circle large 2.588
S5 green circle small 1.959
S5 blue triangle small 2.283
S5 green triangle small 2.321
S5 red triangle large 4.71
S5 red triangle small 1.324
S5 blue circle small 2.665
S5 green triangle large 5.29
S5 blue triangle small 1.457
S5 green circle large 0.619
S5 red circle small 1.044
S5 blue circle small 3.376
S5 blue triangle large 3.248
S5 green triangle large 2.849
S5 green circle small 2.272
S5 green circle large 2.635
S5 green circle large 2.021
S5 blue triangle small 3.85
S5 blue circle large 3.439
S5 green triangle small 3.762
S5 blue triangle small 3.808
S5 green triangle large 4.012
S5 green circle large 2.13
S5 red triangle small 1.379
S5 green triangle large 2.953
S5 green circle small 0.62
S5 red triangle large 5.044
S5 red triangle large 4.493
S5 green triangle large 5.073
S5 blue circle large 1.56
S5 green triangle small 1.934
S5 red circle small 1.89
S5 green circle large 1.567
S5 red triangle large 3.633
S5 red triangle small 1.678
S5 red circle large 1.777
S5 blue triangle large 3.328
S5 blue circle large 2.224
S5 red triangle large 2.646
S5 red circle small 0.919
S5 green triangle large 3.456
S5 green triangle large 3.112
S5 green circle small 2.896
S5 blue circle small 2.547
S5 blue triangle small 2.316
S5 blue circle small 2.016
S5 red triangle small 1.869
S5 blue triangle small 2.116
S5 blue circle small 2.359
S5 red triangle small 1.353
S5 green triangle small 1.841
S5 blue triangle large 4.663
S5 blue circle large 2.823
S5 blue triangle large 6.369
S5 blue triangle large 4.04
S5 blue circle large 1.64
S5 red triangle large 5.104
S5 blue triangle large 2.967
S5 green triangle small 1.47
S5 green circle small 2.252
S5 red triangle small 2.405
S5 green circle small 3.27
S5 blue triangle small 3.35
S5 red circle large 3.471
S5 green triangle large 2.03
S5 green triangle small 1.729
S5 red circle large 0.414
S5 green circle small 2.207
S5 red triangle large 3.5
S5 red triangle small 2.432
S5 green triangle large 4.089
S5 blue circle small 1.415
S5 green circle small 3.619
S5 red triangle large 4.506
S5 blue triangle large 4.808
S5 blue triangle large 3.677
S5 green triangle small 3.059
S5 red circle small 3.855
S5 blue circle small -0.248
S5 blue triangle large 3.694
S5 green triangle small 3.66
S5 blue triangle large 4.141
S5 green triangle small 3.599
S5 green circle large 0.573
S5 green triangle small 0.644
S5 blue triangle large 5.478
S5 green circle small 1.613
S5 blue triangle small 2.983
S5 red circle large 1.489
S5 green circle large 2.692
S5 blue circle large 1.696
S5 blue triangle small 4.125
S5 blue circle small 2.13
S5 green circle large 2.029
S5 red circle small 3.368
S5 red triangle large 5.733
S5 green circle small 2.949
S5 red circle large 2.224
S5 green triangle large 4.837
S5 blue circle large 3.229
S5 green triangle large 3.879
S5 blue circle small 3.975
S5 green circle large 4.048
S5 red circle small 3.244
S5 blue circle small 3.718
S5 green triangle small 3.803
S5 blue triangle large 3.443
S5 blue triangle small 3.818
S5 red triangle small 1.795
S5 green circle small 2.489
S5 green circle small 1.6
S5 blue circle large 3.27
S5 green triangle large 2.559
S5 blue triangle small 4.142
S5 blue circle large 3.465
S5 green circle large 2.27
S5 blue circle small 2.285
S5 red triangle small 2.797
S5 red triangle large 4.78
S5 red circle small 1.543
S5 blue circle large 1.204
S5 blue triangle small 1.286
S5 red triangle small 2.223
S5 green triangle small 2.387
S5 green triangle small 3.208
S5 blue circle large 2.863
S5 green triangle small 1.619
S5 red triangle large 4.819
S5 green triangle large 3.415
S5 blue circle large 3.232
S5 red triangle large 2.649
S5 blue circle large 1.03
S5 green triangle large 3.252
S5 red circle small 0.673
S5 green triangle small 1.977
S5 blue triangle small 3.128
S5 blue triangle large 3.082
S5 blue triangle large 5.244
S5 green triangle large 4.41
S5 green circle large 3.455
S5 red triangle small 3.796
S5 green circle large 1.648
S5 blue circle large 4.267
S5 blue triangle large 4.015
S5 blue triangle large 3.262
S5 green circle large 2.909
S5 blue circle large 2.831
S5 green circle large 2.322
S5 green circle small 3.639
S5 green circle small 3.318
S5 green circle large 3.295
S5 red circle small 2.057
S5 red circle small 2.831
S5 green triangle large 2.875
S5 blue circle small 1.26
S5 red triangle large 3.248
S5 green circle large 1.413
S5 blue circle small 1.207
S5 red circle small 1.18
S5 green circle small 2.598
S5 green triangle large 3.497
S5 red circle small 4.823
S5 red triangle large 4.756
S5 red circle large 3.929
S5 green triangle large 5.143
S5 red triangle small 1.193
S5 green triangle small 1.858
S5 blue circle small 2.586
S5 red circle large 1.44
S5 blue circle small 4.397
S5 red circle small 2.006
S5 green circle large 2.648
S5 red triangle small -0.04
S5 blue triangle small 2.4
S5 green triangle large 2.223
S5 red circle small 1.373
S5 blue triangle large 5.347
S5 red triangle large 4.788
S5 red triangle large 5.451
S5 red triangle large 2.718
S5 red circle small 1.611
S5 red circle large 0.083
S5 blue circle large 2.785
S5 blue triangle large 5.307
S5 red triangle small 2.491
S5 blue triangle small 3.805
S5 green circle small 3.868
S5 red circle large 1.405
S5 red circle small 2.036
S5 blue circle small 1.783
S5 blue circle large 2.771
S5 blue triangle small 2.976
S5 green circle large -0.082
S5 red triangle large 3.461
S5 blue triangle small 0.884
S5 blue circle large 1.774
S5 green circle small 1.248
S5 blue triangle large 3.175
S5 red circle small 1.554
S5 green triangle large 4.006
S5 red triangle small 0.579
S5 green circle small 2.109
S5 blue triangle small 2.614
S5 blue circle small 0.632
S5 blue triangle small 2.788
S5 green circle small 0.869
S5 red circle large 0.54
S5 blue circle small 3.647
S5 green circle small -0.049
S5 blue circle small 3.222
S5 blue triangle large 5.68
S5 blue triangle small 2.761
S5 blue triangle large 5.926
S5 red circle small 1.961
S5 red triangle small 2.103
S5 green circle large 1.807
S5 red circle small 2.695
S5 blue circle large 4.161
S5 green triangle large 3.408
S5 red triangle small 1.854
S5 red circle small 1.533
S5 blue circle large 1.21
S5 blue circle small 3.294
S5 green circle large 2.722
S5 blue triangle large 3.534
S5 green circle small 2.276
S5 green triangle small 1.438
S5 green triangle large 5.856
S5 blue circle small 2.419
S5 green circle large 1.998
S5 green circle large 3.723
S5 green circle large 0.505
S5 red triangle large 5.73
S5 blue circle small 2.38
S5 green triangle small 1.727
S5 red triangle small 1.622
S5 red triangle large 3.493
S5 green circle small 2.124
S5 blue circle small 4.194
S5 red triangle large 4.057
S5 blue circle small 2.627
S5 red triangle large 4.25
S5 green circle large 2.148
S5 blue circle large 1.73
S5 blue triangle small 3.498
S5 red triangle large 3.449
S5 red triangle small 1.915
S5 blue triangle large 6.125
S5 green triangle small 0.975
S5 red triangle large 5.027
S5 green triangle large 4.385
S5 green triangle large 4.565
S5 red triangle small 0.595
S5 red triangle small 0.995
S5 green triangle large 2.618
S5 red triangle small 1.622
S5 red circle small 0.878
S5 green circle large 3.95
S5 green circle large 2.456
S5 red triangle large 2.186
S5 green triangle large 3.836
S5 blue circle small 1.112
S5 green circle large 2.451
S5 red triangle small 1.394
S5 green circle small 2.497
S5 green circle small 3.646
S5 red circle small 2.683
S5 red circle large 1.562
S5 blue triangle small 3.355
S5 blue triangle small 2.771
S5 green circle small 2.605
S5 blue circle small 4.167
S5 blue circle small 3.873
S5 red circle small 2.366
S5 red circle large 2.861
S5 green triangle small 2.131
S5 green circle large 2.423
S5 green triangle large 4.874
S5 blue circle small 4.452
S5 red triangle large 6.228
S5 blue triangle small 2.644
S5 green triangle large 3.914
S5 green triangle small 2.706
S5 red circle small 1.812
S5 green triangle small 0.712
S5 red triangle small 3.275
S5 red circle large 0.597
S5 blue triangle small 3.175
S5 green triangle large 5.966
S5 red triangle small 1.844
S5 green circle large 0.401
S5 green triangle large 3.577
S5 green triangle small -0.679
S5 green circle large 0.913
S5 red circle large 2.37
S5 red circle large 2.4
S5 red circle small 2.004
S5 red triangle large 4.559
S5 blue triangle large 4.729
S5 blue circle large 2.887
S5 green triangle small 2.141
S5 green triangle small 2.324
S5 red circle large 2.223
S5 blue circle large 1.858
S5 red circle small 1.73
S5 red circle large 0.92
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment