Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
C
covid_analysis
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
COMPARA
covid_analysis
Commits
f8e93c2e
Commit
f8e93c2e
authored
May 23, 2024
by
Joaquin Torres
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed colors and removed sd
parent
e9fad6bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
958 additions
and
959 deletions
+958
-959
model_selection/cv_metric_gen.py
model_selection/cv_metric_gen.py
+19
-18
model_selection/output_cv_metrics/curves/pre_ORIG.svg
model_selection/output_cv_metrics/curves/pre_ORIG.svg
+939
-941
model_selection/output_cv_metrics/metrics.xlsx
model_selection/output_cv_metrics/metrics.xlsx
+0
-0
No files found.
model_selection/cv_metric_gen.py
View file @
f8e93c2e
...
...
@@ -201,42 +201,43 @@ if __name__ == "__main__":
# Generate ROC curves
mean_fpr
=
np
.
linspace
(
0
,
1
,
100
)
tprs
,
aucs
=
[],
[]
cmap
=
plt
.
get_cmap
(
'tab10'
)
# Colormap for stronger colors
# Loop through each fold in the cross-validation
for
fold_idx
,
(
train
,
test
)
in
enumerate
(
cv
.
split
(
X_train
,
y_train
)):
# Fit the model on the training data
model
.
fit
(
X_train
[
train
],
y_train
[
train
])
# Use RocCurveDisplay to generate the ROC curve
roc_display
=
RocCurveDisplay
.
from_estimator
(
model
,
X_train
[
test
],
y_train
[
test
],
name
=
f
"ROC fold {fold_idx}"
,
alpha
=
0.3
,
lw
=
1
,
ax
=
axes
[
model_idx
])
roc_display
=
RocCurveDisplay
.
from_estimator
(
model
,
X_train
[
test
],
y_train
[
test
],
name
=
f
"ROC fold {fold_idx}"
,
alpha
=
0.6
,
lw
=
2
,
ax
=
axes
[
model_idx
],
color
=
cmap
(
fold_idx
%
10
))
# Interpolate the true positive rates to get a smooth curve
interp_tpr
=
np
.
interp
(
mean_fpr
,
roc_display
.
fpr
,
roc_display
.
tpr
)
interp_tpr
[
0
]
=
0.0
# Append the interpolated TPR and AUC for this fold
tprs
.
append
(
interp_tpr
)
aucs
.
append
(
roc_display
.
roc_auc
)
# Compute the mean of the TPRs
mean_tpr
=
np
.
mean
(
tprs
,
axis
=
0
)
mean_tpr
[
-
1
]
=
1.0
mean_auc
=
auc
(
mean_fpr
,
mean_tpr
)
# Calculate the mean AUC
# Plot the mean ROC curve
axes
[
model_idx
]
.
plot
(
mean_fpr
,
mean_tpr
,
color
=
'b'
,
label
=
r'Mean ROC (AUC =
%0.2
f)'
%
mean_auc
,
lw
=
2
,
alpha
=
.8
)
# Set plot limits and title
axes
[
model_idx
]
.
set
(
xlim
=
[
-
0.05
,
1.05
],
ylim
=
[
-
0.05
,
1.05
],
title
=
f
"ROC Curve - {model_name} ({group}-{method_names[j]})"
)
axes
[
model_idx
]
.
legend
(
loc
=
"lower right"
)
# Plot the diagonal line representing random guessing
axes
[
model_idx
]
.
plot
([
0
,
1
],
[
0
,
1
],
linestyle
=
'--'
,
lw
=
2
,
color
=
'r'
,
alpha
=
.8
)
# Compute the mean of the TPRs
mean_tpr
=
np
.
mean
(
tprs
,
axis
=
0
)
mean_tpr
[
-
1
]
=
1.0
mean_auc
=
auc
(
mean_fpr
,
mean_tpr
)
# Calculate the mean AUC
# Plot the mean ROC curve with a thicker line and distinct color
axes
[
model_idx
]
.
plot
(
mean_fpr
,
mean_tpr
,
color
=
'b'
,
lw
=
4
,
label
=
r'Mean ROC (AUC =
%0.2
f)'
%
mean_auc
,
alpha
=
.8
)
# Set plot limits and title
axes
[
model_idx
]
.
set
(
xlim
=
[
-
0.05
,
1.05
],
ylim
=
[
-
0.05
,
1.05
],
title
=
f
"ROC Curve - {model_name} ({group}-{method_names[j]})"
)
axes
[
model_idx
]
.
legend
(
loc
=
"lower right"
)
# Store the DataFrame in the dictionary with a unique key for each sheet
sheet_name
=
f
"{group}_{method_names[j]}"
scores_sheets
[
sheet_name
]
=
scores_df
# Saving curves plots
# Adjust layout and save/show figure
plt
.
tight_layout
()
plt
.
savefig
(
f
'./output_cv_metrics/curves/{group}_{method_names[j]}.svg'
,
format
=
'svg'
,
dpi
=
500
)
plt
.
close
(
fig
)
# Store the DataFrame in the dictionary with a unique key for each sheet
sheet_name
=
f
"{group}_{method_names[j]}"
scores_sheets
[
sheet_name
]
=
scores_df
# Write results to Excel file
with
pd
.
ExcelWriter
(
'./output_cv_metrics/metrics.xlsx'
)
as
writer
:
for
sheet_name
,
data
in
scores_sheets
.
items
():
...
...
model_selection/output_cv_metrics/curves/pre_ORIG.svg
View file @
f8e93c2e
...
...
@@ -6,7 +6,7 @@
<rdf:RDF
xmlns:dc=
"http://purl.org/dc/elements/1.1/"
xmlns:cc=
"http://creativecommons.org/ns#"
xmlns:rdf=
"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<cc:Work>
<dc:type
rdf:resource=
"http://purl.org/dc/dcmitype/StillImage"
/>
<dc:date>
2024-05-23T1
1:58:45.422130
</dc:date>
<dc:date>
2024-05-23T1
2:04:37.481495
</dc:date>
<dc:format>
image/svg+xml
</dc:format>
<dc:creator>
<cc:Agent>
...
...
@@ -41,12 +41,12 @@ z
<g
id=
"xtick_1"
>
<g
id=
"line2d_1"
>
<defs>
<path
id=
"m
9e6e3541e6
"
d=
"M 0 0
<path
id=
"m
c6b238e9c4
"
d=
"M 0 0
L 0 3.5
"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</defs>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"135.797273"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"135.797273"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_1"
>
...
...
@@ -91,7 +91,7 @@ z
<g
id=
"xtick_2"
>
<g
id=
"line2d_2"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"230.046364"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"230.046364"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_2"
>
...
...
@@ -132,7 +132,7 @@ z
<g
id=
"xtick_3"
>
<g
id=
"line2d_3"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"324.295455"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"324.295455"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_3"
>
...
...
@@ -168,7 +168,7 @@ z
<g
id=
"xtick_4"
>
<g
id=
"line2d_4"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"418.544545"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"418.544545"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_4"
>
...
...
@@ -215,7 +215,7 @@ z
<g
id=
"xtick_5"
>
<g
id=
"line2d_5"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"512.793636"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"512.793636"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_5"
>
...
...
@@ -271,7 +271,7 @@ z
<g
id=
"xtick_6"
>
<g
id=
"line2d_6"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"607.042727"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"607.042727"
y=
"545.25"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_6"
>
...
...
@@ -639,12 +639,12 @@ z
<g
id=
"ytick_1"
>
<g
id=
"line2d_7"
>
<defs>
<path
id=
"m
7a20b041e6
"
d=
"M 0 0
<path
id=
"m
c900691483
"
d=
"M 0 0
L -3.5 0
"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</defs>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"521.687727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"521.687727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_8"
>
...
...
@@ -659,7 +659,7 @@ L -3.5 0
<g
id=
"ytick_2"
>
<g
id=
"line2d_8"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"427.438636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"427.438636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_9"
>
...
...
@@ -674,7 +674,7 @@ L -3.5 0
<g
id=
"ytick_3"
>
<g
id=
"line2d_9"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"333.189545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"333.189545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_10"
>
...
...
@@ -689,7 +689,7 @@ L -3.5 0
<g
id=
"ytick_4"
>
<g
id=
"line2d_10"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"238.940455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"238.940455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_11"
>
...
...
@@ -704,7 +704,7 @@ L -3.5 0
<g
id=
"ytick_5"
>
<g
id=
"line2d_11"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"144.691364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"144.691364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_12"
>
...
...
@@ -719,7 +719,7 @@ L -3.5 0
<g
id=
"ytick_6"
>
<g
id=
"line2d_12"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"112.235"
y=
"50.442273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"112.235"
y=
"50.442273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_13"
>
...
...
@@ -829,166 +829,166 @@ z
</g>
<g
id=
"line2d_13"
>
<path
d=
"M 135.797273 521.687727
L
503.368727 103.353129
L
493.943818 101.789261
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_14"
>
<path
d=
"M 135.797273 521.687727
L
492.058836 104.656352
L
518.448582 99.182815
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_15"
>
<path
d=
"M 135.797273 521.687727
L 503.368727 102.
831839
L 503.368727 102.
31055
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #2ca02c; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #2ca02c; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_16"
>
<path
d=
"M 135.797273 521.687727
L 52
2.218545 103.613773
L 52
4.103527 102.049905
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #d62728; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #d62728; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_17"
>
<path
d=
"M 135.797273 521.687727
L 50
5.253709 107.8158
2
L 50
7.138691 105.20793
2
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #9467bd; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #9467bd; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_18"
>
<path
d=
"M 135.797273 521.687727
L
499.598764 101.03531
L
520.333564 100.513732
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_19"
>
<path
d=
"M 135.797273 521.687727
L
493.943818 102.860832
L
522.218545 109.119764
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_20"
>
<path
d=
"M 135.797273 521.687727
L
501.483745 105.729509
L
493.943818 106.772665
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_21"
>
<path
d=
"M 135.797273 521.687727
L 499.598764 104.
425565
L 499.598764 104.
686354
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #bcbd22; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #bcbd22; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_22"
>
<path
d=
"M 135.797273 521.687727
L 5
09.023673 101.817676
L 5
10.908655 100.774521
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #17becf; stroke-opacity: 0.3; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #17becf; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"line2d_23"
>
<path
d=
"M 135.797273 521.687727
L 140.557328 516.
268201
L 145.317383 51
0.848674
L 150.077438 505.
429148
L 154.837493 500.
009621
L 159.597548 49
4.590095
L 164.357603 489.
170568
L 169.117658 48
3.751042
L 173.877713 47
8.331515
L 178.637769 47
2.911989
L 183.397824 46
7.492462
L 188.157879 462.
07293
6
L 192.917934 45
6.653409
L 197.677989 45
1.233883
L 202.438044 44
5.814356
L 207.198099 44
0.39483
L 211.958154 43
4.975303
L 216.718209 4
29.555776
L 221.478264 42
4.13625
L 226.23832 4
18.716723
L 230.998375 41
3.297197
L 235.75843 40
7.87767
L 240.518485 40
2.45814
4
L 245.27854 39
7.038617
L 250.038595 39
1.61909
1
L 254.79865 38
6.199564
L 259.558705 38
0.780038
L 264.31876 37
5.360511
L 269.078815 3
69.940985
L 273.838871 36
4.521458
L 278.598926 3
59.101932
L 283.358981 35
3.682405
L 288.119036 3
48.262879
L 292.879091 34
2.843352
L 297.639146 3
37.423826
L 302.399201 33
2.00429
9
L 307.159256 32
6.584773
L 311.919311 32
1.165246
L 316.679366 31
5.74572
L 321.439421 31
0.326193
L 326.199477 30
4.906667
L 330.959532
299.48714
L 335.719587 29
4.067614
L 340.479642 2
88.648087
L 345.239697 28
3.228561
L 349.999752 2
77.80903
4
L 354.759807 27
2.389507
L 359.519862 2
66.969981
L 364.279917 26
1.55045
4
L 369.039972 2
56.130928
L 373.800028 25
0.711401
L 378.560083 24
5.291875
L 383.320138 2
39.872348
L 388.080193 23
4.452822
L 392.840248 2
29.033295
L 397.600303 22
3.613769
L 402.360358 2
18.194242
L 407.120413 21
2.7747
16
L 411.880468 2
07.355189
L 416.640523 20
1.935663
L 421.400579
196.516136
L 426.160634 19
1.09661
L 430.920689 1
85.677083
L 435.680744 18
0.257557
L 440.440799 1
74.838
03
L 445.200854 1
69.418504
L 449.960909 16
3.998977
L 454.720964 1
58.579451
L 459.481019 15
3.159924
L 464.241074 1
47.740398
L 469.001129 14
2.32087
1
L 473.761185 1
36.901345
L 478.52124 13
1.481818
L 483.281295 1
26.062292
L 488.04135 12
0.642765
L 492.801405 1
15.27515
L 497.56146 11
0.44378
L 502.321515 1
06.106575
L 507.08157 10
2.851301
L 511.841625 10
0.060687
L 516.60168
97.386762
L 521.361736 9
4.712837
L 526.121791 9
2.216537
L 530.881846
89.759227
L 535.641901 8
7.301918
L 540.401956 8
4.844608
L 545.162011 8
2.38729
8
L 549.922066
79.929989
L 554.682121 7
7.472679
L 559.442176 7
5.015369
L 564.202231 7
2.55806
L 568.962287 7
0.10075
L 573.722342 6
7.64344
L 578.482397 6
5.186131
L 583.242452 6
2.728821
L 588.002507 60.
271511
L 592.762562 5
7.814202
L 597.522617 55.
356892
L 602.282672 5
2.899582
L 140.557328 516.
351925
L 145.317383 51
1.016123
L 150.077438 505.
680321
L 154.837493 500.
344519
L 159.597548 49
5.008718
L 164.357603 489.
672916
L 169.117658 48
4.337114
L 173.877713 47
9.001312
L 178.637769 47
3.66551
L 183.397824 46
8.329708
L 188.157879 462.
99390
6
L 192.917934 45
7.658104
L 197.677989 45
2.322302
L 202.438044 44
6.9865
L 207.198099 44
1.650698
L 211.958154 43
6.314896
L 216.718209 4
30.979094
L 221.478264 42
5.643292
L 226.23832 4
20.30749
L 230.998375 41
4.971688
L 235.75843 40
9.635886
L 240.518485 40
4.30008
4
L 245.27854 39
8.964282
L 250.038595 39
3.62848
1
L 254.79865 38
8.292679
L 259.558705 38
2.956877
L 264.31876 37
7.621075
L 269.078815 3
72.285273
L 273.838871 36
6.949471
L 278.598926 3
61.613669
L 283.358981 35
6.277867
L 288.119036 3
50.942065
L 292.879091 34
5.606263
L 297.639146 3
40.270461
L 302.399201 33
4.93465
9
L 307.159256 32
9.598857
L 311.919311 32
4.263055
L 316.679366 31
8.927253
L 321.439421 31
3.591451
L 326.199477 30
8.255649
L 330.959532
302.919847
L 335.719587 29
7.584045
L 340.479642 2
92.248244
L 345.239697 28
6.912442
L 349.999752 2
81.5766
4
L 354.759807 27
6.240838
L 359.519862 2
70.905036
L 364.279917 26
5.56923
4
L 369.039972 2
60.233432
L 373.800028 25
4.89763
L 378.560083 24
9.561828
L 383.320138 2
44.226026
L 388.080193 23
8.890224
L 392.840248 2
33.554422
L 397.600303 22
8.21862
L 402.360358 2
22.882818
L 407.120413 21
7.5470
16
L 411.880468 2
12.211214
L 416.640523 20
6.875412
L 421.400579
201.53961
L 426.160634 19
6.203808
L 430.920689 1
90.868007
L 435.680744 18
5.532205
L 440.440799 1
80.1964
03
L 445.200854 1
74.860601
L 449.960909 16
9.524799
L 454.720964 1
64.188997
L 459.481019 15
8.853195
L 464.241074 1
53.517393
L 469.001129 14
8.18159
1
L 473.761185 1
42.845789
L 478.52124 13
7.509987
L 483.281295 1
32.174185
L 488.04135 12
6.838383
L 492.801405 1
21.502581
L 497.56146 11
6.665603
L 502.321515 1
12.160777
L 507.08157 10
8.024479
L 511.841625 10
4.280764
L 516.60168
100.76939
L 521.361736 9
7.472643
L 526.121791 9
4.710711
L 530.881846
92.106685
L 535.641901 8
9.502659
L 540.401956 8
6.898634
L 545.162011 8
4.29460
8
L 549.922066
81.690582
L 554.682121 7
9.086556
L 559.442176 7
6.482531
L 564.202231 7
3.878505
L 568.962287 7
1.274479
L 573.722342 6
8.670453
L 578.482397 6
6.066427
L 583.242452 6
3.462402
L 588.002507 60.
858376
L 592.762562 5
8.25435
L 597.522617 55.
650324
L 602.282672 5
3.046299
L 607.042727 50.442273
"
clip-path=
"url(#p
1a09486dbe
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
538b22e7e9
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_3"
>
<path
d=
"M 112.235 545.25
...
...
@@ -1189,7 +1189,7 @@ L 491.1925 383.889063
"
style=
"fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"text_16"
>
<!-- ROC fold 0 (AUC = 0.5
5
) -->
<!-- ROC fold 0 (AUC = 0.5
7
) -->
<g
transform=
"translate(499.1925 387.389063) scale(0.1 -0.1)"
>
<defs>
<path
id=
"DejaVuSans-66"
d=
"M 2375 4863
...
...
@@ -1309,6 +1309,16 @@ Q 1456 2553 1204 2497
Q 953 2441 691 2322
L 691 4666
z
"
transform=
"scale(0.015625)"
/>
<path
id=
"DejaVuSans-37"
d=
"M 525 4666
L 3525 4666
L 3525 4397
L 1831 0
L 1172 0
L 2766 4134
L 525 4134
L 525 4666
z
"
transform=
"scale(0.015625)"
/>
</defs>
<use
xlink:href=
"#DejaVuSans-52"
/>
...
...
@@ -1332,7 +1342,7 @@ z
<use
xlink:href=
"#DejaVuSans-30"
x=
"962.451172"
/>
<use
xlink:href=
"#DejaVuSans-2e"
x=
"1026.074219"
/>
<use
xlink:href=
"#DejaVuSans-35"
x=
"1057.861328"
/>
<use
xlink:href=
"#DejaVuSans-3
5
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-3
7
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-29"
x=
"1185.107422"
/>
</g>
</g>
...
...
@@ -1343,7 +1353,7 @@ L 491.1925 398.567188
"
style=
"fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"text_17"
>
<!-- ROC fold 1 (AUC = 0.5
6
) -->
<!-- ROC fold 1 (AUC = 0.5
4
) -->
<g
transform=
"translate(499.1925 402.067188) scale(0.1 -0.1)"
>
<use
xlink:href=
"#DejaVuSans-52"
/>
<use
xlink:href=
"#DejaVuSans-4f"
x=
"69.482422"
/>
...
...
@@ -1366,7 +1376,7 @@ L 491.1925 398.567188
<use
xlink:href=
"#DejaVuSans-30"
x=
"962.451172"
/>
<use
xlink:href=
"#DejaVuSans-2e"
x=
"1026.074219"
/>
<use
xlink:href=
"#DejaVuSans-35"
x=
"1057.861328"
/>
<use
xlink:href=
"#DejaVuSans-3
6
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-3
4
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-29"
x=
"1185.107422"
/>
</g>
</g>
...
...
@@ -1513,7 +1523,7 @@ L 491.1925 457.279688
"
style=
"fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"text_21"
>
<!-- ROC fold 5 (AUC = 0.5
6
) -->
<!-- ROC fold 5 (AUC = 0.5
4
) -->
<g
transform=
"translate(499.1925 460.779688) scale(0.1 -0.1)"
>
<use
xlink:href=
"#DejaVuSans-52"
/>
<use
xlink:href=
"#DejaVuSans-4f"
x=
"69.482422"
/>
...
...
@@ -1536,7 +1546,7 @@ L 491.1925 457.279688
<use
xlink:href=
"#DejaVuSans-30"
x=
"962.451172"
/>
<use
xlink:href=
"#DejaVuSans-2e"
x=
"1026.074219"
/>
<use
xlink:href=
"#DejaVuSans-35"
x=
"1057.861328"
/>
<use
xlink:href=
"#DejaVuSans-3
6
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-3
4
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-29"
x=
"1185.107422"
/>
</g>
</g>
...
...
@@ -1547,7 +1557,7 @@ L 491.1925 471.957813
"
style=
"fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"text_22"
>
<!-- ROC fold 6 (AUC = 0.5
6
) -->
<!-- ROC fold 6 (AUC = 0.5
3
) -->
<g
transform=
"translate(499.1925 475.457813) scale(0.1 -0.1)"
>
<use
xlink:href=
"#DejaVuSans-52"
/>
<use
xlink:href=
"#DejaVuSans-4f"
x=
"69.482422"
/>
...
...
@@ -1570,7 +1580,7 @@ L 491.1925 471.957813
<use
xlink:href=
"#DejaVuSans-30"
x=
"962.451172"
/>
<use
xlink:href=
"#DejaVuSans-2e"
x=
"1026.074219"
/>
<use
xlink:href=
"#DejaVuSans-35"
x=
"1057.861328"
/>
<use
xlink:href=
"#DejaVuSans-3
6
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-3
3
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-29"
x=
"1185.107422"
/>
</g>
</g>
...
...
@@ -1581,20 +1591,8 @@ L 491.1925 486.635938
"
style=
"fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"
/>
</g>
<g
id=
"text_23"
>
<!-- ROC fold 7 (AUC = 0.5
5
) -->
<!-- ROC fold 7 (AUC = 0.5
6
) -->
<g
transform=
"translate(499.1925 490.135938) scale(0.1 -0.1)"
>
<defs>
<path
id=
"DejaVuSans-37"
d=
"M 525 4666
L 3525 4666
L 3525 4397
L 1831 0
L 1172 0
L 2766 4134
L 525 4134
L 525 4666
z
"
transform=
"scale(0.015625)"
/>
</defs>
<use
xlink:href=
"#DejaVuSans-52"
/>
<use
xlink:href=
"#DejaVuSans-4f"
x=
"69.482422"
/>
<use
xlink:href=
"#DejaVuSans-43"
x=
"148.193359"
/>
...
...
@@ -1616,7 +1614,7 @@ z
<use
xlink:href=
"#DejaVuSans-30"
x=
"962.451172"
/>
<use
xlink:href=
"#DejaVuSans-2e"
x=
"1026.074219"
/>
<use
xlink:href=
"#DejaVuSans-35"
x=
"1057.861328"
/>
<use
xlink:href=
"#DejaVuSans-3
5
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-3
6
"
x=
"1121.484375"
/>
<use
xlink:href=
"#DejaVuSans-29"
x=
"1185.107422"
/>
</g>
</g>
...
...
@@ -1804,7 +1802,7 @@ z
<g
id=
"xtick_7"
>
<g
id=
"line2d_35"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_27"
>
...
...
@@ -1819,7 +1817,7 @@ z
<g
id=
"xtick_8"
>
<g
id=
"line2d_36"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_28"
>
...
...
@@ -1834,7 +1832,7 @@ z
<g
id=
"xtick_9"
>
<g
id=
"line2d_37"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_29"
>
...
...
@@ -1849,7 +1847,7 @@ z
<g
id=
"xtick_10"
>
<g
id=
"line2d_38"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_30"
>
...
...
@@ -1864,7 +1862,7 @@ z
<g
id=
"xtick_11"
>
<g
id=
"line2d_39"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_31"
>
...
...
@@ -1879,7 +1877,7 @@ z
<g
id=
"xtick_12"
>
<g
id=
"line2d_40"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"1121.66"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_32"
>
...
...
@@ -1896,7 +1894,7 @@ z
<g
id=
"ytick_7"
>
<g
id=
"line2d_41"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1098.097727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1098.097727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_33"
>
...
...
@@ -1911,7 +1909,7 @@ z
<g
id=
"ytick_8"
>
<g
id=
"line2d_42"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1003.848636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1003.848636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_34"
>
...
...
@@ -1926,7 +1924,7 @@ z
<g
id=
"ytick_9"
>
<g
id=
"line2d_43"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"909.599545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"909.599545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_35"
>
...
...
@@ -1941,7 +1939,7 @@ z
<g
id=
"ytick_10"
>
<g
id=
"line2d_44"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"815.350455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"815.350455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_36"
>
...
...
@@ -1956,7 +1954,7 @@ z
<g
id=
"ytick_11"
>
<g
id=
"line2d_45"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"721.101364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"721.101364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_37"
>
...
...
@@ -1971,7 +1969,7 @@ z
<g
id=
"ytick_12"
>
<g
id=
"line2d_46"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"626.852273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"626.852273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_38"
>
...
...
@@ -1986,106 +1984,106 @@ z
</g>
<g
id=
"line2d_47"
>
<path
d=
"M 64.347273 1098.097727
L 70.550762 1092.
678201
L 76.754252 1087.
258674
L 82.957741 108
1.839148
L 89.16123 1076.
419621
L 95.36472 1071.
000095
L 101.568209 106
5.580568
L 107.771699 1060.
161042
L 113.975188 105
4.741515
L 120.178678 10
49.321989
L 126.382167 104
3.902462
L 132.585657 103
8.48293
6
L 138.789146 103
3.063409
L 144.992635 102
7.643883
L 151.196125 102
2.224356
L 157.399614 101
6.80483
L 163.603104 101
1.385303
L 169.806593 100
5.965776
L 176.010083 100
0.54625
L 182.213572 99
5.126723
L 188.417062 9
89.707197
L 194.620551 98
4.28767
L 200.82404 9
78.86814
4
L 207.02753 97
3.448617
L 213.231019 9
68.02909
1
L 219.434509 96
2.609564
L 225.637998 95
7.190038
L 231.841488 95
1.770511
L 238.044977 94
6.350985
L 244.248466 94
0.931458
L 250.451956 93
5.511932
L 256.655445 93
0.092405
L 262.858935 92
4.672879
L 269.062424 9
19.253352
L 275.265914 91
3.833826
L 281.469403 9
08.41429
9
L 287.672893 90
2.994773
L 293.876382
897.575246
L 300.079871 89
2.15572
L 306.283361 8
86.736193
L 312.48685 88
1.316667
L 318.69034 87
5.89714
L 324.893829 87
0.477614
L 331.097319 86
5.058087
L 337.300808 8
59.638561
L 343.504298 85
4.21903
4
L 349.707787 8
48.799507
L 355.911276 84
3.379981
L 362.114766 8
37.96045
4
L 368.318255 83
2.540928
L 374.521745 8
27.121401
L 380.725234 82
1.701875
L 386.928724 8
16.282348
L 393.132213 81
0.862822
L 399.335702 80
5.443295
L 405.539192 80
0.023769
L 411.742681 79
4.604242
L 417.946171 7
89.1847
16
L 424.14966 78
3.765189
L 430.35315 7
78.345663
L 436.556639 77
2.926136
L 442.760129 7
67.50661
L 448.963618 76
2.087083
L 455.167107 7
56.667557
L 461.370597 75
1.248
03
L 467.574086 7
45.828504
L 473.777576 74
0.408977
L 479.981065 7
34.989451
L 486.184555 7
29.569924
L 492.388044 72
4.150398
L 498.591534 7
18.73087
1
L 504.795023 71
3.311345
L 510.998512 7
07.891818
L 517.202002 70
2.472292
L 523.405491
697.052765
L 529.608981 69
1.68515
L 535.81247 6
86.85378
L 542.01596 68
2.516575
L 548.219449 6
79.261301
L 554.422938 6
76.470687
L 560.626428 67
3.796762
L 566.829917 67
1.122837
L 573.033407 6
68.626537
L 579.236896 66
6.169227
L 585.440386 66
3.711918
L 591.643875 66
1.254608
L 597.847365 6
58.79729
8
L 604.050854 65
6.339989
L 610.254343 65
3.882679
L 616.457833 65
1.425369
L 622.661322 6
48.96806
L 628.864812 64
6.51075
L 635.068301 64
4.05344
L 641.271791 64
1.596131
L 647.47528 639.
138821
L 653.67877 63
6.681511
L 659.882259 634.
224202
L 666.085748 63
1.766892
L 672.289238 629.
309582
L 70.550762 1092.
761925
L 76.754252 1087.
426123
L 82.957741 108
2.090321
L 89.16123 1076.
754519
L 95.36472 1071.
418718
L 101.568209 106
6.082916
L 107.771699 1060.
747114
L 113.975188 105
5.411312
L 120.178678 10
50.07551
L 126.382167 104
4.739708
L 132.585657 103
9.40390
6
L 138.789146 103
4.068104
L 144.992635 102
8.732302
L 151.196125 102
3.3965
L 157.399614 101
8.060698
L 163.603104 101
2.724896
L 169.806593 100
7.389094
L 176.010083 100
2.053292
L 182.213572 99
6.71749
L 188.417062 9
91.381688
L 194.620551 98
6.045886
L 200.82404 9
80.71008
4
L 207.02753 97
5.374282
L 213.231019 9
70.03848
1
L 219.434509 96
4.702679
L 225.637998 95
9.366877
L 231.841488 95
4.031075
L 238.044977 94
8.695273
L 244.248466 94
3.359471
L 250.451956 93
8.023669
L 256.655445 93
2.687867
L 262.858935 92
7.352065
L 269.062424 9
22.016263
L 275.265914 91
6.680461
L 281.469403 9
11.34465
9
L 287.672893 90
6.008857
L 293.876382
900.673055
L 300.079871 89
5.337253
L 306.283361 8
90.001451
L 312.48685 88
4.665649
L 318.69034 87
9.329847
L 324.893829 87
3.994045
L 331.097319 86
8.658244
L 337.300808 8
63.322442
L 343.504298 85
7.9866
4
L 349.707787 8
52.650838
L 355.911276 84
7.315036
L 362.114766 8
41.97923
4
L 368.318255 83
6.643432
L 374.521745 8
31.30763
L 380.725234 82
5.971828
L 386.928724 8
20.636026
L 393.132213 81
5.300224
L 399.335702 80
9.964422
L 405.539192 80
4.62862
L 411.742681 79
9.292818
L 417.946171 7
93.9570
16
L 424.14966 78
8.621214
L 430.35315 7
83.285412
L 436.556639 77
7.94961
L 442.760129 7
72.613808
L 448.963618 76
7.278007
L 455.167107 7
61.942205
L 461.370597 75
6.6064
03
L 467.574086 7
51.270601
L 473.777576 74
5.934799
L 479.981065 7
40.598997
L 486.184555 7
35.263195
L 492.388044 72
9.927393
L 498.591534 7
24.59159
1
L 504.795023 71
9.255789
L 510.998512 7
13.919987
L 517.202002 70
8.584185
L 523.405491
703.248383
L 529.608981 69
7.912581
L 535.81247 6
93.075603
L 542.01596 68
8.570777
L 548.219449 6
84.434479
L 554.422938 6
80.690764
L 560.626428 67
7.17939
L 566.829917 67
3.882643
L 573.033407 6
71.120711
L 579.236896 66
8.516685
L 585.440386 66
5.912659
L 591.643875 66
3.308634
L 597.847365 6
60.70460
8
L 604.050854 65
8.100582
L 610.254343 65
5.496556
L 616.457833 65
2.892531
L 622.661322 6
50.288505
L 628.864812 64
7.684479
L 635.068301 64
5.080453
L 641.271791 64
2.476427
L 647.47528 639.
872402
L 653.67877 63
7.268376
L 659.882259 634.
66435
L 666.085748 63
2.060324
L 672.289238 629.
456299
L 678.492727 626.852273
"
clip-path=
"url(#p
5a336d0e7b
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
7148eb9ad5
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_9"
>
<path
d=
"M 33.64 1121.66
...
...
@@ -2198,7 +2196,7 @@ z
<g
id=
"xtick_13"
>
<g
id=
"line2d_49"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_41"
>
...
...
@@ -2213,7 +2211,7 @@ z
<g
id=
"xtick_14"
>
<g
id=
"line2d_50"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_42"
>
...
...
@@ -2228,7 +2226,7 @@ z
<g
id=
"xtick_15"
>
<g
id=
"line2d_51"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_43"
>
...
...
@@ -2243,7 +2241,7 @@ z
<g
id=
"xtick_16"
>
<g
id=
"line2d_52"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_44"
>
...
...
@@ -2258,7 +2256,7 @@ z
<g
id=
"xtick_17"
>
<g
id=
"line2d_53"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_45"
>
...
...
@@ -2273,7 +2271,7 @@ z
<g
id=
"xtick_18"
>
<g
id=
"line2d_54"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"1698.07"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_46"
>
...
...
@@ -2290,7 +2288,7 @@ z
<g
id=
"ytick_13"
>
<g
id=
"line2d_55"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1674.507727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1674.507727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_47"
>
...
...
@@ -2305,7 +2303,7 @@ z
<g
id=
"ytick_14"
>
<g
id=
"line2d_56"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1580.258636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1580.258636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_48"
>
...
...
@@ -2320,7 +2318,7 @@ z
<g
id=
"ytick_15"
>
<g
id=
"line2d_57"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1486.009545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1486.009545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_49"
>
...
...
@@ -2335,7 +2333,7 @@ z
<g
id=
"ytick_16"
>
<g
id=
"line2d_58"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1391.760455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1391.760455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_50"
>
...
...
@@ -2350,7 +2348,7 @@ z
<g
id=
"ytick_17"
>
<g
id=
"line2d_59"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1297.511364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1297.511364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_51"
>
...
...
@@ -2365,7 +2363,7 @@ z
<g
id=
"ytick_18"
>
<g
id=
"line2d_60"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1203.262273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1203.262273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_52"
>
...
...
@@ -2380,106 +2378,106 @@ z
</g>
<g
id=
"line2d_61"
>
<path
d=
"M 64.347273 1674.507727
L 70.550762 1669.
088201
L 76.754252 1663.
668674
L 82.957741 1658.
249148
L 89.16123 165
2.829621
L 95.36472 1647.
410095
L 101.568209 164
1.990568
L 107.771699 163
6.571042
L 113.975188 1631.
151515
L 120.178678 162
5.731989
L 126.382167 162
0.312462
L 132.585657 161
4.89293
6
L 138.789146 16
09.473409
L 144.992635 160
4.053883
L 151.196125 159
8.634356
L 157.399614 159
3.21483
L 163.603104 158
7.795303
L 169.806593 158
2.375776
L 176.010083 157
6.95625
L 182.213572 157
1.536723
L 188.417062 156
6.117197
L 194.620551 156
0.69767
L 200.82404 155
5.27814
4
L 207.02753 15
49.858617
L 213.231019 154
4.43909
1
L 219.434509 15
39.019564
L 225.637998 153
3.600038
L 231.841488 15
28.180511
L 238.044977 152
2.760985
L 244.248466 151
7.341458
L 250.451956 151
1.921932
L 256.655445 150
6.502405
L 262.858935 150
1.082879
L 269.062424 149
5.663352
L 275.265914 149
0.243826
L 281.469403 148
4.82429
9
L 287.672893 14
79.404773
L 293.876382 147
3.985246
L 300.079871 14
68.56572
L 306.283361 146
3.146193
L 312.48685 14
57.726667
L 318.69034 145
2.30714
L 324.893829 14
46.887614
L 331.097319 144
1.468087
L 337.300808 143
6.048561
L 343.504298 143
0.62903
4
L 349.707787 142
5.209507
L 355.911276 14
19.789981
L 362.114766 141
4.37045
4
L 368.318255 14
08.950928
L 374.521745 140
3.531401
L 380.725234 1
398.111875
L 386.928724 139
2.692348
L 393.132213 13
87.272822
L 399.335702 138
1.853295
L 405.539192 13
76.433769
L 411.742681 137
1.014242
L 417.946171 13
65.5947
16
L 424.14966 136
0.175189
L 430.35315 135
4.755663
L 436.556639 13
49.336136
L 442.760129 134
3.91661
L 448.963618 13
38.497083
L 455.167107 133
3.077557
L 461.370597 13
27.658
03
L 467.574086 132
2.238504
L 473.777576 13
16.818977
L 479.981065 131
1.399451
L 486.184555 13
05.979924
L 492.388044 130
0.560398
L 498.591534 1
295.14087
1
L 504.795023 12
89.721345
L 510.998512 12
84.301818
L 517.202002 12
78.882292
L 523.405491 127
3.462765
L 529.608981 12
68.09515
L 535.81247 126
3.26378
L 542.01596 12
58.926575
L 548.219449 12
55.671301
L 554.422938 125
2.880687
L 560.626428 125
0.206762
L 566.829917 12
47.532837
L 573.033407 124
5.036537
L 579.236896 124
2.579227
L 585.440386 124
0.121918
L 591.643875 123
7.664608
L 597.847365 123
5.20729
8
L 604.050854 123
2.749989
L 610.254343 123
0.292679
L 616.457833 122
7.835369
L 622.661322 122
5.37806
L 628.864812 122
2.92075
L 635.068301 122
0.46344
L 641.271791 1218.
006131
L 647.47528 121
5.548821
L 653.67877 1213.
091511
L 659.882259 121
0.634202
L 666.085748 1208.
176892
L 672.289238 1205.
719582
L 70.550762 1669.
171925
L 76.754252 1663.
836123
L 82.957741 1658.
500321
L 89.16123 165
3.164519
L 95.36472 1647.
828718
L 101.568209 164
2.492916
L 107.771699 163
7.157114
L 113.975188 1631.
821312
L 120.178678 162
6.48551
L 126.382167 162
1.149708
L 132.585657 161
5.81390
6
L 138.789146 16
10.478104
L 144.992635 160
5.142302
L 151.196125 159
9.8065
L 157.399614 159
4.470698
L 163.603104 158
9.134896
L 169.806593 158
3.799094
L 176.010083 157
8.463292
L 182.213572 157
3.12749
L 188.417062 156
7.791688
L 194.620551 156
2.455886
L 200.82404 155
7.12008
4
L 207.02753 15
51.784282
L 213.231019 154
6.44848
1
L 219.434509 15
41.112679
L 225.637998 153
5.776877
L 231.841488 15
30.441075
L 238.044977 152
5.105273
L 244.248466 151
9.769471
L 250.451956 151
4.433669
L 256.655445 150
9.097867
L 262.858935 150
3.762065
L 269.062424 149
8.426263
L 275.265914 149
3.090461
L 281.469403 148
7.75465
9
L 287.672893 14
82.418857
L 293.876382 147
7.083055
L 300.079871 14
71.747253
L 306.283361 146
6.411451
L 312.48685 14
61.075649
L 318.69034 145
5.739847
L 324.893829 14
50.404045
L 331.097319 144
5.068244
L 337.300808 143
9.732442
L 343.504298 143
4.3966
4
L 349.707787 142
9.060838
L 355.911276 14
23.725036
L 362.114766 141
8.38923
4
L 368.318255 14
13.053432
L 374.521745 140
7.71763
L 380.725234 1
402.381828
L 386.928724 139
7.046026
L 393.132213 13
91.710224
L 399.335702 138
6.374422
L 405.539192 13
81.03862
L 411.742681 137
5.702818
L 417.946171 13
70.3670
16
L 424.14966 136
5.031214
L 430.35315 135
9.695412
L 436.556639 13
54.35961
L 442.760129 134
9.023808
L 448.963618 13
43.688007
L 455.167107 133
8.352205
L 461.370597 13
33.0164
03
L 467.574086 132
7.680601
L 473.777576 13
22.344799
L 479.981065 131
7.008997
L 486.184555 13
11.673195
L 492.388044 130
6.337393
L 498.591534 1
301.00159
1
L 504.795023 12
95.665789
L 510.998512 12
90.329987
L 517.202002 12
84.994185
L 523.405491 127
9.658383
L 529.608981 12
74.322581
L 535.81247 126
9.485603
L 542.01596 12
64.980777
L 548.219449 12
60.844479
L 554.422938 125
7.100764
L 560.626428 125
3.58939
L 566.829917 12
50.292643
L 573.033407 124
7.530711
L 579.236896 124
4.926685
L 585.440386 124
2.322659
L 591.643875 123
9.718634
L 597.847365 123
7.11460
8
L 604.050854 123
4.510582
L 610.254343 123
1.906556
L 616.457833 122
9.302531
L 622.661322 122
6.698505
L 628.864812 122
4.094479
L 635.068301 122
1.490453
L 641.271791 1218.
886427
L 647.47528 121
6.282402
L 653.67877 1213.
678376
L 659.882259 121
1.07435
L 666.085748 1208.
470324
L 672.289238 1205.
866299
L 678.492727 1203.262273
"
clip-path=
"url(#p
eb075df79f
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
9df4b0b96e
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_15"
>
<path
d=
"M 33.64 1698.07
...
...
@@ -2665,7 +2663,7 @@ z
<g
id=
"xtick_19"
>
<g
id=
"line2d_63"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_55"
>
...
...
@@ -2680,7 +2678,7 @@ z
<g
id=
"xtick_20"
>
<g
id=
"line2d_64"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_56"
>
...
...
@@ -2695,7 +2693,7 @@ z
<g
id=
"xtick_21"
>
<g
id=
"line2d_65"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_57"
>
...
...
@@ -2710,7 +2708,7 @@ z
<g
id=
"xtick_22"
>
<g
id=
"line2d_66"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_58"
>
...
...
@@ -2725,7 +2723,7 @@ z
<g
id=
"xtick_23"
>
<g
id=
"line2d_67"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_59"
>
...
...
@@ -2740,7 +2738,7 @@ z
<g
id=
"xtick_24"
>
<g
id=
"line2d_68"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"2274.48"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_60"
>
...
...
@@ -2757,7 +2755,7 @@ z
<g
id=
"ytick_19"
>
<g
id=
"line2d_69"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2250.917727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2250.917727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_61"
>
...
...
@@ -2772,7 +2770,7 @@ z
<g
id=
"ytick_20"
>
<g
id=
"line2d_70"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2156.668636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2156.668636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_62"
>
...
...
@@ -2787,7 +2785,7 @@ z
<g
id=
"ytick_21"
>
<g
id=
"line2d_71"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2062.419545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2062.419545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_63"
>
...
...
@@ -2802,7 +2800,7 @@ z
<g
id=
"ytick_22"
>
<g
id=
"line2d_72"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1968.170455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1968.170455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_64"
>
...
...
@@ -2817,7 +2815,7 @@ z
<g
id=
"ytick_23"
>
<g
id=
"line2d_73"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1873.921364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1873.921364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_65"
>
...
...
@@ -2832,7 +2830,7 @@ z
<g
id=
"ytick_24"
>
<g
id=
"line2d_74"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"1779.672273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"1779.672273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_66"
>
...
...
@@ -2847,106 +2845,106 @@ z
</g>
<g
id=
"line2d_75"
>
<path
d=
"M 64.347273 2250.917727
L 70.550762 2245.
498201
L 76.754252 2240.
078674
L 82.957741 2234.
659148
L 89.16123 2229.
239621
L 95.36472 222
3.820095
L 101.568209 2218.
400568
L 107.771699 221
2.981042
L 113.975188 220
7.561515
L 120.178678 2202.
141989
L 126.382167 219
6.722462
L 132.585657 219
1.30293
6
L 138.789146 218
5.883409
L 144.992635 218
0.463883
L 151.196125 217
5.044356
L 157.399614 21
69.62483
L 163.603104 216
4.205303
L 169.806593 21
58.785776
L 176.010083 215
3.36625
L 182.213572 214
7.946723
L 188.417062 214
2.527197
L 194.620551 213
7.10767
L 200.82404 213
1.68814
4
L 207.02753 212
6.268617
L 213.231019 212
0.84909
1
L 219.434509 211
5.429564
L 225.637998 211
0.010038
L 231.841488 210
4.590511
L 238.044977 2
099.170985
L 244.248466 209
3.751458
L 250.451956 20
88.331932
L 256.655445 208
2.912405
L 262.858935 20
77.492879
L 269.062424 207
2.073352
L 275.265914 206
6.653826
L 281.469403 206
1.23429
9
L 287.672893 205
5.814773
L 293.876382 205
0.395246
L 300.079871 204
4.97572
L 306.283361 20
39.556193
L 312.48685 203
4.136667
L 318.69034 20
28.71714
L 324.893829 202
3.297614
L 331.097319 20
17.878087
L 337.300808 201
2.458561
L 343.504298 20
07.03903
4
L 349.707787 200
1.619507
L 355.911276
1996.199981
L 362.114766 199
0.78045
4
L 368.318255 198
5.360928
L 374.521745 19
79.941401
L 380.725234 197
4.521875
L 386.928724 19
69.102348
L 393.132213 196
3.682822
L 399.335702 19
58.263295
L 405.539192 195
2.843769
L 411.742681 19
47.424242
L 417.946171 194
2.0047
16
L 424.14966 19
36.585189
L 430.35315 193
1.165663
L 436.556639 19
25.746136
L 442.760129 192
0.32661
L 448.963618 19
14.907083
L 455.167107 19
09.487557
L 461.370597 190
4.068
03
L 467.574086 1
898.648504
L 473.777576 189
3.228977
L 479.981065 18
87.809451
L 486.184555 188
2.389924
L 492.388044 18
76.970398
L 498.591534 187
1.55087
1
L 504.795023 18
66.131345
L 510.998512 186
0.711818
L 517.202002 18
55.292292
L 523.405491 18
49.872765
L 529.608981 18
44.50515
L 535.81247 18
39.67378
L 542.01596 18
35.336575
L 548.219449 183
2.081301
L 554.422938 18
29.290687
L 560.626428 182
6.616762
L 566.829917 182
3.942837
L 573.033407 182
1.446537
L 579.236896 18
18.989227
L 585.440386 181
6.531918
L 591.643875 181
4.074608
L 597.847365 181
1.61729
8
L 604.050854 18
09.159989
L 610.254343 180
6.702679
L 616.457833 180
4.245369
L 622.661322 180
1.78806
L 628.864812 1
799.33075
L 635.068301 179
6.87344
L 641.271791 179
4.416131
L 647.47528 179
1.958821
L 653.67877 17
89.501511
L 659.882259 1787.
044202
L 666.085748 1784.
586892
L 672.289238 1782.
129582
L 70.550762 2245.
581925
L 76.754252 2240.
246123
L 82.957741 2234.
910321
L 89.16123 2229.
574519
L 95.36472 222
4.238718
L 101.568209 2218.
902916
L 107.771699 221
3.567114
L 113.975188 220
8.231312
L 120.178678 2202.
89551
L 126.382167 219
7.559708
L 132.585657 219
2.22390
6
L 138.789146 218
6.888104
L 144.992635 218
1.552302
L 151.196125 217
6.2165
L 157.399614 21
70.880698
L 163.603104 216
5.544896
L 169.806593 21
60.209094
L 176.010083 215
4.873292
L 182.213572 214
9.53749
L 188.417062 214
4.201688
L 194.620551 213
8.865886
L 200.82404 213
3.53008
4
L 207.02753 212
8.194282
L 213.231019 212
2.85848
1
L 219.434509 211
7.522679
L 225.637998 211
2.186877
L 231.841488 210
6.851075
L 238.044977 2
101.515273
L 244.248466 209
6.179471
L 250.451956 20
90.843669
L 256.655445 208
5.507867
L 262.858935 20
80.172065
L 269.062424 207
4.836263
L 275.265914 206
9.500461
L 281.469403 206
4.16465
9
L 287.672893 205
8.828857
L 293.876382 205
3.493055
L 300.079871 204
8.157253
L 306.283361 20
42.821451
L 312.48685 203
7.485649
L 318.69034 20
32.149847
L 324.893829 202
6.814045
L 331.097319 20
21.478244
L 337.300808 201
6.142442
L 343.504298 20
10.8066
4
L 349.707787 200
5.470838
L 355.911276
2000.135036
L 362.114766 199
4.79923
4
L 368.318255 198
9.463432
L 374.521745 19
84.12763
L 380.725234 197
8.791828
L 386.928724 19
73.456026
L 393.132213 196
8.120224
L 399.335702 19
62.784422
L 405.539192 195
7.44862
L 411.742681 19
52.112818
L 417.946171 194
6.7770
16
L 424.14966 19
41.441214
L 430.35315 193
6.105412
L 436.556639 19
30.76961
L 442.760129 192
5.433808
L 448.963618 19
20.098007
L 455.167107 19
14.762205
L 461.370597 190
9.4264
03
L 467.574086 1
904.090601
L 473.777576 189
8.754799
L 479.981065 18
93.418997
L 486.184555 188
8.083195
L 492.388044 18
82.747393
L 498.591534 187
7.41159
1
L 504.795023 18
72.075789
L 510.998512 186
6.739987
L 517.202002 18
61.404185
L 523.405491 18
56.068383
L 529.608981 18
50.732581
L 535.81247 18
45.895603
L 542.01596 18
41.390777
L 548.219449 183
7.254479
L 554.422938 18
33.510764
L 560.626428 182
9.99939
L 566.829917 182
6.702643
L 573.033407 182
3.940711
L 579.236896 18
21.336685
L 585.440386 181
8.732659
L 591.643875 181
6.128634
L 597.847365 181
3.52460
8
L 604.050854 18
10.920582
L 610.254343 180
8.316556
L 616.457833 180
5.712531
L 622.661322 180
3.108505
L 628.864812 1
800.504479
L 635.068301 179
7.900453
L 641.271791 179
5.296427
L 647.47528 179
2.692402
L 653.67877 17
90.088376
L 659.882259 1787.
48435
L 666.085748 1784.
880324
L 672.289238 1782.
276299
L 678.492727 1779.672273
"
clip-path=
"url(#p
2c9bedf538
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
427c524879
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_21"
>
<path
d=
"M 33.64 2274.48
...
...
@@ -3059,7 +3057,7 @@ z
<g
id=
"xtick_25"
>
<g
id=
"line2d_77"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_69"
>
...
...
@@ -3074,7 +3072,7 @@ z
<g
id=
"xtick_26"
>
<g
id=
"line2d_78"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_70"
>
...
...
@@ -3089,7 +3087,7 @@ z
<g
id=
"xtick_27"
>
<g
id=
"line2d_79"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_71"
>
...
...
@@ -3104,7 +3102,7 @@ z
<g
id=
"xtick_28"
>
<g
id=
"line2d_80"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_72"
>
...
...
@@ -3119,7 +3117,7 @@ z
<g
id=
"xtick_29"
>
<g
id=
"line2d_81"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_73"
>
...
...
@@ -3134,7 +3132,7 @@ z
<g
id=
"xtick_30"
>
<g
id=
"line2d_82"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"2850.89"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_74"
>
...
...
@@ -3151,7 +3149,7 @@ z
<g
id=
"ytick_25"
>
<g
id=
"line2d_83"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2827.327727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2827.327727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_75"
>
...
...
@@ -3166,7 +3164,7 @@ z
<g
id=
"ytick_26"
>
<g
id=
"line2d_84"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2733.078636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2733.078636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_76"
>
...
...
@@ -3181,7 +3179,7 @@ z
<g
id=
"ytick_27"
>
<g
id=
"line2d_85"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2638.829545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2638.829545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_77"
>
...
...
@@ -3196,7 +3194,7 @@ z
<g
id=
"ytick_28"
>
<g
id=
"line2d_86"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2544.580455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2544.580455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_78"
>
...
...
@@ -3211,7 +3209,7 @@ z
<g
id=
"ytick_29"
>
<g
id=
"line2d_87"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2450.331364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2450.331364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_79"
>
...
...
@@ -3226,7 +3224,7 @@ z
<g
id=
"ytick_30"
>
<g
id=
"line2d_88"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2356.082273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2356.082273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_80"
>
...
...
@@ -3241,106 +3239,106 @@ z
</g>
<g
id=
"line2d_89"
>
<path
d=
"M 64.347273 2827.327727
L 70.550762 2821.9
08201
L 76.754252 2816.
488674
L 82.957741 2811.
069148
L 89.16123 2805.
649621
L 95.36472 2800.
230095
L 101.568209 279
4.810568
L 107.771699 2789.
391042
L 113.975188 278
3.971515
L 120.178678 277
8.551989
L 126.382167 2773.
132462
L 132.585657 276
7.71293
6
L 138.789146 276
2.293409
L 144.992635 275
6.873883
L 151.196125 275
1.454356
L 157.399614 274
6.03483
L 163.603104 274
0.615303
L 169.806593 273
5.195776
L 176.010083 27
29.77625
L 182.213572 272
4.356723
L 188.417062 27
18.937197
L 194.620551 271
3.51767
L 200.82404 270
8.09814
4
L 207.02753 270
2.678617
L 213.231019 269
7.25909
1
L 219.434509 269
1.839564
L 225.637998 268
6.420038
L 231.841488 268
1.000511
L 238.044977 267
5.580985
L 244.248466 267
0.161458
L 250.451956 266
4.741932
L 256.655445 26
59.322405
L 262.858935 265
3.902879
L 269.062424 26
48.483352
L 275.265914 264
3.063826
L 281.469403 26
37.64429
9
L 287.672893 263
2.224773
L 293.876382 262
6.805246
L 300.079871 262
1.38572
L 306.283361 261
5.966193
L 312.48685 261
0.546667
L 318.69034 260
5.12714
L 324.893829 2
599.707614
L 331.097319 259
4.288087
L 337.300808 25
88.868561
L 343.504298 258
3.44903
4
L 349.707787 25
78.029507
L 355.911276 257
2.609981
L 362.114766 25
67.19045
4
L 368.318255 256
1.770928
L 374.521745 25
56.351401
L 380.725234 255
0.931875
L 386.928724 254
5.512348
L 393.132213 254
0.092822
L 399.335702 253
4.673295
L 405.539192 25
29.253769
L 411.742681 252
3.834242
L 417.946171 25
18.4147
16
L 424.14966 251
2.995189
L 430.35315 25
07.575663
L 436.556639 250
2.156136
L 442.760129 2
496.73661
L 448.963618 249
1.317083
L 455.167107 24
85.897557
L 461.370597 248
0.478
03
L 467.574086 24
75.058504
L 473.777576 24
69.638977
L 479.981065 246
4.219451
L 486.184555 24
58.799924
L 492.388044 245
3.380398
L 498.591534 24
47.96087
1
L 504.795023 244
2.541345
L 510.998512 24
37.121818
L 517.202002 243
1.702292
L 523.405491 24
26.282765
L 529.608981 242
0.91515
L 535.81247 24
16.08378
L 542.01596 241
1.746575
L 548.219449 24
08.491301
L 554.422938 240
5.700687
L 560.626428 240
3.026762
L 566.829917 240
0.352837
L 573.033407 2
397.856537
L 579.236896 239
5.399227
L 585.440386 239
2.941918
L 591.643875 239
0.484608
L 597.847365 238
8.02729
8
L 604.050854 238
5.569989
L 610.254343 238
3.112679
L 616.457833 238
0.655369
L 622.661322 237
8.19806
L 628.864812 237
5.74075
L 635.068301 237
3.28344
L 641.271791 237
0.826131
L 647.47528 236
8.368821
L 653.67877 236
5.911511
L 659.882259 2363.
454202
L 666.085748 236
0.996892
L 672.289238 2358.
539582
L 70.550762 2821.9
91925
L 76.754252 2816.
656123
L 82.957741 2811.
320321
L 89.16123 2805.
984519
L 95.36472 2800.
648718
L 101.568209 279
5.312916
L 107.771699 2789.
977114
L 113.975188 278
4.641312
L 120.178678 277
9.30551
L 126.382167 2773.
969708
L 132.585657 276
8.63390
6
L 138.789146 276
3.298104
L 144.992635 275
7.962302
L 151.196125 275
2.6265
L 157.399614 274
7.290698
L 163.603104 274
1.954896
L 169.806593 273
6.619094
L 176.010083 27
31.283292
L 182.213572 272
5.94749
L 188.417062 27
20.611688
L 194.620551 271
5.275886
L 200.82404 270
9.94008
4
L 207.02753 270
4.604282
L 213.231019 269
9.26848
1
L 219.434509 269
3.932679
L 225.637998 268
8.596877
L 231.841488 268
3.261075
L 238.044977 267
7.925273
L 244.248466 267
2.589471
L 250.451956 266
7.253669
L 256.655445 26
61.917867
L 262.858935 265
6.582065
L 269.062424 26
51.246263
L 275.265914 264
5.910461
L 281.469403 26
40.57465
9
L 287.672893 263
5.238857
L 293.876382 262
9.903055
L 300.079871 262
4.567253
L 306.283361 261
9.231451
L 312.48685 261
3.895649
L 318.69034 260
8.559847
L 324.893829 2
603.224045
L 331.097319 259
7.888244
L 337.300808 25
92.552442
L 343.504298 258
7.2166
4
L 349.707787 25
81.880838
L 355.911276 257
6.545036
L 362.114766 25
71.20923
4
L 368.318255 256
5.873432
L 374.521745 25
60.53763
L 380.725234 255
5.201828
L 386.928724 254
9.866026
L 393.132213 254
4.530224
L 399.335702 253
9.194422
L 405.539192 25
33.85862
L 411.742681 252
8.522818
L 417.946171 25
23.1870
16
L 424.14966 251
7.851214
L 430.35315 25
12.515412
L 436.556639 250
7.17961
L 442.760129 2
501.843808
L 448.963618 249
6.508007
L 455.167107 24
91.172205
L 461.370597 248
5.8364
03
L 467.574086 24
80.500601
L 473.777576 24
75.164799
L 479.981065 246
9.828997
L 486.184555 24
64.493195
L 492.388044 245
9.157393
L 498.591534 24
53.82159
1
L 504.795023 244
8.485789
L 510.998512 24
43.149987
L 517.202002 243
7.814185
L 523.405491 24
32.478383
L 529.608981 242
7.142581
L 535.81247 24
22.305603
L 542.01596 241
7.800777
L 548.219449 24
13.664479
L 554.422938 240
9.920764
L 560.626428 240
6.40939
L 566.829917 240
3.112643
L 573.033407 2
400.350711
L 579.236896 239
7.746685
L 585.440386 239
5.142659
L 591.643875 239
2.538634
L 597.847365 238
9.93460
8
L 604.050854 238
7.330582
L 610.254343 238
4.726556
L 616.457833 238
2.122531
L 622.661322 237
9.518505
L 628.864812 237
6.914479
L 635.068301 237
4.310453
L 641.271791 237
1.706427
L 647.47528 236
9.102402
L 653.67877 236
6.498376
L 659.882259 2363.
89435
L 666.085748 236
1.290324
L 672.289238 2358.
686299
L 678.492727 2356.082273
"
clip-path=
"url(#p
683eef2ab0
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
e1d5f46805
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_27"
>
<path
d=
"M 33.64 2850.89
...
...
@@ -3471,7 +3469,7 @@ z
<g
id=
"xtick_31"
>
<g
id=
"line2d_91"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_83"
>
...
...
@@ -3486,7 +3484,7 @@ z
<g
id=
"xtick_32"
>
<g
id=
"line2d_92"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_84"
>
...
...
@@ -3501,7 +3499,7 @@ z
<g
id=
"xtick_33"
>
<g
id=
"line2d_93"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_85"
>
...
...
@@ -3516,7 +3514,7 @@ z
<g
id=
"xtick_34"
>
<g
id=
"line2d_94"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_86"
>
...
...
@@ -3531,7 +3529,7 @@ z
<g
id=
"xtick_35"
>
<g
id=
"line2d_95"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_87"
>
...
...
@@ -3546,7 +3544,7 @@ z
<g
id=
"xtick_36"
>
<g
id=
"line2d_96"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"3427.3"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_88"
>
...
...
@@ -3563,7 +3561,7 @@ z
<g
id=
"ytick_31"
>
<g
id=
"line2d_97"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3403.737727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3403.737727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_89"
>
...
...
@@ -3578,7 +3576,7 @@ z
<g
id=
"ytick_32"
>
<g
id=
"line2d_98"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3309.488636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3309.488636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_90"
>
...
...
@@ -3593,7 +3591,7 @@ z
<g
id=
"ytick_33"
>
<g
id=
"line2d_99"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3215.239545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3215.239545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_91"
>
...
...
@@ -3608,7 +3606,7 @@ z
<g
id=
"ytick_34"
>
<g
id=
"line2d_100"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3120.990455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3120.990455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_92"
>
...
...
@@ -3623,7 +3621,7 @@ z
<g
id=
"ytick_35"
>
<g
id=
"line2d_101"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3026.741364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3026.741364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_93"
>
...
...
@@ -3638,7 +3636,7 @@ z
<g
id=
"ytick_36"
>
<g
id=
"line2d_102"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"2932.492273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"2932.492273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_94"
>
...
...
@@ -3653,106 +3651,106 @@ z
</g>
<g
id=
"line2d_103"
>
<path
d=
"M 64.347273 3403.737727
L 70.550762 3398.
318201
L 76.754252 339
2.898674
L 82.957741 3387.
479148
L 89.16123 3382.
059621
L 95.36472 337
6.640095
L 101.568209 3371.
220568
L 107.771699 336
5.801042
L 113.975188 336
0.381515
L 120.178678 335
4.961989
L 126.382167 33
49.542462
L 132.585657 334
4.12293
6
L 138.789146 333
8.703409
L 144.992635 333
3.283883
L 151.196125 332
7.864356
L 157.399614 332
2.44483
L 163.603104 331
7.025303
L 169.806593 331
1.605776
L 176.010083 330
6.18625
L 182.213572 330
0.766723
L 188.417062 329
5.347197
L 194.620551 32
89.92767
L 200.82404 328
4.50814
4
L 207.02753 32
79.088617
L 213.231019 327
3.66909
1
L 219.434509 32
68.249564
L 225.637998 326
2.830038
L 231.841488 325
7.410511
L 238.044977 325
1.990985
L 244.248466 324
6.571458
L 250.451956 324
1.151932
L 256.655445 323
5.732405
L 262.858935 323
0.312879
L 269.062424 322
4.893352
L 275.265914 32
19.473826
L 281.469403 321
4.05429
9
L 287.672893 32
08.634773
L 293.876382 320
3.215246
L 300.079871 3
197.79572
L 306.283361 319
2.376193
L 312.48685 31
86.956667
L 318.69034 318
1.53714
L 324.893829 317
6.117614
L 331.097319 317
0.698087
L 337.300808 316
5.278561
L 343.504298 31
59.85903
4
L 349.707787 315
4.439507
L 355.911276 31
49.019981
L 362.114766 314
3.60045
4
L 368.318255 31
38.180928
L 374.521745 313
2.761401
L 380.725234 31
27.341875
L 386.928724 312
1.922348
L 393.132213 31
16.502822
L 399.335702 311
1.083295
L 405.539192 31
05.663769
L 411.742681 310
0.244242
L 417.946171 309
4.8247
16
L 424.14966 30
89.405189
L 430.35315 308
3.985663
L 436.556639 30
78.566136
L 442.760129 307
3.14661
L 448.963618 30
67.727083
L 455.167107 306
2.307557
L 461.370597 30
56.888
03
L 467.574086 305
1.468504
L 473.777576 30
46.048977
L 479.981065 304
0.629451
L 486.184555 30
35.209924
L 492.388044 30
29.790398
L 498.591534 30
24.37087
1
L 504.795023 30
18.951345
L 510.998512 301
3.531818
L 517.202002 30
08.112292
L 523.405491 300
2.692765
L 529.608981
2997.32515
L 535.81247 299
2.49378
L 542.01596 29
88.156575
L 548.219449 29
84.901301
L 554.422938 298
2.110687
L 560.626428 29
79.436762
L 566.829917 297
6.762837
L 573.033407 297
4.266537
L 579.236896 297
1.809227
L 585.440386 29
69.351918
L 591.643875 296
6.894608
L 597.847365 296
4.43729
8
L 604.050854 296
1.979989
L 610.254343 29
59.522679
L 616.457833 295
7.065369
L 622.661322 295
4.60806
L 628.864812 295
2.15075
L 635.068301 29
49.69344
L 641.271791 294
7.236131
L 647.47528 294
4.778821
L 653.67877 2942.
321511
L 659.882259 29
39.864202
L 666.085748 2937.
406892
L 672.289238 293
4.949582
L 70.550762 3398.
401925
L 76.754252 339
3.066123
L 82.957741 3387.
730321
L 89.16123 3382.
394519
L 95.36472 337
7.058718
L 101.568209 3371.
722916
L 107.771699 336
6.387114
L 113.975188 336
1.051312
L 120.178678 335
5.71551
L 126.382167 33
50.379708
L 132.585657 334
5.04390
6
L 138.789146 333
9.708104
L 144.992635 333
4.372302
L 151.196125 332
9.0365
L 157.399614 332
3.700698
L 163.603104 331
8.364896
L 169.806593 331
3.029094
L 176.010083 330
7.693292
L 182.213572 330
2.35749
L 188.417062 329
7.021688
L 194.620551 32
91.685886
L 200.82404 328
6.35008
4
L 207.02753 32
81.014282
L 213.231019 327
5.67848
1
L 219.434509 32
70.342679
L 225.637998 326
5.006877
L 231.841488 325
9.671075
L 238.044977 325
4.335273
L 244.248466 324
8.999471
L 250.451956 324
3.663669
L 256.655445 323
8.327867
L 262.858935 323
2.992065
L 269.062424 322
7.656263
L 275.265914 32
22.320461
L 281.469403 321
6.98465
9
L 287.672893 32
11.648857
L 293.876382 320
6.313055
L 300.079871 3
200.977253
L 306.283361 319
5.641451
L 312.48685 31
90.305649
L 318.69034 318
4.969847
L 324.893829 317
9.634045
L 331.097319 317
4.298244
L 337.300808 316
8.962442
L 343.504298 31
63.6266
4
L 349.707787 315
8.290838
L 355.911276 31
52.955036
L 362.114766 314
7.61923
4
L 368.318255 31
42.283432
L 374.521745 313
6.94763
L 380.725234 31
31.611828
L 386.928724 312
6.276026
L 393.132213 31
20.940224
L 399.335702 311
5.604422
L 405.539192 31
10.26862
L 411.742681 310
4.932818
L 417.946171 309
9.5970
16
L 424.14966 30
94.261214
L 430.35315 308
8.925412
L 436.556639 30
83.58961
L 442.760129 307
8.253808
L 448.963618 30
72.918007
L 455.167107 306
7.582205
L 461.370597 30
62.2464
03
L 467.574086 305
6.910601
L 473.777576 30
51.574799
L 479.981065 304
6.238997
L 486.184555 30
40.903195
L 492.388044 30
35.567393
L 498.591534 30
30.23159
1
L 504.795023 30
24.895789
L 510.998512 301
9.559987
L 517.202002 30
14.224185
L 523.405491 300
8.888383
L 529.608981
3003.552581
L 535.81247 299
8.715603
L 542.01596 29
94.210777
L 548.219449 29
90.074479
L 554.422938 298
6.330764
L 560.626428 29
82.81939
L 566.829917 297
9.522643
L 573.033407 297
6.760711
L 579.236896 297
4.156685
L 585.440386 29
71.552659
L 591.643875 296
8.948634
L 597.847365 296
6.34460
8
L 604.050854 296
3.740582
L 610.254343 29
61.136556
L 616.457833 295
8.532531
L 622.661322 295
5.928505
L 628.864812 295
3.324479
L 635.068301 29
50.720453
L 641.271791 294
8.116427
L 647.47528 294
5.512402
L 653.67877 2942.
908376
L 659.882259 29
40.30435
L 666.085748 2937.
700324
L 672.289238 293
5.096299
L 678.492727 2932.492273
"
clip-path=
"url(#p
8a8efd232b
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
c0a05cb78e
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_33"
>
<path
d=
"M 33.64 3427.3
...
...
@@ -3876,7 +3874,7 @@ z
<g
id=
"xtick_37"
>
<g
id=
"line2d_105"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_97"
>
...
...
@@ -3891,7 +3889,7 @@ z
<g
id=
"xtick_38"
>
<g
id=
"line2d_106"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_98"
>
...
...
@@ -3906,7 +3904,7 @@ z
<g
id=
"xtick_39"
>
<g
id=
"line2d_107"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_99"
>
...
...
@@ -3921,7 +3919,7 @@ z
<g
id=
"xtick_40"
>
<g
id=
"line2d_108"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_100"
>
...
...
@@ -3936,7 +3934,7 @@ z
<g
id=
"xtick_41"
>
<g
id=
"line2d_109"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_101"
>
...
...
@@ -3951,7 +3949,7 @@ z
<g
id=
"xtick_42"
>
<g
id=
"line2d_110"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"4003.71"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_102"
>
...
...
@@ -3968,7 +3966,7 @@ z
<g
id=
"ytick_37"
>
<g
id=
"line2d_111"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3980.147727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3980.147727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_103"
>
...
...
@@ -3983,7 +3981,7 @@ z
<g
id=
"ytick_38"
>
<g
id=
"line2d_112"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3885.898636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3885.898636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_104"
>
...
...
@@ -3998,7 +3996,7 @@ z
<g
id=
"ytick_39"
>
<g
id=
"line2d_113"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3791.649545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3791.649545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_105"
>
...
...
@@ -4013,7 +4011,7 @@ z
<g
id=
"ytick_40"
>
<g
id=
"line2d_114"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3697.400455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3697.400455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_106"
>
...
...
@@ -4028,7 +4026,7 @@ z
<g
id=
"ytick_41"
>
<g
id=
"line2d_115"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3603.151364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3603.151364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_107"
>
...
...
@@ -4043,7 +4041,7 @@ z
<g
id=
"ytick_42"
>
<g
id=
"line2d_116"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"3508.902273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"3508.902273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_108"
>
...
...
@@ -4058,106 +4056,106 @@ z
</g>
<g
id=
"line2d_117"
>
<path
d=
"M 64.347273 3980.147727
L 70.550762 3974.
728201
L 76.754252 3969.
308674
L 82.957741 396
3.889148
L 89.16123 3958.
469621
L 95.36472 3953.
050095
L 101.568209 394
7.630568
L 107.771699 3942.
211042
L 113.975188 393
6.791515
L 120.178678 393
1.371989
L 126.382167 392
5.952462
L 132.585657 392
0.53293
6
L 138.789146 391
5.113409
L 144.992635 39
09.693883
L 151.196125 390
4.274356
L 157.399614 3
898.85483
L 163.603104 389
3.435303
L 169.806593 388
8.015776
L 176.010083 388
2.59625
L 182.213572 387
7.176723
L 188.417062 387
1.757197
L 194.620551 386
6.33767
L 200.82404 386
0.91814
4
L 207.02753 385
5.498617
L 213.231019 385
0.07909
1
L 219.434509 384
4.659564
L 225.637998 38
39.240038
L 231.841488 383
3.820511
L 238.044977 38
28.400985
L 244.248466 382
2.981458
L 250.451956 38
17.561932
L 256.655445 381
2.142405
L 262.858935 380
6.722879
L 269.062424 380
1.303352
L 275.265914 379
5.883826
L 281.469403 379
0.46429
9
L 287.672893 378
5.044773
L 293.876382 37
79.625246
L 300.079871 377
4.20572
L 306.283361 37
68.786193
L 312.48685 376
3.366667
L 318.69034 37
57.94714
L 324.893829 375
2.527614
L 331.097319 37
47.108087
L 337.300808 374
1.688561
L 343.504298 37
36.26903
4
L 349.707787 373
0.849507
L 355.911276 372
5.429981
L 362.114766 372
0.01045
4
L 368.318255 371
4.590928
L 374.521745 37
09.171401
L 380.725234 370
3.751875
L 386.928724 3
698.332348
L 393.132213 369
2.912822
L 399.335702 36
87.493295
L 405.539192 368
2.073769
L 411.742681 36
76.654242
L 417.946171 367
1.2347
16
L 424.14966 36
65.815189
L 430.35315 366
0.395663
L 436.556639 365
4.976136
L 442.760129 36
49.55661
L 448.963618 364
4.137083
L 455.167107 36
38.717557
L 461.370597 363
3.298
03
L 467.574086 36
27.878504
L 473.777576 362
2.458977
L 479.981065 36
17.039451
L 486.184555 361
1.619924
L 492.388044 36
06.200398
L 498.591534 360
0.78087
1
L 504.795023 3
595.361345
L 510.998512 35
89.941818
L 517.202002 35
84.522292
L 523.405491 35
79.102765
L 529.608981 357
3.73515
L 535.81247 35
68.90378
L 542.01596 35
64.566575
L 548.219449 356
1.311301
L 554.422938 35
58.520687
L 560.626428 355
5.846762
L 566.829917 355
3.172837
L 573.033407 355
0.676537
L 579.236896 35
48.219227
L 585.440386 354
5.761918
L 591.643875 354
3.304608
L 597.847365 354
0.84729
8
L 604.050854 35
38.389989
L 610.254343 353
5.932679
L 616.457833 353
3.475369
L 622.661322 353
1.01806
L 628.864812 352
8.56075
L 635.068301 352
6.10344
L 641.271791 352
3.646131
L 647.47528 3521.
188821
L 653.67877 351
8.731511
L 659.882259 3516.
274202
L 666.085748 351
3.816892
L 672.289238 3511.
359582
L 70.550762 3974.
811925
L 76.754252 3969.
476123
L 82.957741 396
4.140321
L 89.16123 3958.
804519
L 95.36472 3953.
468718
L 101.568209 394
8.132916
L 107.771699 3942.
797114
L 113.975188 393
7.461312
L 120.178678 393
2.12551
L 126.382167 392
6.789708
L 132.585657 392
1.45390
6
L 138.789146 391
6.118104
L 144.992635 39
10.782302
L 151.196125 390
5.4465
L 157.399614 3
900.110698
L 163.603104 389
4.774896
L 169.806593 388
9.439094
L 176.010083 388
4.103292
L 182.213572 387
8.76749
L 188.417062 387
3.431688
L 194.620551 386
8.095886
L 200.82404 386
2.76008
4
L 207.02753 385
7.424282
L 213.231019 385
2.08848
1
L 219.434509 384
6.752679
L 225.637998 38
41.416877
L 231.841488 383
6.081075
L 238.044977 38
30.745273
L 244.248466 382
5.409471
L 250.451956 38
20.073669
L 256.655445 381
4.737867
L 262.858935 380
9.402065
L 269.062424 380
4.066263
L 275.265914 379
8.730461
L 281.469403 379
3.39465
9
L 287.672893 378
8.058857
L 293.876382 37
82.723055
L 300.079871 377
7.387253
L 306.283361 37
72.051451
L 312.48685 376
6.715649
L 318.69034 37
61.379847
L 324.893829 375
6.044045
L 331.097319 37
50.708244
L 337.300808 374
5.372442
L 343.504298 37
40.0366
4
L 349.707787 373
4.700838
L 355.911276 372
9.365036
L 362.114766 372
4.02923
4
L 368.318255 371
8.693432
L 374.521745 37
13.35763
L 380.725234 370
8.021828
L 386.928724 3
702.686026
L 393.132213 369
7.350224
L 399.335702 36
92.014422
L 405.539192 368
6.67862
L 411.742681 36
81.342818
L 417.946171 367
6.0070
16
L 424.14966 36
70.671214
L 430.35315 366
5.335412
L 436.556639 365
9.99961
L 442.760129 36
54.663808
L 448.963618 364
9.328007
L 455.167107 36
43.992205
L 461.370597 363
8.6564
03
L 467.574086 36
33.320601
L 473.777576 362
7.984799
L 479.981065 36
22.648997
L 486.184555 361
7.313195
L 492.388044 36
11.977393
L 498.591534 360
6.64159
1
L 504.795023 3
601.305789
L 510.998512 35
95.969987
L 517.202002 35
90.634185
L 523.405491 35
85.298383
L 529.608981 357
9.962581
L 535.81247 35
75.125603
L 542.01596 35
70.620777
L 548.219449 356
6.484479
L 554.422938 35
62.740764
L 560.626428 355
9.22939
L 566.829917 355
5.932643
L 573.033407 355
3.170711
L 579.236896 35
50.566685
L 585.440386 354
7.962659
L 591.643875 354
5.358634
L 597.847365 354
2.75460
8
L 604.050854 35
40.150582
L 610.254343 353
7.546556
L 616.457833 353
4.942531
L 622.661322 353
2.338505
L 628.864812 352
9.734479
L 635.068301 352
7.130453
L 641.271791 352
4.526427
L 647.47528 3521.
922402
L 653.67877 351
9.318376
L 659.882259 3516.
71435
L 666.085748 351
4.110324
L 672.289238 3511.
506299
L 678.492727 3508.902273
"
clip-path=
"url(#p
f4a32a0596
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
00ef351c31
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_39"
>
<path
d=
"M 33.64 4003.71
...
...
@@ -4314,7 +4312,7 @@ z
<g
id=
"xtick_43"
>
<g
id=
"line2d_119"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"64.347273"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"64.347273"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_111"
>
...
...
@@ -4329,7 +4327,7 @@ z
<g
id=
"xtick_44"
>
<g
id=
"line2d_120"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"187.176364"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"187.176364"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_112"
>
...
...
@@ -4344,7 +4342,7 @@ z
<g
id=
"xtick_45"
>
<g
id=
"line2d_121"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"310.005455"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"310.005455"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_113"
>
...
...
@@ -4359,7 +4357,7 @@ z
<g
id=
"xtick_46"
>
<g
id=
"line2d_122"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"432.834545"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"432.834545"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_114"
>
...
...
@@ -4374,7 +4372,7 @@ z
<g
id=
"xtick_47"
>
<g
id=
"line2d_123"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"555.663636"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"555.663636"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_115"
>
...
...
@@ -4389,7 +4387,7 @@ z
<g
id=
"xtick_48"
>
<g
id=
"line2d_124"
>
<g>
<use
xlink:href=
"#m
9e6e3541e6
"
x=
"678.492727"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c6b238e9c4
"
x=
"678.492727"
y=
"4580.12"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_116"
>
...
...
@@ -4406,7 +4404,7 @@ z
<g
id=
"ytick_43"
>
<g
id=
"line2d_125"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4556.557727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4556.557727"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_117"
>
...
...
@@ -4421,7 +4419,7 @@ z
<g
id=
"ytick_44"
>
<g
id=
"line2d_126"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4462.308636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4462.308636"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_118"
>
...
...
@@ -4436,7 +4434,7 @@ z
<g
id=
"ytick_45"
>
<g
id=
"line2d_127"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4368.059545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4368.059545"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_119"
>
...
...
@@ -4451,7 +4449,7 @@ z
<g
id=
"ytick_46"
>
<g
id=
"line2d_128"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4273.810455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4273.810455"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_120"
>
...
...
@@ -4466,7 +4464,7 @@ z
<g
id=
"ytick_47"
>
<g
id=
"line2d_129"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4179.561364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4179.561364"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_121"
>
...
...
@@ -4481,7 +4479,7 @@ z
<g
id=
"ytick_48"
>
<g
id=
"line2d_130"
>
<g>
<use
xlink:href=
"#m
7a20b041e6
"
x=
"33.64"
y=
"4085.312273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
<use
xlink:href=
"#m
c900691483
"
x=
"33.64"
y=
"4085.312273"
style=
"stroke: #000000; stroke-width: 0.8"
/>
</g>
</g>
<g
id=
"text_122"
>
...
...
@@ -4496,106 +4494,106 @@ z
</g>
<g
id=
"line2d_131"
>
<path
d=
"M 64.347273 4556.557727
L 70.550762 4551.
138201
L 76.754252 4545.
718674
L 82.957741 4540.
299148
L 89.16123 453
4.879621
L 95.36472 4529.
460095
L 101.568209 4524.
040568
L 107.771699 451
8.621042
L 113.975188 4513.
201515
L 120.178678 450
7.781989
L 126.382167 450
2.362462
L 132.585657 449
6.94293
6
L 138.789146 449
1.523409
L 144.992635 448
6.103883
L 151.196125 448
0.684356
L 157.399614 447
5.26483
L 163.603104 44
69.845303
L 169.806593 446
4.425776
L 176.010083 44
59.00625
L 182.213572 445
3.586723
L 188.417062 444
8.167197
L 194.620551 444
2.74767
L 200.82404 443
7.32814
4
L 207.02753 443
1.908617
L 213.231019 442
6.48909
1
L 219.434509 442
1.069564
L 225.637998 441
5.650038
L 231.841488 441
0.230511
L 238.044977 440
4.810985
L 244.248466 4
399.391458
L 250.451956 439
3.971932
L 256.655445 43
88.552405
L 262.858935 438
3.132879
L 269.062424 43
77.713352
L 275.265914 437
2.293826
L 281.469403 436
6.87429
9
L 287.672893 436
1.454773
L 293.876382 435
6.035246
L 300.079871 435
0.61572
L 306.283361 434
5.196193
L 312.48685 43
39.776667
L 318.69034 433
4.35714
L 324.893829 43
28.937614
L 331.097319 432
3.518087
L 337.300808 43
18.098561
L 343.504298 431
2.67903
4
L 349.707787 43
07.259507
L 355.911276 430
1.839981
L 362.114766 4
296.42045
4
L 368.318255 429
1.000928
L 374.521745 428
5.581401
L 380.725234 428
0.161875
L 386.928724 427
4.742348
L 393.132213 42
69.322822
L 399.335702 426
3.903295
L 405.539192 42
58.483769
L 411.742681 425
3.064242
L 417.946171 42
47.6447
16
L 424.14966 424
2.225189
L 430.35315 42
36.805663
L 436.556639 423
1.386136
L 442.760129 42
25.96661
L 448.963618 422
0.547083
L 455.167107 42
15.127557
L 461.370597 42
09.708
03
L 467.574086 420
4.288504
L 473.777576 4
198.868977
L 479.981065 419
3.449451
L 486.184555 41
88.029924
L 492.388044 418
2.610398
L 498.591534 41
77.19087
1
L 504.795023 417
1.771345
L 510.998512 41
66.351818
L 517.202002 416
0.932292
L 523.405491 41
55.512765
L 529.608981 415
0.14515
L 535.81247 41
45.31378
L 542.01596 414
0.976575
L 548.219449 41
37.721301
L 554.422938 413
4.930687
L 560.626428 413
2.256762
L 566.829917 41
29.582837
L 573.033407 412
7.086537
L 579.236896 412
4.629227
L 585.440386 412
2.171918
L 591.643875 41
19.714608
L 597.847365 411
7.25729
8
L 604.050854 411
4.799989
L 610.254343 411
2.342679
L 616.457833 41
09.885369
L 622.661322 410
7.42806
L 628.864812 410
4.97075
L 635.068301 410
2.51344
L 641.271791 4100.
056131
L 647.47528 409
7.598821
L 653.67877 4095.
141511
L 659.882259 409
2.684202
L 666.085748 4090.
226892
L 672.289238 4087.
769582
L 70.550762 4551.
221925
L 76.754252 4545.
886123
L 82.957741 4540.
550321
L 89.16123 453
5.214519
L 95.36472 4529.
878718
L 101.568209 4524.
542916
L 107.771699 451
9.207114
L 113.975188 4513.
871312
L 120.178678 450
8.53551
L 126.382167 450
3.199708
L 132.585657 449
7.86390
6
L 138.789146 449
2.528104
L 144.992635 448
7.192302
L 151.196125 448
1.8565
L 157.399614 447
6.520698
L 163.603104 44
71.184896
L 169.806593 446
5.849094
L 176.010083 44
60.513292
L 182.213572 445
5.17749
L 188.417062 444
9.841688
L 194.620551 444
4.505886
L 200.82404 443
9.17008
4
L 207.02753 443
3.834282
L 213.231019 442
8.49848
1
L 219.434509 442
3.162679
L 225.637998 441
7.826877
L 231.841488 441
2.491075
L 238.044977 440
7.155273
L 244.248466 4
401.819471
L 250.451956 439
6.483669
L 256.655445 43
91.147867
L 262.858935 438
5.812065
L 269.062424 43
80.476263
L 275.265914 437
5.140461
L 281.469403 436
9.80465
9
L 287.672893 436
4.468857
L 293.876382 435
9.133055
L 300.079871 435
3.797253
L 306.283361 434
8.461451
L 312.48685 43
43.125649
L 318.69034 433
7.789847
L 324.893829 43
32.454045
L 331.097319 432
7.118244
L 337.300808 43
21.782442
L 343.504298 431
6.4466
4
L 349.707787 43
11.110838
L 355.911276 430
5.775036
L 362.114766 4
300.43923
4
L 368.318255 429
5.103432
L 374.521745 428
9.76763
L 380.725234 428
4.431828
L 386.928724 427
9.096026
L 393.132213 42
73.760224
L 399.335702 426
8.424422
L 405.539192 42
63.08862
L 411.742681 425
7.752818
L 417.946171 42
52.4170
16
L 424.14966 424
7.081214
L 430.35315 42
41.745412
L 436.556639 423
6.40961
L 442.760129 42
31.073808
L 448.963618 422
5.738007
L 455.167107 42
20.402205
L 461.370597 42
15.0664
03
L 467.574086 420
9.730601
L 473.777576 4
204.394799
L 479.981065 419
9.058997
L 486.184555 41
93.723195
L 492.388044 418
8.387393
L 498.591534 41
83.05159
1
L 504.795023 417
7.715789
L 510.998512 41
72.379987
L 517.202002 416
7.044185
L 523.405491 41
61.708383
L 529.608981 415
6.372581
L 535.81247 41
51.535603
L 542.01596 414
7.030777
L 548.219449 41
42.894479
L 554.422938 413
9.150764
L 560.626428 413
5.63939
L 566.829917 41
32.342643
L 573.033407 412
9.580711
L 579.236896 412
6.976685
L 585.440386 412
4.372659
L 591.643875 41
21.768634
L 597.847365 411
9.16460
8
L 604.050854 411
6.560582
L 610.254343 411
3.956556
L 616.457833 41
11.352531
L 622.661322 410
8.748505
L 628.864812 410
6.144479
L 635.068301 410
3.540453
L 641.271791 4100.
936427
L 647.47528 409
8.332402
L 653.67877 4095.
728376
L 659.882259 409
3.12435
L 666.085748 4090.
520324
L 672.289238 4087.
916299
L 678.492727 4085.312273
"
clip-path=
"url(#p
4007529095
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
"
clip-path=
"url(#p
eccf40cbf4
)"
style=
"fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"
/>
</g>
<g
id=
"patch_45"
>
<path
d=
"M 33.64 4580.12
...
...
@@ -4698,28 +4696,28 @@ L 570.846875 4565.540312
</g>
</g>
<defs>
<clipPath
id=
"p
1a09486dbe
"
>
<clipPath
id=
"p
538b22e7e9
"
>
<rect
x=
"112.235"
y=
"26.88"
width=
"518.37"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
5a336d0e7b
"
>
<clipPath
id=
"p
7148eb9ad5
"
>
<rect
x=
"33.64"
y=
"603.29"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
eb075df79f
"
>
<clipPath
id=
"p
9df4b0b96e
"
>
<rect
x=
"33.64"
y=
"1179.7"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
2c9bedf538
"
>
<clipPath
id=
"p
427c524879
"
>
<rect
x=
"33.64"
y=
"1756.11"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
683eef2ab0
"
>
<clipPath
id=
"p
e1d5f46805
"
>
<rect
x=
"33.64"
y=
"2332.52"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
8a8efd232b
"
>
<clipPath
id=
"p
c0a05cb78e
"
>
<rect
x=
"33.64"
y=
"2908.93"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
f4a32a0596
"
>
<clipPath
id=
"p
00ef351c31
"
>
<rect
x=
"33.64"
y=
"3485.34"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
<clipPath
id=
"p
4007529095
"
>
<clipPath
id=
"p
eccf40cbf4
"
>
<rect
x=
"33.64"
y=
"4061.75"
width=
"675.56"
height=
"518.37"
/>
</clipPath>
</defs>
...
...
model_selection/output_cv_metrics/metrics.xlsx
View file @
f8e93c2e
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment